): this
#### `adjustContrast`
-> Adjust the contrast of this image.
> `contrast` is the amount to adjust the contrast by.
+> Adjust the contrast of this image.
`contrast` is the amount to adjust the contrast by.
> Negative values decrease the contrast and positive values increase the contrast.
```ts
@@ -522,7 +522,7 @@ adjustContrast(contrast: number): this
#### `brighten`
-> Brighten the pixels of this image.
> `value` is the amount to brighten each pixel by.
+> Brighten the pixels of this image.
`value` is the amount to brighten each pixel by.
> Negative values decrease the brightness and positive values increase it.
```ts
@@ -531,7 +531,7 @@ brighten(brightness: number): this
#### `huerotate`
-> Hue rotate the supplied image.
> `value` is the degrees to rotate each pixel by.
+> Hue rotate the supplied image.
`value` is the degrees to rotate each pixel by.
> 0 and 360 do nothing, the rest rotates by the given degree value.
> just like the css webkit filter hue-rotate(180)
diff --git a/packages/binding/package.json b/packages/binding/package.json
index cf4a614..2862c7f 100644
--- a/packages/binding/package.json
+++ b/packages/binding/package.json
@@ -59,5 +59,8 @@
"prepublishOnly": "napi prepublish",
"version": "napi version"
},
- "repository": "git@github.com:Brooooooklyn/Image.git"
+ "repository": "git@github.com:Brooooooklyn/Image.git",
+ "devDependencies": {
+ "@napi-rs/cli": "^2.6.2"
+ }
}
diff --git a/website/.gitignore b/website/.gitignore
index 9676f2c..26f437d 100644
--- a/website/.gitignore
+++ b/website/.gitignore
@@ -2,3 +2,4 @@
.yarn
public/img/example.mjs
public/img/sharp.mjs
+public/img/*.manipulated.webp
diff --git a/website/generate-img.js b/website/generate-img.js
index 7bf0a6e..782cf7b 100644
--- a/website/generate-img.js
+++ b/website/generate-img.js
@@ -3,12 +3,23 @@ import { join } from 'path'
import { promises as fs } from 'fs'
import { fileURLToPath } from 'url'
+import chalk from 'chalk'
+import fetch from 'node-fetch'
+
const __dirname = join(fileURLToPath(import.meta.url), '..', 'public', 'img')
await fs.writeFile('public/img/example.mjs', await fs.readFile('../example.mjs'))
await fs.writeFile('public/img/sharp.mjs', await fs.readFile('../sharp.mjs'))
+if (process.env.VERCEL) {
+ const gnuBinary = await fetch(`https://unpkg.com/@napi-rs/image-linux-x64-gnu`, {
+ follow: 10,
+ }).then((res) => res.arrayBuffer())
+ console.info(chalk.greenBright(`Installed @napi-rs/image.linux-x64-gnu, size: ${gnuBinary.byteLength}`))
+ await fs.writeFile(join(__dirname, '../../../packages/binding/image.linux-x64-gnu.node'), Buffer.from(gnuBinary))
+}
+
execSync('node example.mjs', {
cwd: __dirname,
stdio: 'inherit',
@@ -18,3 +29,8 @@ execSync('node sharp.mjs', {
cwd: __dirname,
stdio: 'inherit',
})
+
+execSync('node manipulate.mjs', {
+ cwd: __dirname,
+ stdio: 'inherit',
+})
diff --git a/website/nextra.config.js b/website/nextra.config.js
index dfbd53d..7f8f731 100644
--- a/website/nextra.config.js
+++ b/website/nextra.config.js
@@ -29,7 +29,7 @@ export default {
>
)
},
- head: ({ title, meta }) => {
+ head: ({ meta }) => {
return (
<>
{/* Favicons, meta */}
@@ -40,6 +40,12 @@ export default {
+
+
>
)
},
@@ -54,11 +60,13 @@ export default {
footerText: () => {
return (
- Copyright © {new Date().getFullYear()} NAPI-RS. Powered by{' '}
+
+
+
+ Powered by{' '}
Nextra
- .
)
},
diff --git a/website/package.json b/website/package.json
index f54318d..7ec95f7 100644
--- a/website/package.json
+++ b/website/package.json
@@ -5,10 +5,12 @@
"type": "module",
"dependencies": {
"@napi-rs/image": "^1.1.1",
+ "chalk": "^5.0.1",
"markdown-to-jsx": "^7.1.7",
- "next": "^12.1.6-canary.4",
+ "next": "canary",
"nextra": "2.0.0-alpha.49",
"nextra-theme-docs": "2.0.0-alpha.50",
+ "node-fetch": "^3.2.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"sharp": "^0.30.4"
diff --git a/website/pages/docs/credits.md b/website/pages/docs/credits.md
new file mode 100644
index 0000000..a9e8f4f
--- /dev/null
+++ b/website/pages/docs/credits.md
@@ -0,0 +1,981 @@
+---
+title: 'Credits'
+description: Credits of third part dependencies.
+---
+
+# Credits
+
+`@napi-rs/image` is built based on these amazing projects:
+
+- [image-rs](https://github.com/image-rs/image)
+
+
+ The MIT License (MIT)
+ The MIT License (MIT)
+
+Copyright (c) 2014 PistonDevelopers
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+
+
+- [napi-rs](https://napi.rs)
+
+
+ MIT License
+ MIT License
+
+Copyright (c) 2020-present LongYinan
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+MIT License
+
+Copyright (c) 2018 GitHub
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+
+
+- [libwebp](https://chromium.googlesource.com/webm/libwebp)
+
+
+ Copyright (c) 2010, Google Inc. All rights reserved.
+ Copyright (c) 2010, Google Inc. All rights reserved.
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in
+ the documentation and/or other materials provided with the
+ distribution.
+ * Neither the name of Google nor the names of its contributors may
+ be used to endorse or promote products derived from this software
+ without specific prior written permission.
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+- [libavif](https://github.com/AOMediaCodec/libavif)
+
+
+ Copyright 2019 Joe Drago. All rights reserved.
+ Copyright 2019 Joe Drago. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this
+ list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+
+- [libavif-rs](https://github.com/njaard/libavif-rs)
+
+
+ Copyright 2020 Charles Samuels ks@ks.ax, Paolo Barbolini paolo@paolo565.org
+ Copyright 2020 Charles Samuels ks@ks.ax, Paolo Barbolini paolo@paolo565.org
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this
+ list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation and/or
+ other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+
+- [lodepng](https://github.com/kornelski/lodepng-rust)
+
+
+ © 2014-2017 Kornel Lesiński
+ © 2014-2017 Kornel Lesiński
+ © 2005-2016 Lode Vandevenne
+
+This software is provided 'as-is', without any express or implied
+warranty. In no event will the authors be held liable for any damages
+arising from the use of this software.
+
+Permission is granted to anyone to use this software for any purpose,
+including commercial applications, and to alter it and redistribute it
+freely, subject to the following restrictions:
+
+ 1. The origin of this software must not be misrepresented; you must not
+ claim that you wrote the original software. If you use this software
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+
+ 2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original software.
+
+ 3. This notice may not be removed or altered from any source
+ distribution.
+
+
+
+- [imagequant](https://github.com/ImageOptim/libimagequant)
+
+
+ libimagequant is derived from code by Jef Poskanzer and Greg Roelofs
+ libimagequant is derived from code by Jef Poskanzer and Greg Roelofs
+ licensed under pngquant's original license (at the end of this file),
+ and contains extensive changes and additions by Kornel Lesiński
+ licensed under GPL v3 or later.
+
+---
+
+libimagequant © 2009-2018 by Kornel Lesiński.
+
+ GNU GENERAL PUBLIC LICENSE
+ Version 3, 29 June 2007
+
+Copyright (C) 2007 Free Software Foundation, Inc. http://fsf.org/
+Everyone is permitted to copy and distribute verbatim copies
+of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The GNU General Public License is a free, copyleft license for
+
+software and other kinds of works.
+
+ The licenses for most software and other practical works are designed
+
+to take away your freedom to share and change the works. By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users. We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors. You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+ To protect your rights, we need to prevent others from denying you
+
+these rights or asking you to surrender the rights. Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+ For example, if you distribute copies of such a program, whether
+
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received. You must make sure that they, too, receive
+or can get the source code. And you must show them these terms so they
+know their rights.
+
+ Developers that use the GNU GPL protect your rights with two steps:
+
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+ For the developers' and authors' protection, the GPL clearly explains
+
+that there is no warranty for this free software. For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+ Some devices are designed to deny users access to install or run
+
+modified versions of the software inside them, although the manufacturer
+can do so. This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software. The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable. Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products. If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+ Finally, every program is threatened constantly by software patents.
+
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary. To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+ The precise terms and conditions for copying, distribution and
+
+modification follow.
+
+ TERMS AND CONDITIONS
+
+ 0. Definitions.
+
+ "This License" refers to version 3 of the GNU General Public License.
+
+ "Copyright" also means copyright-like laws that apply to other kinds of
+
+works, such as semiconductor masks.
+
+ "The Program" refers to any copyrightable work licensed under this
+
+License. Each licensee is addressed as "you". "Licensees" and
+"recipients" may be individuals or organizations.
+
+ To "modify" a work means to copy from or adapt all or part of the work
+
+in a fashion requiring copyright permission, other than the making of an
+exact copy. The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+ A "covered work" means either the unmodified Program or a work based
+
+on the Program.
+
+ To "propagate" a work means to do anything with it that, without
+
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy. Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+ To "convey" a work means any kind of propagation that enables other
+
+parties to make or receive copies. Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+ An interactive user interface displays "Appropriate Legal Notices"
+
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License. If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+ 1. Source Code.
+
+ The "source code" for a work means the preferred form of the work
+
+for making modifications to it. "Object code" means any non-source
+form of a work.
+
+ A "Standard Interface" means an interface that either is an official
+
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+ The "System Libraries" of an executable work include anything, other
+
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form. A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+ The "Corresponding Source" for a work in object code form means all
+
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities. However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work. For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+ The Corresponding Source need not include anything that users
+
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+ The Corresponding Source for a work in source code form is that
+
+same work.
+
+ 2. Basic Permissions.
+
+ All rights granted under this License are granted for the term of
+
+copyright on the Program, and are irrevocable provided the stated
+conditions are met. This License explicitly affirms your unlimited
+permission to run the unmodified Program. The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work. This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+ You may make, run and propagate covered works that you do not
+
+convey, without conditions so long as your license otherwise remains
+in force. You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright. Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+ Conveying under any other circumstances is permitted solely under
+
+the conditions stated below. Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+ No covered work shall be deemed part of an effective technological
+
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+ When you convey a covered work, you waive any legal power to forbid
+
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+ 4. Conveying Verbatim Copies.
+
+ You may convey verbatim copies of the Program's source code as you
+
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+ You may charge any price or no price for each copy that you convey,
+
+and you may offer support or warranty protection for a fee.
+
+ 5. Conveying Modified Source Versions.
+
+ You may convey a work based on the Program, or the modifications to
+
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+ a) The work must carry prominent notices stating that you modified
+ it, and giving a relevant date.
+
+ b) The work must carry prominent notices stating that it is
+ released under this License and any conditions added under section
+ 7. This requirement modifies the requirement in section 4 to
+ "keep intact all notices".
+
+ c) You must license the entire work, as a whole, under this
+ License to anyone who comes into possession of a copy. This
+ License will therefore apply, along with any applicable section 7
+ additional terms, to the whole of the work, and all its parts,
+ regardless of how they are packaged. This License gives no
+ permission to license the work in any other way, but it does not
+ invalidate such permission if you have separately received it.
+
+ d) If the work has interactive user interfaces, each must display
+ Appropriate Legal Notices; however, if the Program has interactive
+ interfaces that do not display Appropriate Legal Notices, your
+ work need not make them do so.
+
+ A compilation of a covered work with other separate and independent
+
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit. Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+ 6. Conveying Non-Source Forms.
+
+ You may convey a covered work in object code form under the terms
+
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+ a) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by the
+ Corresponding Source fixed on a durable physical medium
+ customarily used for software interchange.
+
+ b) Convey the object code in, or embodied in, a physical product
+ (including a physical distribution medium), accompanied by a
+ written offer, valid for at least three years and valid for as
+ long as you offer spare parts or customer support for that product
+ model, to give anyone who possesses the object code either (1) a
+ copy of the Corresponding Source for all the software in the
+ product that is covered by this License, on a durable physical
+ medium customarily used for software interchange, for a price no
+ more than your reasonable cost of physically performing this
+ conveying of source, or (2) access to copy the
+ Corresponding Source from a network server at no charge.
+
+ c) Convey individual copies of the object code with a copy of the
+ written offer to provide the Corresponding Source. This
+ alternative is allowed only occasionally and noncommercially, and
+ only if you received the object code with such an offer, in accord
+ with subsection 6b.
+
+ d) Convey the object code by offering access from a designated
+ place (gratis or for a charge), and offer equivalent access to the
+ Corresponding Source in the same way through the same place at no
+ further charge. You need not require recipients to copy the
+ Corresponding Source along with the object code. If the place to
+ copy the object code is a network server, the Corresponding Source
+ may be on a different server (operated by you or a third party)
+ that supports equivalent copying facilities, provided you maintain
+ clear directions next to the object code saying where to find the
+ Corresponding Source. Regardless of what server hosts the
+ Corresponding Source, you remain obligated to ensure that it is
+ available for as long as needed to satisfy these requirements.
+
+ e) Convey the object code using peer-to-peer transmission, provided
+ you inform other peers where the object code and Corresponding
+ Source of the work are being offered to the general public at no
+ charge under subsection 6d.
+
+ A separable portion of the object code, whose source code is excluded
+
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+ A "User Product" is either (1) a "consumer product", which means any
+
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling. In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage. For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product. A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+ "Installation Information" for a User Product means any methods,
+
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source. The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+ If you convey an object code work under this section in, or with, or
+
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information. But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+ The requirement to provide Installation Information does not include a
+
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed. Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+ Corresponding Source conveyed, and Installation Information provided,
+
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+ 7. Additional Terms.
+
+ "Additional permissions" are terms that supplement the terms of this
+
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law. If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+ When you convey a copy of a covered work, you may at your option
+
+remove any additional permissions from that copy, or from any part of
+it. (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.) You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+ Notwithstanding any other provision of this License, for material you
+
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+ a) Disclaiming warranty or limiting liability differently from the
+ terms of sections 15 and 16 of this License; or
+
+ b) Requiring preservation of specified reasonable legal notices or
+ author attributions in that material or in the Appropriate Legal
+ Notices displayed by works containing it; or
+
+ c) Prohibiting misrepresentation of the origin of that material, or
+ requiring that modified versions of such material be marked in
+ reasonable ways as different from the original version; or
+
+ d) Limiting the use for publicity purposes of names of licensors or
+ authors of the material; or
+
+ e) Declining to grant rights under trademark law for use of some
+ trade names, trademarks, or service marks; or
+
+ f) Requiring indemnification of licensors and authors of that
+ material by anyone who conveys the material (or modified versions of
+ it) with contractual assumptions of liability to the recipient, for
+ any liability that these contractual assumptions directly impose on
+ those licensors and authors.
+
+ All other non-permissive additional terms are considered "further
+
+restrictions" within the meaning of section 10. If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term. If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+ If you add terms to a covered work in accord with this section, you
+
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+ Additional terms, permissive or non-permissive, may be stated in the
+
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+ 8. Termination.
+
+ You may not propagate or modify a covered work except as expressly
+
+provided under this License. Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+ However, if you cease all violation of this License, then your
+
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+ Moreover, your license from a particular copyright holder is
+
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+ Termination of your rights under this section does not terminate the
+
+licenses of parties who have received copies or rights from you under
+this License. If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+ 9. Acceptance Not Required for Having Copies.
+
+ You are not required to accept this License in order to receive or
+
+run a copy of the Program. Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance. However,
+nothing other than this License grants you permission to propagate or
+modify any covered work. These actions infringe copyright if you do
+not accept this License. Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+ 10. Automatic Licensing of Downstream Recipients.
+
+ Each time you convey a covered work, the recipient automatically
+
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License. You are not responsible
+for enforcing compliance by third parties with this License.
+
+ An "entity transaction" is a transaction transferring control of an
+
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations. If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+ You may not impose any further restrictions on the exercise of the
+
+rights granted or affirmed under this License. For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+ 11. Patents.
+
+ A "contributor" is a copyright holder who authorizes use under this
+
+License of the Program or a work on which the Program is based. The
+work thus licensed is called the contributor's "contributor version".
+
+ A contributor's "essential patent claims" are all patent claims
+
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version. For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
+
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+ In the following three paragraphs, a "patent license" is any express
+
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement). To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+ If you convey a covered work, knowingly relying on a patent license,
+
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients. "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+ If, pursuant to or in connection with a single transaction or
+
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+ A patent license is "discriminatory" if it does not include within
+
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License. You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+ Nothing in this License shall be construed as excluding or limiting
+
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+ 12. No Surrender of Others' Freedom.
+
+ If conditions are imposed on you (whether by court order, agreement or
+
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all. For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+ 13. Use with the GNU Affero General Public License.
+
+ Notwithstanding any other provision of this License, you have
+
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work. The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+ 14. Revised Versions of this License.
+
+ The Free Software Foundation may publish revised and/or new versions of
+
+the GNU General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+ Each version is given a distinguishing version number. If the
+
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation. If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+ If the Program specifies that a proxy can decide which future
+
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+ Later license versions may give you additional or different
+
+permissions. However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+ 15. Disclaimer of Warranty.
+
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+
+APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+ 16. Limitation of Liability.
+
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+ 17. Interpretation of Sections 15 and 16.
+
+ If the disclaimer of warranty and limitation of liability provided
+
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+---
+
+© 1989, 1991 by Jef Poskanzer.
+© 1997, 2000, 2002 by Greg Roelofs.
+
+Permission to use, copy, modify, and distribute this software and its
+documentation for any purpose and without fee is hereby granted, provided
+that the above copyright notice appear in all copies and that both that
+copyright notice and this permission notice appear in supporting
+documentation. This software is provided "as is" without express or
+implied warranty.
+
+
+
+- [oxipng](https://github.com/shssoichiro/oxipng)
+
+
+ Copyright (c) 2016 Joshua Holmer
+ The MIT License (MIT)
+ Copyright (c) 2016 Joshua Holmer
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
+of the Software, and to permit persons to whom the Software is furnished to do
+so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+
+
+- [rexif](https://github.com/kornelski/rexif)
+
+Copyright (c) 2015 Elvis Pfützenreuter.
+https://epxx.co
+
+This crate is released under the MIT license.
+
+- [rust-rgb](https://github.com/kornelski/rust-rgb)
+
+
+ Copyright (c) 2019 Kornel
+ MIT License
+
+Copyright (c) 2019 Kornel
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+
diff --git a/website/pages/docs/index.mdx b/website/pages/docs/index.mdx
index 76e9044..48714d8 100644
--- a/website/pages/docs/index.mdx
+++ b/website/pages/docs/index.mdx
@@ -54,6 +54,7 @@ import { decode } from 'blurhash'
const pixels = decode('LEHV6nWB2yk8pyo0adR*.7kCMdnj', 32, 32)
const transformer = Transformer.fromRgbaPixels(pixels, 32, 32)
```
+
### Metadata
```ts
@@ -141,8 +142,7 @@ await fs.writeFile('optimized.webp)
#### webp
> The quality factor `quality_factor` ranges from 0 to 100 and controls the loss and quality during compression.
-> The value 0 corresponds to low quality and small output sizes, whereas 100 is the highest quality and largest output size.
-> https://developers.google.com/speed/webp/docs/api#simple_encoding_api
+> The value 0 corresponds to low quality and small output sizes, whereas 100 is the highest quality and largest output size.
> https://developers.google.com/speed/webp/docs/api#simple_encoding_api
> Default is 90
```ts
@@ -390,6 +390,10 @@ writeFileSync('output-exif.image.webp', imageOutputWebp)
grayscale(): this
```
+| Image | Output |
+| ------------------------- | ----------------------------------- |
+|  |  |
+
#### `invert`
> Invert the colors of this image.
@@ -398,6 +402,10 @@ grayscale(): this
invert(): this
```
+| Image | Output |
+| ------------------------- | -------------------------------- |
+|  |  |
+
#### `resize`
```ts
@@ -442,7 +450,7 @@ that has been scaled down to 300x225 px:
Time required to create each of the examples above, tested on an Intel
i7-4770 CPU with Rust 1.37 in release mode:
-
+
| Filter Type | Time Cost |
| -------------- | --------- |
@@ -452,3 +460,225 @@ i7-4770 CPU with Rust 1.37 in release mode:
| **Gaussian** | 1180 ms |
| **Lanczos3** | 1170 ms |
+#### `blur`
+
+> Performs a Gaussian blur on this image.
+> sigma` is a measure of how much to blur by.
+
+```ts
+blur(sigma: number): this
+```
+
+`blur(10)`
+
+| Image | Output |
+| ------------------------- | ------------------------------ |
+|  |  |
+
+#### `unsharpen`
+
+> Performs an unsharpen mask on this image.
`sigma` is the amount to blur the image by.
> `threshold` is a control of how much to sharpen.
+> See [Digital_unsharp_masking](https://en.wikipedia.org/wiki/Unsharp_masking#Digital_unsharp_masking)
+
+```ts
+unsharpen(sigma: number, threshold: number): this
+```
+
+`unsharpen(10, 10)`
+
+| Image | Output |
+| --------------------- | ----------------------------------- |
+|  |  |
+
+#### `filter3x3`
+
+Filters this image with the specified 3x3 kernel. Error will thrown if the kernel length is not `9`.
+
+```ts
+filter3x3(kernel: Array): this
+```
+
+> https://en.wikipedia.org/wiki/Kernel_(image_processing)#Details
+> Sharpen:
+
+`filter3x3([0, -1, 0, -1, 5, -1, 0, -1, 0])`
+
+| Image | Output |
+| ------------------------- | ----------------------------------- |
+|  |  |
+
+#### `adjustContrast`
+
+> Adjust the contrast of this image.
`contrast` is the amount to adjust the contrast by.
+> Negative values decrease the contrast and positive values increase the contrast.
+
+```ts
+adjustContrast(contrast: number): this
+```
+
+`adjustContrast(50)`
+
+| Image | Output |
+| ------------------------- | ---------------------------------- |
+|  |  |
+
+#### `brighten`
+
+> Brighten the pixels of this image.
`value` is the amount to brighten each pixel by.
+> Negative values decrease the brightness and positive values increase it.
+
+```ts
+brighten(brightness: number): this
+```
+
+`brighten(30)`
+
+| Image | Output |
+| ------------------------- | ---------------------------------- |
+|  |  |
+
+#### `huerotate`
+
+> Hue rotate the supplied image.
> `value` is the degrees to rotate each pixel by.
+> 0 and 360 do nothing, the rest rotates by the given degree value.
+> just like the css webkit filter hue-rotate(180)
+
+```ts
+huerotate(hue: number): this
+```
+
+`huerotate(90)`
+
+| Image | Output |
+| ------------------------- | ----------------------------------- |
+|  |  |
+
+## Optimize PNG
+
+### Lossless compression
+
+Lossless optimize PNG powered by [oxipng](https://github.com/shssoichiro/oxipng).
+
+**PNGLosslessOptions**
+
+```ts
+export interface PNGLosslessOptions {
+ /**
+ * Attempt to fix errors when decoding the input file rather than returning an Err.
+ * Default: `false`
+ */
+ fixErrors?: boolean | undefined | null
+ /**
+ * Write to output even if there was no improvement in compression.
+ * Default: `false`
+ */
+ force?: boolean | undefined | null
+ /** Which filters to try on the file (0-5) */
+ filter?: Array | undefined | null
+ /**
+ * Whether to attempt bit depth reduction
+ * Default: `true`
+ */
+ bitDepthReduction?: boolean | undefined | null
+ /**
+ * Whether to attempt color type reduction
+ * Default: `true`
+ */
+ colorTypeReduction?: boolean | undefined | null
+ /**
+ * Whether to attempt palette reduction
+ * Default: `true`
+ */
+ paletteReduction?: boolean | undefined | null
+ /**
+ * Whether to attempt grayscale reduction
+ * Default: `true`
+ */
+ grayscaleReduction?: boolean | undefined | null
+ /**
+ * Whether to perform IDAT recoding
+ * If any type of reduction is performed, IDAT recoding will be performed regardless of this setting
+ * Default: `true`
+ */
+ idatRecoding?: boolean | undefined | null
+ /** Whether to remove ***All non-critical headers*** on PNG */
+ strip?: boolean | undefined | null
+ /** Whether to use heuristics to pick the best filter and compression */
+ useHeuristics?: boolean | undefined | null
+}
+```
+
+```ts
+export function losslessCompressPng(
+ input: Buffer,
+ options?: PNGLosslessOptions | undefined | null,
+ signal?: AbortSignal | undefined | null,
+): Promise
+export function losslessCompressPngSync(input: Buffer, options?: PNGLosslessOptions | undefined | null): Buffer
+```
+
+### Lossy compression
+
+Powered by [pngquant](https://github.com/ImageOptim/libimagequant), converts RGBA images to palette-based 8-bit indexed images, _including_ alpha component.
+
+**PngQuantOptions**:
+
+```ts
+export interface PngQuantOptions {
+ /** default is 70 */
+ minQuality?: number | undefined | null
+ /** default is 99 */
+ maxQuality?: number | undefined | null
+ /**
+ * 1- 10
+ * Faster speeds generate images of lower quality, but may be useful for real-time generation of images.
+ * default: 5
+ */
+ speed?: number | undefined | null
+ /**
+ * Number of least significant bits to ignore.
+ * Useful for generating palettes for VGA, 15-bit textures, or other retro platforms.
+ */
+ posterization?: number | undefined | null
+}
+```
+
+```ts
+export function pngQuantize(
+ input: Buffer,
+ options?: PngQuantOptions | undefined | null,
+ signal?: AbortSignal | undefined | null,
+): Promise
+export function pngQuantizeSync(input: Buffer, options?: PngQuantOptions | undefined | null): Buffer
+```
+
+## Optimize JPEG
+
+Lossy and Lossless JPEG compression powered by [mozjpeg](https://github.com/mozilla/mozjpeg).
+
+**JpegCompressOptions**:
+
+```ts
+export interface JpegCompressOptions {
+ /** Output quality, default is 100 (lossless) */
+ quality?: number | undefined | null
+ /**
+ * If true, it will use MozJPEG’s scan optimization. Makes progressive image files smaller.
+ * Default is `true`
+ */
+ optimizeScans?: boolean | undefined | null
+}
+```
+
+```ts
+export function compressJpeg(
+ input: Buffer,
+ options?: JpegCompressOptions | undefined | null,
+ signal?: AbortSignal | undefined | null,
+): Promise
+export function compressJpegSync(input: Buffer, options?: JpegCompressOptions | undefined | null): Buffer
+```
+
+## Credits
+
+See [Credits](./credits)
diff --git a/website/pages/docs/meta.json b/website/pages/docs/meta.json
index 245dc4d..2db3ef1 100644
--- a/website/pages/docs/meta.json
+++ b/website/pages/docs/meta.json
@@ -1,7 +1,4 @@
{
- "*": {
- "theme": {
- "sidebar": false
- }
- }
+ "index": "Docs",
+ "credits": "Credits"
}
diff --git a/website/pages/index.mdx b/website/pages/index.mdx
index e1a7312..8843741 100644
--- a/website/pages/index.mdx
+++ b/website/pages/index.mdx
@@ -93,15 +93,21 @@ You can clone this repo and run the following command to taste the example below
- `yarn install`
- `node example.mjs`
-| Optimization | Raw
| Optimized
| Raw Size | Optimized Size |
-| ------------------------------------------------------------ | ---------------------------------------- | ---------------------------------------------- | -------- | -------------- |
-| `losslessCompressPng()`
**Lossless** |  |  | `888K` | `736K` |
-| `pngQuantize({ maxQuality: 75 })`
**Lossy** |  |  | `888K` | `248K` |
-| `compressJpeg()`
**Lossless** |  |  | `192K` | `184K` |
-| `compressJpeg(75)`
**Lossy** |  |  | `192K` | `104K` |
-| `new Transformer(PNG).webpLossless()`
**Lossless** |  |  | `888K` | `588K` |
-| `new Transformer(PNG).webp(75)`
**Lossy** |  |  | `888K` | `64K` |
-| `Transformer(PNG).avif({ quality: 100 })`
**Lossless** |  |  | `888K` | `536K` |
+> The anime girl
+>
+>
+> [CC-BY-SA 3.0](https://creativecommons.org/licenses/by/3.0) by
+> [Niabot](https://commons.wikimedia.org/wiki/User:Niabot){' '}
+
+| Optimization | Raw
| Optimized
| Raw Size | Optimized Size |
+| ------------------------------------------------------------------------------------------------------- | ---------------------------------------- | ---------------------------------------------- | -------- | -------------- |
+| `losslessCompressPng()`
**Lossless** |  |  | `888K` | `736K` |
+| `pngQuantize({ maxQuality: 75 })`
**Lossy** |  |  | `888K` | `248K` |
+| `compressJpeg()`
**Lossless** |  |  | `192K` | `184K` |
+| `compressJpeg(75)`
**Lossy** |  |  | `192K` | `104K` |
+| `new Transformer(PNG).webpLossless()`
**Lossless** |  |  | `888K` | `588K` |
+| `new Transformer(PNG).webp(75)`
**Lossy** |  |  | `888K` | `64K` |
+| `Transformer(PNG).avif({ quality: 100 })`
**Lossless** |  |  | `888K` | `536K` |
| `new Transformer(PNG).avif({ quality: 75, chromaSubsampling: ChromaSubsampling.Yuv420 })`
**Lossy** |  |  | `888K` | `64K` |
```js filename="example.mjs"
diff --git a/website/public/img/example.mjs b/website/public/img/example.mjs
index e7fba50..463be97 100644
--- a/website/public/img/example.mjs
+++ b/website/public/img/example.mjs
@@ -28,11 +28,11 @@ writeFileSync(
console.info(chalk.green('Lossy compression png done'))
-writeFileSync('optimized-lossless.jpg', await compressJpeg(readFileSync('./un-optimized.jpg')))
+writeFileSync('optimized-lossless.jpg', await compressJpeg(JPEG))
console.info(chalk.green('Lossless compression jpeg done'))
-writeFileSync('optimized-lossy.jpg', await compressJpeg(readFileSync('./un-optimized.jpg'), { quality: 75 }))
+writeFileSync('optimized-lossy.jpg', await compressJpeg(JPEG, { quality: 75 }))
console.info(chalk.green('Lossy compression jpeg done'))
diff --git a/website/public/img/manipulate.mjs b/website/public/img/manipulate.mjs
new file mode 100644
index 0000000..154e09f
--- /dev/null
+++ b/website/public/img/manipulate.mjs
@@ -0,0 +1,44 @@
+import { promises as fs } from 'fs'
+
+import { Transformer } from '@napi-rs/image'
+import chalk from 'chalk'
+
+const PNG = await fs.readFile('./un-optimized.png')
+const TAJ_ORIG = await fs.readFile('./taj_orig.jpg')
+
+await fs.writeFile('grayscale.manipulated.webp', await new Transformer(PNG).grayscale().webp())
+
+console.info(chalk.cyanBright(`Grayscale PNG done`))
+
+await fs.writeFile('invert.manipulated.webp', await new Transformer(PNG).invert().webp())
+
+console.info(chalk.cyanBright(`Invert PNG done`))
+
+await fs.writeFile('blur.manipulated.webp', await new Transformer(PNG).blur(10).webp())
+
+console.info(chalk.cyanBright(`Blur PNG done`))
+
+await fs.writeFile('unsharpen.manipulated.webp', await new Transformer(TAJ_ORIG).unsharpen(10, 10).webp())
+
+console.info(chalk.cyanBright(`Unsharpen PNG done`))
+
+// https://en.wikipedia.org/wiki/Kernel_(image_processing)#Details
+// Sharpen:
+await fs.writeFile(
+ 'filter3x3.manipulated.webp',
+ await new Transformer(PNG).filter3x3([0, -1, 0, -1, 5, -1, 0, -1, 0]).webp(),
+)
+
+console.info(chalk.cyanBright(`filter3x3 PNG done`))
+
+await fs.writeFile('contrast.manipulated.webp', await new Transformer(PNG).adjustContrast(50).webp())
+
+console.info(chalk.cyanBright(`AdjustContrast PNG done`))
+
+await fs.writeFile('brighten.manipulated.webp', await new Transformer(PNG).brighten(30).webp())
+
+console.info(chalk.cyanBright(`Brighten PNG done`))
+
+await fs.writeFile('huerotate.manipulated.webp', await new Transformer(PNG).huerotate(90).webp())
+
+console.info(chalk.cyanBright(`Huerotate PNG done`))
diff --git a/website/public/img/taj_orig.jpg b/website/public/img/taj_orig.jpg
new file mode 100644
index 0000000..0420f24
Binary files /dev/null and b/website/public/img/taj_orig.jpg differ
diff --git a/website/style.css b/website/style.css
index 81d18a2..db23621 100644
--- a/website/style.css
+++ b/website/style.css
@@ -12,4 +12,4 @@ article pre code .line.highlighted::before {
.dark {
--nextra-primary-hue: 300deg;
-}
\ No newline at end of file
+}
diff --git a/website/yarn.lock b/website/yarn.lock
deleted file mode 100644
index 642befe..0000000
--- a/website/yarn.lock
+++ /dev/null
@@ -1,3850 +0,0 @@
-# This file is generated by running "yarn install" inside your project.
-# Manual changes might be lost - proceed with caution!
-
-__metadata:
- version: 6
- cacheKey: 8
-
-"@babel/runtime@npm:^7.10.5":
- version: 7.17.9
- resolution: "@babel/runtime@npm:7.17.9"
- dependencies:
- regenerator-runtime: ^0.13.4
- checksum: 4d56bdb82890f386d5a57c40ef985a0ed7f0a78f789377a2d0c3e8826819e0f7f16ba0fe906d9b2241c5f7ca56630ef0653f5bb99f03771f7b87ff8af4bf5fe3
- languageName: node
- linkType: hard
-
-"@gar/promisify@npm:^1.1.3":
- version: 1.1.3
- resolution: "@gar/promisify@npm:1.1.3"
- checksum: 4059f790e2d07bf3c3ff3e0fec0daa8144fe35c1f6e0111c9921bd32106adaa97a4ab096ad7dab1e28ee6a9060083c4d1a4ada42a7f5f3f7a96b8812e2b757c1
- languageName: node
- linkType: hard
-
-"@headlessui/react@npm:^1.5.0":
- version: 1.5.0
- resolution: "@headlessui/react@npm:1.5.0"
- peerDependencies:
- react: ^16 || ^17 || ^18
- react-dom: ^16 || ^17 || ^18
- checksum: e3373dfb73936950d659a87718fb9fdedc599b344b30cb0d8b1ef0a2ec13d6f405c653fa51284236788658840ece82c6a8538a5a5931e595274e9590b2020079
- languageName: node
- linkType: hard
-
-"@mdx-js/mdx@npm:^2.1.0":
- version: 2.1.1
- resolution: "@mdx-js/mdx@npm:2.1.1"
- dependencies:
- "@types/estree-jsx": ^0.0.1
- "@types/mdx": ^2.0.0
- astring: ^1.6.0
- estree-util-build-jsx: ^2.0.0
- estree-util-is-identifier-name: ^2.0.0
- estree-walker: ^3.0.0
- hast-util-to-estree: ^2.0.0
- markdown-extensions: ^1.0.0
- periscopic: ^3.0.0
- remark-mdx: ^2.0.0
- remark-parse: ^10.0.0
- remark-rehype: ^10.0.0
- unified: ^10.0.0
- unist-util-position-from-estree: ^1.0.0
- unist-util-stringify-position: ^3.0.0
- unist-util-visit: ^4.0.0
- vfile: ^5.0.0
- checksum: 565d0cf10b78f49c7f3bf098f529094e9084732e1138fbd02505ad9f42fbfb201dde7fa40261293972173b32192246e912b0bd174b1df453d4f916c995276b41
- languageName: node
- linkType: hard
-
-"@mdx-js/react@npm:^2.1.0":
- version: 2.1.1
- resolution: "@mdx-js/react@npm:2.1.1"
- dependencies:
- "@types/mdx": ^2.0.0
- "@types/react": ">=16"
- peerDependencies:
- react: ">=16"
- checksum: e6f1f0a3a7afa893c107744309a5d2a8654a0643c119bbe3d5ec3ad2ba31cf371e94f3dfe7331eb3aa9f3f4582594ec3f7dd11fc909560e512f95b35335ed34e
- languageName: node
- linkType: hard
-
-"@napi-rs/image-android-arm-eabi@npm:1.1.1":
- version: 1.1.1
- resolution: "@napi-rs/image-android-arm-eabi@npm:1.1.1"
- conditions: os=android & cpu=arm
- languageName: node
- linkType: hard
-
-"@napi-rs/image-android-arm64@npm:1.1.1":
- version: 1.1.1
- resolution: "@napi-rs/image-android-arm64@npm:1.1.1"
- conditions: os=android & cpu=arm64
- languageName: node
- linkType: hard
-
-"@napi-rs/image-darwin-arm64@npm:1.1.1":
- version: 1.1.1
- resolution: "@napi-rs/image-darwin-arm64@npm:1.1.1"
- conditions: os=darwin & cpu=arm64
- languageName: node
- linkType: hard
-
-"@napi-rs/image-darwin-x64@npm:1.1.1":
- version: 1.1.1
- resolution: "@napi-rs/image-darwin-x64@npm:1.1.1"
- conditions: os=darwin & cpu=x64
- languageName: node
- linkType: hard
-
-"@napi-rs/image-freebsd-x64@npm:1.1.1":
- version: 1.1.1
- resolution: "@napi-rs/image-freebsd-x64@npm:1.1.1"
- conditions: os=freebsd & cpu=x64
- languageName: node
- linkType: hard
-
-"@napi-rs/image-linux-arm-gnueabihf@npm:1.1.1":
- version: 1.1.1
- resolution: "@napi-rs/image-linux-arm-gnueabihf@npm:1.1.1"
- conditions: os=linux & cpu=arm
- languageName: node
- linkType: hard
-
-"@napi-rs/image-linux-arm64-gnu@npm:1.1.1":
- version: 1.1.1
- resolution: "@napi-rs/image-linux-arm64-gnu@npm:1.1.1"
- conditions: os=linux & cpu=arm64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@napi-rs/image-linux-arm64-musl@npm:1.1.1":
- version: 1.1.1
- resolution: "@napi-rs/image-linux-arm64-musl@npm:1.1.1"
- conditions: os=linux & cpu=arm64 & libc=musl
- languageName: node
- linkType: hard
-
-"@napi-rs/image-linux-x64-gnu@npm:1.1.1":
- version: 1.1.1
- resolution: "@napi-rs/image-linux-x64-gnu@npm:1.1.1"
- conditions: os=linux & cpu=x64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@napi-rs/image-linux-x64-musl@npm:1.1.1":
- version: 1.1.1
- resolution: "@napi-rs/image-linux-x64-musl@npm:1.1.1"
- conditions: os=linux & cpu=x64 & libc=musl
- languageName: node
- linkType: hard
-
-"@napi-rs/image-win32-ia32-msvc@npm:1.1.1":
- version: 1.1.1
- resolution: "@napi-rs/image-win32-ia32-msvc@npm:1.1.1"
- conditions: os=win32 & cpu=ia32
- languageName: node
- linkType: hard
-
-"@napi-rs/image-win32-x64-msvc@npm:1.1.1":
- version: 1.1.1
- resolution: "@napi-rs/image-win32-x64-msvc@npm:1.1.1"
- conditions: os=win32 & cpu=x64
- languageName: node
- linkType: hard
-
-"@napi-rs/image@npm:^1.1.1":
- version: 1.1.1
- resolution: "@napi-rs/image@npm:1.1.1"
- dependencies:
- "@napi-rs/image-android-arm-eabi": 1.1.1
- "@napi-rs/image-android-arm64": 1.1.1
- "@napi-rs/image-darwin-arm64": 1.1.1
- "@napi-rs/image-darwin-x64": 1.1.1
- "@napi-rs/image-freebsd-x64": 1.1.1
- "@napi-rs/image-linux-arm-gnueabihf": 1.1.1
- "@napi-rs/image-linux-arm64-gnu": 1.1.1
- "@napi-rs/image-linux-arm64-musl": 1.1.1
- "@napi-rs/image-linux-x64-gnu": 1.1.1
- "@napi-rs/image-linux-x64-musl": 1.1.1
- "@napi-rs/image-win32-ia32-msvc": 1.1.1
- "@napi-rs/image-win32-x64-msvc": 1.1.1
- dependenciesMeta:
- "@napi-rs/image-android-arm-eabi":
- optional: true
- "@napi-rs/image-android-arm64":
- optional: true
- "@napi-rs/image-darwin-arm64":
- optional: true
- "@napi-rs/image-darwin-x64":
- optional: true
- "@napi-rs/image-freebsd-x64":
- optional: true
- "@napi-rs/image-linux-arm-gnueabihf":
- optional: true
- "@napi-rs/image-linux-arm64-gnu":
- optional: true
- "@napi-rs/image-linux-arm64-musl":
- optional: true
- "@napi-rs/image-linux-x64-gnu":
- optional: true
- "@napi-rs/image-linux-x64-musl":
- optional: true
- "@napi-rs/image-win32-ia32-msvc":
- optional: true
- "@napi-rs/image-win32-x64-msvc":
- optional: true
- checksum: 2ce34d097ae66ddae9a2a18b5c704180240ab780e4ae022d0ce33d61c2c6aa5a0ee0a61e1c6da7edd3572a2c03eea960eb23d7ee03771cfd50eb704d64bf6e50
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-android-arm-eabi@npm:0.1.7":
- version: 0.1.7
- resolution: "@napi-rs/simple-git-android-arm-eabi@npm:0.1.7"
- conditions: os=android & cpu=arm
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-android-arm64@npm:0.1.7":
- version: 0.1.7
- resolution: "@napi-rs/simple-git-android-arm64@npm:0.1.7"
- conditions: os=android & cpu=arm64
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-darwin-arm64@npm:0.1.7":
- version: 0.1.7
- resolution: "@napi-rs/simple-git-darwin-arm64@npm:0.1.7"
- conditions: os=darwin & cpu=arm64
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-darwin-x64@npm:0.1.7":
- version: 0.1.7
- resolution: "@napi-rs/simple-git-darwin-x64@npm:0.1.7"
- conditions: os=darwin & cpu=x64
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-linux-arm-gnueabihf@npm:0.1.7":
- version: 0.1.7
- resolution: "@napi-rs/simple-git-linux-arm-gnueabihf@npm:0.1.7"
- conditions: os=linux & cpu=arm
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-linux-arm64-gnu@npm:0.1.7":
- version: 0.1.7
- resolution: "@napi-rs/simple-git-linux-arm64-gnu@npm:0.1.7"
- conditions: os=linux & cpu=arm64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-linux-arm64-musl@npm:0.1.7":
- version: 0.1.7
- resolution: "@napi-rs/simple-git-linux-arm64-musl@npm:0.1.7"
- conditions: os=linux & cpu=arm64 & libc=musl
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-linux-x64-gnu@npm:0.1.7":
- version: 0.1.7
- resolution: "@napi-rs/simple-git-linux-x64-gnu@npm:0.1.7"
- conditions: os=linux & cpu=x64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-linux-x64-musl@npm:0.1.7":
- version: 0.1.7
- resolution: "@napi-rs/simple-git-linux-x64-musl@npm:0.1.7"
- conditions: os=linux & cpu=x64 & libc=musl
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-win32-arm64-msvc@npm:0.1.7":
- version: 0.1.7
- resolution: "@napi-rs/simple-git-win32-arm64-msvc@npm:0.1.7"
- conditions: os=win32 & cpu=arm64
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-win32-x64-msvc@npm:0.1.7":
- version: 0.1.7
- resolution: "@napi-rs/simple-git-win32-x64-msvc@npm:0.1.7"
- conditions: os=win32 & cpu=x64
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git@npm:^0.1.7":
- version: 0.1.7
- resolution: "@napi-rs/simple-git@npm:0.1.7"
- dependencies:
- "@napi-rs/simple-git-android-arm-eabi": 0.1.7
- "@napi-rs/simple-git-android-arm64": 0.1.7
- "@napi-rs/simple-git-darwin-arm64": 0.1.7
- "@napi-rs/simple-git-darwin-x64": 0.1.7
- "@napi-rs/simple-git-linux-arm-gnueabihf": 0.1.7
- "@napi-rs/simple-git-linux-arm64-gnu": 0.1.7
- "@napi-rs/simple-git-linux-arm64-musl": 0.1.7
- "@napi-rs/simple-git-linux-x64-gnu": 0.1.7
- "@napi-rs/simple-git-linux-x64-musl": 0.1.7
- "@napi-rs/simple-git-win32-arm64-msvc": 0.1.7
- "@napi-rs/simple-git-win32-x64-msvc": 0.1.7
- dependenciesMeta:
- "@napi-rs/simple-git-android-arm-eabi":
- optional: true
- "@napi-rs/simple-git-android-arm64":
- optional: true
- "@napi-rs/simple-git-darwin-arm64":
- optional: true
- "@napi-rs/simple-git-darwin-x64":
- optional: true
- "@napi-rs/simple-git-linux-arm-gnueabihf":
- optional: true
- "@napi-rs/simple-git-linux-arm64-gnu":
- optional: true
- "@napi-rs/simple-git-linux-arm64-musl":
- optional: true
- "@napi-rs/simple-git-linux-x64-gnu":
- optional: true
- "@napi-rs/simple-git-linux-x64-musl":
- optional: true
- "@napi-rs/simple-git-win32-arm64-msvc":
- optional: true
- "@napi-rs/simple-git-win32-x64-msvc":
- optional: true
- checksum: 9eb2f02144bb3a5b6d19205c294b137990b14d7f282f8b96cbcc5149a436100f7410ab6b501d8d678ae1c76c97d2d284ebfb33ec22b6fd1ae643d7d578f3d5fa
- languageName: node
- linkType: hard
-
-"@next/env@npm:12.1.6-canary.4":
- version: 12.1.6-canary.4
- resolution: "@next/env@npm:12.1.6-canary.4"
- checksum: 76c36eae43b3709ef5dcaf04ecfc13ca60fcf5d96b5c62d9c778d091d5f909401b29cbc568718f8c94b967436e74126043919402bc8049a54a6d6c781cdd114a
- languageName: node
- linkType: hard
-
-"@next/swc-android-arm-eabi@npm:12.1.6-canary.4":
- version: 12.1.6-canary.4
- resolution: "@next/swc-android-arm-eabi@npm:12.1.6-canary.4"
- conditions: os=android & cpu=arm
- languageName: node
- linkType: hard
-
-"@next/swc-android-arm64@npm:12.1.6-canary.4":
- version: 12.1.6-canary.4
- resolution: "@next/swc-android-arm64@npm:12.1.6-canary.4"
- conditions: os=android & cpu=arm64
- languageName: node
- linkType: hard
-
-"@next/swc-darwin-arm64@npm:12.1.6-canary.4":
- version: 12.1.6-canary.4
- resolution: "@next/swc-darwin-arm64@npm:12.1.6-canary.4"
- conditions: os=darwin & cpu=arm64
- languageName: node
- linkType: hard
-
-"@next/swc-darwin-x64@npm:12.1.6-canary.4":
- version: 12.1.6-canary.4
- resolution: "@next/swc-darwin-x64@npm:12.1.6-canary.4"
- conditions: os=darwin & cpu=x64
- languageName: node
- linkType: hard
-
-"@next/swc-linux-arm-gnueabihf@npm:12.1.6-canary.4":
- version: 12.1.6-canary.4
- resolution: "@next/swc-linux-arm-gnueabihf@npm:12.1.6-canary.4"
- conditions: os=linux & cpu=arm
- languageName: node
- linkType: hard
-
-"@next/swc-linux-arm64-gnu@npm:12.1.6-canary.4":
- version: 12.1.6-canary.4
- resolution: "@next/swc-linux-arm64-gnu@npm:12.1.6-canary.4"
- conditions: os=linux & cpu=arm64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@next/swc-linux-arm64-musl@npm:12.1.6-canary.4":
- version: 12.1.6-canary.4
- resolution: "@next/swc-linux-arm64-musl@npm:12.1.6-canary.4"
- conditions: os=linux & cpu=arm64 & libc=musl
- languageName: node
- linkType: hard
-
-"@next/swc-linux-x64-gnu@npm:12.1.6-canary.4":
- version: 12.1.6-canary.4
- resolution: "@next/swc-linux-x64-gnu@npm:12.1.6-canary.4"
- conditions: os=linux & cpu=x64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@next/swc-linux-x64-musl@npm:12.1.6-canary.4":
- version: 12.1.6-canary.4
- resolution: "@next/swc-linux-x64-musl@npm:12.1.6-canary.4"
- conditions: os=linux & cpu=x64 & libc=musl
- languageName: node
- linkType: hard
-
-"@next/swc-win32-arm64-msvc@npm:12.1.6-canary.4":
- version: 12.1.6-canary.4
- resolution: "@next/swc-win32-arm64-msvc@npm:12.1.6-canary.4"
- conditions: os=win32 & cpu=arm64
- languageName: node
- linkType: hard
-
-"@next/swc-win32-ia32-msvc@npm:12.1.6-canary.4":
- version: 12.1.6-canary.4
- resolution: "@next/swc-win32-ia32-msvc@npm:12.1.6-canary.4"
- conditions: os=win32 & cpu=ia32
- languageName: node
- linkType: hard
-
-"@next/swc-win32-x64-msvc@npm:12.1.6-canary.4":
- version: 12.1.6-canary.4
- resolution: "@next/swc-win32-x64-msvc@npm:12.1.6-canary.4"
- conditions: os=win32 & cpu=x64
- languageName: node
- linkType: hard
-
-"@npmcli/fs@npm:^2.1.0":
- version: 2.1.0
- resolution: "@npmcli/fs@npm:2.1.0"
- dependencies:
- "@gar/promisify": ^1.1.3
- semver: ^7.3.5
- checksum: 6ec6d678af6da49f9dac50cd882d7f661934dd278972ffbaacde40d9eaa2871292d634000a0cca9510f6fc29855fbd4af433e1adbff90a524ec3eaf140f1219b
- languageName: node
- linkType: hard
-
-"@npmcli/move-file@npm:^2.0.0":
- version: 2.0.0
- resolution: "@npmcli/move-file@npm:2.0.0"
- dependencies:
- mkdirp: ^1.0.4
- rimraf: ^3.0.2
- checksum: 1388777b507b0c592d53f41b9d182e1a8de7763bc625fc07999b8edbc22325f074e5b3ec90af79c89d6987fdb2325bc66d59f483258543c14a43661621f841b0
- languageName: node
- linkType: hard
-
-"@reach/skip-nav@npm:^0.16.0":
- version: 0.16.0
- resolution: "@reach/skip-nav@npm:0.16.0"
- dependencies:
- "@reach/utils": 0.16.0
- tslib: ^2.3.0
- peerDependencies:
- react: ^16.8.0 || 17.x
- react-dom: ^16.8.0 || 17.x
- checksum: 8b8278dbdb8d3702ef14874c040a9289c11f718e68cdbe1e3ecd02eb515cfcf3105ab000097fa7d8633066894ab68a712f0eb87917bd08322e126b28c4bf7f50
- languageName: node
- linkType: hard
-
-"@reach/utils@npm:0.16.0":
- version: 0.16.0
- resolution: "@reach/utils@npm:0.16.0"
- dependencies:
- tiny-warning: ^1.0.3
- tslib: ^2.3.0
- peerDependencies:
- react: ^16.8.0 || 17.x
- react-dom: ^16.8.0 || 17.x
- checksum: 36bc0eb41a71798eb6186b23de265ba709e51dae5bf214fb8505c66bb3f2e6a41bb2401457350436ba89ca9e3a50f93a04fe7c33d15648ce11e568a85622d770
- languageName: node
- linkType: hard
-
-"@tootallnate/once@npm:2":
- version: 2.0.0
- resolution: "@tootallnate/once@npm:2.0.0"
- checksum: ad87447820dd3f24825d2d947ebc03072b20a42bfc96cbafec16bff8bbda6c1a81fcb0be56d5b21968560c5359a0af4038a68ba150c3e1694fe4c109a063bed8
- languageName: node
- linkType: hard
-
-"@types/acorn@npm:^4.0.0":
- version: 4.0.6
- resolution: "@types/acorn@npm:4.0.6"
- dependencies:
- "@types/estree": "*"
- checksum: 60e1fd28af18d6cb54a93a7231c7c18774a9a8739c9b179e9e8750dca631e10cbef2d82b02830ea3f557b1d121e6406441e9e1250bd492dc81d4b3456e76e4d4
- languageName: node
- linkType: hard
-
-"@types/debug@npm:^4.0.0":
- version: 4.1.7
- resolution: "@types/debug@npm:4.1.7"
- dependencies:
- "@types/ms": "*"
- checksum: 0a7b89d8ed72526858f0b61c6fd81f477853e8c4415bb97f48b1b5545248d2ae389931680b94b393b993a7cfe893537a200647d93defe6d87159b96812305adc
- languageName: node
- linkType: hard
-
-"@types/estree-jsx@npm:^0.0.1":
- version: 0.0.1
- resolution: "@types/estree-jsx@npm:0.0.1"
- dependencies:
- "@types/estree": "*"
- checksum: aed43dfcbcc9c881f571618847661cd69026680466657d1443c12f51d835c7a8ccf5109a800e56c8fc33ae093f096aa937e4656ce3eb71c4f914334c389cf7be
- languageName: node
- linkType: hard
-
-"@types/estree@npm:*, @types/estree@npm:^0.0.51":
- version: 0.0.51
- resolution: "@types/estree@npm:0.0.51"
- checksum: e56a3bcf759fd9185e992e7fdb3c6a5f81e8ff120e871641607581fb3728d16c811702a7d40fa5f869b7f7b4437ab6a87eb8d98ffafeee51e85bbe955932a189
- languageName: node
- linkType: hard
-
-"@types/estree@npm:^0.0.46":
- version: 0.0.46
- resolution: "@types/estree@npm:0.0.46"
- checksum: 620f7549c8cf99fe1c91a943a42ae2684c18f6007dc1bd6a439a2bf3204022ab746ffb3be5244c70d43a822beeb3c948216be1a69cb25e79005daeca4ebe5722
- languageName: node
- linkType: hard
-
-"@types/hast@npm:^2.0.0":
- version: 2.3.4
- resolution: "@types/hast@npm:2.3.4"
- dependencies:
- "@types/unist": "*"
- checksum: fff47998f4c11e21a7454b58673f70478740ecdafd95aaf50b70a3daa7da9cdc57315545bf9c039613732c40b7b0e9e49d11d03fe9a4304721cdc3b29a88141e
- languageName: node
- linkType: hard
-
-"@types/mdast@npm:^3.0.0":
- version: 3.0.10
- resolution: "@types/mdast@npm:3.0.10"
- dependencies:
- "@types/unist": "*"
- checksum: 3f587bfc0a9a2403ecadc220e61031b01734fedaf82e27eb4d5ba039c0eb54db8c85681ccc070ab4df3f7ec711b736a82b990e69caa14c74bf7ac0ccf2ac7313
- languageName: node
- linkType: hard
-
-"@types/mdurl@npm:^1.0.0":
- version: 1.0.2
- resolution: "@types/mdurl@npm:1.0.2"
- checksum: 79c7e523b377f53cf1f5a240fe23d0c6cae856667692bd21bf1d064eafe5ccc40ae39a2aa0a9a51e8c94d1307228c8f6b121e847124591a9a828c3baf65e86e2
- languageName: node
- linkType: hard
-
-"@types/mdx@npm:^2.0.0":
- version: 2.0.1
- resolution: "@types/mdx@npm:2.0.1"
- checksum: 521ee9f976af45859a4dd60b159e1cc09109de49ec5570fe70f34cddb0a7b5472b87c1bea743429270398207a997821dec34fd7bd63cbc2a1e5f2f6c701dd1c2
- languageName: node
- linkType: hard
-
-"@types/ms@npm:*":
- version: 0.7.31
- resolution: "@types/ms@npm:0.7.31"
- checksum: daadd354aedde024cce6f5aa873fefe7b71b22cd0e28632a69e8b677aeb48ae8caa1c60e5919bb781df040d116b01cb4316335167a3fc0ef6a63fa3614c0f6da
- languageName: node
- linkType: hard
-
-"@types/prop-types@npm:*":
- version: 15.7.5
- resolution: "@types/prop-types@npm:15.7.5"
- checksum: 5b43b8b15415e1f298243165f1d44390403bb2bd42e662bca3b5b5633fdd39c938e91b7fce3a9483699db0f7a715d08cef220c121f723a634972fdf596aec980
- languageName: node
- linkType: hard
-
-"@types/react@npm:>=16":
- version: 18.0.5
- resolution: "@types/react@npm:18.0.5"
- dependencies:
- "@types/prop-types": "*"
- "@types/scheduler": "*"
- csstype: ^3.0.2
- checksum: 70d3336d43ef25509fa89ef3278f57fdf1945fc921e69b7890a78ab9a52a55ee38e2f13aa71eb4f6032b7311e7557860ce8836c1acf3028304989571c9736a96
- languageName: node
- linkType: hard
-
-"@types/scheduler@npm:*":
- version: 0.16.2
- resolution: "@types/scheduler@npm:0.16.2"
- checksum: b6b4dcfeae6deba2e06a70941860fb1435730576d3689225a421280b7742318d1548b3d22c1f66ab68e414f346a9542f29240bc955b6332c5b11e561077583bc
- languageName: node
- linkType: hard
-
-"@types/unist@npm:*, @types/unist@npm:^2.0.0":
- version: 2.0.6
- resolution: "@types/unist@npm:2.0.6"
- checksum: 25cb860ff10dde48b54622d58b23e66214211a61c84c0f15f88d38b61aa1b53d4d46e42b557924a93178c501c166aa37e28d7f6d994aba13d24685326272d5db
- languageName: node
- linkType: hard
-
-"abbrev@npm:1":
- version: 1.1.1
- resolution: "abbrev@npm:1.1.1"
- checksum: a4a97ec07d7ea112c517036882b2ac22f3109b7b19077dc656316d07d308438aac28e4d9746dc4d84bf6b1e75b4a7b0a5f3cb30592419f128ca9a8cee3bcfa17
- languageName: node
- linkType: hard
-
-"acorn-jsx@npm:^5.0.0":
- version: 5.3.2
- resolution: "acorn-jsx@npm:5.3.2"
- peerDependencies:
- acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- checksum: c3d3b2a89c9a056b205b69530a37b972b404ee46ec8e5b341666f9513d3163e2a4f214a71f4dfc7370f5a9c07472d2fd1c11c91c3f03d093e37637d95da98950
- languageName: node
- linkType: hard
-
-"acorn@npm:^8.0.0":
- version: 8.7.0
- resolution: "acorn@npm:8.7.0"
- bin:
- acorn: bin/acorn
- checksum: e0f79409d68923fbf1aa6d4166f3eedc47955320d25c89a20cc822e6ba7c48c5963d5bc657bc242d68f7a4ac9faf96eef033e8f73656da6c640d4219935fdfd0
- languageName: node
- linkType: hard
-
-"agent-base@npm:6, agent-base@npm:^6.0.2":
- version: 6.0.2
- resolution: "agent-base@npm:6.0.2"
- dependencies:
- debug: 4
- checksum: f52b6872cc96fd5f622071b71ef200e01c7c4c454ee68bc9accca90c98cfb39f2810e3e9aa330435835eedc8c23f4f8a15267f67c6e245d2b33757575bdac49d
- languageName: node
- linkType: hard
-
-"agentkeepalive@npm:^4.2.1":
- version: 4.2.1
- resolution: "agentkeepalive@npm:4.2.1"
- dependencies:
- debug: ^4.1.0
- depd: ^1.1.2
- humanize-ms: ^1.2.1
- checksum: 39cb49ed8cf217fd6da058a92828a0a84e0b74c35550f82ee0a10e1ee403c4b78ade7948be2279b188b7a7303f5d396ea2738b134731e464bf28de00a4f72a18
- languageName: node
- linkType: hard
-
-"aggregate-error@npm:^3.0.0":
- version: 3.1.0
- resolution: "aggregate-error@npm:3.1.0"
- dependencies:
- clean-stack: ^2.0.0
- indent-string: ^4.0.0
- checksum: 1101a33f21baa27a2fa8e04b698271e64616b886795fd43c31068c07533c7b3facfcaf4e9e0cab3624bd88f729a592f1c901a1a229c9e490eafce411a8644b79
- languageName: node
- linkType: hard
-
-"ansi-regex@npm:^2.0.0":
- version: 2.1.1
- resolution: "ansi-regex@npm:2.1.1"
- checksum: 190abd03e4ff86794f338a31795d262c1dfe8c91f7e01d04f13f646f1dcb16c5800818f886047876f1272f065570ab86b24b99089f8b68a0e11ff19aed4ca8f1
- languageName: node
- linkType: hard
-
-"ansi-regex@npm:^5.0.1":
- version: 5.0.1
- resolution: "ansi-regex@npm:5.0.1"
- checksum: 2aa4bb54caf2d622f1afdad09441695af2a83aa3fe8b8afa581d205e57ed4261c183c4d3877cee25794443fde5876417d859c108078ab788d6af7e4fe52eb66b
- languageName: node
- linkType: hard
-
-"ansi-styles@npm:^3.1.0":
- version: 3.2.1
- resolution: "ansi-styles@npm:3.2.1"
- dependencies:
- color-convert: ^1.9.0
- checksum: d85ade01c10e5dd77b6c89f34ed7531da5830d2cb5882c645f330079975b716438cd7ebb81d0d6e6b4f9c577f19ae41ab55f07f19786b02f9dfd9e0377395665
- languageName: node
- linkType: hard
-
-"aproba@npm:^1.0.3":
- version: 1.2.0
- resolution: "aproba@npm:1.2.0"
- checksum: 0fca141966559d195072ed047658b6e6c4fe92428c385dd38e288eacfc55807e7b4989322f030faff32c0f46bb0bc10f1e0ac32ec22d25315a1e5bbc0ebb76dc
- languageName: node
- linkType: hard
-
-"aproba@npm:^1.0.3 || ^2.0.0":
- version: 2.0.0
- resolution: "aproba@npm:2.0.0"
- checksum: 5615cadcfb45289eea63f8afd064ab656006361020e1735112e346593856f87435e02d8dcc7ff0d11928bc7d425f27bc7c2a84f6c0b35ab0ff659c814c138a24
- languageName: node
- linkType: hard
-
-"arch@npm:^2.1.0":
- version: 2.2.0
- resolution: "arch@npm:2.2.0"
- checksum: e21b7635029fe8e9cdd5a026f9a6c659103e63fff423834323cdf836a1bb240a72d0c39ca8c470f84643385cf581bd8eda2cad8bf493e27e54bd9783abe9101f
- languageName: node
- linkType: hard
-
-"are-we-there-yet@npm:^3.0.0":
- version: 3.0.0
- resolution: "are-we-there-yet@npm:3.0.0"
- dependencies:
- delegates: ^1.0.0
- readable-stream: ^3.6.0
- checksum: 348edfdd931b0b50868b55402c01c3f64df1d4c229ab6f063539a5025fd6c5f5bb8a0cab409bbed8d75d34762d22aa91b7c20b4204eb8177063158d9ba792981
- languageName: node
- linkType: hard
-
-"are-we-there-yet@npm:~1.1.2":
- version: 1.1.7
- resolution: "are-we-there-yet@npm:1.1.7"
- dependencies:
- delegates: ^1.0.0
- readable-stream: ^2.0.6
- checksum: 70d251719c969b2745bfe5ddf3ebaefa846a636e90a6d5212573676af5d6670e15457761d4725731e19cbebdce42c4ab0cbedf23ab047f2a08274985aa10a3c7
- languageName: node
- linkType: hard
-
-"arg@npm:1.0.0":
- version: 1.0.0
- resolution: "arg@npm:1.0.0"
- checksum: 0a35939e3cb59d4f18207884563e00b0f71647becccec932348e9c5bdecfe6ca41b2ed854bbb267a2e87f97f605ed3ca936f2f0b3313bf88be6d7cdbb2d0a4b1
- languageName: node
- linkType: hard
-
-"argparse@npm:^1.0.7":
- version: 1.0.10
- resolution: "argparse@npm:1.0.10"
- dependencies:
- sprintf-js: ~1.0.2
- checksum: 7ca6e45583a28de7258e39e13d81e925cfa25d7d4aacbf806a382d3c02fcb13403a07fb8aeef949f10a7cfe4a62da0e2e807b348a5980554cc28ee573ef95945
- languageName: node
- linkType: hard
-
-"astring@npm:^1.6.0":
- version: 1.8.1
- resolution: "astring@npm:1.8.1"
- bin:
- astring: bin/astring
- checksum: 2a86ff8cc0c8f25694865cb8b22cdff784b8a0b115bd970c3def864618f22fe6ea78c3bef3ecdc359b2e5eb254a16d408ab06fa52a44e887b298cbf980a8083c
- languageName: node
- linkType: hard
-
-"bail@npm:^2.0.0":
- version: 2.0.2
- resolution: "bail@npm:2.0.2"
- checksum: aab4e8ccdc8d762bf3fdfce8e706601695620c0c2eda256dd85088dc0be3cfd7ff126f6e99c2bee1f24f5d418414aacf09d7f9702f16d6963df2fa488cda8824
- languageName: node
- linkType: hard
-
-"balanced-match@npm:^1.0.0":
- version: 1.0.2
- resolution: "balanced-match@npm:1.0.2"
- checksum: 9706c088a283058a8a99e0bf91b0a2f75497f185980d9ffa8b304de1d9e58ebda7c72c07ebf01dadedaac5b2907b2c6f566f660d62bd336c3468e960403b9d65
- languageName: node
- linkType: hard
-
-"base64-js@npm:^1.3.1":
- version: 1.5.1
- resolution: "base64-js@npm:1.5.1"
- checksum: 669632eb3745404c2f822a18fc3a0122d2f9a7a13f7fb8b5823ee19d1d2ff9ee5b52c53367176ea4ad093c332fd5ab4bd0ebae5a8e27917a4105a4cfc86b1005
- languageName: node
- linkType: hard
-
-"bl@npm:^4.0.3":
- version: 4.1.0
- resolution: "bl@npm:4.1.0"
- dependencies:
- buffer: ^5.5.0
- inherits: ^2.0.4
- readable-stream: ^3.4.0
- checksum: 9e8521fa7e83aa9427c6f8ccdcba6e8167ef30cc9a22df26effcc5ab682ef91d2cbc23a239f945d099289e4bbcfae7a192e9c28c84c6202e710a0dfec3722662
- languageName: node
- linkType: hard
-
-"brace-expansion@npm:^1.1.7":
- version: 1.1.11
- resolution: "brace-expansion@npm:1.1.11"
- dependencies:
- balanced-match: ^1.0.0
- concat-map: 0.0.1
- checksum: faf34a7bb0c3fcf4b59c7808bc5d2a96a40988addf2e7e09dfbb67a2251800e0d14cd2bfc1aa79174f2f5095c54ff27f46fb1289fe2d77dac755b5eb3434cc07
- languageName: node
- linkType: hard
-
-"brace-expansion@npm:^2.0.1":
- version: 2.0.1
- resolution: "brace-expansion@npm:2.0.1"
- dependencies:
- balanced-match: ^1.0.0
- checksum: a61e7cd2e8a8505e9f0036b3b6108ba5e926b4b55089eeb5550cd04a471fe216c96d4fe7e4c7f995c728c554ae20ddfc4244cad10aef255e72b62930afd233d1
- languageName: node
- linkType: hard
-
-"buffer@npm:^5.5.0":
- version: 5.7.1
- resolution: "buffer@npm:5.7.1"
- dependencies:
- base64-js: ^1.3.1
- ieee754: ^1.1.13
- checksum: e2cf8429e1c4c7b8cbd30834ac09bd61da46ce35f5c22a78e6c2f04497d6d25541b16881e30a019c6fd3154150650ccee27a308eff3e26229d788bbdeb08ab84
- languageName: node
- linkType: hard
-
-"cacache@npm:^16.0.2":
- version: 16.0.5
- resolution: "cacache@npm:16.0.5"
- dependencies:
- "@npmcli/fs": ^2.1.0
- "@npmcli/move-file": ^2.0.0
- chownr: ^2.0.0
- fs-minipass: ^2.1.0
- glob: ^8.0.1
- infer-owner: ^1.0.4
- lru-cache: ^7.7.1
- minipass: ^3.1.6
- minipass-collect: ^1.0.2
- minipass-flush: ^1.0.5
- minipass-pipeline: ^1.2.4
- mkdirp: ^1.0.4
- p-map: ^4.0.0
- promise-inflight: ^1.0.1
- rimraf: ^3.0.2
- ssri: ^9.0.0
- tar: ^6.1.11
- unique-filename: ^1.1.1
- checksum: 636a375d6cc23422d3b8c2c34f1281101c8ad84256a1c6f3232f9709838e6ba22ec160a7073f6c4721ebf64070f70f754216cda9ff934b7e738b3889c2cc96c7
- languageName: node
- linkType: hard
-
-"caniuse-lite@npm:^1.0.30001283":
- version: 1.0.30001332
- resolution: "caniuse-lite@npm:1.0.30001332"
- checksum: e54182ea42ab3d2ff1440f9a6480292f7ab23c00c188df7ad65586312e4da567e8bedd5cb5fb8f0ff4193dc027a54e17e0b3c0b6db5d5a3fb61c7726ff9c45b3
- languageName: node
- linkType: hard
-
-"ccount@npm:^2.0.0":
- version: 2.0.1
- resolution: "ccount@npm:2.0.1"
- checksum: 48193dada54c9e260e0acf57fc16171a225305548f9ad20d5471e0f7a8c026aedd8747091dccb0d900cde7df4e4ddbd235df0d8de4a64c71b12f0d3303eeafd4
- languageName: node
- linkType: hard
-
-"chalk@npm:2.3.0":
- version: 2.3.0
- resolution: "chalk@npm:2.3.0"
- dependencies:
- ansi-styles: ^3.1.0
- escape-string-regexp: ^1.0.5
- supports-color: ^4.0.0
- checksum: d348fc0f4f8d27c068a6ac492e708fa35a75e273d5f0004da61ea694e958981658c96693790f4d23e7b3712f9e3e4ca0988136cb0403876de5459a4c0d13078f
- languageName: node
- linkType: hard
-
-"character-entities-html4@npm:^2.0.0":
- version: 2.1.0
- resolution: "character-entities-html4@npm:2.1.0"
- checksum: 7034aa7c7fa90309667f6dd50499c8a760c3d3a6fb159adb4e0bada0107d194551cdbad0714302f62d06ce4ed68565c8c2e15fdef2e8f8764eb63fa92b34b11d
- languageName: node
- linkType: hard
-
-"character-entities-legacy@npm:^3.0.0":
- version: 3.0.0
- resolution: "character-entities-legacy@npm:3.0.0"
- checksum: 7582af055cb488b626d364b7d7a4e46b06abd526fb63c0e4eb35bcb9c9799cc4f76b39f34fdccef2d1174ac95e53e9ab355aae83227c1a2505877893fce77731
- languageName: node
- linkType: hard
-
-"character-entities@npm:^2.0.0":
- version: 2.0.1
- resolution: "character-entities@npm:2.0.1"
- checksum: 1165064dbe1cc1f3cd5b28eba0e94f051d97bdd65463b0e763d6a8aae527443596f9e0e774a79c4a66de0c47ad95c94fc5fb2c7f6bec6551b5580f730a8da341
- languageName: node
- linkType: hard
-
-"character-reference-invalid@npm:^2.0.0":
- version: 2.0.1
- resolution: "character-reference-invalid@npm:2.0.1"
- checksum: 98d3b1a52ae510b7329e6ee7f6210df14f1e318c5415975d4c9e7ee0ef4c07875d47c6e74230c64551f12f556b4a8ccc24d9f3691a2aa197019e72a95e9297ee
- languageName: node
- linkType: hard
-
-"chownr@npm:^1.1.1":
- version: 1.1.4
- resolution: "chownr@npm:1.1.4"
- checksum: 115648f8eb38bac5e41c3857f3e663f9c39ed6480d1349977c4d96c95a47266fcacc5a5aabf3cb6c481e22d72f41992827db47301851766c4fd77ac21a4f081d
- languageName: node
- linkType: hard
-
-"chownr@npm:^2.0.0":
- version: 2.0.0
- resolution: "chownr@npm:2.0.0"
- checksum: c57cf9dd0791e2f18a5ee9c1a299ae6e801ff58fee96dc8bfd0dcb4738a6ce58dd252a3605b1c93c6418fe4f9d5093b28ffbf4d66648cb2a9c67eaef9679be2f
- languageName: node
- linkType: hard
-
-"classnames@npm:^2.2.6":
- version: 2.3.1
- resolution: "classnames@npm:2.3.1"
- checksum: 14db8889d56c267a591f08b0834989fe542d47fac659af5a539e110cc4266694e8de86e4e3bbd271157dbd831361310a8293e0167141e80b0f03a0f175c80960
- languageName: node
- linkType: hard
-
-"clean-stack@npm:^2.0.0":
- version: 2.2.0
- resolution: "clean-stack@npm:2.2.0"
- checksum: 2ac8cd2b2f5ec986a3c743935ec85b07bc174d5421a5efc8017e1f146a1cf5f781ae962618f416352103b32c9cd7e203276e8c28241bbe946160cab16149fb68
- languageName: node
- linkType: hard
-
-"clipboardy@npm:1.2.2":
- version: 1.2.2
- resolution: "clipboardy@npm:1.2.2"
- dependencies:
- arch: ^2.1.0
- execa: ^0.8.0
- checksum: 7744a95e014e5945f17554b426fe78c6e1329ead85a61fa589dd4c3f4a596a037d45cad0bfaa3e60bdf77717f0dfda67c35454216f4dbb7832ec0eba42ba8a06
- languageName: node
- linkType: hard
-
-"code-point-at@npm:^1.0.0":
- version: 1.1.0
- resolution: "code-point-at@npm:1.1.0"
- checksum: 17d5666611f9b16d64fdf48176d9b7fb1c7d1c1607a189f7e600040a11a6616982876af148230336adb7d8fe728a559f743a4e29db3747e3b1a32fa7f4529681
- languageName: node
- linkType: hard
-
-"color-convert@npm:^1.9.0":
- version: 1.9.3
- resolution: "color-convert@npm:1.9.3"
- dependencies:
- color-name: 1.1.3
- checksum: fd7a64a17cde98fb923b1dd05c5f2e6f7aefda1b60d67e8d449f9328b4e53b228a428fd38bfeaeb2db2ff6b6503a776a996150b80cdf224062af08a5c8a3a203
- languageName: node
- linkType: hard
-
-"color-convert@npm:^2.0.1":
- version: 2.0.1
- resolution: "color-convert@npm:2.0.1"
- dependencies:
- color-name: ~1.1.4
- checksum: 79e6bdb9fd479a205c71d89574fccfb22bd9053bd98c6c4d870d65c132e5e904e6034978e55b43d69fcaa7433af2016ee203ce76eeba9cfa554b373e7f7db336
- languageName: node
- linkType: hard
-
-"color-name@npm:1.1.3":
- version: 1.1.3
- resolution: "color-name@npm:1.1.3"
- checksum: 09c5d3e33d2105850153b14466501f2bfb30324a2f76568a408763a3b7433b0e50e5b4ab1947868e65cb101bb7cb75029553f2c333b6d4b8138a73fcc133d69d
- languageName: node
- linkType: hard
-
-"color-name@npm:^1.0.0, color-name@npm:~1.1.4":
- version: 1.1.4
- resolution: "color-name@npm:1.1.4"
- checksum: b0445859521eb4021cd0fb0cc1a75cecf67fceecae89b63f62b201cca8d345baf8b952c966862a9d9a2632987d4f6581f0ec8d957dfacece86f0a7919316f610
- languageName: node
- linkType: hard
-
-"color-string@npm:^1.9.0":
- version: 1.9.0
- resolution: "color-string@npm:1.9.0"
- dependencies:
- color-name: ^1.0.0
- simple-swizzle: ^0.2.2
- checksum: 93c6678b847f8cfa47d19677fd19e1d4b19d7a33f100644400357c298266080b5bca64e5f874fa8ac8cc0aa0606ad44f7a838b4e6fd05e6affea190a68555bb4
- languageName: node
- linkType: hard
-
-"color-support@npm:^1.1.3":
- version: 1.1.3
- resolution: "color-support@npm:1.1.3"
- bin:
- color-support: bin.js
- checksum: 9b7356817670b9a13a26ca5af1c21615463b500783b739b7634a0c2047c16cef4b2865d7576875c31c3cddf9dd621fa19285e628f20198b233a5cfdda6d0793b
- languageName: node
- linkType: hard
-
-"color@npm:^4.2.3":
- version: 4.2.3
- resolution: "color@npm:4.2.3"
- dependencies:
- color-convert: ^2.0.1
- color-string: ^1.9.0
- checksum: 0579629c02c631b426780038da929cca8e8d80a40158b09811a0112a107c62e10e4aad719843b791b1e658ab4e800558f2e87ca4522c8b32349d497ecb6adeb4
- languageName: node
- linkType: hard
-
-"comma-separated-tokens@npm:^2.0.0":
- version: 2.0.2
- resolution: "comma-separated-tokens@npm:2.0.2"
- checksum: 8fa68ff2605233571536a802a7c712b0c766e0c5088e067be72740054e84d040865eea945c984924ae84932bcc3e25a99f71601220b438e875b5f42b87277767
- languageName: node
- linkType: hard
-
-"compute-scroll-into-view@npm:^1.0.17":
- version: 1.0.17
- resolution: "compute-scroll-into-view@npm:1.0.17"
- checksum: b20c05a10c37813c5a6e4bf053c00f65c88d23afed7a6bd7a2a69e05e2ffc2df3483ecfe407d36bf16b8cec8be21ae1966c9c523093a03117e567156cd79a51e
- languageName: node
- linkType: hard
-
-"concat-map@npm:0.0.1":
- version: 0.0.1
- resolution: "concat-map@npm:0.0.1"
- checksum: 902a9f5d8967a3e2faf138d5cb784b9979bad2e6db5357c5b21c568df4ebe62bcb15108af1b2253744844eb964fc023fbd9afbbbb6ddd0bcc204c6fb5b7bf3af
- languageName: node
- linkType: hard
-
-"console-control-strings@npm:^1.0.0, console-control-strings@npm:^1.1.0, console-control-strings@npm:~1.1.0":
- version: 1.1.0
- resolution: "console-control-strings@npm:1.1.0"
- checksum: 8755d76787f94e6cf79ce4666f0c5519906d7f5b02d4b884cf41e11dcd759ed69c57da0670afd9236d229a46e0f9cf519db0cd829c6dca820bb5a5c3def584ed
- languageName: node
- linkType: hard
-
-"core-util-is@npm:~1.0.0":
- version: 1.0.3
- resolution: "core-util-is@npm:1.0.3"
- checksum: 9de8597363a8e9b9952491ebe18167e3b36e7707569eed0ebf14f8bba773611376466ae34575bca8cfe3c767890c859c74056084738f09d4e4a6f902b2ad7d99
- languageName: node
- linkType: hard
-
-"cross-spawn@npm:^5.0.1":
- version: 5.1.0
- resolution: "cross-spawn@npm:5.1.0"
- dependencies:
- lru-cache: ^4.0.1
- shebang-command: ^1.2.0
- which: ^1.2.9
- checksum: 726939c9954fc70c20e538923feaaa33bebc253247d13021737c3c7f68cdc3e0a57f720c0fe75057c0387995349f3f12e20e9bfdbf12274db28019c7ea4ec166
- languageName: node
- linkType: hard
-
-"csstype@npm:^3.0.2":
- version: 3.0.11
- resolution: "csstype@npm:3.0.11"
- checksum: 95e56abfe9ca219ae065acb4e43f61771a03170eed919127f558dfa168240867aba7629c8d98a201a0dd06d9a5ce82686f0570031c928516c61816adbc7c877f
- languageName: node
- linkType: hard
-
-"debug@npm:4, debug@npm:^4.0.0, debug@npm:^4.1.0, debug@npm:^4.3.3":
- version: 4.3.4
- resolution: "debug@npm:4.3.4"
- dependencies:
- ms: 2.1.2
- peerDependenciesMeta:
- supports-color:
- optional: true
- checksum: 3dbad3f94ea64f34431a9cbf0bafb61853eda57bff2880036153438f50fb5a84f27683ba0d8e5426bf41a8c6ff03879488120cf5b3a761e77953169c0600a708
- languageName: node
- linkType: hard
-
-"decode-named-character-reference@npm:^1.0.0":
- version: 1.0.1
- resolution: "decode-named-character-reference@npm:1.0.1"
- dependencies:
- character-entities: ^2.0.0
- checksum: 4f67b088213497f7e19faffc1d2bf470bd3ceffd01b3be17857d4bce455e03728b33d3770761745916b0a230ecd917a1cba3c61156f0bd13958dc4fada19580a
- languageName: node
- linkType: hard
-
-"decompress-response@npm:^6.0.0":
- version: 6.0.0
- resolution: "decompress-response@npm:6.0.0"
- dependencies:
- mimic-response: ^3.1.0
- checksum: d377cf47e02d805e283866c3f50d3d21578b779731e8c5072d6ce8c13cc31493db1c2f6784da9d1d5250822120cefa44f1deab112d5981015f2e17444b763812
- languageName: node
- linkType: hard
-
-"deep-extend@npm:^0.6.0":
- version: 0.6.0
- resolution: "deep-extend@npm:0.6.0"
- checksum: 7be7e5a8d468d6b10e6a67c3de828f55001b6eb515d014f7aeb9066ce36bd5717161eb47d6a0f7bed8a9083935b465bc163ee2581c8b128d29bf61092fdf57a7
- languageName: node
- linkType: hard
-
-"delegates@npm:^1.0.0":
- version: 1.0.0
- resolution: "delegates@npm:1.0.0"
- checksum: a51744d9b53c164ba9c0492471a1a2ffa0b6727451bdc89e31627fdf4adda9d51277cfcbfb20f0a6f08ccb3c436f341df3e92631a3440226d93a8971724771fd
- languageName: node
- linkType: hard
-
-"depd@npm:^1.1.2":
- version: 1.1.2
- resolution: "depd@npm:1.1.2"
- checksum: 6b406620d269619852885ce15965272b829df6f409724415e0002c8632ab6a8c0a08ec1f0bd2add05dc7bd7507606f7e2cc034fa24224ab829580040b835ecd9
- languageName: node
- linkType: hard
-
-"dequal@npm:^2.0.0":
- version: 2.0.2
- resolution: "dequal@npm:2.0.2"
- checksum: 86c7a2c59f7b0797ed397c74b5fcdb744e48fc19440b70ad6ac59f57550a96b0faef3f1cfd5760ec5e6d3f7cb101f634f1f80db4e727b1dc8389bf62d977c0a0
- languageName: node
- linkType: hard
-
-"detect-libc@npm:^2.0.0, detect-libc@npm:^2.0.1":
- version: 2.0.1
- resolution: "detect-libc@npm:2.0.1"
- checksum: ccb05fcabbb555beb544d48080179c18523a343face9ee4e1a86605a8715b4169f94d663c21a03c310ac824592f2ba9a5270218819bb411ad7be578a527593d7
- languageName: node
- linkType: hard
-
-"diff@npm:^5.0.0":
- version: 5.0.0
- resolution: "diff@npm:5.0.0"
- checksum: f19fe29284b633afdb2725c2a8bb7d25761ea54d321d8e67987ac851c5294be4afeab532bd84531e02583a3fe7f4014aa314a3eda84f5590e7a9e6b371ef3b46
- languageName: node
- linkType: hard
-
-"emoji-regex@npm:^8.0.0":
- version: 8.0.0
- resolution: "emoji-regex@npm:8.0.0"
- checksum: d4c5c39d5a9868b5fa152f00cada8a936868fd3367f33f71be515ecee4c803132d11b31a6222b2571b1e5f7e13890156a94880345594d0ce7e3c9895f560f192
- languageName: node
- linkType: hard
-
-"encoding@npm:^0.1.13":
- version: 0.1.13
- resolution: "encoding@npm:0.1.13"
- dependencies:
- iconv-lite: ^0.6.2
- checksum: bb98632f8ffa823996e508ce6a58ffcf5856330fde839ae42c9e1f436cc3b5cc651d4aeae72222916545428e54fd0f6aa8862fd8d25bdbcc4589f1e3f3715e7f
- languageName: node
- linkType: hard
-
-"end-of-stream@npm:^1.1.0, end-of-stream@npm:^1.4.1":
- version: 1.4.4
- resolution: "end-of-stream@npm:1.4.4"
- dependencies:
- once: ^1.4.0
- checksum: 530a5a5a1e517e962854a31693dbb5c0b2fc40b46dad2a56a2deec656ca040631124f4795823acc68238147805f8b021abbe221f4afed5ef3c8e8efc2024908b
- languageName: node
- linkType: hard
-
-"env-paths@npm:^2.2.0":
- version: 2.2.1
- resolution: "env-paths@npm:2.2.1"
- checksum: 65b5df55a8bab92229ab2b40dad3b387fad24613263d103a97f91c9fe43ceb21965cd3392b1ccb5d77088021e525c4e0481adb309625d0cb94ade1d1fb8dc17e
- languageName: node
- linkType: hard
-
-"err-code@npm:^2.0.2":
- version: 2.0.3
- resolution: "err-code@npm:2.0.3"
- checksum: 8b7b1be20d2de12d2255c0bc2ca638b7af5171142693299416e6a9339bd7d88fc8d7707d913d78e0993176005405a236b066b45666b27b797252c771156ace54
- languageName: node
- linkType: hard
-
-"escape-string-regexp@npm:^1.0.5":
- version: 1.0.5
- resolution: "escape-string-regexp@npm:1.0.5"
- checksum: 6092fda75c63b110c706b6a9bfde8a612ad595b628f0bd2147eea1d3406723020810e591effc7db1da91d80a71a737a313567c5abb3813e8d9c71f4aa595b410
- languageName: node
- linkType: hard
-
-"escape-string-regexp@npm:^5.0.0":
- version: 5.0.0
- resolution: "escape-string-regexp@npm:5.0.0"
- checksum: 20daabe197f3cb198ec28546deebcf24b3dbb1a5a269184381b3116d12f0532e06007f4bc8da25669d6a7f8efb68db0758df4cd981f57bc5b57f521a3e12c59e
- languageName: node
- linkType: hard
-
-"esprima@npm:^4.0.0":
- version: 4.0.1
- resolution: "esprima@npm:4.0.1"
- bin:
- esparse: ./bin/esparse.js
- esvalidate: ./bin/esvalidate.js
- checksum: b45bc805a613dbea2835278c306b91aff6173c8d034223fa81498c77dcbce3b2931bf6006db816f62eacd9fd4ea975dfd85a5b7f3c6402cfd050d4ca3c13a628
- languageName: node
- linkType: hard
-
-"estree-util-attach-comments@npm:^2.0.0":
- version: 2.0.0
- resolution: "estree-util-attach-comments@npm:2.0.0"
- dependencies:
- "@types/estree": ^0.0.46
- checksum: 64048f336bd18dea83e9945c3f70efc51e363c5befa6bb32a417e27fc7d7303f72f63f6910a9886c2e9e369168f5c6d023755420bd76edbce07ff0b98fdc998f
- languageName: node
- linkType: hard
-
-"estree-util-build-jsx@npm:^2.0.0":
- version: 2.0.0
- resolution: "estree-util-build-jsx@npm:2.0.0"
- dependencies:
- "@types/estree-jsx": ^0.0.1
- estree-util-is-identifier-name: ^2.0.0
- estree-walker: ^3.0.0
- checksum: 840a9d6a8d05db431da315f34c2bde9b7c7e1511f988d71d5fedbe43077ca55b4f35322256e608659adadbe944092fde9610b4c3ee207fbbbb8aa9f247cd981d
- languageName: node
- linkType: hard
-
-"estree-util-is-identifier-name@npm:^2.0.0":
- version: 2.0.0
- resolution: "estree-util-is-identifier-name@npm:2.0.0"
- checksum: 09305036c4e22e388686826c4f90813b25a907b7269557dd934664bac98bf2fa814c40a0e93ce9815fd7d64ff04d2a4d48ed405cb90762025cd5f80dcfd9b58e
- languageName: node
- linkType: hard
-
-"estree-util-visit@npm:^1.0.0":
- version: 1.1.0
- resolution: "estree-util-visit@npm:1.1.0"
- dependencies:
- "@types/estree-jsx": ^0.0.1
- "@types/unist": ^2.0.0
- checksum: 4facaa960d405f2f61978794282b3852b1c419bdf110b7f74f2b3f61c5c4ac1c08527ee30c29533b429dd246d7a0730ec398fdd8b34bbc7dd30971225bab3eca
- languageName: node
- linkType: hard
-
-"estree-walker@npm:^3.0.0":
- version: 3.0.1
- resolution: "estree-walker@npm:3.0.1"
- checksum: 674096950819041f1ee471e63f7aa987f2ed3a3a441cc41a5176e9ed01ea5cfd6487822c3b9c2cddd0e2c8f9d7ef52d32d06147a19b5a9ca9f8ab0c094bd43b9
- languageName: node
- linkType: hard
-
-"execa@npm:^0.8.0":
- version: 0.8.0
- resolution: "execa@npm:0.8.0"
- dependencies:
- cross-spawn: ^5.0.1
- get-stream: ^3.0.0
- is-stream: ^1.1.0
- npm-run-path: ^2.0.0
- p-finally: ^1.0.0
- signal-exit: ^3.0.0
- strip-eof: ^1.0.0
- checksum: c2a4bf6e051737e46bee61a93ec286cb71a05f16650a1918c8d6262ba9f0bac031472252411baa8c78b7f432f10cb4c601349403774d69be2ebd864e9b1eca60
- languageName: node
- linkType: hard
-
-"expand-template@npm:^2.0.3":
- version: 2.0.3
- resolution: "expand-template@npm:2.0.3"
- checksum: 588c19847216421ed92befb521767b7018dc88f88b0576df98cb242f20961425e96a92cbece525ef28cc5becceae5d544ae0f5b9b5e2aa05acb13716ca5b3099
- languageName: node
- linkType: hard
-
-"extend-shallow@npm:^2.0.1":
- version: 2.0.1
- resolution: "extend-shallow@npm:2.0.1"
- dependencies:
- is-extendable: ^0.1.0
- checksum: 8fb58d9d7a511f4baf78d383e637bd7d2e80843bd9cd0853649108ea835208fb614da502a553acc30208e1325240bb7cc4a68473021612496bb89725483656d8
- languageName: node
- linkType: hard
-
-"extend@npm:^3.0.0":
- version: 3.0.2
- resolution: "extend@npm:3.0.2"
- checksum: a50a8309ca65ea5d426382ff09f33586527882cf532931cb08ca786ea3146c0553310bda688710ff61d7668eba9f96b923fe1420cdf56a2c3eaf30fcab87b515
- languageName: node
- linkType: hard
-
-"flexsearch@npm:^0.7.21":
- version: 0.7.21
- resolution: "flexsearch@npm:0.7.21"
- checksum: ae77c6ebba6f02660bf28a36b56427ec2d737dcb9bd03564db27801484be2dd943fc7350e60a6f0aed47ab1b85af7fd5b33e27e84fd2fcbb241d9c5d21c8d068
- languageName: node
- linkType: hard
-
-"focus-visible@npm:^5.1.0":
- version: 5.2.0
- resolution: "focus-visible@npm:5.2.0"
- checksum: 876f646ef453680d3d34e9f9b23961527ffd5ccaed8690f423d4fbfa37ff023d98a490972bc1387850e37ec2e44958c81f6096ef95b67462e5c4b5404cf1dbb9
- languageName: node
- linkType: hard
-
-"fs-constants@npm:^1.0.0":
- version: 1.0.0
- resolution: "fs-constants@npm:1.0.0"
- checksum: 18f5b718371816155849475ac36c7d0b24d39a11d91348cfcb308b4494824413e03572c403c86d3a260e049465518c4f0d5bd00f0371cdfcad6d4f30a85b350d
- languageName: node
- linkType: hard
-
-"fs-minipass@npm:^2.0.0, fs-minipass@npm:^2.1.0":
- version: 2.1.0
- resolution: "fs-minipass@npm:2.1.0"
- dependencies:
- minipass: ^3.0.0
- checksum: 1b8d128dae2ac6cc94230cc5ead341ba3e0efaef82dab46a33d171c044caaa6ca001364178d42069b2809c35a1c3c35079a32107c770e9ffab3901b59af8c8b1
- languageName: node
- linkType: hard
-
-"fs.realpath@npm:^1.0.0":
- version: 1.0.0
- resolution: "fs.realpath@npm:1.0.0"
- checksum: 99ddea01a7e75aa276c250a04eedeffe5662bce66c65c07164ad6264f9de18fb21be9433ead460e54cff20e31721c811f4fb5d70591799df5f85dce6d6746fd0
- languageName: node
- linkType: hard
-
-"gauge@npm:^4.0.3":
- version: 4.0.4
- resolution: "gauge@npm:4.0.4"
- dependencies:
- aproba: ^1.0.3 || ^2.0.0
- color-support: ^1.1.3
- console-control-strings: ^1.1.0
- has-unicode: ^2.0.1
- signal-exit: ^3.0.7
- string-width: ^4.2.3
- strip-ansi: ^6.0.1
- wide-align: ^1.1.5
- checksum: 788b6bfe52f1dd8e263cda800c26ac0ca2ff6de0b6eee2fe0d9e3abf15e149b651bd27bf5226be10e6e3edb5c4e5d5985a5a1a98137e7a892f75eff76467ad2d
- languageName: node
- linkType: hard
-
-"gauge@npm:~2.7.3":
- version: 2.7.4
- resolution: "gauge@npm:2.7.4"
- dependencies:
- aproba: ^1.0.3
- console-control-strings: ^1.0.0
- has-unicode: ^2.0.0
- object-assign: ^4.1.0
- signal-exit: ^3.0.0
- string-width: ^1.0.1
- strip-ansi: ^3.0.1
- wide-align: ^1.1.0
- checksum: a89b53cee65579b46832e050b5f3a79a832cc422c190de79c6b8e2e15296ab92faddde6ddf2d376875cbba2b043efa99b9e1ed8124e7365f61b04e3cee9d40ee
- languageName: node
- linkType: hard
-
-"get-stream@npm:^3.0.0":
- version: 3.0.0
- resolution: "get-stream@npm:3.0.0"
- checksum: 36142f46005ed74ce3a45c55545ec4e7da8e243554179e345a786baf144e5c4a35fb7bdc49fadfa9f18bd08000589b6fe364abdadfc4e1eb0e1b9914a6bb9c56
- languageName: node
- linkType: hard
-
-"github-from-package@npm:0.0.0":
- version: 0.0.0
- resolution: "github-from-package@npm:0.0.0"
- checksum: 14e448192a35c1e42efee94c9d01a10f42fe790375891a24b25261246ce9336ab9df5d274585aedd4568f7922246c2a78b8a8cd2571bfe99c693a9718e7dd0e3
- languageName: node
- linkType: hard
-
-"github-slugger@npm:^1.4.0":
- version: 1.4.0
- resolution: "github-slugger@npm:1.4.0"
- checksum: 4f52e7a21f5c6a4c5328f01fe4fe13ae8881fea78bfe31f9e72c4038f97e3e70d52fb85aa7633a52c501dc2486874474d9abd22aa61cbe9b113099a495551c6b
- languageName: node
- linkType: hard
-
-"glob@npm:^7.1.3, glob@npm:^7.1.4":
- version: 7.2.0
- resolution: "glob@npm:7.2.0"
- dependencies:
- fs.realpath: ^1.0.0
- inflight: ^1.0.4
- inherits: 2
- minimatch: ^3.0.4
- once: ^1.3.0
- path-is-absolute: ^1.0.0
- checksum: 78a8ea942331f08ed2e055cb5b9e40fe6f46f579d7fd3d694f3412fe5db23223d29b7fee1575440202e9a7ff9a72ab106a39fee39934c7bedafe5e5f8ae20134
- languageName: node
- linkType: hard
-
-"glob@npm:^8.0.1":
- version: 8.0.1
- resolution: "glob@npm:8.0.1"
- dependencies:
- fs.realpath: ^1.0.0
- inflight: ^1.0.4
- inherits: 2
- minimatch: ^5.0.1
- once: ^1.3.0
- path-is-absolute: ^1.0.0
- checksum: 7ac782f3ef1c08005884447479e68ceb0ad56997eb2003e1e9aefae71bad3cb48eb7c49190d3d6736f2ffcd8af4985d53a46831b3d5e0052cc5756822a38b61a
- languageName: node
- linkType: hard
-
-"graceful-fs@npm:^4.2.6":
- version: 4.2.10
- resolution: "graceful-fs@npm:4.2.10"
- checksum: 3f109d70ae123951905d85032ebeae3c2a5a7a997430df00ea30df0e3a6c60cf6689b109654d6fdacd28810a053348c4d14642da1d075049e6be1ba5216218da
- languageName: node
- linkType: hard
-
-"gray-matter@npm:^4.0.3":
- version: 4.0.3
- resolution: "gray-matter@npm:4.0.3"
- dependencies:
- js-yaml: ^3.13.1
- kind-of: ^6.0.2
- section-matter: ^1.0.0
- strip-bom-string: ^1.0.0
- checksum: 37717bd424344487d655392251ce8d8878a1275ee087003e61208fba3bfd59cbb73a85b2159abf742ae95e23db04964813fdc33ae18b074208428b2528205222
- languageName: node
- linkType: hard
-
-"has-flag@npm:^2.0.0":
- version: 2.0.0
- resolution: "has-flag@npm:2.0.0"
- checksum: 7d060d142ef6740c79991cb99afe5962b267e6e95538bf8b607026b9b1e7451288927bc8e7b4a9484a8b99935c0af023070f91ee49faef791ecd401dc58b2e8d
- languageName: node
- linkType: hard
-
-"has-unicode@npm:^2.0.0, has-unicode@npm:^2.0.1":
- version: 2.0.1
- resolution: "has-unicode@npm:2.0.1"
- checksum: 1eab07a7436512db0be40a710b29b5dc21fa04880b7f63c9980b706683127e3c1b57cb80ea96d47991bdae2dfe479604f6a1ba410106ee1046a41d1bd0814400
- languageName: node
- linkType: hard
-
-"hast-util-to-estree@npm:^2.0.0":
- version: 2.0.2
- resolution: "hast-util-to-estree@npm:2.0.2"
- dependencies:
- "@types/estree-jsx": ^0.0.1
- "@types/hast": ^2.0.0
- "@types/unist": ^2.0.0
- comma-separated-tokens: ^2.0.0
- estree-util-attach-comments: ^2.0.0
- estree-util-is-identifier-name: ^2.0.0
- hast-util-whitespace: ^2.0.0
- mdast-util-mdx-expression: ^1.0.0
- mdast-util-mdxjs-esm: ^1.0.0
- property-information: ^6.0.0
- space-separated-tokens: ^2.0.0
- style-to-object: ^0.3.0
- unist-util-position: ^4.0.0
- zwitch: ^2.0.0
- checksum: 7ac9884c35c0a1dc96c6237f841e0bdd4410746d0a9ab7ddfaaed9cf36adb3186633782b50e45c57bc8825640c5e1db070fd5eeca5061f76fc19bf991df8a520
- languageName: node
- linkType: hard
-
-"hast-util-whitespace@npm:^2.0.0":
- version: 2.0.0
- resolution: "hast-util-whitespace@npm:2.0.0"
- checksum: abeb5386075bfb0facfce89eed0e13d2cb27a0910cec8fd234b48821a1538387a73fa7f458842e8c404148dc69434acbc10488d75b02817e460652c2c894c024
- languageName: node
- linkType: hard
-
-"http-cache-semantics@npm:^4.1.0":
- version: 4.1.0
- resolution: "http-cache-semantics@npm:4.1.0"
- checksum: 974de94a81c5474be07f269f9fd8383e92ebb5a448208223bfb39e172a9dbc26feff250192ecc23b9593b3f92098e010406b0f24bd4d588d631f80214648ed42
- languageName: node
- linkType: hard
-
-"http-proxy-agent@npm:^5.0.0":
- version: 5.0.0
- resolution: "http-proxy-agent@npm:5.0.0"
- dependencies:
- "@tootallnate/once": 2
- agent-base: 6
- debug: 4
- checksum: e2ee1ff1656a131953839b2a19cd1f3a52d97c25ba87bd2559af6ae87114abf60971e498021f9b73f9fd78aea8876d1fb0d4656aac8a03c6caa9fc175f22b786
- languageName: node
- linkType: hard
-
-"https-proxy-agent@npm:^5.0.0":
- version: 5.0.1
- resolution: "https-proxy-agent@npm:5.0.1"
- dependencies:
- agent-base: 6
- debug: 4
- checksum: 571fccdf38184f05943e12d37d6ce38197becdd69e58d03f43637f7fa1269cf303a7d228aa27e5b27bbd3af8f09fd938e1c91dcfefff2df7ba77c20ed8dfc765
- languageName: node
- linkType: hard
-
-"humanize-ms@npm:^1.2.1":
- version: 1.2.1
- resolution: "humanize-ms@npm:1.2.1"
- dependencies:
- ms: ^2.0.0
- checksum: 9c7a74a2827f9294c009266c82031030eae811ca87b0da3dceb8d6071b9bde22c9f3daef0469c3c533cc67a97d8a167cd9fc0389350e5f415f61a79b171ded16
- languageName: node
- linkType: hard
-
-"iconv-lite@npm:^0.6.2":
- version: 0.6.3
- resolution: "iconv-lite@npm:0.6.3"
- dependencies:
- safer-buffer: ">= 2.1.2 < 3.0.0"
- checksum: 3f60d47a5c8fc3313317edfd29a00a692cc87a19cac0159e2ce711d0ebc9019064108323b5e493625e25594f11c6236647d8e256fbe7a58f4a3b33b89e6d30bf
- languageName: node
- linkType: hard
-
-"ieee754@npm:^1.1.13":
- version: 1.2.1
- resolution: "ieee754@npm:1.2.1"
- checksum: 5144c0c9815e54ada181d80a0b810221a253562422e7c6c3a60b1901154184f49326ec239d618c416c1c5945a2e197107aee8d986a3dd836b53dffefd99b5e7e
- languageName: node
- linkType: hard
-
-"imurmurhash@npm:^0.1.4":
- version: 0.1.4
- resolution: "imurmurhash@npm:0.1.4"
- checksum: 7cae75c8cd9a50f57dadd77482359f659eaebac0319dd9368bcd1714f55e65badd6929ca58569da2b6494ef13fdd5598cd700b1eba23f8b79c5f19d195a3ecf7
- languageName: node
- linkType: hard
-
-"indent-string@npm:^4.0.0":
- version: 4.0.0
- resolution: "indent-string@npm:4.0.0"
- checksum: 824cfb9929d031dabf059bebfe08cf3137365e112019086ed3dcff6a0a7b698cb80cf67ccccde0e25b9e2d7527aa6cc1fed1ac490c752162496caba3e6699612
- languageName: node
- linkType: hard
-
-"infer-owner@npm:^1.0.4":
- version: 1.0.4
- resolution: "infer-owner@npm:1.0.4"
- checksum: 181e732764e4a0611576466b4b87dac338972b839920b2a8cde43642e4ed6bd54dc1fb0b40874728f2a2df9a1b097b8ff83b56d5f8f8e3927f837fdcb47d8a89
- languageName: node
- linkType: hard
-
-"inflight@npm:^1.0.4":
- version: 1.0.6
- resolution: "inflight@npm:1.0.6"
- dependencies:
- once: ^1.3.0
- wrappy: 1
- checksum: f4f76aa072ce19fae87ce1ef7d221e709afb59d445e05d47fba710e85470923a75de35bfae47da6de1b18afc3ce83d70facf44cfb0aff89f0a3f45c0a0244dfd
- languageName: node
- linkType: hard
-
-"inherits@npm:2, inherits@npm:^2.0.3, inherits@npm:^2.0.4, inherits@npm:~2.0.3":
- version: 2.0.4
- resolution: "inherits@npm:2.0.4"
- checksum: 4a48a733847879d6cf6691860a6b1e3f0f4754176e4d71494c41f3475553768b10f84b5ce1d40fbd0e34e6bfbb864ee35858ad4dd2cf31e02fc4a154b724d7f1
- languageName: node
- linkType: hard
-
-"ini@npm:~1.3.0":
- version: 1.3.8
- resolution: "ini@npm:1.3.8"
- checksum: dfd98b0ca3a4fc1e323e38a6c8eb8936e31a97a918d3b377649ea15bdb15d481207a0dda1021efbd86b464cae29a0d33c1d7dcaf6c5672bee17fa849bc50a1b3
- languageName: node
- linkType: hard
-
-"inline-style-parser@npm:0.1.1":
- version: 0.1.1
- resolution: "inline-style-parser@npm:0.1.1"
- checksum: 5d545056a3e1f2bf864c928a886a0e1656a3517127d36917b973de581bd54adc91b4bf1febcb0da054f204b4934763f1a4e09308b4d55002327cf1d48ac5d966
- languageName: node
- linkType: hard
-
-"intersection-observer@npm:^0.12.0":
- version: 0.12.0
- resolution: "intersection-observer@npm:0.12.0"
- checksum: 96d2f3ea4995b7b429b79646467c975230cfbe3ede7fb08d0c022cfe6ee0c89dfa98aa4377e8b5f7bee880322eb118e6c0275607a53043f9c50921da8363c1e8
- languageName: node
- linkType: hard
-
-"ip@npm:^1.1.5":
- version: 1.1.5
- resolution: "ip@npm:1.1.5"
- checksum: 30133981f082a060a32644f6a7746e9ba7ac9e2bc07ecc8bbdda3ee8ca9bec1190724c390e45a1ee7695e7edfd2a8f7dda2c104ec5f7ac5068c00648504c7e5a
- languageName: node
- linkType: hard
-
-"is-alphabetical@npm:^2.0.0":
- version: 2.0.1
- resolution: "is-alphabetical@npm:2.0.1"
- checksum: 56207db8d9de0850f0cd30f4966bf731eb82cedfe496cbc2e97e7c3bacaf66fc54a972d2d08c0d93bb679cb84976a05d24c5ad63de56fabbfc60aadae312edaa
- languageName: node
- linkType: hard
-
-"is-alphanumerical@npm:^2.0.0":
- version: 2.0.1
- resolution: "is-alphanumerical@npm:2.0.1"
- dependencies:
- is-alphabetical: ^2.0.0
- is-decimal: ^2.0.0
- checksum: 87acc068008d4c9c4e9f5bd5e251041d42e7a50995c77b1499cf6ed248f971aadeddb11f239cabf09f7975ee58cac7a48ffc170b7890076d8d227b24a68663c9
- languageName: node
- linkType: hard
-
-"is-arrayish@npm:^0.3.1":
- version: 0.3.2
- resolution: "is-arrayish@npm:0.3.2"
- checksum: 977e64f54d91c8f169b59afcd80ff19227e9f5c791fa28fa2e5bce355cbaf6c2c356711b734656e80c9dd4a854dd7efcf7894402f1031dfc5de5d620775b4d5f
- languageName: node
- linkType: hard
-
-"is-buffer@npm:^2.0.0":
- version: 2.0.5
- resolution: "is-buffer@npm:2.0.5"
- checksum: 764c9ad8b523a9f5a32af29bdf772b08eb48c04d2ad0a7240916ac2688c983bf5f8504bf25b35e66240edeb9d9085461f9b5dae1f3d2861c6b06a65fe983de42
- languageName: node
- linkType: hard
-
-"is-decimal@npm:^2.0.0":
- version: 2.0.1
- resolution: "is-decimal@npm:2.0.1"
- checksum: 97132de7acdce77caa7b797632970a2ecd649a88e715db0e4dbc00ab0708b5e7574ba5903962c860cd4894a14fd12b100c0c4ac8aed445cf6f55c6cf747a4158
- languageName: node
- linkType: hard
-
-"is-extendable@npm:^0.1.0":
- version: 0.1.1
- resolution: "is-extendable@npm:0.1.1"
- checksum: 3875571d20a7563772ecc7a5f36cb03167e9be31ad259041b4a8f73f33f885441f778cee1f1fe0085eb4bc71679b9d8c923690003a36a6a5fdf8023e6e3f0672
- languageName: node
- linkType: hard
-
-"is-fullwidth-code-point@npm:^1.0.0":
- version: 1.0.0
- resolution: "is-fullwidth-code-point@npm:1.0.0"
- dependencies:
- number-is-nan: ^1.0.0
- checksum: 4d46a7465a66a8aebcc5340d3b63a56602133874af576a9ca42c6f0f4bd787a743605771c5f246db77da96605fefeffb65fc1dbe862dcc7328f4b4d03edf5a57
- languageName: node
- linkType: hard
-
-"is-fullwidth-code-point@npm:^3.0.0":
- version: 3.0.0
- resolution: "is-fullwidth-code-point@npm:3.0.0"
- checksum: 44a30c29457c7fb8f00297bce733f0a64cd22eca270f83e58c105e0d015e45c019491a4ab2faef91ab51d4738c670daff901c799f6a700e27f7314029e99e348
- languageName: node
- linkType: hard
-
-"is-hexadecimal@npm:^2.0.0":
- version: 2.0.1
- resolution: "is-hexadecimal@npm:2.0.1"
- checksum: 66a2ea85994c622858f063f23eda506db29d92b52580709eb6f4c19550552d4dcf3fb81952e52f7cf972097237959e00adc7bb8c9400cd12886e15bf06145321
- languageName: node
- linkType: hard
-
-"is-lambda@npm:^1.0.1":
- version: 1.0.1
- resolution: "is-lambda@npm:1.0.1"
- checksum: 93a32f01940220532e5948538699ad610d5924ac86093fcee83022252b363eb0cc99ba53ab084a04e4fb62bf7b5731f55496257a4c38adf87af9c4d352c71c35
- languageName: node
- linkType: hard
-
-"is-plain-obj@npm:^4.0.0":
- version: 4.0.0
- resolution: "is-plain-obj@npm:4.0.0"
- checksum: a6bb55a90636345a64c6153b74d85a9b6440f9975f4dcc57eed596c280b7ba228c71c406355a3147ed0488330d2743d5756e052c9492b1aa4f7dcd281f08c4b6
- languageName: node
- linkType: hard
-
-"is-reference@npm:^3.0.0":
- version: 3.0.0
- resolution: "is-reference@npm:3.0.0"
- dependencies:
- "@types/estree": "*"
- checksum: 408bb3442ff5f90a9740bf578e8fa2863f68bc07ee99b92079a358a34af58341dc7014b054e8cc51a3da5d1ab83f635b6ee1ce2982db7899a128d7a05173898f
- languageName: node
- linkType: hard
-
-"is-stream@npm:^1.1.0":
- version: 1.1.0
- resolution: "is-stream@npm:1.1.0"
- checksum: 063c6bec9d5647aa6d42108d4c59723d2bd4ae42135a2d4db6eadbd49b7ea05b750fd69d279e5c7c45cf9da753ad2c00d8978be354d65aa9f6bb434969c6a2ae
- languageName: node
- linkType: hard
-
-"isarray@npm:~1.0.0":
- version: 1.0.0
- resolution: "isarray@npm:1.0.0"
- checksum: f032df8e02dce8ec565cf2eb605ea939bdccea528dbcf565cdf92bfa2da9110461159d86a537388ef1acef8815a330642d7885b29010e8f7eac967c9993b65ab
- languageName: node
- linkType: hard
-
-"isexe@npm:^2.0.0":
- version: 2.0.0
- resolution: "isexe@npm:2.0.0"
- checksum: 26bf6c5480dda5161c820c5b5c751ae1e766c587b1f951ea3fcfc973bafb7831ae5b54a31a69bd670220e42e99ec154475025a468eae58ea262f813fdc8d1c62
- languageName: node
- linkType: hard
-
-"js-tokens@npm:^3.0.0 || ^4.0.0":
- version: 4.0.0
- resolution: "js-tokens@npm:4.0.0"
- checksum: 8a95213a5a77deb6cbe94d86340e8d9ace2b93bc367790b260101d2f36a2eaf4e4e22d9fa9cf459b38af3a32fb4190e638024cf82ec95ef708680e405ea7cc78
- languageName: node
- linkType: hard
-
-"js-yaml@npm:^3.13.1":
- version: 3.14.1
- resolution: "js-yaml@npm:3.14.1"
- dependencies:
- argparse: ^1.0.7
- esprima: ^4.0.0
- bin:
- js-yaml: bin/js-yaml.js
- checksum: bef146085f472d44dee30ec34e5cf36bf89164f5d585435a3d3da89e52622dff0b188a580e4ad091c3341889e14cb88cac6e4deb16dc5b1e9623bb0601fc255c
- languageName: node
- linkType: hard
-
-"jsonc-parser@npm:^3.0.0":
- version: 3.0.0
- resolution: "jsonc-parser@npm:3.0.0"
- checksum: 1df2326f1f9688de30c70ff19c5b2a83ba3b89a1036160da79821d1361090775e9db502dc57a67c11b56e1186fc1ed70b887f25c5febf9a3ec4f91435836c99d
- languageName: node
- linkType: hard
-
-"kind-of@npm:^6.0.0, kind-of@npm:^6.0.2":
- version: 6.0.3
- resolution: "kind-of@npm:6.0.3"
- checksum: 3ab01e7b1d440b22fe4c31f23d8d38b4d9b91d9f291df683476576493d5dfd2e03848a8b05813dd0c3f0e835bc63f433007ddeceb71f05cb25c45ae1b19c6d3b
- languageName: node
- linkType: hard
-
-"kleur@npm:^4.0.3":
- version: 4.1.4
- resolution: "kleur@npm:4.1.4"
- checksum: 7f6db36e378045dec14acd3cbf0b1e59130c09e984ee8b8ce56dd2d2257cfff90389c1e8f8b19bd09dd5d241080566a814b4ccd99fdcef91f59ef93ec33c8a44
- languageName: node
- linkType: hard
-
-"longest-streak@npm:^3.0.0":
- version: 3.0.1
- resolution: "longest-streak@npm:3.0.1"
- checksum: 3b59c4c04ce3c70f137e339c10d574026fa3a711c45dc0e69a63a2c0ac981e57f837e1d5b64b991eee5234c4fa46fa10886a20626fb739ed3b04b77bcf6d14a8
- languageName: node
- linkType: hard
-
-"loose-envify@npm:^1.1.0":
- version: 1.4.0
- resolution: "loose-envify@npm:1.4.0"
- dependencies:
- js-tokens: ^3.0.0 || ^4.0.0
- bin:
- loose-envify: cli.js
- checksum: 6517e24e0cad87ec9888f500c5b5947032cdfe6ef65e1c1936a0c48a524b81e65542c9c3edc91c97d5bddc806ee2a985dbc79be89215d613b1de5db6d1cfe6f4
- languageName: node
- linkType: hard
-
-"lru-cache@npm:^4.0.1":
- version: 4.1.5
- resolution: "lru-cache@npm:4.1.5"
- dependencies:
- pseudomap: ^1.0.2
- yallist: ^2.1.2
- checksum: 4bb4b58a36cd7dc4dcec74cbe6a8f766a38b7426f1ff59d4cf7d82a2aa9b9565cd1cb98f6ff60ce5cd174524868d7bc9b7b1c294371851356066ca9ac4cf135a
- languageName: node
- linkType: hard
-
-"lru-cache@npm:^6.0.0":
- version: 6.0.0
- resolution: "lru-cache@npm:6.0.0"
- dependencies:
- yallist: ^4.0.0
- checksum: f97f499f898f23e4585742138a22f22526254fdba6d75d41a1c2526b3b6cc5747ef59c5612ba7375f42aca4f8461950e925ba08c991ead0651b4918b7c978297
- languageName: node
- linkType: hard
-
-"lru-cache@npm:^7.7.1":
- version: 7.8.1
- resolution: "lru-cache@npm:7.8.1"
- checksum: 31ea67388c9774300331d70f4affd5a433869bcf0fae5405f967d19d7b447930b713b0566a2e95362c9082034a8b496f3671ccf8f0c061d8e8048412663f9432
- languageName: node
- linkType: hard
-
-"make-fetch-happen@npm:^10.0.3":
- version: 10.1.2
- resolution: "make-fetch-happen@npm:10.1.2"
- dependencies:
- agentkeepalive: ^4.2.1
- cacache: ^16.0.2
- http-cache-semantics: ^4.1.0
- http-proxy-agent: ^5.0.0
- https-proxy-agent: ^5.0.0
- is-lambda: ^1.0.1
- lru-cache: ^7.7.1
- minipass: ^3.1.6
- minipass-collect: ^1.0.2
- minipass-fetch: ^2.0.3
- minipass-flush: ^1.0.5
- minipass-pipeline: ^1.2.4
- negotiator: ^0.6.3
- promise-retry: ^2.0.1
- socks-proxy-agent: ^6.1.1
- ssri: ^9.0.0
- checksum: 42825d119a7e4f5b1a8e7048a86d328cd36bb1ff875d155ce7079d9a0afdd310c198fb310096af358cfa9ecdf643cecf960380686792457dccb36e17efe89eb0
- languageName: node
- linkType: hard
-
-"markdown-extensions@npm:^1.0.0":
- version: 1.1.1
- resolution: "markdown-extensions@npm:1.1.1"
- checksum: 8a6dd128be1c524049ea6a41a9193715c2835d3d706af4b8b714ff2043a82786dbcd4a8f1fa9ddd28facbc444426c97515aef2d1f3dd11d5e2d63749ba577b1e
- languageName: node
- linkType: hard
-
-"markdown-table@npm:^3.0.0":
- version: 3.0.2
- resolution: "markdown-table@npm:3.0.2"
- checksum: 7bd9eb54e7ac15165f79730ac6357b8194294552f727bcb34e29f3f1b72823c1220cb61153ebf0962c8faac4d25e49c62e8e9471cd6352a67cdca99928ecade1
- languageName: node
- linkType: hard
-
-"markdown-to-jsx@npm:^7.1.7":
- version: 7.1.7
- resolution: "markdown-to-jsx@npm:7.1.7"
- peerDependencies:
- react: ">= 0.14.0"
- checksum: b2c0ea7d0988fad0c709989b3b1b3a5600d1e80b60266f9618386f7afead4a6b5eba9ee1a3943df6a3dcb1599ea89e58467d1b17b6dd3af3c60984c60a85d06d
- languageName: node
- linkType: hard
-
-"match-sorter@npm:^4.2.0":
- version: 4.2.1
- resolution: "match-sorter@npm:4.2.1"
- dependencies:
- "@babel/runtime": ^7.10.5
- remove-accents: 0.4.2
- checksum: 7f3cd8f84cdb4567b7a81f66a095e418044f318f41b6c8a1640730c99e370af9e5054f5a1ed2dfa1287a23101d75a105da63e4d95e8ac2f7061a8f8b32367c7d
- languageName: node
- linkType: hard
-
-"mdast-util-definitions@npm:^5.0.0":
- version: 5.1.0
- resolution: "mdast-util-definitions@npm:5.1.0"
- dependencies:
- "@types/mdast": ^3.0.0
- "@types/unist": ^2.0.0
- unist-util-visit: ^3.0.0
- checksum: a5237dc5925d965ec5f4c237b8d2fbc4728c18402f4f0cea0c947fb6241d7f2c7264b8bd5000363800388003d1474d57f5d5d29e0605a504bd186e59ddf8906a
- languageName: node
- linkType: hard
-
-"mdast-util-find-and-replace@npm:^2.0.0":
- version: 2.1.0
- resolution: "mdast-util-find-and-replace@npm:2.1.0"
- dependencies:
- escape-string-regexp: ^5.0.0
- unist-util-is: ^5.0.0
- unist-util-visit-parents: ^4.0.0
- checksum: 2df955899edb71fdd9f09a639572b281ec6e9be1533469cdbd7f1f16232a576adbd423f914182684f9516897143a5a797c45182848c0f83807d2c30a582a3c03
- languageName: node
- linkType: hard
-
-"mdast-util-from-markdown@npm:^1.0.0":
- version: 1.2.0
- resolution: "mdast-util-from-markdown@npm:1.2.0"
- dependencies:
- "@types/mdast": ^3.0.0
- "@types/unist": ^2.0.0
- decode-named-character-reference: ^1.0.0
- mdast-util-to-string: ^3.1.0
- micromark: ^3.0.0
- micromark-util-decode-numeric-character-reference: ^1.0.0
- micromark-util-decode-string: ^1.0.0
- micromark-util-normalize-identifier: ^1.0.0
- micromark-util-symbol: ^1.0.0
- micromark-util-types: ^1.0.0
- unist-util-stringify-position: ^3.0.0
- uvu: ^0.5.0
- checksum: fadc3521a3d95f4adbadad462ca27c28b3bfe08740ae158dc0c4a22329bf5593254d98b8fd4024ecad8c47c77ec275454dfacfb907ff1b98ff8f5de25c716d40
- languageName: node
- linkType: hard
-
-"mdast-util-gfm-autolink-literal@npm:^1.0.0":
- version: 1.0.2
- resolution: "mdast-util-gfm-autolink-literal@npm:1.0.2"
- dependencies:
- "@types/mdast": ^3.0.0
- ccount: ^2.0.0
- mdast-util-find-and-replace: ^2.0.0
- micromark-util-character: ^1.0.0
- checksum: 75e12f21ec24552ba33725f69a06cd703e5586d2296ca9d180927b2293c036e1bd39108adba83e8cbbefcc45ffd8821fb561b4c107684ed87bd9e5e286ba03bd
- languageName: node
- linkType: hard
-
-"mdast-util-gfm-footnote@npm:^1.0.0":
- version: 1.0.1
- resolution: "mdast-util-gfm-footnote@npm:1.0.1"
- dependencies:
- "@types/mdast": ^3.0.0
- mdast-util-to-markdown: ^1.3.0
- micromark-util-normalize-identifier: ^1.0.0
- checksum: 4caf69058b438c9e34004acfb1d2b20d58306898d760b889f73d27ed5702cd940be9fcb2a08f6e58b8d9d8e2b1c886c549cd7d23b659da5fb2ed87a22f44c13c
- languageName: node
- linkType: hard
-
-"mdast-util-gfm-strikethrough@npm:^1.0.0":
- version: 1.0.1
- resolution: "mdast-util-gfm-strikethrough@npm:1.0.1"
- dependencies:
- "@types/mdast": ^3.0.0
- mdast-util-to-markdown: ^1.3.0
- checksum: ce81222ab4c130516278f8db57be23bd529e9f8c30bb16ab5b2bf294c0dfd57f2dc7a010deede65f349a8d37be73f90dbaecd962f76f70befa8f43bcd32fe5b9
- languageName: node
- linkType: hard
-
-"mdast-util-gfm-table@npm:^1.0.0":
- version: 1.0.4
- resolution: "mdast-util-gfm-table@npm:1.0.4"
- dependencies:
- markdown-table: ^3.0.0
- mdast-util-from-markdown: ^1.0.0
- mdast-util-to-markdown: ^1.3.0
- checksum: 56d9f0376b3da3e4cc0f5047d62a4eefa765934a1084822bc7804e7cf93c458c4bff2a917fa4e89c917287431a7284b656bf23ef89553e943d7f853ffefae693
- languageName: node
- linkType: hard
-
-"mdast-util-gfm-task-list-item@npm:^1.0.0":
- version: 1.0.1
- resolution: "mdast-util-gfm-task-list-item@npm:1.0.1"
- dependencies:
- "@types/mdast": ^3.0.0
- mdast-util-to-markdown: ^1.3.0
- checksum: 9bb0f162532f8e11e571802ed19301572479fe9507652c8fb3f648279bbde3baa9f6377d9492dbba61eedd96755f8aff9c7c259287875544fb751907d79da69e
- languageName: node
- linkType: hard
-
-"mdast-util-gfm@npm:^2.0.0":
- version: 2.0.1
- resolution: "mdast-util-gfm@npm:2.0.1"
- dependencies:
- mdast-util-from-markdown: ^1.0.0
- mdast-util-gfm-autolink-literal: ^1.0.0
- mdast-util-gfm-footnote: ^1.0.0
- mdast-util-gfm-strikethrough: ^1.0.0
- mdast-util-gfm-table: ^1.0.0
- mdast-util-gfm-task-list-item: ^1.0.0
- mdast-util-to-markdown: ^1.0.0
- checksum: 8b39e6694521094ae28d12cbeff074ef3ec3f7f7ec59fbddd4e8a45a275e092c6ba6ecee4c720938eb3ee072ebd41d743b08cc0ab9171612a5aeddc1e78ae882
- languageName: node
- linkType: hard
-
-"mdast-util-mdx-expression@npm:^1.0.0":
- version: 1.2.0
- resolution: "mdast-util-mdx-expression@npm:1.2.0"
- dependencies:
- "@types/estree-jsx": ^0.0.1
- "@types/hast": ^2.0.0
- "@types/mdast": ^3.0.0
- mdast-util-from-markdown: ^1.0.0
- mdast-util-to-markdown: ^1.0.0
- checksum: 375342525db8c4e3060cf9a2ddcc2f50ac2c0878da63557695165f593b7a2e4b2d6d398f05f638a6f7ef36c2c3bdbd4c64aab85ef35d990dae17303d55635cfd
- languageName: node
- linkType: hard
-
-"mdast-util-mdx-jsx@npm:^2.0.0":
- version: 2.0.1
- resolution: "mdast-util-mdx-jsx@npm:2.0.1"
- dependencies:
- "@types/estree-jsx": ^0.0.1
- "@types/hast": ^2.0.0
- "@types/mdast": ^3.0.0
- ccount: ^2.0.0
- mdast-util-to-markdown: ^1.3.0
- parse-entities: ^4.0.0
- stringify-entities: ^4.0.0
- unist-util-remove-position: ^4.0.0
- unist-util-stringify-position: ^3.0.0
- vfile-message: ^3.0.0
- checksum: 19825928595153eb7081275d15b40965960a2b52077913dc37469e891d91a8166a6c837646ce5b90ec1903fbfd51b276d570d1e2c89f00f18c0bfe286f1da681
- languageName: node
- linkType: hard
-
-"mdast-util-mdx@npm:^2.0.0":
- version: 2.0.0
- resolution: "mdast-util-mdx@npm:2.0.0"
- dependencies:
- mdast-util-mdx-expression: ^1.0.0
- mdast-util-mdx-jsx: ^2.0.0
- mdast-util-mdxjs-esm: ^1.0.0
- checksum: 4744bfbbd337c2a99a3ef339673c549a670d6496e0d3a6d747d2451e112d6fef7d27613549b0bd62a5f92ea7919e3bacd78c731e8a3d80552a09b80896554cf6
- languageName: node
- linkType: hard
-
-"mdast-util-mdxjs-esm@npm:^1.0.0":
- version: 1.2.0
- resolution: "mdast-util-mdxjs-esm@npm:1.2.0"
- dependencies:
- "@types/estree-jsx": ^0.0.1
- "@types/hast": ^2.0.0
- "@types/mdast": ^3.0.0
- mdast-util-from-markdown: ^1.0.0
- mdast-util-to-markdown: ^1.0.0
- checksum: be8a9bc77bc66b2a7dd9057974b30e7e8e0a37caee467ee7f22451da25e4aeb58eec78b93132672449f8714bfb5c60dc58b3822956bdc8fffbc2ff476a1e4450
- languageName: node
- linkType: hard
-
-"mdast-util-to-hast@npm:^12.1.0":
- version: 12.1.1
- resolution: "mdast-util-to-hast@npm:12.1.1"
- dependencies:
- "@types/hast": ^2.0.0
- "@types/mdast": ^3.0.0
- "@types/mdurl": ^1.0.0
- mdast-util-definitions: ^5.0.0
- mdurl: ^1.0.0
- micromark-util-sanitize-uri: ^1.0.0
- unist-builder: ^3.0.0
- unist-util-generated: ^2.0.0
- unist-util-position: ^4.0.0
- unist-util-visit: ^4.0.0
- checksum: 4c5a73e0463493d5ab2c033d42f8daead24d0808969bf21c3a720786784a347cedc1d3ae26b37737dbe3ea0839bc130bf7e20f3bc02e2387e6e7b0a5f94bafe4
- languageName: node
- linkType: hard
-
-"mdast-util-to-markdown@npm:^1.0.0, mdast-util-to-markdown@npm:^1.3.0":
- version: 1.3.0
- resolution: "mdast-util-to-markdown@npm:1.3.0"
- dependencies:
- "@types/mdast": ^3.0.0
- "@types/unist": ^2.0.0
- longest-streak: ^3.0.0
- mdast-util-to-string: ^3.0.0
- micromark-util-decode-string: ^1.0.0
- unist-util-visit: ^4.0.0
- zwitch: ^2.0.0
- checksum: 0ea4fc11b7a49b15d400d50044429c45222cb9bc583553288c7c54704d051f25049233817129ba56a6f581f1e20916e5c540870a80987318747a95b44a36ba3e
- languageName: node
- linkType: hard
-
-"mdast-util-to-string@npm:^3.0.0, mdast-util-to-string@npm:^3.1.0":
- version: 3.1.0
- resolution: "mdast-util-to-string@npm:3.1.0"
- checksum: f42ddd4e22f2215a75715b92ea6e3149c4ba356e7781d7b94fc86ded1c79cec3f986afeecef3a4a80068c9b224a6520099783a12146b957de24f020a3e47dd29
- languageName: node
- linkType: hard
-
-"mdurl@npm:^1.0.0":
- version: 1.0.1
- resolution: "mdurl@npm:1.0.1"
- checksum: 71731ecba943926bfbf9f9b51e28b5945f9411c4eda80894221b47cc105afa43ba2da820732b436f0798fd3edbbffcd1fc1415843c41a87fea08a41cc1e3d02b
- languageName: node
- linkType: hard
-
-"micromark-core-commonmark@npm:^1.0.0, micromark-core-commonmark@npm:^1.0.1":
- version: 1.0.6
- resolution: "micromark-core-commonmark@npm:1.0.6"
- dependencies:
- decode-named-character-reference: ^1.0.0
- micromark-factory-destination: ^1.0.0
- micromark-factory-label: ^1.0.0
- micromark-factory-space: ^1.0.0
- micromark-factory-title: ^1.0.0
- micromark-factory-whitespace: ^1.0.0
- micromark-util-character: ^1.0.0
- micromark-util-chunked: ^1.0.0
- micromark-util-classify-character: ^1.0.0
- micromark-util-html-tag-name: ^1.0.0
- micromark-util-normalize-identifier: ^1.0.0
- micromark-util-resolve-all: ^1.0.0
- micromark-util-subtokenize: ^1.0.0
- micromark-util-symbol: ^1.0.0
- micromark-util-types: ^1.0.1
- uvu: ^0.5.0
- checksum: 4b483c46077f696ed310f6d709bb9547434c218ceb5c1220fde1707175f6f68b44da15ab8668f9c801e1a123210071e3af883a7d1215122c913fd626f122bfc2
- languageName: node
- linkType: hard
-
-"micromark-extension-gfm-autolink-literal@npm:^1.0.0":
- version: 1.0.3
- resolution: "micromark-extension-gfm-autolink-literal@npm:1.0.3"
- dependencies:
- micromark-util-character: ^1.0.0
- micromark-util-sanitize-uri: ^1.0.0
- micromark-util-symbol: ^1.0.0
- micromark-util-types: ^1.0.0
- uvu: ^0.5.0
- checksum: bb181972ac346ca73ca1ab0b80b80c9d6509ed149799d2217d5442670f499c38a94edff73d32fa52b390d89640974cfbd7f29e4ad7d599581d5e1cabcae636a2
- languageName: node
- linkType: hard
-
-"micromark-extension-gfm-footnote@npm:^1.0.0":
- version: 1.0.4
- resolution: "micromark-extension-gfm-footnote@npm:1.0.4"
- dependencies:
- micromark-core-commonmark: ^1.0.0
- micromark-factory-space: ^1.0.0
- micromark-util-character: ^1.0.0
- micromark-util-normalize-identifier: ^1.0.0
- micromark-util-sanitize-uri: ^1.0.0
- micromark-util-symbol: ^1.0.0
- micromark-util-types: ^1.0.0
- uvu: ^0.5.0
- checksum: 8daa203f5cf753338d5ecdbaae6b3ab6319d34b6013b90ea6860bed299418cecf86e69e48dabe42562e334760c738c77c5acdb47e75ae26f5f01f02f3bf0952d
- languageName: node
- linkType: hard
-
-"micromark-extension-gfm-strikethrough@npm:^1.0.0":
- version: 1.0.4
- resolution: "micromark-extension-gfm-strikethrough@npm:1.0.4"
- dependencies:
- micromark-util-chunked: ^1.0.0
- micromark-util-classify-character: ^1.0.0
- micromark-util-resolve-all: ^1.0.0
- micromark-util-symbol: ^1.0.0
- micromark-util-types: ^1.0.0
- uvu: ^0.5.0
- checksum: f43d316b85fe93df1711cdcdc99a5320b941239349234bd262fc708cb67ad47bdfb41d1a7ebe2a5829816b0e9d3107380a5c1e558cb536a75354cbe4857823ba
- languageName: node
- linkType: hard
-
-"micromark-extension-gfm-table@npm:^1.0.0":
- version: 1.0.5
- resolution: "micromark-extension-gfm-table@npm:1.0.5"
- dependencies:
- micromark-factory-space: ^1.0.0
- micromark-util-character: ^1.0.0
- micromark-util-symbol: ^1.0.0
- micromark-util-types: ^1.0.0
- uvu: ^0.5.0
- checksum: f0aab3b4333cc24b1534b08dc4cce986dd606df8b7ed913e5a1de9fe2d3ae67b2435663c0bc271b528874af4928e580e1ad540ea9117d7f2d74edb28859c97ef
- languageName: node
- linkType: hard
-
-"micromark-extension-gfm-tagfilter@npm:^1.0.0":
- version: 1.0.1
- resolution: "micromark-extension-gfm-tagfilter@npm:1.0.1"
- dependencies:
- micromark-util-types: ^1.0.0
- checksum: 63e8d68f25871722900a67a8001d5da21f19ea707f3566fc7d0b2eb1f6d52476848bb6a41576cf22470565124af9497c5aae842355faa4c14ec19cb1847e71ec
- languageName: node
- linkType: hard
-
-"micromark-extension-gfm-task-list-item@npm:^1.0.0":
- version: 1.0.3
- resolution: "micromark-extension-gfm-task-list-item@npm:1.0.3"
- dependencies:
- micromark-factory-space: ^1.0.0
- micromark-util-character: ^1.0.0
- micromark-util-symbol: ^1.0.0
- micromark-util-types: ^1.0.0
- uvu: ^0.5.0
- checksum: d320b0c5301f87e211c06a2330d1ee0fee6da14f0d6d44d5211055b465dadff34390cd6b258a5e0ca376fcda3364fef9a12fe6e26a0c858231fa3b98ddbf7785
- languageName: node
- linkType: hard
-
-"micromark-extension-gfm@npm:^2.0.0":
- version: 2.0.1
- resolution: "micromark-extension-gfm@npm:2.0.1"
- dependencies:
- micromark-extension-gfm-autolink-literal: ^1.0.0
- micromark-extension-gfm-footnote: ^1.0.0
- micromark-extension-gfm-strikethrough: ^1.0.0
- micromark-extension-gfm-table: ^1.0.0
- micromark-extension-gfm-tagfilter: ^1.0.0
- micromark-extension-gfm-task-list-item: ^1.0.0
- micromark-util-combine-extensions: ^1.0.0
- micromark-util-types: ^1.0.0
- checksum: b181479c87be38d5ae8d28e6dc52fab73c894fd2706876746f27a91fb186644ce03532a9c35dca2186327a0e2285cd5242ad0361dc89adedd4a50376ffd94e22
- languageName: node
- linkType: hard
-
-"micromark-extension-mdx-expression@npm:^1.0.0":
- version: 1.0.3
- resolution: "micromark-extension-mdx-expression@npm:1.0.3"
- dependencies:
- micromark-factory-mdx-expression: ^1.0.0
- micromark-factory-space: ^1.0.0
- micromark-util-character: ^1.0.0
- micromark-util-events-to-acorn: ^1.0.0
- micromark-util-symbol: ^1.0.0
- micromark-util-types: ^1.0.0
- uvu: ^0.5.0
- checksum: ef4b4137894624a6754b951d3cb7abb20951ca7b37f9ad8a50d2e2b95d0cf880258d71296bfac6be4ff83a8d137b6b657ae852bb6f11f4ca11e5e6d62f1b025d
- languageName: node
- linkType: hard
-
-"micromark-extension-mdx-jsx@npm:^1.0.0":
- version: 1.0.3
- resolution: "micromark-extension-mdx-jsx@npm:1.0.3"
- dependencies:
- "@types/acorn": ^4.0.0
- estree-util-is-identifier-name: ^2.0.0
- micromark-factory-mdx-expression: ^1.0.0
- micromark-factory-space: ^1.0.0
- micromark-util-character: ^1.0.0
- micromark-util-symbol: ^1.0.0
- micromark-util-types: ^1.0.0
- uvu: ^0.5.0
- vfile-message: ^3.0.0
- checksum: 1a5566890aabc52fe96b78e3a3a507dee03a2232e44b9360b00617734e156f934e85bc6a477fbb856c793fe33c9fb7d2207a4f50e680168c0d04ba9c9336d960
- languageName: node
- linkType: hard
-
-"micromark-extension-mdx-md@npm:^1.0.0":
- version: 1.0.0
- resolution: "micromark-extension-mdx-md@npm:1.0.0"
- dependencies:
- micromark-util-types: ^1.0.0
- checksum: b4f205e1d5f0946b4755541ef44ffd0b3be8c7ecfc08d8b139b6a21fbd3ff62d8fdb6b7e6d17bd9a3b610450267f43a41703dc48b341da9addd743a28cdefa64
- languageName: node
- linkType: hard
-
-"micromark-extension-mdxjs-esm@npm:^1.0.0":
- version: 1.0.2
- resolution: "micromark-extension-mdxjs-esm@npm:1.0.2"
- dependencies:
- micromark-core-commonmark: ^1.0.0
- micromark-util-character: ^1.0.0
- micromark-util-events-to-acorn: ^1.0.0
- micromark-util-symbol: ^1.0.0
- micromark-util-types: ^1.0.0
- unist-util-position-from-estree: ^1.1.0
- uvu: ^0.5.0
- vfile-message: ^3.0.0
- checksum: 725b4e420f502fcc7b351781f9897a1077959006b175e0d55e11054df44ce4b1df074e9e9a661c7c092f33acf3dd91f71d4cbb0626a387b9af28594c18c57bcb
- languageName: node
- linkType: hard
-
-"micromark-extension-mdxjs@npm:^1.0.0":
- version: 1.0.0
- resolution: "micromark-extension-mdxjs@npm:1.0.0"
- dependencies:
- acorn: ^8.0.0
- acorn-jsx: ^5.0.0
- micromark-extension-mdx-expression: ^1.0.0
- micromark-extension-mdx-jsx: ^1.0.0
- micromark-extension-mdx-md: ^1.0.0
- micromark-extension-mdxjs-esm: ^1.0.0
- micromark-util-combine-extensions: ^1.0.0
- micromark-util-types: ^1.0.0
- checksum: ba836c6d2dfc67597886e88f533ffa02f2029dbe216a0651f1066e70f8529a700bcc7fa2bc4201ee12fd3d1cd7da7093d5a442442daeb84b27df96aaffb7699c
- languageName: node
- linkType: hard
-
-"micromark-factory-destination@npm:^1.0.0":
- version: 1.0.0
- resolution: "micromark-factory-destination@npm:1.0.0"
- dependencies:
- micromark-util-character: ^1.0.0
- micromark-util-symbol: ^1.0.0
- micromark-util-types: ^1.0.0
- checksum: 8e733ae9c1c2342f14ff290bf09946e20f6f540117d80342377a765cac48df2ea5e748f33c8b07501ad7a43414b1a6597c8510ede2052b6bf1251fab89748e20
- languageName: node
- linkType: hard
-
-"micromark-factory-label@npm:^1.0.0":
- version: 1.0.2
- resolution: "micromark-factory-label@npm:1.0.2"
- dependencies:
- micromark-util-character: ^1.0.0
- micromark-util-symbol: ^1.0.0
- micromark-util-types: ^1.0.0
- uvu: ^0.5.0
- checksum: 957e9366bdc8dbc1437c0706ff96972fa985ab4b1274abcae12f6094f527cbf5c69e7f2304c23c7f4b96e311ff7911d226563b8b43dcfcd4091e8c985fb97ce6
- languageName: node
- linkType: hard
-
-"micromark-factory-mdx-expression@npm:^1.0.0":
- version: 1.0.6
- resolution: "micromark-factory-mdx-expression@npm:1.0.6"
- dependencies:
- micromark-factory-space: ^1.0.0
- micromark-util-character: ^1.0.0
- micromark-util-events-to-acorn: ^1.0.0
- micromark-util-symbol: ^1.0.0
- micromark-util-types: ^1.0.0
- unist-util-position-from-estree: ^1.0.0
- uvu: ^0.5.0
- vfile-message: ^3.0.0
- checksum: 7b69f0e77664e9820639cf23c4f01d43aa0e7abd88021c3db428435e3a5a1f9446f8dc5c2a6ed4ac16c6495ca51937609a5c98ff59a62c54be382c2725500b39
- languageName: node
- linkType: hard
-
-"micromark-factory-space@npm:^1.0.0":
- version: 1.0.0
- resolution: "micromark-factory-space@npm:1.0.0"
- dependencies:
- micromark-util-character: ^1.0.0
- micromark-util-types: ^1.0.0
- checksum: 70d3aafde4e68ef4e509a3b644e9a29e4aada00801279e346577b008cbca06d78051bcd62aa7ea7425856ed73f09abd2b36607803055f726f52607ee7cb706b0
- languageName: node
- linkType: hard
-
-"micromark-factory-title@npm:^1.0.0":
- version: 1.0.2
- resolution: "micromark-factory-title@npm:1.0.2"
- dependencies:
- micromark-factory-space: ^1.0.0
- micromark-util-character: ^1.0.0
- micromark-util-symbol: ^1.0.0
- micromark-util-types: ^1.0.0
- uvu: ^0.5.0
- checksum: 9a9cf66babde0bad1e25d6c1087082bfde6dfc319a36cab67c89651cc1a53d0e21cdec83262b5a4c33bff49f0e3c8dc2a7bd464e991d40dbea166a8f9b37e5b2
- languageName: node
- linkType: hard
-
-"micromark-factory-whitespace@npm:^1.0.0":
- version: 1.0.0
- resolution: "micromark-factory-whitespace@npm:1.0.0"
- dependencies:
- micromark-factory-space: ^1.0.0
- micromark-util-character: ^1.0.0
- micromark-util-symbol: ^1.0.0
- micromark-util-types: ^1.0.0
- checksum: 0888386e6ea2dd665a5182c570d9b3d0a172d3f11694ca5a2a84e552149c9f1429f5b975ec26e1f0fa4388c55a656c9f359ce5e0603aff6175ba3e255076f20b
- languageName: node
- linkType: hard
-
-"micromark-util-character@npm:^1.0.0":
- version: 1.1.0
- resolution: "micromark-util-character@npm:1.1.0"
- dependencies:
- micromark-util-symbol: ^1.0.0
- micromark-util-types: ^1.0.0
- checksum: 504a4e3321f69bddf3fec9f0c1058239fc23336bda5be31d532b150491eda47965a251b37f8a7a9db0c65933b3aaa49cf88044fb1028be3af7c5ee6212bf8d5f
- languageName: node
- linkType: hard
-
-"micromark-util-chunked@npm:^1.0.0":
- version: 1.0.0
- resolution: "micromark-util-chunked@npm:1.0.0"
- dependencies:
- micromark-util-symbol: ^1.0.0
- checksum: c1efd56e8c4217bcf1c6f1a9fb9912b4a2a5503b00d031da902be922fb3fee60409ac53f11739991291357b2784fb0647ddfc74c94753a068646c0cb0fd71421
- languageName: node
- linkType: hard
-
-"micromark-util-classify-character@npm:^1.0.0":
- version: 1.0.0
- resolution: "micromark-util-classify-character@npm:1.0.0"
- dependencies:
- micromark-util-character: ^1.0.0
- micromark-util-symbol: ^1.0.0
- micromark-util-types: ^1.0.0
- checksum: 180446e6a1dec653f625ded028f244784e1db8d10ad05c5d70f08af9de393b4a03dc6cf6fa5ed8ccc9c24bbece7837abf3bf66681c0b4adf159364b7d5236dfd
- languageName: node
- linkType: hard
-
-"micromark-util-combine-extensions@npm:^1.0.0":
- version: 1.0.0
- resolution: "micromark-util-combine-extensions@npm:1.0.0"
- dependencies:
- micromark-util-chunked: ^1.0.0
- micromark-util-types: ^1.0.0
- checksum: 5304a820ef75340e1be69d6ad167055b6ba9a3bafe8171e5945a935752f462415a9dd61eb3490220c055a8a11167209a45bfa73f278338b7d3d61fa1464d3f35
- languageName: node
- linkType: hard
-
-"micromark-util-decode-numeric-character-reference@npm:^1.0.0":
- version: 1.0.0
- resolution: "micromark-util-decode-numeric-character-reference@npm:1.0.0"
- dependencies:
- micromark-util-symbol: ^1.0.0
- checksum: f3ae2bb582a80f1e9d3face026f585c0c472335c064bd850bde152376f0394cb2831746749b6be6e0160f7d73626f67d10716026c04c87f402c0dd45a1a28633
- languageName: node
- linkType: hard
-
-"micromark-util-decode-string@npm:^1.0.0":
- version: 1.0.2
- resolution: "micromark-util-decode-string@npm:1.0.2"
- dependencies:
- decode-named-character-reference: ^1.0.0
- micromark-util-character: ^1.0.0
- micromark-util-decode-numeric-character-reference: ^1.0.0
- micromark-util-symbol: ^1.0.0
- checksum: 2dbb41c9691cc71505d39706405139fb7d6699429d577a524c7c248ac0cfd09d3dd212ad8e91c143a00b2896f26f81136edc67c5bda32d20446f0834d261b17a
- languageName: node
- linkType: hard
-
-"micromark-util-encode@npm:^1.0.0":
- version: 1.0.1
- resolution: "micromark-util-encode@npm:1.0.1"
- checksum: 9290583abfdc79ea3e7eb92c012c47a0e14327888f8aaa6f57ff79b3058d8e7743716b9d91abca3646f15ab3d78fdad9779fdb4ccf13349cd53309dfc845253a
- languageName: node
- linkType: hard
-
-"micromark-util-events-to-acorn@npm:^1.0.0":
- version: 1.0.6
- resolution: "micromark-util-events-to-acorn@npm:1.0.6"
- dependencies:
- "@types/acorn": ^4.0.0
- "@types/estree": ^0.0.51
- estree-util-visit: ^1.0.0
- micromark-util-types: ^1.0.0
- uvu: ^0.5.0
- vfile-location: ^4.0.0
- vfile-message: ^3.0.0
- checksum: 035616811fc103ba055049de3e4269df44d3404e3fe80fc6aee5d46dcb3b017b8f45b9aeb7a8ff6ca5e99551a793d5dcbfc8fc67f138e8235ca417338fca9e5c
- languageName: node
- linkType: hard
-
-"micromark-util-html-tag-name@npm:^1.0.0":
- version: 1.0.0
- resolution: "micromark-util-html-tag-name@npm:1.0.0"
- checksum: ed07ce9b9bb30cc4ea57f733089b3a253a6132c0608ccfc105eadb32f1f80bbd2347bf8a74f897fe039d7805a59f602fd4dd15f6adc7926d40b3646da2888d0f
- languageName: node
- linkType: hard
-
-"micromark-util-normalize-identifier@npm:^1.0.0":
- version: 1.0.0
- resolution: "micromark-util-normalize-identifier@npm:1.0.0"
- dependencies:
- micromark-util-symbol: ^1.0.0
- checksum: d7c09d5e8318fb72f194af72664bd84a48a2928e3550b2b21c8fbc0ec22524f2a72e0f6663d2b95dc189a6957d3d7759b60716e888909710767cd557be821f8b
- languageName: node
- linkType: hard
-
-"micromark-util-resolve-all@npm:^1.0.0":
- version: 1.0.0
- resolution: "micromark-util-resolve-all@npm:1.0.0"
- dependencies:
- micromark-util-types: ^1.0.0
- checksum: 409667f2bd126ef8acce009270d2aecaaa5584c5807672bc657b09e50aa91bd2e552cf41e5be1e6469244a83349cbb71daf6059b746b1c44e3f35446fef63e50
- languageName: node
- linkType: hard
-
-"micromark-util-sanitize-uri@npm:^1.0.0":
- version: 1.0.0
- resolution: "micromark-util-sanitize-uri@npm:1.0.0"
- dependencies:
- micromark-util-character: ^1.0.0
- micromark-util-encode: ^1.0.0
- micromark-util-symbol: ^1.0.0
- checksum: 77448ec3a5d18f0ac975ea47591fbf0d5bd5568f9a0d033d9e318f90656031f037c5ff9137e93faf289480eaea70a5382e2571ebf9edcb1c1cd2a5187b6b3160
- languageName: node
- linkType: hard
-
-"micromark-util-subtokenize@npm:^1.0.0":
- version: 1.0.2
- resolution: "micromark-util-subtokenize@npm:1.0.2"
- dependencies:
- micromark-util-chunked: ^1.0.0
- micromark-util-symbol: ^1.0.0
- micromark-util-types: ^1.0.0
- uvu: ^0.5.0
- checksum: c32ee58a7e1384ab1161a9ee02fbb04ad7b6e96d0b8c93dba9803c329a53d07f22ab394c7a96b2e30d6b8fbe3585b85817dba07277b1317111fc234e166bd2d1
- languageName: node
- linkType: hard
-
-"micromark-util-symbol@npm:^1.0.0":
- version: 1.0.1
- resolution: "micromark-util-symbol@npm:1.0.1"
- checksum: c6a3023b3a7432c15864b5e33a1bcb5042ac7aa097f2f452e587bef45433d42d39e0a5cce12fbea91e0671098ba0c3f62a2b30ce1cde66ecbb5e8336acf4391d
- languageName: node
- linkType: hard
-
-"micromark-util-types@npm:^1.0.0, micromark-util-types@npm:^1.0.1":
- version: 1.0.2
- resolution: "micromark-util-types@npm:1.0.2"
- checksum: 08dc901b7c06ee3dfeb54befca05cbdab9525c1cf1c1080967c3878c9e72cb9856c7e8ff6112816e18ead36ce6f99d55aaa91560768f2f6417b415dcba1244df
- languageName: node
- linkType: hard
-
-"micromark@npm:^3.0.0":
- version: 3.0.10
- resolution: "micromark@npm:3.0.10"
- dependencies:
- "@types/debug": ^4.0.0
- debug: ^4.0.0
- decode-named-character-reference: ^1.0.0
- micromark-core-commonmark: ^1.0.1
- micromark-factory-space: ^1.0.0
- micromark-util-character: ^1.0.0
- micromark-util-chunked: ^1.0.0
- micromark-util-combine-extensions: ^1.0.0
- micromark-util-decode-numeric-character-reference: ^1.0.0
- micromark-util-encode: ^1.0.0
- micromark-util-normalize-identifier: ^1.0.0
- micromark-util-resolve-all: ^1.0.0
- micromark-util-sanitize-uri: ^1.0.0
- micromark-util-subtokenize: ^1.0.0
- micromark-util-symbol: ^1.0.0
- micromark-util-types: ^1.0.1
- uvu: ^0.5.0
- checksum: 04663fe0308cccfbf338111b41d3d82d6445d1d2b834c9fc1880e1ea3874c4a3b81adfafe62b0bc7708ba0a86889885ea31b4dbb39f1f72190c3aab46b743bb1
- languageName: node
- linkType: hard
-
-"mimic-response@npm:^3.1.0":
- version: 3.1.0
- resolution: "mimic-response@npm:3.1.0"
- checksum: 25739fee32c17f433626bf19f016df9036b75b3d84a3046c7d156e72ec963dd29d7fc8a302f55a3d6c5a4ff24259676b15d915aad6480815a969ff2ec0836867
- languageName: node
- linkType: hard
-
-"minimatch@npm:^3.0.4":
- version: 3.1.2
- resolution: "minimatch@npm:3.1.2"
- dependencies:
- brace-expansion: ^1.1.7
- checksum: c154e566406683e7bcb746e000b84d74465b3a832c45d59912b9b55cd50dee66e5c4b1e5566dba26154040e51672f9aa450a9aef0c97cfc7336b78b7afb9540a
- languageName: node
- linkType: hard
-
-"minimatch@npm:^5.0.1":
- version: 5.0.1
- resolution: "minimatch@npm:5.0.1"
- dependencies:
- brace-expansion: ^2.0.1
- checksum: b34b98463da4754bc526b244d680c69d4d6089451ebe512edaf6dd9eeed0279399cfa3edb19233513b8f830bf4bfcad911dddcdf125e75074100d52f724774f0
- languageName: node
- linkType: hard
-
-"minimist@npm:^1.2.0, minimist@npm:^1.2.3":
- version: 1.2.6
- resolution: "minimist@npm:1.2.6"
- checksum: d15428cd1e11eb14e1233bcfb88ae07ed7a147de251441d61158619dfb32c4d7e9061d09cab4825fdee18ecd6fce323228c8c47b5ba7cd20af378ca4048fb3fb
- languageName: node
- linkType: hard
-
-"minipass-collect@npm:^1.0.2":
- version: 1.0.2
- resolution: "minipass-collect@npm:1.0.2"
- dependencies:
- minipass: ^3.0.0
- checksum: 14df761028f3e47293aee72888f2657695ec66bd7d09cae7ad558da30415fdc4752bbfee66287dcc6fd5e6a2fa3466d6c484dc1cbd986525d9393b9523d97f10
- languageName: node
- linkType: hard
-
-"minipass-fetch@npm:^2.0.3":
- version: 2.1.0
- resolution: "minipass-fetch@npm:2.1.0"
- dependencies:
- encoding: ^0.1.13
- minipass: ^3.1.6
- minipass-sized: ^1.0.3
- minizlib: ^2.1.2
- dependenciesMeta:
- encoding:
- optional: true
- checksum: 1334732859a3f7959ed22589bafd9c40384b885aebb5932328071c33f86b3eb181d54c86919675d1825ab5f1c8e4f328878c863873258d113c29d79a4b0c9c9f
- languageName: node
- linkType: hard
-
-"minipass-flush@npm:^1.0.5":
- version: 1.0.5
- resolution: "minipass-flush@npm:1.0.5"
- dependencies:
- minipass: ^3.0.0
- checksum: 56269a0b22bad756a08a94b1ffc36b7c9c5de0735a4dd1ab2b06c066d795cfd1f0ac44a0fcae13eece5589b908ecddc867f04c745c7009be0b566421ea0944cf
- languageName: node
- linkType: hard
-
-"minipass-pipeline@npm:^1.2.4":
- version: 1.2.4
- resolution: "minipass-pipeline@npm:1.2.4"
- dependencies:
- minipass: ^3.0.0
- checksum: b14240dac0d29823c3d5911c286069e36d0b81173d7bdf07a7e4a91ecdef92cdff4baaf31ea3746f1c61e0957f652e641223970870e2353593f382112257971b
- languageName: node
- linkType: hard
-
-"minipass-sized@npm:^1.0.3":
- version: 1.0.3
- resolution: "minipass-sized@npm:1.0.3"
- dependencies:
- minipass: ^3.0.0
- checksum: 79076749fcacf21b5d16dd596d32c3b6bf4d6e62abb43868fac21674078505c8b15eaca4e47ed844985a4514854f917d78f588fcd029693709417d8f98b2bd60
- languageName: node
- linkType: hard
-
-"minipass@npm:^3.0.0, minipass@npm:^3.1.1, minipass@npm:^3.1.6":
- version: 3.1.6
- resolution: "minipass@npm:3.1.6"
- dependencies:
- yallist: ^4.0.0
- checksum: 57a04041413a3531a65062452cb5175f93383ef245d6f4a2961d34386eb9aa8ac11ac7f16f791f5e8bbaf1dfb1ef01596870c88e8822215db57aa591a5bb0a77
- languageName: node
- linkType: hard
-
-"minizlib@npm:^2.1.1, minizlib@npm:^2.1.2":
- version: 2.1.2
- resolution: "minizlib@npm:2.1.2"
- dependencies:
- minipass: ^3.0.0
- yallist: ^4.0.0
- checksum: f1fdeac0b07cf8f30fcf12f4b586795b97be856edea22b5e9072707be51fc95d41487faec3f265b42973a304fe3a64acd91a44a3826a963e37b37bafde0212c3
- languageName: node
- linkType: hard
-
-"mkdirp-classic@npm:^0.5.2, mkdirp-classic@npm:^0.5.3":
- version: 0.5.3
- resolution: "mkdirp-classic@npm:0.5.3"
- checksum: 3f4e088208270bbcc148d53b73e9a5bd9eef05ad2cbf3b3d0ff8795278d50dd1d11a8ef1875ff5aea3fa888931f95bfcb2ad5b7c1061cfefd6284d199e6776ac
- languageName: node
- linkType: hard
-
-"mkdirp@npm:^1.0.3, mkdirp@npm:^1.0.4":
- version: 1.0.4
- resolution: "mkdirp@npm:1.0.4"
- bin:
- mkdirp: bin/cmd.js
- checksum: a96865108c6c3b1b8e1d5e9f11843de1e077e57737602de1b82030815f311be11f96f09cce59bd5b903d0b29834733e5313f9301e3ed6d6f6fba2eae0df4298f
- languageName: node
- linkType: hard
-
-"mri@npm:^1.1.0":
- version: 1.2.0
- resolution: "mri@npm:1.2.0"
- checksum: 83f515abbcff60150873e424894a2f65d68037e5a7fcde8a9e2b285ee9c13ac581b63cfc1e6826c4732de3aeb84902f7c1e16b7aff46cd3f897a0f757a894e85
- languageName: node
- linkType: hard
-
-"ms@npm:2.1.2":
- version: 2.1.2
- resolution: "ms@npm:2.1.2"
- checksum: 673cdb2c3133eb050c745908d8ce632ed2c02d85640e2edb3ace856a2266a813b30c613569bf3354fdf4ea7d1a1494add3bfa95e2713baa27d0c2c71fc44f58f
- languageName: node
- linkType: hard
-
-"ms@npm:^2.0.0":
- version: 2.1.3
- resolution: "ms@npm:2.1.3"
- checksum: aa92de608021b242401676e35cfa5aa42dd70cbdc082b916da7fb925c542173e36bce97ea3e804923fe92c0ad991434e4a38327e15a1b5b5f945d66df615ae6d
- languageName: node
- linkType: hard
-
-"nanoid@npm:^3.1.30":
- version: 3.3.3
- resolution: "nanoid@npm:3.3.3"
- bin:
- nanoid: bin/nanoid.cjs
- checksum: ada019402a07464a694553c61d2dca8a4353645a7d92f2830f0d487fedff403678a0bee5323a46522752b2eab95a0bc3da98b6cccaa7c0c55cd9975130e6d6f0
- languageName: node
- linkType: hard
-
-"napi-build-utils@npm:^1.0.1":
- version: 1.0.2
- resolution: "napi-build-utils@npm:1.0.2"
- checksum: 06c14271ee966e108d55ae109f340976a9556c8603e888037145d6522726aebe89dd0c861b4b83947feaf6d39e79e08817559e8693deedc2c94e82c5cbd090c7
- languageName: node
- linkType: hard
-
-"negotiator@npm:^0.6.3":
- version: 0.6.3
- resolution: "negotiator@npm:0.6.3"
- checksum: b8ffeb1e262eff7968fc90a2b6767b04cfd9842582a9d0ece0af7049537266e7b2506dfb1d107a32f06dd849ab2aea834d5830f7f4d0e5cb7d36e1ae55d021d9
- languageName: node
- linkType: hard
-
-"next-themes@npm:^0.2.0-beta.0":
- version: 0.2.0-beta.0
- resolution: "next-themes@npm:0.2.0-beta.0"
- peerDependencies:
- next: ">=11.1.1"
- react: "*"
- react-dom: "*"
- checksum: fed4689b17c87020bccc1c2c84323d92285f5f932c98db19e46de484a594a6eb264835d5932b56f863b4e03ee7bd2286cbc299f605e67a5f2ff09fc233eea504
- languageName: node
- linkType: hard
-
-"next@npm:^12.1.6-canary.4":
- version: 12.1.6-canary.4
- resolution: "next@npm:12.1.6-canary.4"
- dependencies:
- "@next/env": 12.1.6-canary.4
- "@next/swc-android-arm-eabi": 12.1.6-canary.4
- "@next/swc-android-arm64": 12.1.6-canary.4
- "@next/swc-darwin-arm64": 12.1.6-canary.4
- "@next/swc-darwin-x64": 12.1.6-canary.4
- "@next/swc-linux-arm-gnueabihf": 12.1.6-canary.4
- "@next/swc-linux-arm64-gnu": 12.1.6-canary.4
- "@next/swc-linux-arm64-musl": 12.1.6-canary.4
- "@next/swc-linux-x64-gnu": 12.1.6-canary.4
- "@next/swc-linux-x64-musl": 12.1.6-canary.4
- "@next/swc-win32-arm64-msvc": 12.1.6-canary.4
- "@next/swc-win32-ia32-msvc": 12.1.6-canary.4
- "@next/swc-win32-x64-msvc": 12.1.6-canary.4
- caniuse-lite: ^1.0.30001283
- postcss: 8.4.5
- styled-jsx: 5.0.1
- peerDependencies:
- fibers: ">= 3.1.0"
- node-sass: ^6.0.0 || ^7.0.0
- react: ^17.0.2 || ^18.0.0-0
- react-dom: ^17.0.2 || ^18.0.0-0
- sass: ^1.3.0
- dependenciesMeta:
- "@next/swc-android-arm-eabi":
- optional: true
- "@next/swc-android-arm64":
- optional: true
- "@next/swc-darwin-arm64":
- optional: true
- "@next/swc-darwin-x64":
- optional: true
- "@next/swc-linux-arm-gnueabihf":
- optional: true
- "@next/swc-linux-arm64-gnu":
- optional: true
- "@next/swc-linux-arm64-musl":
- optional: true
- "@next/swc-linux-x64-gnu":
- optional: true
- "@next/swc-linux-x64-musl":
- optional: true
- "@next/swc-win32-arm64-msvc":
- optional: true
- "@next/swc-win32-ia32-msvc":
- optional: true
- "@next/swc-win32-x64-msvc":
- optional: true
- peerDependenciesMeta:
- fibers:
- optional: true
- node-sass:
- optional: true
- sass:
- optional: true
- bin:
- next: dist/bin/next
- checksum: 2a4801bd42978bb52239e91f4a5f74e697065a9c3c131457506017ce2d4027f740329bec96a7807c917cb0107c1cf4e7fcba9dcc22e72227afce838d7bd69a86
- languageName: node
- linkType: hard
-
-"nextra-theme-docs@npm:2.0.0-alpha.50":
- version: 2.0.0-alpha.50
- resolution: "nextra-theme-docs@npm:2.0.0-alpha.50"
- dependencies:
- "@headlessui/react": ^1.5.0
- "@mdx-js/react": ^2.1.0
- "@reach/skip-nav": ^0.16.0
- classnames: ^2.2.6
- flexsearch: ^0.7.21
- focus-visible: ^5.1.0
- github-slugger: ^1.4.0
- intersection-observer: ^0.12.0
- match-sorter: ^4.2.0
- next-themes: ^0.2.0-beta.0
- parse-git-url: ^1.0.1
- scroll-into-view-if-needed: ^2.2.29
- title: ^3.4.2
- peerDependencies:
- next: ">=9.5.3"
- react: ">=16.13.1"
- react-dom: ">=16.13.1"
- checksum: b32d2d2226898590fbea503d45cb7fd4b8800bc513fb7ea809033e47b4d9b177736bc8e8e78889767267d90eb3fb51b7f90731d8f154de24ae31400bb6a089d0
- languageName: node
- linkType: hard
-
-"nextra@npm:2.0.0-alpha.49":
- version: 2.0.0-alpha.49
- resolution: "nextra@npm:2.0.0-alpha.49"
- dependencies:
- "@mdx-js/mdx": ^2.1.0
- "@napi-rs/simple-git": ^0.1.7
- github-slugger: ^1.4.0
- graceful-fs: ^4.2.6
- gray-matter: ^4.0.3
- p-limit: ^4.0.0
- rehype-pretty-code: ^0.1.0
- remark-gfm: ^3.0.1
- shiki: 0.10.1
- slash: ^3.0.0
- peerDependencies:
- react: ">=16.13.1"
- checksum: 64de8350f560928aec5dce1fe3dde1880c9eaa2698036357789b312f722f9dc58b49fd58feb545797577aa8abb7b2835124dfcbbcbbabccfca4435281d93f172
- languageName: node
- linkType: hard
-
-"node-abi@npm:^3.3.0":
- version: 3.15.0
- resolution: "node-abi@npm:3.15.0"
- dependencies:
- semver: ^7.3.5
- checksum: 8fb0374d11f4d02beaacfedf5e536006f0c5f4c479cd2ff6cfda39b0a8f1f9230dbac865f80e98f030dae5ae8e197806b8683547dad1b79af16246e32a441e24
- languageName: node
- linkType: hard
-
-"node-addon-api@npm:^4.3.0":
- version: 4.3.0
- resolution: "node-addon-api@npm:4.3.0"
- dependencies:
- node-gyp: latest
- checksum: 3de396e23cc209f539c704583e8e99c148850226f6e389a641b92e8967953713228109f919765abc1f4355e801e8f41842f96210b8d61c7dcc10a477002dcf00
- languageName: node
- linkType: hard
-
-"node-gyp@npm:latest":
- version: 9.0.0
- resolution: "node-gyp@npm:9.0.0"
- dependencies:
- env-paths: ^2.2.0
- glob: ^7.1.4
- graceful-fs: ^4.2.6
- make-fetch-happen: ^10.0.3
- nopt: ^5.0.0
- npmlog: ^6.0.0
- rimraf: ^3.0.2
- semver: ^7.3.5
- tar: ^6.1.2
- which: ^2.0.2
- bin:
- node-gyp: bin/node-gyp.js
- checksum: 4d8ef8860f7e4f4d86c91db3f519d26ed5cc23b48fe54543e2afd86162b4acbd14f21de42a5db344525efb69a991e021b96a68c70c6e2d5f4a5cb770793da6d3
- languageName: node
- linkType: hard
-
-"nopt@npm:^5.0.0":
- version: 5.0.0
- resolution: "nopt@npm:5.0.0"
- dependencies:
- abbrev: 1
- bin:
- nopt: bin/nopt.js
- checksum: d35fdec187269503843924e0114c0c6533fb54bbf1620d0f28b4b60ba01712d6687f62565c55cc20a504eff0fbe5c63e22340c3fad549ad40469ffb611b04f2f
- languageName: node
- linkType: hard
-
-"npm-run-path@npm:^2.0.0":
- version: 2.0.2
- resolution: "npm-run-path@npm:2.0.2"
- dependencies:
- path-key: ^2.0.0
- checksum: acd5ad81648ba4588ba5a8effb1d98d2b339d31be16826a118d50f182a134ac523172101b82eab1d01cb4c2ba358e857d54cfafd8163a1ffe7bd52100b741125
- languageName: node
- linkType: hard
-
-"npmlog@npm:^4.0.1":
- version: 4.1.2
- resolution: "npmlog@npm:4.1.2"
- dependencies:
- are-we-there-yet: ~1.1.2
- console-control-strings: ~1.1.0
- gauge: ~2.7.3
- set-blocking: ~2.0.0
- checksum: edbda9f95ec20957a892de1839afc6fb735054c3accf6fbefe767bac9a639fd5cea2baeac6bd2bcd50a85cb54924d57d9886c81c7fbc2332c2ddd19227504192
- languageName: node
- linkType: hard
-
-"npmlog@npm:^6.0.0":
- version: 6.0.2
- resolution: "npmlog@npm:6.0.2"
- dependencies:
- are-we-there-yet: ^3.0.0
- console-control-strings: ^1.1.0
- gauge: ^4.0.3
- set-blocking: ^2.0.0
- checksum: ae238cd264a1c3f22091cdd9e2b106f684297d3c184f1146984ecbe18aaa86343953f26b9520dedd1b1372bc0316905b736c1932d778dbeb1fcf5a1001390e2a
- languageName: node
- linkType: hard
-
-"number-is-nan@npm:^1.0.0":
- version: 1.0.1
- resolution: "number-is-nan@npm:1.0.1"
- checksum: 13656bc9aa771b96cef209ffca31c31a03b507ca6862ba7c3f638a283560620d723d52e626d57892c7fff475f4c36ac07f0600f14544692ff595abff214b9ffb
- languageName: node
- linkType: hard
-
-"object-assign@npm:^4.1.0":
- version: 4.1.1
- resolution: "object-assign@npm:4.1.1"
- checksum: fcc6e4ea8c7fe48abfbb552578b1c53e0d194086e2e6bbbf59e0a536381a292f39943c6e9628af05b5528aa5e3318bb30d6b2e53cadaf5b8fe9e12c4b69af23f
- languageName: node
- linkType: hard
-
-"once@npm:^1.3.0, once@npm:^1.3.1, once@npm:^1.4.0":
- version: 1.4.0
- resolution: "once@npm:1.4.0"
- dependencies:
- wrappy: 1
- checksum: cd0a88501333edd640d95f0d2700fbde6bff20b3d4d9bdc521bdd31af0656b5706570d6c6afe532045a20bb8dc0849f8332d6f2a416e0ba6d3d3b98806c7db68
- languageName: node
- linkType: hard
-
-"p-finally@npm:^1.0.0":
- version: 1.0.0
- resolution: "p-finally@npm:1.0.0"
- checksum: 93a654c53dc805dd5b5891bab16eb0ea46db8f66c4bfd99336ae929323b1af2b70a8b0654f8f1eae924b2b73d037031366d645f1fd18b3d30cbd15950cc4b1d4
- languageName: node
- linkType: hard
-
-"p-limit@npm:^4.0.0":
- version: 4.0.0
- resolution: "p-limit@npm:4.0.0"
- dependencies:
- yocto-queue: ^1.0.0
- checksum: 01d9d70695187788f984226e16c903475ec6a947ee7b21948d6f597bed788e3112cc7ec2e171c1d37125057a5f45f3da21d8653e04a3a793589e12e9e80e756b
- languageName: node
- linkType: hard
-
-"p-map@npm:^4.0.0":
- version: 4.0.0
- resolution: "p-map@npm:4.0.0"
- dependencies:
- aggregate-error: ^3.0.0
- checksum: cb0ab21ec0f32ddffd31dfc250e3afa61e103ef43d957cc45497afe37513634589316de4eb88abdfd969fe6410c22c0b93ab24328833b8eb1ccc087fc0442a1c
- languageName: node
- linkType: hard
-
-"parse-entities@npm:^4.0.0":
- version: 4.0.0
- resolution: "parse-entities@npm:4.0.0"
- dependencies:
- "@types/unist": ^2.0.0
- character-entities: ^2.0.0
- character-entities-legacy: ^3.0.0
- character-reference-invalid: ^2.0.0
- decode-named-character-reference: ^1.0.0
- is-alphanumerical: ^2.0.0
- is-decimal: ^2.0.0
- is-hexadecimal: ^2.0.0
- checksum: cd9fa53bc056ad8cf8a45494bfd7ce65e8bf6f1b12dcc9a6343376fa529c2012041303c5d0f86babf70afbd13b71c2f219fc3a76fb97d9d559b66578e19cdaf0
- languageName: node
- linkType: hard
-
-"parse-git-url@npm:^1.0.1":
- version: 1.0.1
- resolution: "parse-git-url@npm:1.0.1"
- checksum: 764d15c50d17308dd90883337d34f6dfc68a6a1e3441d714d9434cf2b12607ee74dd51754b01d07e2fb19592357e59242a1ebdfe2d8025ac6c0998205f66d6dd
- languageName: node
- linkType: hard
-
-"parse-numeric-range@npm:^1.3.0":
- version: 1.3.0
- resolution: "parse-numeric-range@npm:1.3.0"
- checksum: 289ca126d5b8ace7325b199218de198014f58ea6895ccc88a5247491d07f0143bf047f80b4a31784f1ca8911762278d7d6ecb90a31dfae31da91cc1a2524c8ce
- languageName: node
- linkType: hard
-
-"path-is-absolute@npm:^1.0.0":
- version: 1.0.1
- resolution: "path-is-absolute@npm:1.0.1"
- checksum: 060840f92cf8effa293bcc1bea81281bd7d363731d214cbe5c227df207c34cd727430f70c6037b5159c8a870b9157cba65e775446b0ab06fd5ecc7e54615a3b8
- languageName: node
- linkType: hard
-
-"path-key@npm:^2.0.0":
- version: 2.0.1
- resolution: "path-key@npm:2.0.1"
- checksum: f7ab0ad42fe3fb8c7f11d0c4f849871e28fbd8e1add65c370e422512fc5887097b9cf34d09c1747d45c942a8c1e26468d6356e2df3f740bf177ab8ca7301ebfd
- languageName: node
- linkType: hard
-
-"periscopic@npm:^3.0.0":
- version: 3.0.4
- resolution: "periscopic@npm:3.0.4"
- dependencies:
- estree-walker: ^3.0.0
- is-reference: ^3.0.0
- checksum: 0920ea1b0294c2463b7df858d7f895d0a69f15ec5c7b93d63749e7a8f6d9c065853ebea701305f1756f70310633832cf5c90e43e9363cce51abec44cc2f5c188
- languageName: node
- linkType: hard
-
-"picocolors@npm:^1.0.0":
- version: 1.0.0
- resolution: "picocolors@npm:1.0.0"
- checksum: a2e8092dd86c8396bdba9f2b5481032848525b3dc295ce9b57896f931e63fc16f79805144321f72976383fc249584672a75cc18d6777c6b757603f372f745981
- languageName: node
- linkType: hard
-
-"postcss@npm:8.4.5":
- version: 8.4.5
- resolution: "postcss@npm:8.4.5"
- dependencies:
- nanoid: ^3.1.30
- picocolors: ^1.0.0
- source-map-js: ^1.0.1
- checksum: b78abdd89c10f7b48f4bdcd376104a19d6e9c7495ab521729bdb3df315af6c211360e9f06887ad3bc0ab0f61a04b91d68ea11462997c79cced58b9ccd66fac07
- languageName: node
- linkType: hard
-
-"prebuild-install@npm:^7.0.1":
- version: 7.1.0
- resolution: "prebuild-install@npm:7.1.0"
- dependencies:
- detect-libc: ^2.0.0
- expand-template: ^2.0.3
- github-from-package: 0.0.0
- minimist: ^1.2.3
- mkdirp-classic: ^0.5.3
- napi-build-utils: ^1.0.1
- node-abi: ^3.3.0
- npmlog: ^4.0.1
- pump: ^3.0.0
- rc: ^1.2.7
- simple-get: ^4.0.0
- tar-fs: ^2.0.0
- tunnel-agent: ^0.6.0
- bin:
- prebuild-install: bin.js
- checksum: 204f2d89c6d6179fa1039036514aa72f7d0b537e421ef72c40840286e318f41489f00f22c6acc725cce6e10d43825b69dcabeaadfc917db781c58cd56fc25f90
- languageName: node
- linkType: hard
-
-"process-nextick-args@npm:~2.0.0":
- version: 2.0.1
- resolution: "process-nextick-args@npm:2.0.1"
- checksum: 1d38588e520dab7cea67cbbe2efdd86a10cc7a074c09657635e34f035277b59fbb57d09d8638346bf7090f8e8ebc070c96fa5fd183b777fff4f5edff5e9466cf
- languageName: node
- linkType: hard
-
-"promise-inflight@npm:^1.0.1":
- version: 1.0.1
- resolution: "promise-inflight@npm:1.0.1"
- checksum: 22749483091d2c594261517f4f80e05226d4d5ecc1fc917e1886929da56e22b5718b7f2a75f3807e7a7d471bc3be2907fe92e6e8f373ddf5c64bae35b5af3981
- languageName: node
- linkType: hard
-
-"promise-retry@npm:^2.0.1":
- version: 2.0.1
- resolution: "promise-retry@npm:2.0.1"
- dependencies:
- err-code: ^2.0.2
- retry: ^0.12.0
- checksum: f96a3f6d90b92b568a26f71e966cbbc0f63ab85ea6ff6c81284dc869b41510e6cdef99b6b65f9030f0db422bf7c96652a3fff9f2e8fb4a0f069d8f4430359429
- languageName: node
- linkType: hard
-
-"property-information@npm:^6.0.0":
- version: 6.1.1
- resolution: "property-information@npm:6.1.1"
- checksum: 654b1e5c3578e1d522bd22b7cf48881f5054789969ddbefea22e5359805fda5dbf0c5ef76bb26516da26fedac8752587ddc4c8f3b9e16bc0c6e7feb8b6086864
- languageName: node
- linkType: hard
-
-"pseudomap@npm:^1.0.2":
- version: 1.0.2
- resolution: "pseudomap@npm:1.0.2"
- checksum: 856c0aae0ff2ad60881168334448e898ad7a0e45fe7386d114b150084254c01e200c957cf378378025df4e052c7890c5bd933939b0e0d2ecfcc1dc2f0b2991f5
- languageName: node
- linkType: hard
-
-"pump@npm:^3.0.0":
- version: 3.0.0
- resolution: "pump@npm:3.0.0"
- dependencies:
- end-of-stream: ^1.1.0
- once: ^1.3.1
- checksum: e42e9229fba14732593a718b04cb5e1cfef8254544870997e0ecd9732b189a48e1256e4e5478148ecb47c8511dca2b09eae56b4d0aad8009e6fac8072923cfc9
- languageName: node
- linkType: hard
-
-"rc@npm:^1.2.7":
- version: 1.2.8
- resolution: "rc@npm:1.2.8"
- dependencies:
- deep-extend: ^0.6.0
- ini: ~1.3.0
- minimist: ^1.2.0
- strip-json-comments: ~2.0.1
- bin:
- rc: ./cli.js
- checksum: 2e26e052f8be2abd64e6d1dabfbd7be03f80ec18ccbc49562d31f617d0015fbdbcf0f9eed30346ea6ab789e0fdfe4337f033f8016efdbee0df5354751842080e
- languageName: node
- linkType: hard
-
-"react-dom@npm:^18.0.0":
- version: 18.0.0
- resolution: "react-dom@npm:18.0.0"
- dependencies:
- loose-envify: ^1.1.0
- scheduler: ^0.21.0
- peerDependencies:
- react: ^18.0.0
- checksum: dd0ba9f2f31dd728076c892a95b2f5a8dfe79136431b0289afb46eec39d0ca6b6f0f40a60fd8aa6ef702c98ce7c26100d3d4dbc35c7c9e87429cd04f84cb58bd
- languageName: node
- linkType: hard
-
-"react@npm:^18.0.0":
- version: 18.0.0
- resolution: "react@npm:18.0.0"
- dependencies:
- loose-envify: ^1.1.0
- checksum: 293020b96536b3c7113ee57ca5c990a3f25649d1751b1c7a3aabd16dff0691fe9f1eed1206616d0906d05933536052037340a0c8d0941ff870b0eb469a2f975b
- languageName: node
- linkType: hard
-
-"readable-stream@npm:^2.0.6":
- version: 2.3.7
- resolution: "readable-stream@npm:2.3.7"
- dependencies:
- core-util-is: ~1.0.0
- inherits: ~2.0.3
- isarray: ~1.0.0
- process-nextick-args: ~2.0.0
- safe-buffer: ~5.1.1
- string_decoder: ~1.1.1
- util-deprecate: ~1.0.1
- checksum: e4920cf7549a60f8aaf694d483a0e61b2a878b969d224f89b3bc788b8d920075132c4b55a7494ee944c7b6a9a0eada28a7f6220d80b0312ece70bbf08eeca755
- languageName: node
- linkType: hard
-
-"readable-stream@npm:^3.1.1, readable-stream@npm:^3.4.0, readable-stream@npm:^3.6.0":
- version: 3.6.0
- resolution: "readable-stream@npm:3.6.0"
- dependencies:
- inherits: ^2.0.3
- string_decoder: ^1.1.1
- util-deprecate: ^1.0.1
- checksum: d4ea81502d3799439bb955a3a5d1d808592cf3133350ed352aeaa499647858b27b1c4013984900238b0873ec8d0d8defce72469fb7a83e61d53f5ad61cb80dc8
- languageName: node
- linkType: hard
-
-"regenerator-runtime@npm:^0.13.4":
- version: 0.13.9
- resolution: "regenerator-runtime@npm:0.13.9"
- checksum: 65ed455fe5afd799e2897baf691ca21c2772e1a969d19bb0c4695757c2d96249eb74ee3553ea34a91062b2a676beedf630b4c1551cc6299afb937be1426ec55e
- languageName: node
- linkType: hard
-
-"rehype-pretty-code@npm:^0.1.0":
- version: 0.1.0
- resolution: "rehype-pretty-code@npm:0.1.0"
- dependencies:
- parse-numeric-range: ^1.3.0
- peerDependencies:
- shiki: "*"
- checksum: 6a326f3ec15337417b2f901223128864f60ad97479f658bc7ac258f4764a00cece71c983970f209a61cfa076bff7243393118bd8c01d56740b6b23b08c2f95a6
- languageName: node
- linkType: hard
-
-"remark-gfm@npm:^3.0.1":
- version: 3.0.1
- resolution: "remark-gfm@npm:3.0.1"
- dependencies:
- "@types/mdast": ^3.0.0
- mdast-util-gfm: ^2.0.0
- micromark-extension-gfm: ^2.0.0
- unified: ^10.0.0
- checksum: 02254f74d67b3419c2c9cf62d799ec35f6c6cd74db25c001361751991552a7ce86049a972107bff8122d85d15ae4a8d1a0618f3bc01a7df837af021ae9b2a04e
- languageName: node
- linkType: hard
-
-"remark-mdx@npm:^2.0.0":
- version: 2.1.1
- resolution: "remark-mdx@npm:2.1.1"
- dependencies:
- mdast-util-mdx: ^2.0.0
- micromark-extension-mdxjs: ^1.0.0
- checksum: cd67006499d85b73fd69ff79e3a9202ffa831bfd243eeafd53a2d335d860e7cb4956801461d752e8791a4cface9663f787ad5c828ed028cbc0f11b12846633aa
- languageName: node
- linkType: hard
-
-"remark-parse@npm:^10.0.0":
- version: 10.0.1
- resolution: "remark-parse@npm:10.0.1"
- dependencies:
- "@types/mdast": ^3.0.0
- mdast-util-from-markdown: ^1.0.0
- unified: ^10.0.0
- checksum: 505088e564ab53ff054433368adbb7b551f69240c7d9768975529837a86f1d0f085e72d6211929c5c42db315273df4afc94f3d3a8662ffdb69468534c6643d29
- languageName: node
- linkType: hard
-
-"remark-rehype@npm:^10.0.0":
- version: 10.1.0
- resolution: "remark-rehype@npm:10.1.0"
- dependencies:
- "@types/hast": ^2.0.0
- "@types/mdast": ^3.0.0
- mdast-util-to-hast: ^12.1.0
- unified: ^10.0.0
- checksum: b9ac8acff3383b204dfdc2599d0bdf86e6ca7e837033209584af2e6aaa6a9013e519a379afa3201299798cab7298c8f4b388de118c312c67234c133318aec084
- languageName: node
- linkType: hard
-
-"remove-accents@npm:0.4.2":
- version: 0.4.2
- resolution: "remove-accents@npm:0.4.2"
- checksum: 84a6988555dea24115e2d1954db99509588d43fe55a1590f0b5894802776f7b488b3151c37ceb9e4f4b646f26b80b7325dcea2fae58bc3865df146e1fa606711
- languageName: node
- linkType: hard
-
-"retry@npm:^0.12.0":
- version: 0.12.0
- resolution: "retry@npm:0.12.0"
- checksum: 623bd7d2e5119467ba66202d733ec3c2e2e26568074923bc0585b6b99db14f357e79bdedb63cab56cec47491c4a0da7e6021a7465ca6dc4f481d3898fdd3158c
- languageName: node
- linkType: hard
-
-"rimraf@npm:^3.0.2":
- version: 3.0.2
- resolution: "rimraf@npm:3.0.2"
- dependencies:
- glob: ^7.1.3
- bin:
- rimraf: bin.js
- checksum: 87f4164e396f0171b0a3386cc1877a817f572148ee13a7e113b238e48e8a9f2f31d009a92ec38a591ff1567d9662c6b67fd8818a2dbbaed74bc26a87a2a4a9a0
- languageName: node
- linkType: hard
-
-"sade@npm:^1.7.3":
- version: 1.8.1
- resolution: "sade@npm:1.8.1"
- dependencies:
- mri: ^1.1.0
- checksum: 0756e5b04c51ccdc8221ebffd1548d0ce5a783a44a0fa9017a026659b97d632913e78f7dca59f2496aa996a0be0b0c322afd87ca72ccd909406f49dbffa0f45d
- languageName: node
- linkType: hard
-
-"safe-buffer@npm:^5.0.1, safe-buffer@npm:~5.2.0":
- version: 5.2.1
- resolution: "safe-buffer@npm:5.2.1"
- checksum: b99c4b41fdd67a6aaf280fcd05e9ffb0813654894223afb78a31f14a19ad220bba8aba1cb14eddce1fcfb037155fe6de4e861784eb434f7d11ed58d1e70dd491
- languageName: node
- linkType: hard
-
-"safe-buffer@npm:~5.1.0, safe-buffer@npm:~5.1.1":
- version: 5.1.2
- resolution: "safe-buffer@npm:5.1.2"
- checksum: f2f1f7943ca44a594893a852894055cf619c1fbcb611237fc39e461ae751187e7baf4dc391a72125e0ac4fb2d8c5c0b3c71529622e6a58f46b960211e704903c
- languageName: node
- linkType: hard
-
-"safer-buffer@npm:>= 2.1.2 < 3.0.0":
- version: 2.1.2
- resolution: "safer-buffer@npm:2.1.2"
- checksum: cab8f25ae6f1434abee8d80023d7e72b598cf1327164ddab31003c51215526801e40b66c5e65d658a0af1e9d6478cadcb4c745f4bd6751f97d8644786c0978b0
- languageName: node
- linkType: hard
-
-"scheduler@npm:^0.21.0":
- version: 0.21.0
- resolution: "scheduler@npm:0.21.0"
- dependencies:
- loose-envify: ^1.1.0
- checksum: 4f8285076041ed2c81acdd1faa987f1655fdbd30554bc667c1ea64743fc74fb3a04ca7d27454b3d678735df5a230137a3b84756061b43dc5796e80701b66d124
- languageName: node
- linkType: hard
-
-"scroll-into-view-if-needed@npm:^2.2.29":
- version: 2.2.29
- resolution: "scroll-into-view-if-needed@npm:2.2.29"
- dependencies:
- compute-scroll-into-view: ^1.0.17
- checksum: 6b888404ccf68fe2f2f1da8977e1a8a0a64a7139352e02e98621a0e8be3b3db393519ee3dcfb7c32aff3c4790a36829f1be1cccc0cfb2b90a60a61caa669eee2
- languageName: node
- linkType: hard
-
-"section-matter@npm:^1.0.0":
- version: 1.0.0
- resolution: "section-matter@npm:1.0.0"
- dependencies:
- extend-shallow: ^2.0.1
- kind-of: ^6.0.0
- checksum: 3cc4131705493b2955729b075dcf562359bba66183debb0332752dc9cad35616f6da7a23e42b6cab45cd2e4bb5cda113e9e84c8f05aee77adb6b0289a0229101
- languageName: node
- linkType: hard
-
-"semver@npm:^7.3.5, semver@npm:^7.3.7":
- version: 7.3.7
- resolution: "semver@npm:7.3.7"
- dependencies:
- lru-cache: ^6.0.0
- bin:
- semver: bin/semver.js
- checksum: 2fa3e877568cd6ce769c75c211beaed1f9fce80b28338cadd9d0b6c40f2e2862bafd62c19a6cff42f3d54292b7c623277bcab8816a2b5521cf15210d43e75232
- languageName: node
- linkType: hard
-
-"set-blocking@npm:^2.0.0, set-blocking@npm:~2.0.0":
- version: 2.0.0
- resolution: "set-blocking@npm:2.0.0"
- checksum: 6e65a05f7cf7ebdf8b7c75b101e18c0b7e3dff4940d480efed8aad3a36a4005140b660fa1d804cb8bce911cac290441dc728084a30504d3516ac2ff7ad607b02
- languageName: node
- linkType: hard
-
-"sharp@npm:^0.30.4":
- version: 0.30.4
- resolution: "sharp@npm:0.30.4"
- dependencies:
- color: ^4.2.3
- detect-libc: ^2.0.1
- node-addon-api: ^4.3.0
- node-gyp: latest
- prebuild-install: ^7.0.1
- semver: ^7.3.7
- simple-get: ^4.0.1
- tar-fs: ^2.1.1
- tunnel-agent: ^0.6.0
- checksum: 80070d8cad5fe20e7bbb2a1cfddda3f7d421f6af8302c05af8307c0b3b1972e6ed2690563e90b2897b4b499b32967d28a15e37f5d196a1f8867d630609052211
- languageName: node
- linkType: hard
-
-"shebang-command@npm:^1.2.0":
- version: 1.2.0
- resolution: "shebang-command@npm:1.2.0"
- dependencies:
- shebang-regex: ^1.0.0
- checksum: 9eed1750301e622961ba5d588af2212505e96770ec376a37ab678f965795e995ade7ed44910f5d3d3cb5e10165a1847f52d3348c64e146b8be922f7707958908
- languageName: node
- linkType: hard
-
-"shebang-regex@npm:^1.0.0":
- version: 1.0.0
- resolution: "shebang-regex@npm:1.0.0"
- checksum: 404c5a752cd40f94591dfd9346da40a735a05139dac890ffc229afba610854d8799aaa52f87f7e0c94c5007f2c6af55bdcaeb584b56691926c5eaf41dc8f1372
- languageName: node
- linkType: hard
-
-"shiki@npm:0.10.1":
- version: 0.10.1
- resolution: "shiki@npm:0.10.1"
- dependencies:
- jsonc-parser: ^3.0.0
- vscode-oniguruma: ^1.6.1
- vscode-textmate: 5.2.0
- checksum: fb746f3cb3de7e545e3b10a6cb658d3938f840e4ccc9a3c90ceb7e69a8f89dbb432171faac1e9f02a03f103684dad88ee5e54b5c4964fa6b579fca6e8e26424d
- languageName: node
- linkType: hard
-
-"signal-exit@npm:^3.0.0, signal-exit@npm:^3.0.7":
- version: 3.0.7
- resolution: "signal-exit@npm:3.0.7"
- checksum: a2f098f247adc367dffc27845853e9959b9e88b01cb301658cfe4194352d8d2bb32e18467c786a7fe15f1d44b233ea35633d076d5e737870b7139949d1ab6318
- languageName: node
- linkType: hard
-
-"simple-concat@npm:^1.0.0":
- version: 1.0.1
- resolution: "simple-concat@npm:1.0.1"
- checksum: 4d211042cc3d73a718c21ac6c4e7d7a0363e184be6a5ad25c8a1502e49df6d0a0253979e3d50dbdd3f60ef6c6c58d756b5d66ac1e05cda9cacd2e9fc59e3876a
- languageName: node
- linkType: hard
-
-"simple-get@npm:^4.0.0, simple-get@npm:^4.0.1":
- version: 4.0.1
- resolution: "simple-get@npm:4.0.1"
- dependencies:
- decompress-response: ^6.0.0
- once: ^1.3.1
- simple-concat: ^1.0.0
- checksum: e4132fd27cf7af230d853fa45c1b8ce900cb430dd0a3c6d3829649fe4f2b26574c803698076c4006450efb0fad2ba8c5455fbb5755d4b0a5ec42d4f12b31d27e
- languageName: node
- linkType: hard
-
-"simple-swizzle@npm:^0.2.2":
- version: 0.2.2
- resolution: "simple-swizzle@npm:0.2.2"
- dependencies:
- is-arrayish: ^0.3.1
- checksum: a7f3f2ab5c76c4472d5c578df892e857323e452d9f392e1b5cf74b74db66e6294a1e1b8b390b519fa1b96b5b613f2a37db6cffef52c3f1f8f3c5ea64eb2d54c0
- languageName: node
- linkType: hard
-
-"slash@npm:^3.0.0":
- version: 3.0.0
- resolution: "slash@npm:3.0.0"
- checksum: 94a93fff615f25a999ad4b83c9d5e257a7280c90a32a7cb8b4a87996e4babf322e469c42b7f649fd5796edd8687652f3fb452a86dc97a816f01113183393f11c
- languageName: node
- linkType: hard
-
-"smart-buffer@npm:^4.2.0":
- version: 4.2.0
- resolution: "smart-buffer@npm:4.2.0"
- checksum: b5167a7142c1da704c0e3af85c402002b597081dd9575031a90b4f229ca5678e9a36e8a374f1814c8156a725d17008ae3bde63b92f9cfd132526379e580bec8b
- languageName: node
- linkType: hard
-
-"socks-proxy-agent@npm:^6.1.1":
- version: 6.2.0
- resolution: "socks-proxy-agent@npm:6.2.0"
- dependencies:
- agent-base: ^6.0.2
- debug: ^4.3.3
- socks: ^2.6.2
- checksum: 6723fd64fb50334e2b340fd0a80fd8488ffc5bc43d85b7cf1d25612044f814dd7d6ea417fd47602159941236f7f4bd15669fa5d7e1f852598a31288e1a43967b
- languageName: node
- linkType: hard
-
-"socks@npm:^2.6.2":
- version: 2.6.2
- resolution: "socks@npm:2.6.2"
- dependencies:
- ip: ^1.1.5
- smart-buffer: ^4.2.0
- checksum: dd9194293059d737759d5c69273850ad4149f448426249325c4bea0e340d1cf3d266c3b022694b0dcf5d31f759de23657244c481fc1e8322add80b7985c36b5e
- languageName: node
- linkType: hard
-
-"source-map-js@npm:^1.0.1":
- version: 1.0.2
- resolution: "source-map-js@npm:1.0.2"
- checksum: c049a7fc4deb9a7e9b481ae3d424cc793cb4845daa690bc5a05d428bf41bf231ced49b4cf0c9e77f9d42fdb3d20d6187619fc586605f5eabe995a316da8d377c
- languageName: node
- linkType: hard
-
-"space-separated-tokens@npm:^2.0.0":
- version: 2.0.1
- resolution: "space-separated-tokens@npm:2.0.1"
- checksum: 66e30a6382d6e3ab0a6573d510235a198202071d4ebfef8c198f10433166f0cdced4dbf0946cad3c4b2ecc336896a11f98b2ec93047e140fe7aef6fd3a21365b
- languageName: node
- linkType: hard
-
-"sprintf-js@npm:~1.0.2":
- version: 1.0.3
- resolution: "sprintf-js@npm:1.0.3"
- checksum: 19d79aec211f09b99ec3099b5b2ae2f6e9cdefe50bc91ac4c69144b6d3928a640bb6ae5b3def70c2e85a2c3d9f5ec2719921e3a59d3ca3ef4b2fd1a4656a0df3
- languageName: node
- linkType: hard
-
-"ssri@npm:^9.0.0":
- version: 9.0.0
- resolution: "ssri@npm:9.0.0"
- dependencies:
- minipass: ^3.1.1
- checksum: bf33174232d07cc64e77ab1c51b55d28352273380c503d35642a19627e88a2c5f160039bb0a28608a353485075dda084dbf0390c7070f9f284559eb71d01b84b
- languageName: node
- linkType: hard
-
-"string-width@npm:^1.0.1":
- version: 1.0.2
- resolution: "string-width@npm:1.0.2"
- dependencies:
- code-point-at: ^1.0.0
- is-fullwidth-code-point: ^1.0.0
- strip-ansi: ^3.0.0
- checksum: 5c79439e95bc3bd7233a332c5f5926ab2ee90b23816ed4faa380ce3b2576d7800b0a5bb15ae88ed28737acc7ea06a518c2eef39142dd727adad0e45c776cd37e
- languageName: node
- linkType: hard
-
-"string-width@npm:^1.0.2 || 2 || 3 || 4, string-width@npm:^4.2.3":
- version: 4.2.3
- resolution: "string-width@npm:4.2.3"
- dependencies:
- emoji-regex: ^8.0.0
- is-fullwidth-code-point: ^3.0.0
- strip-ansi: ^6.0.1
- checksum: e52c10dc3fbfcd6c3a15f159f54a90024241d0f149cf8aed2982a2d801d2e64df0bf1dc351cf8e95c3319323f9f220c16e740b06faecd53e2462df1d2b5443fb
- languageName: node
- linkType: hard
-
-"string_decoder@npm:^1.1.1":
- version: 1.3.0
- resolution: "string_decoder@npm:1.3.0"
- dependencies:
- safe-buffer: ~5.2.0
- checksum: 8417646695a66e73aefc4420eb3b84cc9ffd89572861fe004e6aeb13c7bc00e2f616247505d2dbbef24247c372f70268f594af7126f43548565c68c117bdeb56
- languageName: node
- linkType: hard
-
-"string_decoder@npm:~1.1.1":
- version: 1.1.1
- resolution: "string_decoder@npm:1.1.1"
- dependencies:
- safe-buffer: ~5.1.0
- checksum: 9ab7e56f9d60a28f2be697419917c50cac19f3e8e6c28ef26ed5f4852289fe0de5d6997d29becf59028556f2c62983790c1d9ba1e2a3cc401768ca12d5183a5b
- languageName: node
- linkType: hard
-
-"stringify-entities@npm:^4.0.0":
- version: 4.0.2
- resolution: "stringify-entities@npm:4.0.2"
- dependencies:
- character-entities-html4: ^2.0.0
- character-entities-legacy: ^3.0.0
- checksum: a5736d92d8e2f162452121e786aa7cc8b330f2347585c373061dc756477679d0f40ee2199914aeb115cbe807c2166a4480d9344246d5e674a0a78d0ea9812fb3
- languageName: node
- linkType: hard
-
-"strip-ansi@npm:^3.0.0, strip-ansi@npm:^3.0.1":
- version: 3.0.1
- resolution: "strip-ansi@npm:3.0.1"
- dependencies:
- ansi-regex: ^2.0.0
- checksum: 9b974de611ce5075c70629c00fa98c46144043db92ae17748fb780f706f7a789e9989fd10597b7c2053ae8d1513fd707816a91f1879b2f71e6ac0b6a863db465
- languageName: node
- linkType: hard
-
-"strip-ansi@npm:^6.0.1":
- version: 6.0.1
- resolution: "strip-ansi@npm:6.0.1"
- dependencies:
- ansi-regex: ^5.0.1
- checksum: f3cd25890aef3ba6e1a74e20896c21a46f482e93df4a06567cebf2b57edabb15133f1f94e57434e0a958d61186087b1008e89c94875d019910a213181a14fc8c
- languageName: node
- linkType: hard
-
-"strip-bom-string@npm:^1.0.0":
- version: 1.0.0
- resolution: "strip-bom-string@npm:1.0.0"
- checksum: 5635a3656d8512a2c194d6c8d5dee7ef0dde6802f7be9413b91e201981ad4132506656d9cf14137f019fd50f0269390d91c7f6a2601b1bee039a4859cfce4934
- languageName: node
- linkType: hard
-
-"strip-eof@npm:^1.0.0":
- version: 1.0.0
- resolution: "strip-eof@npm:1.0.0"
- checksum: 40bc8ddd7e072f8ba0c2d6d05267b4e0a4800898c3435b5fb5f5a21e6e47dfaff18467e7aa0d1844bb5d6274c3097246595841fbfeb317e541974ee992cac506
- languageName: node
- linkType: hard
-
-"strip-json-comments@npm:~2.0.1":
- version: 2.0.1
- resolution: "strip-json-comments@npm:2.0.1"
- checksum: 1074ccb63270d32ca28edfb0a281c96b94dc679077828135141f27d52a5a398ef5e78bcf22809d23cadc2b81dfbe345eb5fd8699b385c8b1128907dec4a7d1e1
- languageName: node
- linkType: hard
-
-"style-to-object@npm:^0.3.0":
- version: 0.3.0
- resolution: "style-to-object@npm:0.3.0"
- dependencies:
- inline-style-parser: 0.1.1
- checksum: 4d7084015207f2a606dfc10c29cb5ba569f2fe8005551df7396110dd694d6ff650f2debafa95bd5d147dfb4ca50f57868e2a7f91bf5d11ef734fe7ccbd7abf59
- languageName: node
- linkType: hard
-
-"styled-jsx@npm:5.0.1":
- version: 5.0.1
- resolution: "styled-jsx@npm:5.0.1"
- peerDependencies:
- react: ">= 16.8.0 || 17.x.x || ^18.0.0-0"
- peerDependenciesMeta:
- "@babel/core":
- optional: true
- babel-plugin-macros:
- optional: true
- checksum: b85eb03da76b566065b10911a24396659b45a34efa16eef87ed8ff2ce3ea7b9b6a9c0c92c3b2113f92cbca9ab12496690d72329cb9932759ea98d0386acb38a9
- languageName: node
- linkType: hard
-
-"supports-color@npm:^4.0.0":
- version: 4.5.0
- resolution: "supports-color@npm:4.5.0"
- dependencies:
- has-flag: ^2.0.0
- checksum: 6da4f498d5c71e8619f06e4a11d16f044105faf7590b5b005fc84933fbefdf72c2b4e5b7174c66da6ddc68e7f6ef56cc960a5ebd6f2d542d910e259e61b02335
- languageName: node
- linkType: hard
-
-"tar-fs@npm:^2.0.0, tar-fs@npm:^2.1.1":
- version: 2.1.1
- resolution: "tar-fs@npm:2.1.1"
- dependencies:
- chownr: ^1.1.1
- mkdirp-classic: ^0.5.2
- pump: ^3.0.0
- tar-stream: ^2.1.4
- checksum: f5b9a70059f5b2969e65f037b4e4da2daf0fa762d3d232ffd96e819e3f94665dbbbe62f76f084f1acb4dbdcce16c6e4dac08d12ffc6d24b8d76720f4d9cf032d
- languageName: node
- linkType: hard
-
-"tar-stream@npm:^2.1.4":
- version: 2.2.0
- resolution: "tar-stream@npm:2.2.0"
- dependencies:
- bl: ^4.0.3
- end-of-stream: ^1.4.1
- fs-constants: ^1.0.0
- inherits: ^2.0.3
- readable-stream: ^3.1.1
- checksum: 699831a8b97666ef50021c767f84924cfee21c142c2eb0e79c63254e140e6408d6d55a065a2992548e72b06de39237ef2b802b99e3ece93ca3904a37622a66f3
- languageName: node
- linkType: hard
-
-"tar@npm:^6.1.11, tar@npm:^6.1.2":
- version: 6.1.11
- resolution: "tar@npm:6.1.11"
- dependencies:
- chownr: ^2.0.0
- fs-minipass: ^2.0.0
- minipass: ^3.0.0
- minizlib: ^2.1.1
- mkdirp: ^1.0.3
- yallist: ^4.0.0
- checksum: a04c07bb9e2d8f46776517d4618f2406fb977a74d914ad98b264fc3db0fe8224da5bec11e5f8902c5b9bcb8ace22d95fbe3c7b36b8593b7dfc8391a25898f32f
- languageName: node
- linkType: hard
-
-"tiny-warning@npm:^1.0.3":
- version: 1.0.3
- resolution: "tiny-warning@npm:1.0.3"
- checksum: da62c4acac565902f0624b123eed6dd3509bc9a8d30c06e017104bedcf5d35810da8ff72864400ad19c5c7806fc0a8323c68baf3e326af7cb7d969f846100d71
- languageName: node
- linkType: hard
-
-"title@npm:^3.4.2":
- version: 3.4.4
- resolution: "title@npm:3.4.4"
- dependencies:
- arg: 1.0.0
- chalk: 2.3.0
- clipboardy: 1.2.2
- titleize: 1.0.0
- bin:
- title: bin/title.js
- checksum: bc2a8728f1fff4fa29062c6fb9652ee37e46d13728661e1fd5197d74ebb2ebe122bf4c142828c2c86d95f135e653d3374c1918df35120b1eb68f357ad7669b5f
- languageName: node
- linkType: hard
-
-"titleize@npm:1.0.0":
- version: 1.0.0
- resolution: "titleize@npm:1.0.0"
- checksum: a8234b7860077f7d391d06e13c645fe2bf60431012d78ca196d4d73e4768e33cfc3a0dd881bf2f9974c8bd8beeb9d85e7842ec35d267b7c2a06f287de1c4ea7e
- languageName: node
- linkType: hard
-
-"trough@npm:^2.0.0":
- version: 2.1.0
- resolution: "trough@npm:2.1.0"
- checksum: a577bb561c2b401cc0e1d9e188fcfcdf63b09b151ff56a668da12197fe97cac15e3d77d5b51f426ccfd94255744a9118e9e9935afe81a3644fa1be9783c82886
- languageName: node
- linkType: hard
-
-"tslib@npm:^2.3.0":
- version: 2.3.1
- resolution: "tslib@npm:2.3.1"
- checksum: de17a98d4614481f7fcb5cd53ffc1aaf8654313be0291e1bfaee4b4bb31a20494b7d218ff2e15017883e8ea9626599b3b0e0229c18383ba9dce89da2adf15cb9
- languageName: node
- linkType: hard
-
-"tunnel-agent@npm:^0.6.0":
- version: 0.6.0
- resolution: "tunnel-agent@npm:0.6.0"
- dependencies:
- safe-buffer: ^5.0.1
- checksum: 05f6510358f8afc62a057b8b692f05d70c1782b70db86d6a1e0d5e28a32389e52fa6e7707b6c5ecccacc031462e4bc35af85ecfe4bbc341767917b7cf6965711
- languageName: node
- linkType: hard
-
-"unified@npm:^10.0.0":
- version: 10.1.2
- resolution: "unified@npm:10.1.2"
- dependencies:
- "@types/unist": ^2.0.0
- bail: ^2.0.0
- extend: ^3.0.0
- is-buffer: ^2.0.0
- is-plain-obj: ^4.0.0
- trough: ^2.0.0
- vfile: ^5.0.0
- checksum: 053e7c65ede644607f87bd625a299e4b709869d2f76ec8138569e6e886903b6988b21cd9699e471eda42bee189527be0a9dac05936f1d069a5e65d0125d5d756
- languageName: node
- linkType: hard
-
-"unique-filename@npm:^1.1.1":
- version: 1.1.1
- resolution: "unique-filename@npm:1.1.1"
- dependencies:
- unique-slug: ^2.0.0
- checksum: cf4998c9228cc7647ba7814e255dec51be43673903897b1786eff2ac2d670f54d4d733357eb08dea969aa5e6875d0e1bd391d668fbdb5a179744e7c7551a6f80
- languageName: node
- linkType: hard
-
-"unique-slug@npm:^2.0.0":
- version: 2.0.2
- resolution: "unique-slug@npm:2.0.2"
- dependencies:
- imurmurhash: ^0.1.4
- checksum: 5b6876a645da08d505dedb970d1571f6cebdf87044cb6b740c8dbb24f0d6e1dc8bdbf46825fd09f994d7cf50760e6f6e063cfa197d51c5902c00a861702eb75a
- languageName: node
- linkType: hard
-
-"unist-builder@npm:^3.0.0":
- version: 3.0.0
- resolution: "unist-builder@npm:3.0.0"
- dependencies:
- "@types/unist": ^2.0.0
- checksum: 80459ee3c2ece90bbc4f4b4faeed524d144c1a09ee07ff3e9004648d9b71a652e80a3b3ef60311a1e92f6ab915caf27c6f08062b5f8c84fa725bc0d7c5759e84
- languageName: node
- linkType: hard
-
-"unist-util-generated@npm:^2.0.0":
- version: 2.0.0
- resolution: "unist-util-generated@npm:2.0.0"
- checksum: 3a806793fa24a75190c217740ce706340d6cb0d51eff677134253d628f8e4355ebd8a243fe8045c583463f6bebfd50f902d653161da87c1359fcd1a14b99c8e0
- languageName: node
- linkType: hard
-
-"unist-util-is@npm:^5.0.0":
- version: 5.1.1
- resolution: "unist-util-is@npm:5.1.1"
- checksum: e8743a19a304d8a8f5684f3e5ddb5546f2655847b42123687277d76566a2aba89beb7b4a8a9e9ebc4d904cd1cecc285356d7923d973a43cfc19a1e10ff6bdee4
- languageName: node
- linkType: hard
-
-"unist-util-position-from-estree@npm:^1.0.0, unist-util-position-from-estree@npm:^1.1.0":
- version: 1.1.1
- resolution: "unist-util-position-from-estree@npm:1.1.1"
- dependencies:
- "@types/unist": ^2.0.0
- checksum: 63808bdcb8b49afa5231712d95b586fe877859ee03d23adb47485c30222007a5af55e95d103d4af51d1d16376aaa5a58fa985a08d63727c38b1515873df8b79b
- languageName: node
- linkType: hard
-
-"unist-util-position@npm:^4.0.0":
- version: 4.0.3
- resolution: "unist-util-position@npm:4.0.3"
- dependencies:
- "@types/unist": ^2.0.0
- checksum: 0d89973628d40f19345cbcc50008f7f56d411afa54434bbe6c224b22d26aaf9d4500da2de363f1f01945acab1f1c31920c514253149eb546ff9b8bbc1ea94209
- languageName: node
- linkType: hard
-
-"unist-util-remove-position@npm:^4.0.0":
- version: 4.0.1
- resolution: "unist-util-remove-position@npm:4.0.1"
- dependencies:
- "@types/unist": ^2.0.0
- unist-util-visit: ^4.0.0
- checksum: 7d2808662ac65f2b2f615822b78060419f738fb3b074b10cec77c596ea966b8f5c47553d2d322822a5975c49d2b21cdd64c198ae9fb02a9d54d1afa6342cdd6a
- languageName: node
- linkType: hard
-
-"unist-util-stringify-position@npm:^3.0.0":
- version: 3.0.2
- resolution: "unist-util-stringify-position@npm:3.0.2"
- dependencies:
- "@types/unist": ^2.0.0
- checksum: 2dfd7a0fb2a55e99cc319c3bf7f9f1f73ed652978fa70d19117faa7245d20f21738ec926ecc47f341705ca1bb157e87ced0b6bb5ecaa666bd2ae6b2510d6a671
- languageName: node
- linkType: hard
-
-"unist-util-visit-parents@npm:^4.0.0":
- version: 4.1.1
- resolution: "unist-util-visit-parents@npm:4.1.1"
- dependencies:
- "@types/unist": ^2.0.0
- unist-util-is: ^5.0.0
- checksum: 49d78984a6dd858a989f849d2b4330c8a04d1ee99c0e9920a5e37668cf847dab95db77a3bf0c8aaeb3e66abeae12e2d454949ec401614efef377d8f82d215662
- languageName: node
- linkType: hard
-
-"unist-util-visit-parents@npm:^5.0.0":
- version: 5.1.0
- resolution: "unist-util-visit-parents@npm:5.1.0"
- dependencies:
- "@types/unist": ^2.0.0
- unist-util-is: ^5.0.0
- checksum: 7c413dbb3dfcb679109fa8f0965d9abf117c3c53fa7b8823f68cac0ea53adbe98c1ce954d36c034e086c966b48b1d44d42c85f7bf6b42a032f728ac338929513
- languageName: node
- linkType: hard
-
-"unist-util-visit@npm:^3.0.0":
- version: 3.1.0
- resolution: "unist-util-visit@npm:3.1.0"
- dependencies:
- "@types/unist": ^2.0.0
- unist-util-is: ^5.0.0
- unist-util-visit-parents: ^4.0.0
- checksum: c37dbc0c5509f85f3abdf46d927b3dd11e6c419159771b1f1a5ce446d36ac993d04b087e28bc6173a172e0fbe9d77e997f120029b2b449766ebe55b6f6e0cc2c
- languageName: node
- linkType: hard
-
-"unist-util-visit@npm:^4.0.0":
- version: 4.1.0
- resolution: "unist-util-visit@npm:4.1.0"
- dependencies:
- "@types/unist": ^2.0.0
- unist-util-is: ^5.0.0
- unist-util-visit-parents: ^5.0.0
- checksum: 3521abee2ed4535092aac073d05f46255475c89781b8e9d8c951a473d91b5d6e4d5912ae4a68a4c1cf17a42ed0108cb93103c7f5c736977529969997451363fb
- languageName: node
- linkType: hard
-
-"util-deprecate@npm:^1.0.1, util-deprecate@npm:~1.0.1":
- version: 1.0.2
- resolution: "util-deprecate@npm:1.0.2"
- checksum: 474acf1146cb2701fe3b074892217553dfcf9a031280919ba1b8d651a068c9b15d863b7303cb15bd00a862b498e6cf4ad7b4a08fb134edd5a6f7641681cb54a2
- languageName: node
- linkType: hard
-
-"uvu@npm:^0.5.0":
- version: 0.5.3
- resolution: "uvu@npm:0.5.3"
- dependencies:
- dequal: ^2.0.0
- diff: ^5.0.0
- kleur: ^4.0.3
- sade: ^1.7.3
- bin:
- uvu: bin.js
- checksum: 0cf8e9e6ec79199dacc64fe0e9f82b5bf1d2308f3c54ec1aba5d1ca0a4beff4f173cae0f87bc52d35121565fd232b969fbf52cca3707e20517e62645e19b898e
- languageName: node
- linkType: hard
-
-"vfile-location@npm:^4.0.0":
- version: 4.0.1
- resolution: "vfile-location@npm:4.0.1"
- dependencies:
- "@types/unist": ^2.0.0
- vfile: ^5.0.0
- checksum: cc0df62075c741beee699e651374aeb56c4c1f4333398c0ba924281c2b51d4b7669c69c5b837ea395775626ad030d6f1bd27fd0a7eaf3f9f1bbd55393948ad6c
- languageName: node
- linkType: hard
-
-"vfile-message@npm:^3.0.0":
- version: 3.1.2
- resolution: "vfile-message@npm:3.1.2"
- dependencies:
- "@types/unist": ^2.0.0
- unist-util-stringify-position: ^3.0.0
- checksum: 96fbd9e9b5e0babb5ee61e3a716dc7a6a8c28f2c8c711837d95c88b782161b31549ad16059a78990d7b836d0f4d3b4d8c9ffde44370d48d9cac991fc1e3e17c5
- languageName: node
- linkType: hard
-
-"vfile@npm:^5.0.0":
- version: 5.3.2
- resolution: "vfile@npm:5.3.2"
- dependencies:
- "@types/unist": ^2.0.0
- is-buffer: ^2.0.0
- unist-util-stringify-position: ^3.0.0
- vfile-message: ^3.0.0
- checksum: c352a76974c4ce0a0177e157335c95a647dae9e510ed4fad9b328479eb46230dc9ade8793d4c8b7f78263314797fc5026ff14da086e3805d530645e7d8057dcb
- languageName: node
- linkType: hard
-
-"vscode-oniguruma@npm:^1.6.1":
- version: 1.6.2
- resolution: "vscode-oniguruma@npm:1.6.2"
- checksum: 6b754acdafd5b68242ea5938bb00a32effc16c77f471d4f0f337d879d0e8e592622998e2441f42d9a7ff799c1593f31c11f26ca8d9bf9917e3ca881d3c1f3e19
- languageName: node
- linkType: hard
-
-"vscode-textmate@npm:5.2.0":
- version: 5.2.0
- resolution: "vscode-textmate@npm:5.2.0"
- checksum: 5449b42d451080f6f3649b66948f4b5ee4643c4e88cfe3558a3b31c84c78060cfdd288c4958c1690eaa5cd65d09992fa6b7c3bef9d4aa72b3651054a04624d20
- languageName: node
- linkType: hard
-
-"website@workspace:.":
- version: 0.0.0-use.local
- resolution: "website@workspace:."
- dependencies:
- "@napi-rs/image": ^1.1.1
- markdown-to-jsx: ^7.1.7
- next: ^12.1.6-canary.4
- nextra: 2.0.0-alpha.49
- nextra-theme-docs: 2.0.0-alpha.50
- react: ^18.0.0
- react-dom: ^18.0.0
- sharp: ^0.30.4
- languageName: unknown
- linkType: soft
-
-"which@npm:^1.2.9":
- version: 1.3.1
- resolution: "which@npm:1.3.1"
- dependencies:
- isexe: ^2.0.0
- bin:
- which: ./bin/which
- checksum: f2e185c6242244b8426c9df1510e86629192d93c1a986a7d2a591f2c24869e7ffd03d6dac07ca863b2e4c06f59a4cc9916c585b72ee9fa1aa609d0124df15e04
- languageName: node
- linkType: hard
-
-"which@npm:^2.0.2":
- version: 2.0.2
- resolution: "which@npm:2.0.2"
- dependencies:
- isexe: ^2.0.0
- bin:
- node-which: ./bin/node-which
- checksum: 1a5c563d3c1b52d5f893c8b61afe11abc3bab4afac492e8da5bde69d550de701cf9806235f20a47b5c8fa8a1d6a9135841de2596535e998027a54589000e66d1
- languageName: node
- linkType: hard
-
-"wide-align@npm:^1.1.0, wide-align@npm:^1.1.5":
- version: 1.1.5
- resolution: "wide-align@npm:1.1.5"
- dependencies:
- string-width: ^1.0.2 || 2 || 3 || 4
- checksum: d5fc37cd561f9daee3c80e03b92ed3e84d80dde3365a8767263d03dacfc8fa06b065ffe1df00d8c2a09f731482fcacae745abfbb478d4af36d0a891fad4834d3
- languageName: node
- linkType: hard
-
-"wrappy@npm:1":
- version: 1.0.2
- resolution: "wrappy@npm:1.0.2"
- checksum: 159da4805f7e84a3d003d8841557196034155008f817172d4e986bd591f74aa82aa7db55929a54222309e01079a65a92a9e6414da5a6aa4b01ee44a511ac3ee5
- languageName: node
- linkType: hard
-
-"yallist@npm:^2.1.2":
- version: 2.1.2
- resolution: "yallist@npm:2.1.2"
- checksum: 9ba99409209f485b6fcb970330908a6d41fa1c933f75e08250316cce19383179a6b70a7e0721b89672ebb6199cc377bf3e432f55100da6a7d6e11902b0a642cb
- languageName: node
- linkType: hard
-
-"yallist@npm:^4.0.0":
- version: 4.0.0
- resolution: "yallist@npm:4.0.0"
- checksum: 343617202af32df2a15a3be36a5a8c0c8545208f3d3dfbc6bb7c3e3b7e8c6f8e7485432e4f3b88da3031a6e20afa7c711eded32ddfb122896ac5d914e75848d5
- languageName: node
- linkType: hard
-
-"yocto-queue@npm:^1.0.0":
- version: 1.0.0
- resolution: "yocto-queue@npm:1.0.0"
- checksum: 2cac84540f65c64ccc1683c267edce396b26b1e931aa429660aefac8fbe0188167b7aee815a3c22fa59a28a58d898d1a2b1825048f834d8d629f4c2a5d443801
- languageName: node
- linkType: hard
-
-"zwitch@npm:^2.0.0":
- version: 2.0.2
- resolution: "zwitch@npm:2.0.2"
- checksum: 8edd7af8375f12f64d8dbef815af32cd77bd9237d0b013210ba4e3aef25fdc460fe264cd0a19deabe9f86ef0c607240ebac1a336bf4a70bf06ef53e0652de116
- languageName: node
- linkType: hard
diff --git a/yarn.lock b/yarn.lock
index a3d78e0..dae4a32 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -32,6 +32,15 @@ __metadata:
languageName: node
linkType: hard
+"@babel/runtime@npm:^7.10.5":
+ version: 7.17.9
+ resolution: "@babel/runtime@npm:7.17.9"
+ dependencies:
+ regenerator-runtime: ^0.13.4
+ checksum: 4d56bdb82890f386d5a57c40ef985a0ed7f0a78f789377a2d0c3e8826819e0f7f16ba0fe906d9b2241c5f7ca56630ef0653f5bb99f03771f7b87ff8af4bf5fe3
+ languageName: node
+ linkType: hard
+
"@gar/promisify@npm:^1.0.1, @gar/promisify@npm:^1.1.3":
version: 1.1.3
resolution: "@gar/promisify@npm:1.1.3"
@@ -39,6 +48,16 @@ __metadata:
languageName: node
linkType: hard
+"@headlessui/react@npm:^1.5.0":
+ version: 1.5.0
+ resolution: "@headlessui/react@npm:1.5.0"
+ peerDependencies:
+ react: ^16 || ^17 || ^18
+ react-dom: ^16 || ^17 || ^18
+ checksum: e3373dfb73936950d659a87718fb9fdedc599b344b30cb0d8b1ef0a2ec13d6f405c653fa51284236788658840ece82c6a8538a5a5931e595274e9590b2020079
+ languageName: node
+ linkType: hard
+
"@hutson/parse-repository-url@npm:^3.0.0":
version: 3.0.2
resolution: "@hutson/parse-repository-url@npm:3.0.2"
@@ -835,6 +854,43 @@ __metadata:
languageName: node
linkType: hard
+"@mdx-js/mdx@npm:^2.1.0":
+ version: 2.1.1
+ resolution: "@mdx-js/mdx@npm:2.1.1"
+ dependencies:
+ "@types/estree-jsx": ^0.0.1
+ "@types/mdx": ^2.0.0
+ astring: ^1.6.0
+ estree-util-build-jsx: ^2.0.0
+ estree-util-is-identifier-name: ^2.0.0
+ estree-walker: ^3.0.0
+ hast-util-to-estree: ^2.0.0
+ markdown-extensions: ^1.0.0
+ periscopic: ^3.0.0
+ remark-mdx: ^2.0.0
+ remark-parse: ^10.0.0
+ remark-rehype: ^10.0.0
+ unified: ^10.0.0
+ unist-util-position-from-estree: ^1.0.0
+ unist-util-stringify-position: ^3.0.0
+ unist-util-visit: ^4.0.0
+ vfile: ^5.0.0
+ checksum: 565d0cf10b78f49c7f3bf098f529094e9084732e1138fbd02505ad9f42fbfb201dde7fa40261293972173b32192246e912b0bd174b1df453d4f916c995276b41
+ languageName: node
+ linkType: hard
+
+"@mdx-js/react@npm:^2.1.0":
+ version: 2.1.1
+ resolution: "@mdx-js/react@npm:2.1.1"
+ dependencies:
+ "@types/mdx": ^2.0.0
+ "@types/react": ">=16"
+ peerDependencies:
+ react: ">=16"
+ checksum: e6f1f0a3a7afa893c107744309a5d2a8654a0643c119bbe3d5ec3ad2ba31cf371e94f3dfe7331eb3aa9f3f4582594ec3f7dd11fc909560e512f95b35335ed34e
+ languageName: node
+ linkType: hard
+
"@napi-rs/cli@npm:^2.6.2":
version: 2.6.2
resolution: "@napi-rs/cli@npm:2.6.2"
@@ -850,12 +906,224 @@ __metadata:
languageName: unknown
linkType: soft
-"@napi-rs/image@workspace:packages/binding":
+"@napi-rs/image@^1.1.1, @napi-rs/image@workspace:packages/binding":
version: 0.0.0-use.local
resolution: "@napi-rs/image@workspace:packages/binding"
+ dependencies:
+ "@napi-rs/cli": ^2.6.2
languageName: unknown
linkType: soft
+"@napi-rs/simple-git-android-arm-eabi@npm:0.1.7":
+ version: 0.1.7
+ resolution: "@napi-rs/simple-git-android-arm-eabi@npm:0.1.7"
+ conditions: os=android & cpu=arm
+ languageName: node
+ linkType: hard
+
+"@napi-rs/simple-git-android-arm64@npm:0.1.7":
+ version: 0.1.7
+ resolution: "@napi-rs/simple-git-android-arm64@npm:0.1.7"
+ conditions: os=android & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@napi-rs/simple-git-darwin-arm64@npm:0.1.7":
+ version: 0.1.7
+ resolution: "@napi-rs/simple-git-darwin-arm64@npm:0.1.7"
+ conditions: os=darwin & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@napi-rs/simple-git-darwin-x64@npm:0.1.7":
+ version: 0.1.7
+ resolution: "@napi-rs/simple-git-darwin-x64@npm:0.1.7"
+ conditions: os=darwin & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@napi-rs/simple-git-linux-arm-gnueabihf@npm:0.1.7":
+ version: 0.1.7
+ resolution: "@napi-rs/simple-git-linux-arm-gnueabihf@npm:0.1.7"
+ conditions: os=linux & cpu=arm
+ languageName: node
+ linkType: hard
+
+"@napi-rs/simple-git-linux-arm64-gnu@npm:0.1.7":
+ version: 0.1.7
+ resolution: "@napi-rs/simple-git-linux-arm64-gnu@npm:0.1.7"
+ conditions: os=linux & cpu=arm64 & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@napi-rs/simple-git-linux-arm64-musl@npm:0.1.7":
+ version: 0.1.7
+ resolution: "@napi-rs/simple-git-linux-arm64-musl@npm:0.1.7"
+ conditions: os=linux & cpu=arm64 & libc=musl
+ languageName: node
+ linkType: hard
+
+"@napi-rs/simple-git-linux-x64-gnu@npm:0.1.7":
+ version: 0.1.7
+ resolution: "@napi-rs/simple-git-linux-x64-gnu@npm:0.1.7"
+ conditions: os=linux & cpu=x64 & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@napi-rs/simple-git-linux-x64-musl@npm:0.1.7":
+ version: 0.1.7
+ resolution: "@napi-rs/simple-git-linux-x64-musl@npm:0.1.7"
+ conditions: os=linux & cpu=x64 & libc=musl
+ languageName: node
+ linkType: hard
+
+"@napi-rs/simple-git-win32-arm64-msvc@npm:0.1.7":
+ version: 0.1.7
+ resolution: "@napi-rs/simple-git-win32-arm64-msvc@npm:0.1.7"
+ conditions: os=win32 & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@napi-rs/simple-git-win32-x64-msvc@npm:0.1.7":
+ version: 0.1.7
+ resolution: "@napi-rs/simple-git-win32-x64-msvc@npm:0.1.7"
+ conditions: os=win32 & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@napi-rs/simple-git@npm:^0.1.7":
+ version: 0.1.7
+ resolution: "@napi-rs/simple-git@npm:0.1.7"
+ dependencies:
+ "@napi-rs/simple-git-android-arm-eabi": 0.1.7
+ "@napi-rs/simple-git-android-arm64": 0.1.7
+ "@napi-rs/simple-git-darwin-arm64": 0.1.7
+ "@napi-rs/simple-git-darwin-x64": 0.1.7
+ "@napi-rs/simple-git-linux-arm-gnueabihf": 0.1.7
+ "@napi-rs/simple-git-linux-arm64-gnu": 0.1.7
+ "@napi-rs/simple-git-linux-arm64-musl": 0.1.7
+ "@napi-rs/simple-git-linux-x64-gnu": 0.1.7
+ "@napi-rs/simple-git-linux-x64-musl": 0.1.7
+ "@napi-rs/simple-git-win32-arm64-msvc": 0.1.7
+ "@napi-rs/simple-git-win32-x64-msvc": 0.1.7
+ dependenciesMeta:
+ "@napi-rs/simple-git-android-arm-eabi":
+ optional: true
+ "@napi-rs/simple-git-android-arm64":
+ optional: true
+ "@napi-rs/simple-git-darwin-arm64":
+ optional: true
+ "@napi-rs/simple-git-darwin-x64":
+ optional: true
+ "@napi-rs/simple-git-linux-arm-gnueabihf":
+ optional: true
+ "@napi-rs/simple-git-linux-arm64-gnu":
+ optional: true
+ "@napi-rs/simple-git-linux-arm64-musl":
+ optional: true
+ "@napi-rs/simple-git-linux-x64-gnu":
+ optional: true
+ "@napi-rs/simple-git-linux-x64-musl":
+ optional: true
+ "@napi-rs/simple-git-win32-arm64-msvc":
+ optional: true
+ "@napi-rs/simple-git-win32-x64-msvc":
+ optional: true
+ checksum: 9eb2f02144bb3a5b6d19205c294b137990b14d7f282f8b96cbcc5149a436100f7410ab6b501d8d678ae1c76c97d2d284ebfb33ec22b6fd1ae643d7d578f3d5fa
+ languageName: node
+ linkType: hard
+
+"@next/env@npm:12.1.6-canary.5":
+ version: 12.1.6-canary.5
+ resolution: "@next/env@npm:12.1.6-canary.5"
+ checksum: 29bc26457122141c6898b86c2f7d9e436ed989358242c331f9bfe030bce25abeda1287a0d8ca49e45a78a3c0b309357519fe1da0c5c85e3ba95e6487ae5ad857
+ languageName: node
+ linkType: hard
+
+"@next/swc-android-arm-eabi@npm:12.1.6-canary.5":
+ version: 12.1.6-canary.5
+ resolution: "@next/swc-android-arm-eabi@npm:12.1.6-canary.5"
+ conditions: os=android & cpu=arm
+ languageName: node
+ linkType: hard
+
+"@next/swc-android-arm64@npm:12.1.6-canary.5":
+ version: 12.1.6-canary.5
+ resolution: "@next/swc-android-arm64@npm:12.1.6-canary.5"
+ conditions: os=android & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@next/swc-darwin-arm64@npm:12.1.6-canary.5":
+ version: 12.1.6-canary.5
+ resolution: "@next/swc-darwin-arm64@npm:12.1.6-canary.5"
+ conditions: os=darwin & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@next/swc-darwin-x64@npm:12.1.6-canary.5":
+ version: 12.1.6-canary.5
+ resolution: "@next/swc-darwin-x64@npm:12.1.6-canary.5"
+ conditions: os=darwin & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@next/swc-linux-arm-gnueabihf@npm:12.1.6-canary.5":
+ version: 12.1.6-canary.5
+ resolution: "@next/swc-linux-arm-gnueabihf@npm:12.1.6-canary.5"
+ conditions: os=linux & cpu=arm
+ languageName: node
+ linkType: hard
+
+"@next/swc-linux-arm64-gnu@npm:12.1.6-canary.5":
+ version: 12.1.6-canary.5
+ resolution: "@next/swc-linux-arm64-gnu@npm:12.1.6-canary.5"
+ conditions: os=linux & cpu=arm64 & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@next/swc-linux-arm64-musl@npm:12.1.6-canary.5":
+ version: 12.1.6-canary.5
+ resolution: "@next/swc-linux-arm64-musl@npm:12.1.6-canary.5"
+ conditions: os=linux & cpu=arm64 & libc=musl
+ languageName: node
+ linkType: hard
+
+"@next/swc-linux-x64-gnu@npm:12.1.6-canary.5":
+ version: 12.1.6-canary.5
+ resolution: "@next/swc-linux-x64-gnu@npm:12.1.6-canary.5"
+ conditions: os=linux & cpu=x64 & libc=glibc
+ languageName: node
+ linkType: hard
+
+"@next/swc-linux-x64-musl@npm:12.1.6-canary.5":
+ version: 12.1.6-canary.5
+ resolution: "@next/swc-linux-x64-musl@npm:12.1.6-canary.5"
+ conditions: os=linux & cpu=x64 & libc=musl
+ languageName: node
+ linkType: hard
+
+"@next/swc-win32-arm64-msvc@npm:12.1.6-canary.5":
+ version: 12.1.6-canary.5
+ resolution: "@next/swc-win32-arm64-msvc@npm:12.1.6-canary.5"
+ conditions: os=win32 & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@next/swc-win32-ia32-msvc@npm:12.1.6-canary.5":
+ version: 12.1.6-canary.5
+ resolution: "@next/swc-win32-ia32-msvc@npm:12.1.6-canary.5"
+ conditions: os=win32 & cpu=ia32
+ languageName: node
+ linkType: hard
+
+"@next/swc-win32-x64-msvc@npm:12.1.6-canary.5":
+ version: 12.1.6-canary.5
+ resolution: "@next/swc-win32-x64-msvc@npm:12.1.6-canary.5"
+ conditions: os=win32 & cpu=x64
+ languageName: node
+ linkType: hard
+
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
@@ -1124,6 +1392,32 @@ __metadata:
languageName: node
linkType: hard
+"@reach/skip-nav@npm:^0.16.0":
+ version: 0.16.0
+ resolution: "@reach/skip-nav@npm:0.16.0"
+ dependencies:
+ "@reach/utils": 0.16.0
+ tslib: ^2.3.0
+ peerDependencies:
+ react: ^16.8.0 || 17.x
+ react-dom: ^16.8.0 || 17.x
+ checksum: 8b8278dbdb8d3702ef14874c040a9289c11f718e68cdbe1e3ecd02eb515cfcf3105ab000097fa7d8633066894ab68a712f0eb87917bd08322e126b28c4bf7f50
+ languageName: node
+ linkType: hard
+
+"@reach/utils@npm:0.16.0":
+ version: 0.16.0
+ resolution: "@reach/utils@npm:0.16.0"
+ dependencies:
+ tiny-warning: ^1.0.3
+ tslib: ^2.3.0
+ peerDependencies:
+ react: ^16.8.0 || 17.x
+ react-dom: ^16.8.0 || 17.x
+ checksum: 36bc0eb41a71798eb6186b23de265ba709e51dae5bf214fb8505c66bb3f2e6a41bb2401457350436ba89ca9e3a50f93a04fe7c33d15648ce11e568a85622d770
+ languageName: node
+ linkType: hard
+
"@taplo/cli@npm:^0.3.2":
version: 0.3.2
resolution: "@taplo/cli@npm:0.3.2"
@@ -1150,6 +1444,79 @@ __metadata:
languageName: node
linkType: hard
+"@types/acorn@npm:^4.0.0":
+ version: 4.0.6
+ resolution: "@types/acorn@npm:4.0.6"
+ dependencies:
+ "@types/estree": "*"
+ checksum: 60e1fd28af18d6cb54a93a7231c7c18774a9a8739c9b179e9e8750dca631e10cbef2d82b02830ea3f557b1d121e6406441e9e1250bd492dc81d4b3456e76e4d4
+ languageName: node
+ linkType: hard
+
+"@types/debug@npm:^4.0.0":
+ version: 4.1.7
+ resolution: "@types/debug@npm:4.1.7"
+ dependencies:
+ "@types/ms": "*"
+ checksum: 0a7b89d8ed72526858f0b61c6fd81f477853e8c4415bb97f48b1b5545248d2ae389931680b94b393b993a7cfe893537a200647d93defe6d87159b96812305adc
+ languageName: node
+ linkType: hard
+
+"@types/estree-jsx@npm:^0.0.1":
+ version: 0.0.1
+ resolution: "@types/estree-jsx@npm:0.0.1"
+ dependencies:
+ "@types/estree": "*"
+ checksum: aed43dfcbcc9c881f571618847661cd69026680466657d1443c12f51d835c7a8ccf5109a800e56c8fc33ae093f096aa937e4656ce3eb71c4f914334c389cf7be
+ languageName: node
+ linkType: hard
+
+"@types/estree@npm:*, @types/estree@npm:^0.0.51":
+ version: 0.0.51
+ resolution: "@types/estree@npm:0.0.51"
+ checksum: e56a3bcf759fd9185e992e7fdb3c6a5f81e8ff120e871641607581fb3728d16c811702a7d40fa5f869b7f7b4437ab6a87eb8d98ffafeee51e85bbe955932a189
+ languageName: node
+ linkType: hard
+
+"@types/estree@npm:^0.0.46":
+ version: 0.0.46
+ resolution: "@types/estree@npm:0.0.46"
+ checksum: 620f7549c8cf99fe1c91a943a42ae2684c18f6007dc1bd6a439a2bf3204022ab746ffb3be5244c70d43a822beeb3c948216be1a69cb25e79005daeca4ebe5722
+ languageName: node
+ linkType: hard
+
+"@types/hast@npm:^2.0.0":
+ version: 2.3.4
+ resolution: "@types/hast@npm:2.3.4"
+ dependencies:
+ "@types/unist": "*"
+ checksum: fff47998f4c11e21a7454b58673f70478740ecdafd95aaf50b70a3daa7da9cdc57315545bf9c039613732c40b7b0e9e49d11d03fe9a4304721cdc3b29a88141e
+ languageName: node
+ linkType: hard
+
+"@types/mdast@npm:^3.0.0":
+ version: 3.0.10
+ resolution: "@types/mdast@npm:3.0.10"
+ dependencies:
+ "@types/unist": "*"
+ checksum: 3f587bfc0a9a2403ecadc220e61031b01734fedaf82e27eb4d5ba039c0eb54db8c85681ccc070ab4df3f7ec711b736a82b990e69caa14c74bf7ac0ccf2ac7313
+ languageName: node
+ linkType: hard
+
+"@types/mdurl@npm:^1.0.0":
+ version: 1.0.2
+ resolution: "@types/mdurl@npm:1.0.2"
+ checksum: 79c7e523b377f53cf1f5a240fe23d0c6cae856667692bd21bf1d064eafe5ccc40ae39a2aa0a9a51e8c94d1307228c8f6b121e847124591a9a828c3baf65e86e2
+ languageName: node
+ linkType: hard
+
+"@types/mdx@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "@types/mdx@npm:2.0.1"
+ checksum: 521ee9f976af45859a4dd60b159e1cc09109de49ec5570fe70f34cddb0a7b5472b87c1bea743429270398207a997821dec34fd7bd63cbc2a1e5f2f6c701dd1c2
+ languageName: node
+ linkType: hard
+
"@types/minimatch@npm:^3.0.3":
version: 3.0.5
resolution: "@types/minimatch@npm:3.0.5"
@@ -1164,10 +1531,17 @@ __metadata:
languageName: node
linkType: hard
+"@types/ms@npm:*":
+ version: 0.7.31
+ resolution: "@types/ms@npm:0.7.31"
+ checksum: daadd354aedde024cce6f5aa873fefe7b71b22cd0e28632a69e8b677aeb48ae8caa1c60e5919bb781df040d116b01cb4316335167a3fc0ef6a63fa3614c0f6da
+ languageName: node
+ linkType: hard
+
"@types/node@npm:*, @types/node@npm:^17.0.23":
- version: 17.0.23
- resolution: "@types/node@npm:17.0.23"
- checksum: a3517554737cbb042e76c30d0e5482192ac4d9bea0eeb086e2622d9cabf460a0eb52a696b99fcd18e7fcc93c96db6cc7ae507f6608f256ef0b5c1d8c87a5a470
+ version: 17.0.25
+ resolution: "@types/node@npm:17.0.25"
+ checksum: 6a820bd624e69ea772f52a6cdb326484eff5829443dc981939373929ade109f58c21698b9f0a831bd6ceea799e722a75dc49c5fa7a6bc32a81e1cbdfc6507b64
languageName: node
linkType: hard
@@ -1185,12 +1559,44 @@ __metadata:
languageName: node
linkType: hard
+"@types/prop-types@npm:*":
+ version: 15.7.5
+ resolution: "@types/prop-types@npm:15.7.5"
+ checksum: 5b43b8b15415e1f298243165f1d44390403bb2bd42e662bca3b5b5633fdd39c938e91b7fce3a9483699db0f7a715d08cef220c121f723a634972fdf596aec980
+ languageName: node
+ linkType: hard
+
+"@types/react@npm:>=16":
+ version: 18.0.6
+ resolution: "@types/react@npm:18.0.6"
+ dependencies:
+ "@types/prop-types": "*"
+ "@types/scheduler": "*"
+ csstype: ^3.0.2
+ checksum: 368b40176f0dab30a611c3263bf1d9878cebede9ce8015bc5661a396787dbe41f0b667b8d6d448dea7bc8c0557bf3cb329ab2b16ad2dacb18eaa764358bd16d4
+ languageName: node
+ linkType: hard
+
+"@types/scheduler@npm:*":
+ version: 0.16.2
+ resolution: "@types/scheduler@npm:0.16.2"
+ checksum: b6b4dcfeae6deba2e06a70941860fb1435730576d3689225a421280b7742318d1548b3d22c1f66ab68e414f346a9542f29240bc955b6332c5b11e561077583bc
+ languageName: node
+ linkType: hard
+
"@types/sharp@npm:^0.30.1":
- version: 0.30.1
- resolution: "@types/sharp@npm:0.30.1"
+ version: 0.30.2
+ resolution: "@types/sharp@npm:0.30.2"
dependencies:
"@types/node": "*"
- checksum: cb085ca7456caf20b9f787fd43d910976fa6d0cd951109e51636160083f23cc8798c5a01ab56058861edabd1acd00950b1e2bb8dc954355f73270cf1d1aa3534
+ checksum: dc6b332c309e1eb62e98b62f92829c4b06c3adb474c1ee8b504eb95e6d43be8804b8d541874d0769160595fdf46f7a7a0fe544a3659482ad0a19ac700944f3a4
+ languageName: node
+ linkType: hard
+
+"@types/unist@npm:*, @types/unist@npm:^2.0.0":
+ version: 2.0.6
+ resolution: "@types/unist@npm:2.0.6"
+ checksum: 25cb860ff10dde48b54622d58b23e66214211a61c84c0f15f88d38b61aa1b53d4d46e42b557924a93178c501c166aa37e28d7f6d994aba13d24685326272d5db
languageName: node
linkType: hard
@@ -1213,6 +1619,15 @@ __metadata:
languageName: node
linkType: hard
+"acorn-jsx@npm:^5.0.0":
+ version: 5.3.2
+ resolution: "acorn-jsx@npm:5.3.2"
+ peerDependencies:
+ acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+ checksum: c3d3b2a89c9a056b205b69530a37b972b404ee46ec8e5b341666f9513d3163e2a4f214a71f4dfc7370f5a9c07472d2fd1c11c91c3f03d093e37637d95da98950
+ languageName: node
+ linkType: hard
+
"acorn-walk@npm:^8.2.0":
version: 8.2.0
resolution: "acorn-walk@npm:8.2.0"
@@ -1220,7 +1635,7 @@ __metadata:
languageName: node
linkType: hard
-"acorn@npm:^8.7.0":
+"acorn@npm:^8.0.0, acorn@npm:^8.7.0":
version: 8.7.0
resolution: "acorn@npm:8.7.0"
bin:
@@ -1318,7 +1733,7 @@ __metadata:
languageName: node
linkType: hard
-"ansi-styles@npm:^3.2.1":
+"ansi-styles@npm:^3.1.0, ansi-styles@npm:^3.2.1":
version: 3.2.1
resolution: "ansi-styles@npm:3.2.1"
dependencies:
@@ -1367,6 +1782,13 @@ __metadata:
languageName: node
linkType: hard
+"arch@npm:^2.1.0":
+ version: 2.2.0
+ resolution: "arch@npm:2.2.0"
+ checksum: e21b7635029fe8e9cdd5a026f9a6c659103e63fff423834323cdf836a1bb240a72d0c39ca8c470f84643385cf581bd8eda2cad8bf493e27e54bd9783abe9101f
+ languageName: node
+ linkType: hard
+
"are-we-there-yet@npm:^3.0.0":
version: 3.0.0
resolution: "are-we-there-yet@npm:3.0.0"
@@ -1387,6 +1809,13 @@ __metadata:
languageName: node
linkType: hard
+"arg@npm:1.0.0":
+ version: 1.0.0
+ resolution: "arg@npm:1.0.0"
+ checksum: 0a35939e3cb59d4f18207884563e00b0f71647becccec932348e9c5bdecfe6ca41b2ed854bbb267a2e87f97f605ed3ca936f2f0b3313bf88be6d7cdbb2d0a4b1
+ languageName: node
+ linkType: hard
+
"argparse@npm:^1.0.7":
version: 1.0.10
resolution: "argparse@npm:1.0.10"
@@ -1475,6 +1904,15 @@ __metadata:
languageName: node
linkType: hard
+"astring@npm:^1.6.0":
+ version: 1.8.1
+ resolution: "astring@npm:1.8.1"
+ bin:
+ astring: bin/astring
+ checksum: 2a86ff8cc0c8f25694865cb8b22cdff784b8a0b115bd970c3def864618f22fe6ea78c3bef3ecdc359b2e5eb254a16d408ab06fa52a44e887b298cbf980a8083c
+ languageName: node
+ linkType: hard
+
"asynckit@npm:^0.4.0":
version: 0.4.0
resolution: "asynckit@npm:0.4.0"
@@ -1490,8 +1928,8 @@ __metadata:
linkType: hard
"ava@npm:^4.1.0":
- version: 4.1.0
- resolution: "ava@npm:4.1.0"
+ version: 4.2.0
+ resolution: "ava@npm:4.2.0"
dependencies:
acorn: ^8.7.0
acorn-walk: ^8.2.0
@@ -1545,7 +1983,7 @@ __metadata:
optional: true
bin:
ava: entrypoints/cli.mjs
- checksum: 09ef03da8ef0ec612018252930e8d05565a5ad6079bb144935784dfec81c2625a35ff07c068ebce08eb20e41821466d2895d2b1fd94d867e6f9da8766714557c
+ checksum: dc43f8b775f93f6fe2332de83e0051cdfef63014921fe79a57fc3c2b586d6443981091f7c193131a25b378655449fce9f5080460360a09d258f1697e3bfbb04d
languageName: node
linkType: hard
@@ -1563,6 +2001,13 @@ __metadata:
languageName: node
linkType: hard
+"bail@npm:^2.0.0":
+ version: 2.0.2
+ resolution: "bail@npm:2.0.2"
+ checksum: aab4e8ccdc8d762bf3fdfce8e706601695620c0c2eda256dd85088dc0be3cfd7ff126f6e99c2bee1f24f5d418414aacf09d7f9702f16d6963df2fa488cda8824
+ languageName: node
+ linkType: hard
+
"balanced-match@npm:^1.0.0":
version: 1.0.2
resolution: "balanced-match@npm:1.0.2"
@@ -1635,6 +2080,15 @@ __metadata:
languageName: node
linkType: hard
+"brace-expansion@npm:^2.0.1":
+ version: 2.0.1
+ resolution: "brace-expansion@npm:2.0.1"
+ dependencies:
+ balanced-match: ^1.0.0
+ checksum: a61e7cd2e8a8505e9f0036b3b6108ba5e926b4b55089eeb5550cd04a471fe216c96d4fe7e4c7f995c728c554ae20ddfc4244cad10aef255e72b62930afd233d1
+ languageName: node
+ linkType: hard
+
"braces@npm:^3.0.2, braces@npm:~3.0.2":
version: 3.0.2
resolution: "braces@npm:3.0.2"
@@ -1709,14 +2163,14 @@ __metadata:
linkType: hard
"cacache@npm:^16.0.2":
- version: 16.0.4
- resolution: "cacache@npm:16.0.4"
+ version: 16.0.6
+ resolution: "cacache@npm:16.0.6"
dependencies:
"@npmcli/fs": ^2.1.0
"@npmcli/move-file": ^2.0.0
chownr: ^2.0.0
fs-minipass: ^2.1.0
- glob: ^7.2.0
+ glob: ^8.0.1
infer-owner: ^1.0.4
lru-cache: ^7.7.1
minipass: ^3.1.6
@@ -1730,7 +2184,7 @@ __metadata:
ssri: ^9.0.0
tar: ^6.1.11
unique-filename: ^1.1.1
- checksum: f5ddd45e5b1ff5001f9d1fcbc95f1dc210e6b04fbaf92782dd16a514e9a8082efba6eac43dac3d881e2ab5829f5ad857d7deda58cbef235e93d075e8f378214a
+ checksum: c9813d4aa0452ecfdb7f796d931d0b8068fc921a3575fb858c26ab12ed41634a995135dbd56afd64ec4de141bd78c7021ce5aeabce83453c7342d3ed126815df
languageName: node
linkType: hard
@@ -1776,6 +2230,13 @@ __metadata:
languageName: node
linkType: hard
+"caniuse-lite@npm:^1.0.30001283":
+ version: 1.0.30001332
+ resolution: "caniuse-lite@npm:1.0.30001332"
+ checksum: e54182ea42ab3d2ff1440f9a6480292f7ab23c00c188df7ad65586312e4da567e8bedd5cb5fb8f0ff4193dc027a54e17e0b3c0b6db5d5a3fb61c7726ff9c45b3
+ languageName: node
+ linkType: hard
+
"caseless@npm:~0.12.0":
version: 0.12.0
resolution: "caseless@npm:0.12.0"
@@ -1792,6 +2253,24 @@ __metadata:
languageName: node
linkType: hard
+"ccount@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "ccount@npm:2.0.1"
+ checksum: 48193dada54c9e260e0acf57fc16171a225305548f9ad20d5471e0f7a8c026aedd8747091dccb0d900cde7df4e4ddbd235df0d8de4a64c71b12f0d3303eeafd4
+ languageName: node
+ linkType: hard
+
+"chalk@npm:2.3.0":
+ version: 2.3.0
+ resolution: "chalk@npm:2.3.0"
+ dependencies:
+ ansi-styles: ^3.1.0
+ escape-string-regexp: ^1.0.5
+ supports-color: ^4.0.0
+ checksum: d348fc0f4f8d27c068a6ac492e708fa35a75e273d5f0004da61ea694e958981658c96693790f4d23e7b3712f9e3e4ca0988136cb0403876de5459a4c0d13078f
+ languageName: node
+ linkType: hard
+
"chalk@npm:^2.0.0, chalk@npm:^2.4.1":
version: 2.4.2
resolution: "chalk@npm:2.4.2"
@@ -1820,6 +2299,34 @@ __metadata:
languageName: node
linkType: hard
+"character-entities-html4@npm:^2.0.0":
+ version: 2.1.0
+ resolution: "character-entities-html4@npm:2.1.0"
+ checksum: 7034aa7c7fa90309667f6dd50499c8a760c3d3a6fb159adb4e0bada0107d194551cdbad0714302f62d06ce4ed68565c8c2e15fdef2e8f8764eb63fa92b34b11d
+ languageName: node
+ linkType: hard
+
+"character-entities-legacy@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "character-entities-legacy@npm:3.0.0"
+ checksum: 7582af055cb488b626d364b7d7a4e46b06abd526fb63c0e4eb35bcb9c9799cc4f76b39f34fdccef2d1174ac95e53e9ab355aae83227c1a2505877893fce77731
+ languageName: node
+ linkType: hard
+
+"character-entities@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "character-entities@npm:2.0.1"
+ checksum: 1165064dbe1cc1f3cd5b28eba0e94f051d97bdd65463b0e763d6a8aae527443596f9e0e774a79c4a66de0c47ad95c94fc5fb2c7f6bec6551b5580f730a8da341
+ languageName: node
+ linkType: hard
+
+"character-reference-invalid@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "character-reference-invalid@npm:2.0.1"
+ checksum: 98d3b1a52ae510b7329e6ee7f6210df14f1e318c5415975d4c9e7ee0ef4c07875d47c6e74230c64551f12f556b4a8ccc24d9f3691a2aa197019e72a95e9297ee
+ languageName: node
+ linkType: hard
+
"chardet@npm:^0.7.0":
version: 0.7.0
resolution: "chardet@npm:0.7.0"
@@ -1888,6 +2395,13 @@ __metadata:
languageName: node
linkType: hard
+"classnames@npm:^2.2.6":
+ version: 2.3.1
+ resolution: "classnames@npm:2.3.1"
+ checksum: 14db8889d56c267a591f08b0834989fe542d47fac659af5a539e110cc4266694e8de86e4e3bbd271157dbd831361310a8293e0167141e80b0f03a0f175c80960
+ languageName: node
+ linkType: hard
+
"clean-stack@npm:^2.0.0":
version: 2.2.0
resolution: "clean-stack@npm:2.2.0"
@@ -1937,6 +2451,16 @@ __metadata:
languageName: node
linkType: hard
+"clipboardy@npm:1.2.2":
+ version: 1.2.2
+ resolution: "clipboardy@npm:1.2.2"
+ dependencies:
+ arch: ^2.1.0
+ execa: ^0.8.0
+ checksum: 7744a95e014e5945f17554b426fe78c6e1329ead85a61fa589dd4c3f4a596a037d45cad0bfaa3e60bdf77717f0dfda67c35454216f4dbb7832ec0eba42ba8a06
+ languageName: node
+ linkType: hard
+
"cliui@npm:^7.0.2":
version: 7.0.4
resolution: "cliui@npm:7.0.4"
@@ -2071,6 +2595,13 @@ __metadata:
languageName: node
linkType: hard
+"comma-separated-tokens@npm:^2.0.0":
+ version: 2.0.2
+ resolution: "comma-separated-tokens@npm:2.0.2"
+ checksum: 8fa68ff2605233571536a802a7c712b0c766e0c5088e067be72740054e84d040865eea945c984924ae84932bcc3e25a99f71601220b438e875b5f42b87277767
+ languageName: node
+ linkType: hard
+
"common-path-prefix@npm:^3.0.0":
version: 3.0.0
resolution: "common-path-prefix@npm:3.0.0"
@@ -2088,6 +2619,13 @@ __metadata:
languageName: node
linkType: hard
+"compute-scroll-into-view@npm:^1.0.17":
+ version: 1.0.17
+ resolution: "compute-scroll-into-view@npm:1.0.17"
+ checksum: b20c05a10c37813c5a6e4bf053c00f65c88d23afed7a6bd7a2a69e05e2ffc2df3483ecfe407d36bf16b8cec8be21ae1966c9c523093a03117e567156cd79a51e
+ languageName: node
+ linkType: hard
+
"concat-map@npm:0.0.1":
version: 0.0.1
resolution: "concat-map@npm:0.0.1"
@@ -2276,6 +2814,17 @@ __metadata:
languageName: node
linkType: hard
+"cross-spawn@npm:^5.0.1":
+ version: 5.1.0
+ resolution: "cross-spawn@npm:5.1.0"
+ dependencies:
+ lru-cache: ^4.0.1
+ shebang-command: ^1.2.0
+ which: ^1.2.9
+ checksum: 726939c9954fc70c20e538923feaaa33bebc253247d13021737c3c7f68cdc3e0a57f720c0fe75057c0387995349f3f12e20e9bfdbf12274db28019c7ea4ec166
+ languageName: node
+ linkType: hard
+
"cross-spawn@npm:^6.0.5":
version: 6.0.5
resolution: "cross-spawn@npm:6.0.5"
@@ -2300,6 +2849,13 @@ __metadata:
languageName: node
linkType: hard
+"csstype@npm:^3.0.2":
+ version: 3.0.11
+ resolution: "csstype@npm:3.0.11"
+ checksum: 95e56abfe9ca219ae065acb4e43f61771a03170eed919127f558dfa168240867aba7629c8d98a201a0dd06d9a5ce82686f0570031c928516c61816adbc7c877f
+ languageName: node
+ linkType: hard
+
"currently-unhandled@npm:^0.4.1":
version: 0.4.1
resolution: "currently-unhandled@npm:0.4.1"
@@ -2325,6 +2881,13 @@ __metadata:
languageName: node
linkType: hard
+"data-uri-to-buffer@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "data-uri-to-buffer@npm:4.0.0"
+ checksum: a010653869abe8bb51259432894ac62c52bf79ad761d418d94396f48c346f2ae739c46b254e8bb5987bded8a653d467db1968db3a69bab1d33aa5567baa5cfc7
+ languageName: node
+ linkType: hard
+
"date-time@npm:^3.1.0":
version: 3.1.0
resolution: "date-time@npm:3.1.0"
@@ -2341,7 +2904,7 @@ __metadata:
languageName: node
linkType: hard
-"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.3.1, debug@npm:^4.3.3":
+"debug@npm:4, debug@npm:^4.0.0, debug@npm:^4.1.0, debug@npm:^4.3.3":
version: 4.3.4
resolution: "debug@npm:4.3.4"
dependencies:
@@ -2377,6 +2940,15 @@ __metadata:
languageName: node
linkType: hard
+"decode-named-character-reference@npm:^1.0.0":
+ version: 1.0.1
+ resolution: "decode-named-character-reference@npm:1.0.1"
+ dependencies:
+ character-entities: ^2.0.0
+ checksum: 4f67b088213497f7e19faffc1d2bf470bd3ceffd01b3be17857d4bce455e03728b33d3770761745916b0a230ecd917a1cba3c61156f0bd13958dc4fada19580a
+ languageName: node
+ linkType: hard
+
"decode-uri-component@npm:^0.2.0":
version: 0.2.0
resolution: "decode-uri-component@npm:0.2.0"
@@ -2417,11 +2989,12 @@ __metadata:
linkType: hard
"define-properties@npm:^1.1.3":
- version: 1.1.3
- resolution: "define-properties@npm:1.1.3"
+ version: 1.1.4
+ resolution: "define-properties@npm:1.1.4"
dependencies:
- object-keys: ^1.0.12
- checksum: da80dba55d0cd76a5a7ab71ef6ea0ebcb7b941f803793e4e0257b384cb772038faa0c31659d244e82c4342edef841c1a1212580006a05a5068ee48223d787317
+ has-property-descriptors: ^1.0.0
+ object-keys: ^1.1.1
+ checksum: ce0aef3f9eb193562b5cfb79b2d2c86b6a109dfc9fdcb5f45d680631a1a908c06824ddcdb72b7573b54e26ace07f0a23420aaba0d5c627b34d2c1de8ef527e2b
languageName: node
linkType: hard
@@ -2469,6 +3042,13 @@ __metadata:
languageName: node
linkType: hard
+"dequal@npm:^2.0.0":
+ version: 2.0.2
+ resolution: "dequal@npm:2.0.2"
+ checksum: 86c7a2c59f7b0797ed397c74b5fcdb744e48fc19440b70ad6ac59f57550a96b0faef3f1cfd5760ec5e6d3f7cb101f634f1f80db4e727b1dc8389bf62d977c0a0
+ languageName: node
+ linkType: hard
+
"detect-indent@npm:^5.0.0":
version: 5.0.0
resolution: "detect-indent@npm:5.0.0"
@@ -2500,6 +3080,13 @@ __metadata:
languageName: node
linkType: hard
+"diff@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "diff@npm:5.0.0"
+ checksum: f19fe29284b633afdb2725c2a8bb7d25761ea54d321d8e67987ac851c5294be4afeab532bd84531e02583a3fe7f4014aa314a3eda84f5590e7a9e6b371ef3b46
+ languageName: node
+ linkType: hard
+
"dir-glob@npm:^3.0.1":
version: 3.0.1
resolution: "dir-glob@npm:3.0.1"
@@ -2623,8 +3210,8 @@ __metadata:
linkType: hard
"es-abstract@npm:^1.19.1":
- version: 1.19.2
- resolution: "es-abstract@npm:1.19.2"
+ version: 1.19.5
+ resolution: "es-abstract@npm:1.19.5"
dependencies:
call-bind: ^1.0.2
es-to-primitive: ^1.2.1
@@ -2637,7 +3224,7 @@ __metadata:
is-callable: ^1.2.4
is-negative-zero: ^2.0.2
is-regex: ^1.1.4
- is-shared-array-buffer: ^1.0.1
+ is-shared-array-buffer: ^1.0.2
is-string: ^1.0.7
is-weakref: ^1.0.2
object-inspect: ^1.12.0
@@ -2646,7 +3233,7 @@ __metadata:
string.prototype.trimend: ^1.0.4
string.prototype.trimstart: ^1.0.4
unbox-primitive: ^1.0.1
- checksum: 4724811fd54b2cea959a8b08e49cd41cc65c77363c37bf5b42dc64a7c730e16a0dca80edc73e46ebf90a8de311622009a5a8dbe47e9f4e129c35f52c5020fe4e
+ checksum: 55199b0f179a12b3b0ec9c9f2e3a27a7561686e4f88d46f9ef32c836448a336e367c14d8f792612fc83a64113896e478259e4dffbbcffb3efdd06650f6360324
languageName: node
linkType: hard
@@ -2699,6 +3286,50 @@ __metadata:
languageName: node
linkType: hard
+"estree-util-attach-comments@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "estree-util-attach-comments@npm:2.0.0"
+ dependencies:
+ "@types/estree": ^0.0.46
+ checksum: 64048f336bd18dea83e9945c3f70efc51e363c5befa6bb32a417e27fc7d7303f72f63f6910a9886c2e9e369168f5c6d023755420bd76edbce07ff0b98fdc998f
+ languageName: node
+ linkType: hard
+
+"estree-util-build-jsx@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "estree-util-build-jsx@npm:2.0.0"
+ dependencies:
+ "@types/estree-jsx": ^0.0.1
+ estree-util-is-identifier-name: ^2.0.0
+ estree-walker: ^3.0.0
+ checksum: 840a9d6a8d05db431da315f34c2bde9b7c7e1511f988d71d5fedbe43077ca55b4f35322256e608659adadbe944092fde9610b4c3ee207fbbbb8aa9f247cd981d
+ languageName: node
+ linkType: hard
+
+"estree-util-is-identifier-name@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "estree-util-is-identifier-name@npm:2.0.0"
+ checksum: 09305036c4e22e388686826c4f90813b25a907b7269557dd934664bac98bf2fa814c40a0e93ce9815fd7d64ff04d2a4d48ed405cb90762025cd5f80dcfd9b58e
+ languageName: node
+ linkType: hard
+
+"estree-util-visit@npm:^1.0.0":
+ version: 1.1.0
+ resolution: "estree-util-visit@npm:1.1.0"
+ dependencies:
+ "@types/estree-jsx": ^0.0.1
+ "@types/unist": ^2.0.0
+ checksum: 4facaa960d405f2f61978794282b3852b1c419bdf110b7f74f2b3f61c5c4ac1c08527ee30c29533b429dd246d7a0730ec398fdd8b34bbc7dd30971225bab3eca
+ languageName: node
+ linkType: hard
+
+"estree-walker@npm:^3.0.0":
+ version: 3.0.1
+ resolution: "estree-walker@npm:3.0.1"
+ checksum: 674096950819041f1ee471e63f7aa987f2ed3a3a441cc41a5176e9ed01ea5cfd6487822c3b9c2cddd0e2c8f9d7ef52d32d06147a19b5a9ca9f8ab0c094bd43b9
+ languageName: node
+ linkType: hard
+
"esutils@npm:^2.0.3":
version: 2.0.3
resolution: "esutils@npm:2.0.3"
@@ -2713,6 +3344,21 @@ __metadata:
languageName: node
linkType: hard
+"execa@npm:^0.8.0":
+ version: 0.8.0
+ resolution: "execa@npm:0.8.0"
+ dependencies:
+ cross-spawn: ^5.0.1
+ get-stream: ^3.0.0
+ is-stream: ^1.1.0
+ npm-run-path: ^2.0.0
+ p-finally: ^1.0.0
+ signal-exit: ^3.0.0
+ strip-eof: ^1.0.0
+ checksum: c2a4bf6e051737e46bee61a93ec286cb71a05f16650a1918c8d6262ba9f0bac031472252411baa8c78b7f432f10cb4c601349403774d69be2ebd864e9b1eca60
+ languageName: node
+ linkType: hard
+
"execa@npm:^5.0.0":
version: 5.1.1
resolution: "execa@npm:5.1.1"
@@ -2737,7 +3383,16 @@ __metadata:
languageName: node
linkType: hard
-"extend@npm:~3.0.2":
+"extend-shallow@npm:^2.0.1":
+ version: 2.0.1
+ resolution: "extend-shallow@npm:2.0.1"
+ dependencies:
+ is-extendable: ^0.1.0
+ checksum: 8fb58d9d7a511f4baf78d383e637bd7d2e80843bd9cd0853649108ea835208fb614da502a553acc30208e1325240bb7cc4a68473021612496bb89725483656d8
+ languageName: node
+ linkType: hard
+
+"extend@npm:^3.0.0, extend@npm:~3.0.2":
version: 3.0.2
resolution: "extend@npm:3.0.2"
checksum: a50a8309ca65ea5d426382ff09f33586527882cf532931cb08ca786ea3146c0553310bda688710ff61d7668eba9f96b923fe1420cdf56a2c3eaf30fcab87b515
@@ -2812,6 +3467,16 @@ __metadata:
languageName: node
linkType: hard
+"fetch-blob@npm:^3.1.2, fetch-blob@npm:^3.1.4":
+ version: 3.1.5
+ resolution: "fetch-blob@npm:3.1.5"
+ dependencies:
+ node-domexception: ^1.0.0
+ web-streams-polyfill: ^3.0.3
+ checksum: 6493f21bfe196798343431d20c0284835202728d076dd2cbf502a2846679f9265f3b0c3a7224750ae1a770b925da09e592b05fe7c3a22ca27794a39a0039ab21
+ languageName: node
+ linkType: hard
+
"figures@npm:^3.0.0":
version: 3.2.0
resolution: "figures@npm:3.2.0"
@@ -2876,6 +3541,20 @@ __metadata:
languageName: node
linkType: hard
+"flexsearch@npm:^0.7.21":
+ version: 0.7.21
+ resolution: "flexsearch@npm:0.7.21"
+ checksum: ae77c6ebba6f02660bf28a36b56427ec2d737dcb9bd03564db27801484be2dd943fc7350e60a6f0aed47ab1b85af7fd5b33e27e84fd2fcbb241d9c5d21c8d068
+ languageName: node
+ linkType: hard
+
+"focus-visible@npm:^5.1.0":
+ version: 5.2.0
+ resolution: "focus-visible@npm:5.2.0"
+ checksum: 876f646ef453680d3d34e9f9b23961527ffd5ccaed8690f423d4fbfa37ff023d98a490972bc1387850e37ec2e44958c81f6096ef95b67462e5c4b5404cf1dbb9
+ languageName: node
+ linkType: hard
+
"forever-agent@npm:~0.6.1":
version: 0.6.1
resolution: "forever-agent@npm:0.6.1"
@@ -2894,6 +3573,15 @@ __metadata:
languageName: node
linkType: hard
+"formdata-polyfill@npm:^4.0.10":
+ version: 4.0.10
+ resolution: "formdata-polyfill@npm:4.0.10"
+ dependencies:
+ fetch-blob: ^3.1.2
+ checksum: 82a34df292afadd82b43d4a740ce387bc08541e0a534358425193017bf9fb3567875dc5f69564984b1da979979b70703aa73dee715a17b6c229752ae736dd9db
+ languageName: node
+ linkType: hard
+
"fs-constants@npm:^1.0.0":
version: 1.0.0
resolution: "fs-constants@npm:1.0.0"
@@ -2964,7 +3652,7 @@ __metadata:
languageName: node
linkType: hard
-"gauge@npm:^4.0.0":
+"gauge@npm:^4.0.3":
version: 4.0.4
resolution: "gauge@npm:4.0.4"
dependencies:
@@ -3035,6 +3723,13 @@ __metadata:
languageName: node
linkType: hard
+"get-stream@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "get-stream@npm:3.0.0"
+ checksum: 36142f46005ed74ce3a45c55545ec4e7da8e243554179e345a786baf144e5c4a35fb7bdc49fadfa9f18bd08000589b6fe364abdadfc4e1eb0e1b9914a6bb9c56
+ languageName: node
+ linkType: hard
+
"get-stream@npm:^6.0.0":
version: 6.0.1
resolution: "get-stream@npm:6.0.1"
@@ -3133,6 +3828,13 @@ __metadata:
languageName: node
linkType: hard
+"github-slugger@npm:^1.4.0":
+ version: 1.4.0
+ resolution: "github-slugger@npm:1.4.0"
+ checksum: 4f52e7a21f5c6a4c5328f01fe4fe13ae8881fea78bfe31f9e72c4038f97e3e70d52fb85aa7633a52c501dc2486874474d9abd22aa61cbe9b113099a495551c6b
+ languageName: node
+ linkType: hard
+
"glob-parent@npm:^5.1.1, glob-parent@npm:^5.1.2, glob-parent@npm:~5.1.2":
version: 5.1.2
resolution: "glob-parent@npm:5.1.2"
@@ -3142,7 +3844,7 @@ __metadata:
languageName: node
linkType: hard
-"glob@npm:^7.1.1, glob@npm:^7.1.3, glob@npm:^7.1.4, glob@npm:^7.1.6, glob@npm:^7.2.0":
+"glob@npm:^7.1.1, glob@npm:^7.1.3, glob@npm:^7.1.4, glob@npm:^7.1.6":
version: 7.2.0
resolution: "glob@npm:7.2.0"
dependencies:
@@ -3156,6 +3858,20 @@ __metadata:
languageName: node
linkType: hard
+"glob@npm:^8.0.1":
+ version: 8.0.1
+ resolution: "glob@npm:8.0.1"
+ dependencies:
+ fs.realpath: ^1.0.0
+ inflight: ^1.0.4
+ inherits: 2
+ minimatch: ^5.0.1
+ once: ^1.3.0
+ path-is-absolute: ^1.0.0
+ checksum: 7ac782f3ef1c08005884447479e68ceb0ad56997eb2003e1e9aefae71bad3cb48eb7c49190d3d6736f2ffcd8af4985d53a46831b3d5e0052cc5756822a38b61a
+ languageName: node
+ linkType: hard
+
"globby@npm:^11.0.1, globby@npm:^11.0.2":
version: 11.1.0
resolution: "globby@npm:11.1.0"
@@ -3190,6 +3906,18 @@ __metadata:
languageName: node
linkType: hard
+"gray-matter@npm:^4.0.3":
+ version: 4.0.3
+ resolution: "gray-matter@npm:4.0.3"
+ dependencies:
+ js-yaml: ^3.13.1
+ kind-of: ^6.0.2
+ section-matter: ^1.0.0
+ strip-bom-string: ^1.0.0
+ checksum: 37717bd424344487d655392251ce8d8878a1275ee087003e61208fba3bfd59cbb73a85b2159abf742ae95e23db04964813fdc33ae18b074208428b2528205222
+ languageName: node
+ linkType: hard
+
"handlebars@npm:^4.7.7":
version: 4.7.7
resolution: "handlebars@npm:4.7.7"
@@ -3233,9 +3961,16 @@ __metadata:
linkType: hard
"has-bigints@npm:^1.0.1":
- version: 1.0.1
- resolution: "has-bigints@npm:1.0.1"
- checksum: 44ab55868174470065d2e0f8f6def1c990d12b82162a8803c679699fa8a39f966e336f2a33c185092fe8aea7e8bf2e85f1c26add5f29d98f2318bd270096b183
+ version: 1.0.2
+ resolution: "has-bigints@npm:1.0.2"
+ checksum: 390e31e7be7e5c6fe68b81babb73dfc35d413604d7ee5f56da101417027a4b4ce6a27e46eff97ad040c835b5d228676eae99a9b5c3bc0e23c8e81a49241ff45b
+ languageName: node
+ linkType: hard
+
+"has-flag@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "has-flag@npm:2.0.0"
+ checksum: 7d060d142ef6740c79991cb99afe5962b267e6e95538bf8b607026b9b1e7451288927bc8e7b4a9484a8b99935c0af023070f91ee49faef791ecd401dc58b2e8d
languageName: node
linkType: hard
@@ -3253,6 +3988,15 @@ __metadata:
languageName: node
linkType: hard
+"has-property-descriptors@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "has-property-descriptors@npm:1.0.0"
+ dependencies:
+ get-intrinsic: ^1.1.1
+ checksum: a6d3f0a266d0294d972e354782e872e2fe1b6495b321e6ef678c9b7a06a40408a6891817350c62e752adced73a94ac903c54734fee05bf65b1905ee1368194bb
+ languageName: node
+ linkType: hard
+
"has-symbols@npm:^1.0.1, has-symbols@npm:^1.0.2, has-symbols@npm:^1.0.3":
version: 1.0.3
resolution: "has-symbols@npm:1.0.3"
@@ -3285,6 +4029,35 @@ __metadata:
languageName: node
linkType: hard
+"hast-util-to-estree@npm:^2.0.0":
+ version: 2.0.2
+ resolution: "hast-util-to-estree@npm:2.0.2"
+ dependencies:
+ "@types/estree-jsx": ^0.0.1
+ "@types/hast": ^2.0.0
+ "@types/unist": ^2.0.0
+ comma-separated-tokens: ^2.0.0
+ estree-util-attach-comments: ^2.0.0
+ estree-util-is-identifier-name: ^2.0.0
+ hast-util-whitespace: ^2.0.0
+ mdast-util-mdx-expression: ^1.0.0
+ mdast-util-mdxjs-esm: ^1.0.0
+ property-information: ^6.0.0
+ space-separated-tokens: ^2.0.0
+ style-to-object: ^0.3.0
+ unist-util-position: ^4.0.0
+ zwitch: ^2.0.0
+ checksum: 7ac9884c35c0a1dc96c6237f841e0bdd4410746d0a9ab7ddfaaed9cf36adb3186633782b50e45c57bc8825640c5e1db070fd5eeca5061f76fc19bf991df8a520
+ languageName: node
+ linkType: hard
+
+"hast-util-whitespace@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "hast-util-whitespace@npm:2.0.0"
+ checksum: abeb5386075bfb0facfce89eed0e13d2cb27a0910cec8fd234b48821a1538387a73fa7f458842e8c404148dc69434acbc10488d75b02817e460652c2c894c024
+ languageName: node
+ linkType: hard
+
"hosted-git-info@npm:^2.1.4":
version: 2.8.9
resolution: "hosted-git-info@npm:2.8.9"
@@ -3342,12 +4115,12 @@ __metadata:
linkType: hard
"https-proxy-agent@npm:^5.0.0":
- version: 5.0.0
- resolution: "https-proxy-agent@npm:5.0.0"
+ version: 5.0.1
+ resolution: "https-proxy-agent@npm:5.0.1"
dependencies:
agent-base: 6
debug: 4
- checksum: 165bfb090bd26d47693597661298006841ab733d0c7383a8cb2f17373387a94c903a3ac687090aa739de05e379ab6f868bae84ab4eac288ad85c328cd1ec9e53
+ checksum: 571fccdf38184f05943e12d37d6ce38197becdd69e58d03f43637f7fa1269cf303a7d228aa27e5b27bbd3af8f09fd938e1c91dcfefff2df7ba77c20ed8dfc765
languageName: node
linkType: hard
@@ -3524,6 +4297,13 @@ __metadata:
languageName: node
linkType: hard
+"inline-style-parser@npm:0.1.1":
+ version: 0.1.1
+ resolution: "inline-style-parser@npm:0.1.1"
+ checksum: 5d545056a3e1f2bf864c928a886a0e1656a3517127d36917b973de581bd54adc91b4bf1febcb0da054f204b4934763f1a4e09308b4d55002327cf1d48ac5d966
+ languageName: node
+ linkType: hard
+
"inquirer@npm:^7.3.3":
version: 7.3.3
resolution: "inquirer@npm:7.3.3"
@@ -3556,6 +4336,13 @@ __metadata:
languageName: node
linkType: hard
+"intersection-observer@npm:^0.12.0":
+ version: 0.12.0
+ resolution: "intersection-observer@npm:0.12.0"
+ checksum: 96d2f3ea4995b7b429b79646467c975230cfbe3ede7fb08d0c022cfe6ee0c89dfa98aa4377e8b5f7bee880322eb118e6c0275607a53043f9c50921da8363c1e8
+ languageName: node
+ linkType: hard
+
"ip@npm:^1.1.5":
version: 1.1.5
resolution: "ip@npm:1.1.5"
@@ -3570,6 +4357,23 @@ __metadata:
languageName: node
linkType: hard
+"is-alphabetical@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "is-alphabetical@npm:2.0.1"
+ checksum: 56207db8d9de0850f0cd30f4966bf731eb82cedfe496cbc2e97e7c3bacaf66fc54a972d2d08c0d93bb679cb84976a05d24c5ad63de56fabbfc60aadae312edaa
+ languageName: node
+ linkType: hard
+
+"is-alphanumerical@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "is-alphanumerical@npm:2.0.1"
+ dependencies:
+ is-alphabetical: ^2.0.0
+ is-decimal: ^2.0.0
+ checksum: 87acc068008d4c9c4e9f5bd5e251041d42e7a50995c77b1499cf6ed248f971aadeddb11f239cabf09f7975ee58cac7a48ffc170b7890076d8d227b24a68663c9
+ languageName: node
+ linkType: hard
+
"is-arrayish@npm:^0.2.1":
version: 0.2.1
resolution: "is-arrayish@npm:0.2.1"
@@ -3612,6 +4416,13 @@ __metadata:
languageName: node
linkType: hard
+"is-buffer@npm:^2.0.0":
+ version: 2.0.5
+ resolution: "is-buffer@npm:2.0.5"
+ checksum: 764c9ad8b523a9f5a32af29bdf772b08eb48c04d2ad0a7240916ac2688c983bf5f8504bf25b35e66240edeb9d9085461f9b5dae1f3d2861c6b06a65fe983de42
+ languageName: node
+ linkType: hard
+
"is-callable@npm:^1.1.4, is-callable@npm:^1.2.4":
version: 1.2.4
resolution: "is-callable@npm:1.2.4"
@@ -3631,11 +4442,11 @@ __metadata:
linkType: hard
"is-core-module@npm:^2.5.0, is-core-module@npm:^2.8.1":
- version: 2.8.1
- resolution: "is-core-module@npm:2.8.1"
+ version: 2.9.0
+ resolution: "is-core-module@npm:2.9.0"
dependencies:
has: ^1.0.3
- checksum: 418b7bc10768a73c41c7ef497e293719604007f88934a6ffc5f7c78702791b8528102fb4c9e56d006d69361549b3d9519440214a74aefc7e0b79e5e4411d377f
+ checksum: b27034318b4b462f1c8f1dfb1b32baecd651d891a4e2d1922135daeff4141dfced2b82b07aef83ef54275c4a3526aa38da859223664d0868ca24182badb784ce
languageName: node
linkType: hard
@@ -3648,6 +4459,13 @@ __metadata:
languageName: node
linkType: hard
+"is-decimal@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "is-decimal@npm:2.0.1"
+ checksum: 97132de7acdce77caa7b797632970a2ecd649a88e715db0e4dbc00ab0708b5e7574ba5903962c860cd4894a14fd12b100c0c4ac8aed445cf6f55c6cf747a4158
+ languageName: node
+ linkType: hard
+
"is-error@npm:^2.2.2":
version: 2.2.2
resolution: "is-error@npm:2.2.2"
@@ -3655,6 +4473,13 @@ __metadata:
languageName: node
linkType: hard
+"is-extendable@npm:^0.1.0":
+ version: 0.1.1
+ resolution: "is-extendable@npm:0.1.1"
+ checksum: 3875571d20a7563772ecc7a5f36cb03167e9be31ad259041b4a8f73f33f885441f778cee1f1fe0085eb4bc71679b9d8c923690003a36a6a5fdf8023e6e3f0672
+ languageName: node
+ linkType: hard
+
"is-extglob@npm:^2.1.1":
version: 2.1.1
resolution: "is-extglob@npm:2.1.1"
@@ -3694,6 +4519,13 @@ __metadata:
languageName: node
linkType: hard
+"is-hexadecimal@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "is-hexadecimal@npm:2.0.1"
+ checksum: 66a2ea85994c622858f063f23eda506db29d92b52580709eb6f4c19550552d4dcf3fb81952e52f7cf972097237959e00adc7bb8c9400cd12886e15bf06145321
+ languageName: node
+ linkType: hard
+
"is-lambda@npm:^1.0.1":
version: 1.0.1
resolution: "is-lambda@npm:1.0.1"
@@ -3759,6 +4591,13 @@ __metadata:
languageName: node
linkType: hard
+"is-plain-obj@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "is-plain-obj@npm:4.0.0"
+ checksum: a6bb55a90636345a64c6153b74d85a9b6440f9975f4dcc57eed596c280b7ba228c71c406355a3147ed0488330d2743d5756e052c9492b1aa4f7dcd281f08c4b6
+ languageName: node
+ linkType: hard
+
"is-plain-object@npm:^2.0.4":
version: 2.0.4
resolution: "is-plain-object@npm:2.0.4"
@@ -3782,6 +4621,15 @@ __metadata:
languageName: node
linkType: hard
+"is-reference@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "is-reference@npm:3.0.0"
+ dependencies:
+ "@types/estree": "*"
+ checksum: 408bb3442ff5f90a9740bf578e8fa2863f68bc07ee99b92079a358a34af58341dc7014b054e8cc51a3da5d1ab83f635b6ee1ce2982db7899a128d7a05173898f
+ languageName: node
+ linkType: hard
+
"is-regex@npm:^1.1.4":
version: 1.1.4
resolution: "is-regex@npm:1.1.4"
@@ -3792,7 +4640,7 @@ __metadata:
languageName: node
linkType: hard
-"is-shared-array-buffer@npm:^1.0.1":
+"is-shared-array-buffer@npm:^1.0.2":
version: 1.0.2
resolution: "is-shared-array-buffer@npm:1.0.2"
dependencies:
@@ -3810,6 +4658,13 @@ __metadata:
languageName: node
linkType: hard
+"is-stream@npm:^1.1.0":
+ version: 1.1.0
+ resolution: "is-stream@npm:1.1.0"
+ checksum: 063c6bec9d5647aa6d42108d4c59723d2bd4ae42135a2d4db6eadbd49b7ea05b750fd69d279e5c7c45cf9da753ad2c00d8978be354d65aa9f6bb434969c6a2ae
+ languageName: node
+ linkType: hard
+
"is-stream@npm:^2.0.0":
version: 2.0.1
resolution: "is-stream@npm:2.0.1"
@@ -3902,14 +4757,14 @@ __metadata:
languageName: node
linkType: hard
-"js-tokens@npm:^4.0.0":
+"js-tokens@npm:^3.0.0 || ^4.0.0, js-tokens@npm:^4.0.0":
version: 4.0.0
resolution: "js-tokens@npm:4.0.0"
checksum: 8a95213a5a77deb6cbe94d86340e8d9ace2b93bc367790b260101d2f36a2eaf4e4e22d9fa9cf459b38af3a32fb4190e638024cf82ec95ef708680e405ea7cc78
languageName: node
linkType: hard
-"js-yaml@npm:^3.14.1":
+"js-yaml@npm:^3.13.1, js-yaml@npm:^3.14.1":
version: 3.14.1
resolution: "js-yaml@npm:3.14.1"
dependencies:
@@ -3963,6 +4818,13 @@ __metadata:
languageName: node
linkType: hard
+"jsonc-parser@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "jsonc-parser@npm:3.0.0"
+ checksum: 1df2326f1f9688de30c70ff19c5b2a83ba3b89a1036160da79821d1361090775e9db502dc57a67c11b56e1186fc1ed70b887f25c5febf9a3ec4f91435836c99d
+ languageName: node
+ linkType: hard
+
"jsonfile@npm:^6.0.1":
version: 6.1.0
resolution: "jsonfile@npm:6.1.0"
@@ -3995,13 +4857,20 @@ __metadata:
languageName: node
linkType: hard
-"kind-of@npm:^6.0.2, kind-of@npm:^6.0.3":
+"kind-of@npm:^6.0.0, kind-of@npm:^6.0.2, kind-of@npm:^6.0.3":
version: 6.0.3
resolution: "kind-of@npm:6.0.3"
checksum: 3ab01e7b1d440b22fe4c31f23d8d38b4d9b91d9f291df683476576493d5dfd2e03848a8b05813dd0c3f0e835bc63f433007ddeceb71f05cb25c45ae1b19c6d3b
languageName: node
linkType: hard
+"kleur@npm:^4.0.3":
+ version: 4.1.4
+ resolution: "kleur@npm:4.1.4"
+ checksum: 7f6db36e378045dec14acd3cbf0b1e59130c09e984ee8b8ce56dd2d2257cfff90389c1e8f8b19bd09dd5d241080566a814b4ccd99fdcef91f59ef93ec33c8a44
+ languageName: node
+ linkType: hard
+
"lerna@npm:^4.0.0":
version: 4.0.0
resolution: "lerna@npm:4.0.0"
@@ -4161,6 +5030,34 @@ __metadata:
languageName: node
linkType: hard
+"longest-streak@npm:^3.0.0":
+ version: 3.0.1
+ resolution: "longest-streak@npm:3.0.1"
+ checksum: 3b59c4c04ce3c70f137e339c10d574026fa3a711c45dc0e69a63a2c0ac981e57f837e1d5b64b991eee5234c4fa46fa10886a20626fb739ed3b04b77bcf6d14a8
+ languageName: node
+ linkType: hard
+
+"loose-envify@npm:^1.1.0":
+ version: 1.4.0
+ resolution: "loose-envify@npm:1.4.0"
+ dependencies:
+ js-tokens: ^3.0.0 || ^4.0.0
+ bin:
+ loose-envify: cli.js
+ checksum: 6517e24e0cad87ec9888f500c5b5947032cdfe6ef65e1c1936a0c48a524b81e65542c9c3edc91c97d5bddc806ee2a985dbc79be89215d613b1de5db6d1cfe6f4
+ languageName: node
+ linkType: hard
+
+"lru-cache@npm:^4.0.1":
+ version: 4.1.5
+ resolution: "lru-cache@npm:4.1.5"
+ dependencies:
+ pseudomap: ^1.0.2
+ yallist: ^2.1.2
+ checksum: 4bb4b58a36cd7dc4dcec74cbe6a8f766a38b7426f1ff59d4cf7d82a2aa9b9565cd1cb98f6ff60ce5cd174524868d7bc9b7b1c294371851356066ca9ac4cf135a
+ languageName: node
+ linkType: hard
+
"lru-cache@npm:^6.0.0":
version: 6.0.0
resolution: "lru-cache@npm:6.0.0"
@@ -4170,10 +5067,10 @@ __metadata:
languageName: node
linkType: hard
-"lru-cache@npm:^7.4.0, lru-cache@npm:^7.7.1":
- version: 7.7.3
- resolution: "lru-cache@npm:7.7.3"
- checksum: 1789743a68a8db052564a9dd020f04ba0712327a43e08babc94f05e1c56ef75a03514cf4acab75ae90e3d5d16ae02c7bf0f34754968dc5b8c2c3bc2d92c21745
+"lru-cache@npm:^7.7.1":
+ version: 7.8.1
+ resolution: "lru-cache@npm:7.8.1"
+ checksum: 31ea67388c9774300331d70f4affd5a433869bcf0fae5405f967d19d7b447930b713b0566a2e95362c9082034a8b496f3671ccf8f0c061d8e8048412663f9432
languageName: node
linkType: hard
@@ -4290,6 +5187,39 @@ __metadata:
languageName: node
linkType: hard
+"markdown-extensions@npm:^1.0.0":
+ version: 1.1.1
+ resolution: "markdown-extensions@npm:1.1.1"
+ checksum: 8a6dd128be1c524049ea6a41a9193715c2835d3d706af4b8b714ff2043a82786dbcd4a8f1fa9ddd28facbc444426c97515aef2d1f3dd11d5e2d63749ba577b1e
+ languageName: node
+ linkType: hard
+
+"markdown-table@npm:^3.0.0":
+ version: 3.0.2
+ resolution: "markdown-table@npm:3.0.2"
+ checksum: 7bd9eb54e7ac15165f79730ac6357b8194294552f727bcb34e29f3f1b72823c1220cb61153ebf0962c8faac4d25e49c62e8e9471cd6352a67cdca99928ecade1
+ languageName: node
+ linkType: hard
+
+"markdown-to-jsx@npm:^7.1.7":
+ version: 7.1.7
+ resolution: "markdown-to-jsx@npm:7.1.7"
+ peerDependencies:
+ react: ">= 0.14.0"
+ checksum: b2c0ea7d0988fad0c709989b3b1b3a5600d1e80b60266f9618386f7afead4a6b5eba9ee1a3943df6a3dcb1599ea89e58467d1b17b6dd3af3c60984c60a85d06d
+ languageName: node
+ linkType: hard
+
+"match-sorter@npm:^4.2.0":
+ version: 4.2.1
+ resolution: "match-sorter@npm:4.2.1"
+ dependencies:
+ "@babel/runtime": ^7.10.5
+ remove-accents: 0.4.2
+ checksum: 7f3cd8f84cdb4567b7a81f66a095e418044f318f41b6c8a1640730c99e370af9e5054f5a1ed2dfa1287a23101d75a105da63e4d95e8ac2f7061a8f8b32367c7d
+ languageName: node
+ linkType: hard
+
"matcher@npm:^5.0.0":
version: 5.0.0
resolution: "matcher@npm:5.0.0"
@@ -4308,6 +5238,219 @@ __metadata:
languageName: node
linkType: hard
+"mdast-util-definitions@npm:^5.0.0":
+ version: 5.1.0
+ resolution: "mdast-util-definitions@npm:5.1.0"
+ dependencies:
+ "@types/mdast": ^3.0.0
+ "@types/unist": ^2.0.0
+ unist-util-visit: ^3.0.0
+ checksum: a5237dc5925d965ec5f4c237b8d2fbc4728c18402f4f0cea0c947fb6241d7f2c7264b8bd5000363800388003d1474d57f5d5d29e0605a504bd186e59ddf8906a
+ languageName: node
+ linkType: hard
+
+"mdast-util-find-and-replace@npm:^2.0.0":
+ version: 2.1.0
+ resolution: "mdast-util-find-and-replace@npm:2.1.0"
+ dependencies:
+ escape-string-regexp: ^5.0.0
+ unist-util-is: ^5.0.0
+ unist-util-visit-parents: ^4.0.0
+ checksum: 2df955899edb71fdd9f09a639572b281ec6e9be1533469cdbd7f1f16232a576adbd423f914182684f9516897143a5a797c45182848c0f83807d2c30a582a3c03
+ languageName: node
+ linkType: hard
+
+"mdast-util-from-markdown@npm:^1.0.0":
+ version: 1.2.0
+ resolution: "mdast-util-from-markdown@npm:1.2.0"
+ dependencies:
+ "@types/mdast": ^3.0.0
+ "@types/unist": ^2.0.0
+ decode-named-character-reference: ^1.0.0
+ mdast-util-to-string: ^3.1.0
+ micromark: ^3.0.0
+ micromark-util-decode-numeric-character-reference: ^1.0.0
+ micromark-util-decode-string: ^1.0.0
+ micromark-util-normalize-identifier: ^1.0.0
+ micromark-util-symbol: ^1.0.0
+ micromark-util-types: ^1.0.0
+ unist-util-stringify-position: ^3.0.0
+ uvu: ^0.5.0
+ checksum: fadc3521a3d95f4adbadad462ca27c28b3bfe08740ae158dc0c4a22329bf5593254d98b8fd4024ecad8c47c77ec275454dfacfb907ff1b98ff8f5de25c716d40
+ languageName: node
+ linkType: hard
+
+"mdast-util-gfm-autolink-literal@npm:^1.0.0":
+ version: 1.0.2
+ resolution: "mdast-util-gfm-autolink-literal@npm:1.0.2"
+ dependencies:
+ "@types/mdast": ^3.0.0
+ ccount: ^2.0.0
+ mdast-util-find-and-replace: ^2.0.0
+ micromark-util-character: ^1.0.0
+ checksum: 75e12f21ec24552ba33725f69a06cd703e5586d2296ca9d180927b2293c036e1bd39108adba83e8cbbefcc45ffd8821fb561b4c107684ed87bd9e5e286ba03bd
+ languageName: node
+ linkType: hard
+
+"mdast-util-gfm-footnote@npm:^1.0.0":
+ version: 1.0.1
+ resolution: "mdast-util-gfm-footnote@npm:1.0.1"
+ dependencies:
+ "@types/mdast": ^3.0.0
+ mdast-util-to-markdown: ^1.3.0
+ micromark-util-normalize-identifier: ^1.0.0
+ checksum: 4caf69058b438c9e34004acfb1d2b20d58306898d760b889f73d27ed5702cd940be9fcb2a08f6e58b8d9d8e2b1c886c549cd7d23b659da5fb2ed87a22f44c13c
+ languageName: node
+ linkType: hard
+
+"mdast-util-gfm-strikethrough@npm:^1.0.0":
+ version: 1.0.1
+ resolution: "mdast-util-gfm-strikethrough@npm:1.0.1"
+ dependencies:
+ "@types/mdast": ^3.0.0
+ mdast-util-to-markdown: ^1.3.0
+ checksum: ce81222ab4c130516278f8db57be23bd529e9f8c30bb16ab5b2bf294c0dfd57f2dc7a010deede65f349a8d37be73f90dbaecd962f76f70befa8f43bcd32fe5b9
+ languageName: node
+ linkType: hard
+
+"mdast-util-gfm-table@npm:^1.0.0":
+ version: 1.0.4
+ resolution: "mdast-util-gfm-table@npm:1.0.4"
+ dependencies:
+ markdown-table: ^3.0.0
+ mdast-util-from-markdown: ^1.0.0
+ mdast-util-to-markdown: ^1.3.0
+ checksum: 56d9f0376b3da3e4cc0f5047d62a4eefa765934a1084822bc7804e7cf93c458c4bff2a917fa4e89c917287431a7284b656bf23ef89553e943d7f853ffefae693
+ languageName: node
+ linkType: hard
+
+"mdast-util-gfm-task-list-item@npm:^1.0.0":
+ version: 1.0.1
+ resolution: "mdast-util-gfm-task-list-item@npm:1.0.1"
+ dependencies:
+ "@types/mdast": ^3.0.0
+ mdast-util-to-markdown: ^1.3.0
+ checksum: 9bb0f162532f8e11e571802ed19301572479fe9507652c8fb3f648279bbde3baa9f6377d9492dbba61eedd96755f8aff9c7c259287875544fb751907d79da69e
+ languageName: node
+ linkType: hard
+
+"mdast-util-gfm@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "mdast-util-gfm@npm:2.0.1"
+ dependencies:
+ mdast-util-from-markdown: ^1.0.0
+ mdast-util-gfm-autolink-literal: ^1.0.0
+ mdast-util-gfm-footnote: ^1.0.0
+ mdast-util-gfm-strikethrough: ^1.0.0
+ mdast-util-gfm-table: ^1.0.0
+ mdast-util-gfm-task-list-item: ^1.0.0
+ mdast-util-to-markdown: ^1.0.0
+ checksum: 8b39e6694521094ae28d12cbeff074ef3ec3f7f7ec59fbddd4e8a45a275e092c6ba6ecee4c720938eb3ee072ebd41d743b08cc0ab9171612a5aeddc1e78ae882
+ languageName: node
+ linkType: hard
+
+"mdast-util-mdx-expression@npm:^1.0.0":
+ version: 1.2.0
+ resolution: "mdast-util-mdx-expression@npm:1.2.0"
+ dependencies:
+ "@types/estree-jsx": ^0.0.1
+ "@types/hast": ^2.0.0
+ "@types/mdast": ^3.0.0
+ mdast-util-from-markdown: ^1.0.0
+ mdast-util-to-markdown: ^1.0.0
+ checksum: 375342525db8c4e3060cf9a2ddcc2f50ac2c0878da63557695165f593b7a2e4b2d6d398f05f638a6f7ef36c2c3bdbd4c64aab85ef35d990dae17303d55635cfd
+ languageName: node
+ linkType: hard
+
+"mdast-util-mdx-jsx@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "mdast-util-mdx-jsx@npm:2.0.1"
+ dependencies:
+ "@types/estree-jsx": ^0.0.1
+ "@types/hast": ^2.0.0
+ "@types/mdast": ^3.0.0
+ ccount: ^2.0.0
+ mdast-util-to-markdown: ^1.3.0
+ parse-entities: ^4.0.0
+ stringify-entities: ^4.0.0
+ unist-util-remove-position: ^4.0.0
+ unist-util-stringify-position: ^3.0.0
+ vfile-message: ^3.0.0
+ checksum: 19825928595153eb7081275d15b40965960a2b52077913dc37469e891d91a8166a6c837646ce5b90ec1903fbfd51b276d570d1e2c89f00f18c0bfe286f1da681
+ languageName: node
+ linkType: hard
+
+"mdast-util-mdx@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "mdast-util-mdx@npm:2.0.0"
+ dependencies:
+ mdast-util-mdx-expression: ^1.0.0
+ mdast-util-mdx-jsx: ^2.0.0
+ mdast-util-mdxjs-esm: ^1.0.0
+ checksum: 4744bfbbd337c2a99a3ef339673c549a670d6496e0d3a6d747d2451e112d6fef7d27613549b0bd62a5f92ea7919e3bacd78c731e8a3d80552a09b80896554cf6
+ languageName: node
+ linkType: hard
+
+"mdast-util-mdxjs-esm@npm:^1.0.0":
+ version: 1.2.0
+ resolution: "mdast-util-mdxjs-esm@npm:1.2.0"
+ dependencies:
+ "@types/estree-jsx": ^0.0.1
+ "@types/hast": ^2.0.0
+ "@types/mdast": ^3.0.0
+ mdast-util-from-markdown: ^1.0.0
+ mdast-util-to-markdown: ^1.0.0
+ checksum: be8a9bc77bc66b2a7dd9057974b30e7e8e0a37caee467ee7f22451da25e4aeb58eec78b93132672449f8714bfb5c60dc58b3822956bdc8fffbc2ff476a1e4450
+ languageName: node
+ linkType: hard
+
+"mdast-util-to-hast@npm:^12.1.0":
+ version: 12.1.1
+ resolution: "mdast-util-to-hast@npm:12.1.1"
+ dependencies:
+ "@types/hast": ^2.0.0
+ "@types/mdast": ^3.0.0
+ "@types/mdurl": ^1.0.0
+ mdast-util-definitions: ^5.0.0
+ mdurl: ^1.0.0
+ micromark-util-sanitize-uri: ^1.0.0
+ unist-builder: ^3.0.0
+ unist-util-generated: ^2.0.0
+ unist-util-position: ^4.0.0
+ unist-util-visit: ^4.0.0
+ checksum: 4c5a73e0463493d5ab2c033d42f8daead24d0808969bf21c3a720786784a347cedc1d3ae26b37737dbe3ea0839bc130bf7e20f3bc02e2387e6e7b0a5f94bafe4
+ languageName: node
+ linkType: hard
+
+"mdast-util-to-markdown@npm:^1.0.0, mdast-util-to-markdown@npm:^1.3.0":
+ version: 1.3.0
+ resolution: "mdast-util-to-markdown@npm:1.3.0"
+ dependencies:
+ "@types/mdast": ^3.0.0
+ "@types/unist": ^2.0.0
+ longest-streak: ^3.0.0
+ mdast-util-to-string: ^3.0.0
+ micromark-util-decode-string: ^1.0.0
+ unist-util-visit: ^4.0.0
+ zwitch: ^2.0.0
+ checksum: 0ea4fc11b7a49b15d400d50044429c45222cb9bc583553288c7c54704d051f25049233817129ba56a6f581f1e20916e5c540870a80987318747a95b44a36ba3e
+ languageName: node
+ linkType: hard
+
+"mdast-util-to-string@npm:^3.0.0, mdast-util-to-string@npm:^3.1.0":
+ version: 3.1.0
+ resolution: "mdast-util-to-string@npm:3.1.0"
+ checksum: f42ddd4e22f2215a75715b92ea6e3149c4ba356e7781d7b94fc86ded1c79cec3f986afeecef3a4a80068c9b224a6520099783a12146b957de24f020a3e47dd29
+ languageName: node
+ linkType: hard
+
+"mdurl@npm:^1.0.0":
+ version: 1.0.1
+ resolution: "mdurl@npm:1.0.1"
+ checksum: 71731ecba943926bfbf9f9b51e28b5945f9411c4eda80894221b47cc105afa43ba2da820732b436f0798fd3edbbffcd1fc1415843c41a87fea08a41cc1e3d02b
+ languageName: node
+ linkType: hard
+
"mem@npm:^9.0.2":
version: 9.0.2
resolution: "mem@npm:9.0.2"
@@ -4358,6 +5501,441 @@ __metadata:
languageName: node
linkType: hard
+"micromark-core-commonmark@npm:^1.0.0, micromark-core-commonmark@npm:^1.0.1":
+ version: 1.0.6
+ resolution: "micromark-core-commonmark@npm:1.0.6"
+ dependencies:
+ decode-named-character-reference: ^1.0.0
+ micromark-factory-destination: ^1.0.0
+ micromark-factory-label: ^1.0.0
+ micromark-factory-space: ^1.0.0
+ micromark-factory-title: ^1.0.0
+ micromark-factory-whitespace: ^1.0.0
+ micromark-util-character: ^1.0.0
+ micromark-util-chunked: ^1.0.0
+ micromark-util-classify-character: ^1.0.0
+ micromark-util-html-tag-name: ^1.0.0
+ micromark-util-normalize-identifier: ^1.0.0
+ micromark-util-resolve-all: ^1.0.0
+ micromark-util-subtokenize: ^1.0.0
+ micromark-util-symbol: ^1.0.0
+ micromark-util-types: ^1.0.1
+ uvu: ^0.5.0
+ checksum: 4b483c46077f696ed310f6d709bb9547434c218ceb5c1220fde1707175f6f68b44da15ab8668f9c801e1a123210071e3af883a7d1215122c913fd626f122bfc2
+ languageName: node
+ linkType: hard
+
+"micromark-extension-gfm-autolink-literal@npm:^1.0.0":
+ version: 1.0.3
+ resolution: "micromark-extension-gfm-autolink-literal@npm:1.0.3"
+ dependencies:
+ micromark-util-character: ^1.0.0
+ micromark-util-sanitize-uri: ^1.0.0
+ micromark-util-symbol: ^1.0.0
+ micromark-util-types: ^1.0.0
+ uvu: ^0.5.0
+ checksum: bb181972ac346ca73ca1ab0b80b80c9d6509ed149799d2217d5442670f499c38a94edff73d32fa52b390d89640974cfbd7f29e4ad7d599581d5e1cabcae636a2
+ languageName: node
+ linkType: hard
+
+"micromark-extension-gfm-footnote@npm:^1.0.0":
+ version: 1.0.4
+ resolution: "micromark-extension-gfm-footnote@npm:1.0.4"
+ dependencies:
+ micromark-core-commonmark: ^1.0.0
+ micromark-factory-space: ^1.0.0
+ micromark-util-character: ^1.0.0
+ micromark-util-normalize-identifier: ^1.0.0
+ micromark-util-sanitize-uri: ^1.0.0
+ micromark-util-symbol: ^1.0.0
+ micromark-util-types: ^1.0.0
+ uvu: ^0.5.0
+ checksum: 8daa203f5cf753338d5ecdbaae6b3ab6319d34b6013b90ea6860bed299418cecf86e69e48dabe42562e334760c738c77c5acdb47e75ae26f5f01f02f3bf0952d
+ languageName: node
+ linkType: hard
+
+"micromark-extension-gfm-strikethrough@npm:^1.0.0":
+ version: 1.0.4
+ resolution: "micromark-extension-gfm-strikethrough@npm:1.0.4"
+ dependencies:
+ micromark-util-chunked: ^1.0.0
+ micromark-util-classify-character: ^1.0.0
+ micromark-util-resolve-all: ^1.0.0
+ micromark-util-symbol: ^1.0.0
+ micromark-util-types: ^1.0.0
+ uvu: ^0.5.0
+ checksum: f43d316b85fe93df1711cdcdc99a5320b941239349234bd262fc708cb67ad47bdfb41d1a7ebe2a5829816b0e9d3107380a5c1e558cb536a75354cbe4857823ba
+ languageName: node
+ linkType: hard
+
+"micromark-extension-gfm-table@npm:^1.0.0":
+ version: 1.0.5
+ resolution: "micromark-extension-gfm-table@npm:1.0.5"
+ dependencies:
+ micromark-factory-space: ^1.0.0
+ micromark-util-character: ^1.0.0
+ micromark-util-symbol: ^1.0.0
+ micromark-util-types: ^1.0.0
+ uvu: ^0.5.0
+ checksum: f0aab3b4333cc24b1534b08dc4cce986dd606df8b7ed913e5a1de9fe2d3ae67b2435663c0bc271b528874af4928e580e1ad540ea9117d7f2d74edb28859c97ef
+ languageName: node
+ linkType: hard
+
+"micromark-extension-gfm-tagfilter@npm:^1.0.0":
+ version: 1.0.1
+ resolution: "micromark-extension-gfm-tagfilter@npm:1.0.1"
+ dependencies:
+ micromark-util-types: ^1.0.0
+ checksum: 63e8d68f25871722900a67a8001d5da21f19ea707f3566fc7d0b2eb1f6d52476848bb6a41576cf22470565124af9497c5aae842355faa4c14ec19cb1847e71ec
+ languageName: node
+ linkType: hard
+
+"micromark-extension-gfm-task-list-item@npm:^1.0.0":
+ version: 1.0.3
+ resolution: "micromark-extension-gfm-task-list-item@npm:1.0.3"
+ dependencies:
+ micromark-factory-space: ^1.0.0
+ micromark-util-character: ^1.0.0
+ micromark-util-symbol: ^1.0.0
+ micromark-util-types: ^1.0.0
+ uvu: ^0.5.0
+ checksum: d320b0c5301f87e211c06a2330d1ee0fee6da14f0d6d44d5211055b465dadff34390cd6b258a5e0ca376fcda3364fef9a12fe6e26a0c858231fa3b98ddbf7785
+ languageName: node
+ linkType: hard
+
+"micromark-extension-gfm@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "micromark-extension-gfm@npm:2.0.1"
+ dependencies:
+ micromark-extension-gfm-autolink-literal: ^1.0.0
+ micromark-extension-gfm-footnote: ^1.0.0
+ micromark-extension-gfm-strikethrough: ^1.0.0
+ micromark-extension-gfm-table: ^1.0.0
+ micromark-extension-gfm-tagfilter: ^1.0.0
+ micromark-extension-gfm-task-list-item: ^1.0.0
+ micromark-util-combine-extensions: ^1.0.0
+ micromark-util-types: ^1.0.0
+ checksum: b181479c87be38d5ae8d28e6dc52fab73c894fd2706876746f27a91fb186644ce03532a9c35dca2186327a0e2285cd5242ad0361dc89adedd4a50376ffd94e22
+ languageName: node
+ linkType: hard
+
+"micromark-extension-mdx-expression@npm:^1.0.0":
+ version: 1.0.3
+ resolution: "micromark-extension-mdx-expression@npm:1.0.3"
+ dependencies:
+ micromark-factory-mdx-expression: ^1.0.0
+ micromark-factory-space: ^1.0.0
+ micromark-util-character: ^1.0.0
+ micromark-util-events-to-acorn: ^1.0.0
+ micromark-util-symbol: ^1.0.0
+ micromark-util-types: ^1.0.0
+ uvu: ^0.5.0
+ checksum: ef4b4137894624a6754b951d3cb7abb20951ca7b37f9ad8a50d2e2b95d0cf880258d71296bfac6be4ff83a8d137b6b657ae852bb6f11f4ca11e5e6d62f1b025d
+ languageName: node
+ linkType: hard
+
+"micromark-extension-mdx-jsx@npm:^1.0.0":
+ version: 1.0.3
+ resolution: "micromark-extension-mdx-jsx@npm:1.0.3"
+ dependencies:
+ "@types/acorn": ^4.0.0
+ estree-util-is-identifier-name: ^2.0.0
+ micromark-factory-mdx-expression: ^1.0.0
+ micromark-factory-space: ^1.0.0
+ micromark-util-character: ^1.0.0
+ micromark-util-symbol: ^1.0.0
+ micromark-util-types: ^1.0.0
+ uvu: ^0.5.0
+ vfile-message: ^3.0.0
+ checksum: 1a5566890aabc52fe96b78e3a3a507dee03a2232e44b9360b00617734e156f934e85bc6a477fbb856c793fe33c9fb7d2207a4f50e680168c0d04ba9c9336d960
+ languageName: node
+ linkType: hard
+
+"micromark-extension-mdx-md@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "micromark-extension-mdx-md@npm:1.0.0"
+ dependencies:
+ micromark-util-types: ^1.0.0
+ checksum: b4f205e1d5f0946b4755541ef44ffd0b3be8c7ecfc08d8b139b6a21fbd3ff62d8fdb6b7e6d17bd9a3b610450267f43a41703dc48b341da9addd743a28cdefa64
+ languageName: node
+ linkType: hard
+
+"micromark-extension-mdxjs-esm@npm:^1.0.0":
+ version: 1.0.3
+ resolution: "micromark-extension-mdxjs-esm@npm:1.0.3"
+ dependencies:
+ micromark-core-commonmark: ^1.0.0
+ micromark-util-character: ^1.0.0
+ micromark-util-events-to-acorn: ^1.0.0
+ micromark-util-symbol: ^1.0.0
+ micromark-util-types: ^1.0.0
+ unist-util-position-from-estree: ^1.1.0
+ uvu: ^0.5.0
+ vfile-message: ^3.0.0
+ checksum: 756074656391a5e5bb96bc8a0e9c1df7d9f7be5299847c9719e6a90552e1c76a11876aa89986ad5da89ab485f776a4a43a61ea3acddd4f865a5cee43ac523ffd
+ languageName: node
+ linkType: hard
+
+"micromark-extension-mdxjs@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "micromark-extension-mdxjs@npm:1.0.0"
+ dependencies:
+ acorn: ^8.0.0
+ acorn-jsx: ^5.0.0
+ micromark-extension-mdx-expression: ^1.0.0
+ micromark-extension-mdx-jsx: ^1.0.0
+ micromark-extension-mdx-md: ^1.0.0
+ micromark-extension-mdxjs-esm: ^1.0.0
+ micromark-util-combine-extensions: ^1.0.0
+ micromark-util-types: ^1.0.0
+ checksum: ba836c6d2dfc67597886e88f533ffa02f2029dbe216a0651f1066e70f8529a700bcc7fa2bc4201ee12fd3d1cd7da7093d5a442442daeb84b27df96aaffb7699c
+ languageName: node
+ linkType: hard
+
+"micromark-factory-destination@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "micromark-factory-destination@npm:1.0.0"
+ dependencies:
+ micromark-util-character: ^1.0.0
+ micromark-util-symbol: ^1.0.0
+ micromark-util-types: ^1.0.0
+ checksum: 8e733ae9c1c2342f14ff290bf09946e20f6f540117d80342377a765cac48df2ea5e748f33c8b07501ad7a43414b1a6597c8510ede2052b6bf1251fab89748e20
+ languageName: node
+ linkType: hard
+
+"micromark-factory-label@npm:^1.0.0":
+ version: 1.0.2
+ resolution: "micromark-factory-label@npm:1.0.2"
+ dependencies:
+ micromark-util-character: ^1.0.0
+ micromark-util-symbol: ^1.0.0
+ micromark-util-types: ^1.0.0
+ uvu: ^0.5.0
+ checksum: 957e9366bdc8dbc1437c0706ff96972fa985ab4b1274abcae12f6094f527cbf5c69e7f2304c23c7f4b96e311ff7911d226563b8b43dcfcd4091e8c985fb97ce6
+ languageName: node
+ linkType: hard
+
+"micromark-factory-mdx-expression@npm:^1.0.0":
+ version: 1.0.6
+ resolution: "micromark-factory-mdx-expression@npm:1.0.6"
+ dependencies:
+ micromark-factory-space: ^1.0.0
+ micromark-util-character: ^1.0.0
+ micromark-util-events-to-acorn: ^1.0.0
+ micromark-util-symbol: ^1.0.0
+ micromark-util-types: ^1.0.0
+ unist-util-position-from-estree: ^1.0.0
+ uvu: ^0.5.0
+ vfile-message: ^3.0.0
+ checksum: 7b69f0e77664e9820639cf23c4f01d43aa0e7abd88021c3db428435e3a5a1f9446f8dc5c2a6ed4ac16c6495ca51937609a5c98ff59a62c54be382c2725500b39
+ languageName: node
+ linkType: hard
+
+"micromark-factory-space@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "micromark-factory-space@npm:1.0.0"
+ dependencies:
+ micromark-util-character: ^1.0.0
+ micromark-util-types: ^1.0.0
+ checksum: 70d3aafde4e68ef4e509a3b644e9a29e4aada00801279e346577b008cbca06d78051bcd62aa7ea7425856ed73f09abd2b36607803055f726f52607ee7cb706b0
+ languageName: node
+ linkType: hard
+
+"micromark-factory-title@npm:^1.0.0":
+ version: 1.0.2
+ resolution: "micromark-factory-title@npm:1.0.2"
+ dependencies:
+ micromark-factory-space: ^1.0.0
+ micromark-util-character: ^1.0.0
+ micromark-util-symbol: ^1.0.0
+ micromark-util-types: ^1.0.0
+ uvu: ^0.5.0
+ checksum: 9a9cf66babde0bad1e25d6c1087082bfde6dfc319a36cab67c89651cc1a53d0e21cdec83262b5a4c33bff49f0e3c8dc2a7bd464e991d40dbea166a8f9b37e5b2
+ languageName: node
+ linkType: hard
+
+"micromark-factory-whitespace@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "micromark-factory-whitespace@npm:1.0.0"
+ dependencies:
+ micromark-factory-space: ^1.0.0
+ micromark-util-character: ^1.0.0
+ micromark-util-symbol: ^1.0.0
+ micromark-util-types: ^1.0.0
+ checksum: 0888386e6ea2dd665a5182c570d9b3d0a172d3f11694ca5a2a84e552149c9f1429f5b975ec26e1f0fa4388c55a656c9f359ce5e0603aff6175ba3e255076f20b
+ languageName: node
+ linkType: hard
+
+"micromark-util-character@npm:^1.0.0":
+ version: 1.1.0
+ resolution: "micromark-util-character@npm:1.1.0"
+ dependencies:
+ micromark-util-symbol: ^1.0.0
+ micromark-util-types: ^1.0.0
+ checksum: 504a4e3321f69bddf3fec9f0c1058239fc23336bda5be31d532b150491eda47965a251b37f8a7a9db0c65933b3aaa49cf88044fb1028be3af7c5ee6212bf8d5f
+ languageName: node
+ linkType: hard
+
+"micromark-util-chunked@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "micromark-util-chunked@npm:1.0.0"
+ dependencies:
+ micromark-util-symbol: ^1.0.0
+ checksum: c1efd56e8c4217bcf1c6f1a9fb9912b4a2a5503b00d031da902be922fb3fee60409ac53f11739991291357b2784fb0647ddfc74c94753a068646c0cb0fd71421
+ languageName: node
+ linkType: hard
+
+"micromark-util-classify-character@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "micromark-util-classify-character@npm:1.0.0"
+ dependencies:
+ micromark-util-character: ^1.0.0
+ micromark-util-symbol: ^1.0.0
+ micromark-util-types: ^1.0.0
+ checksum: 180446e6a1dec653f625ded028f244784e1db8d10ad05c5d70f08af9de393b4a03dc6cf6fa5ed8ccc9c24bbece7837abf3bf66681c0b4adf159364b7d5236dfd
+ languageName: node
+ linkType: hard
+
+"micromark-util-combine-extensions@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "micromark-util-combine-extensions@npm:1.0.0"
+ dependencies:
+ micromark-util-chunked: ^1.0.0
+ micromark-util-types: ^1.0.0
+ checksum: 5304a820ef75340e1be69d6ad167055b6ba9a3bafe8171e5945a935752f462415a9dd61eb3490220c055a8a11167209a45bfa73f278338b7d3d61fa1464d3f35
+ languageName: node
+ linkType: hard
+
+"micromark-util-decode-numeric-character-reference@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "micromark-util-decode-numeric-character-reference@npm:1.0.0"
+ dependencies:
+ micromark-util-symbol: ^1.0.0
+ checksum: f3ae2bb582a80f1e9d3face026f585c0c472335c064bd850bde152376f0394cb2831746749b6be6e0160f7d73626f67d10716026c04c87f402c0dd45a1a28633
+ languageName: node
+ linkType: hard
+
+"micromark-util-decode-string@npm:^1.0.0":
+ version: 1.0.2
+ resolution: "micromark-util-decode-string@npm:1.0.2"
+ dependencies:
+ decode-named-character-reference: ^1.0.0
+ micromark-util-character: ^1.0.0
+ micromark-util-decode-numeric-character-reference: ^1.0.0
+ micromark-util-symbol: ^1.0.0
+ checksum: 2dbb41c9691cc71505d39706405139fb7d6699429d577a524c7c248ac0cfd09d3dd212ad8e91c143a00b2896f26f81136edc67c5bda32d20446f0834d261b17a
+ languageName: node
+ linkType: hard
+
+"micromark-util-encode@npm:^1.0.0":
+ version: 1.0.1
+ resolution: "micromark-util-encode@npm:1.0.1"
+ checksum: 9290583abfdc79ea3e7eb92c012c47a0e14327888f8aaa6f57ff79b3058d8e7743716b9d91abca3646f15ab3d78fdad9779fdb4ccf13349cd53309dfc845253a
+ languageName: node
+ linkType: hard
+
+"micromark-util-events-to-acorn@npm:^1.0.0":
+ version: 1.0.6
+ resolution: "micromark-util-events-to-acorn@npm:1.0.6"
+ dependencies:
+ "@types/acorn": ^4.0.0
+ "@types/estree": ^0.0.51
+ estree-util-visit: ^1.0.0
+ micromark-util-types: ^1.0.0
+ uvu: ^0.5.0
+ vfile-location: ^4.0.0
+ vfile-message: ^3.0.0
+ checksum: 035616811fc103ba055049de3e4269df44d3404e3fe80fc6aee5d46dcb3b017b8f45b9aeb7a8ff6ca5e99551a793d5dcbfc8fc67f138e8235ca417338fca9e5c
+ languageName: node
+ linkType: hard
+
+"micromark-util-html-tag-name@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "micromark-util-html-tag-name@npm:1.0.0"
+ checksum: ed07ce9b9bb30cc4ea57f733089b3a253a6132c0608ccfc105eadb32f1f80bbd2347bf8a74f897fe039d7805a59f602fd4dd15f6adc7926d40b3646da2888d0f
+ languageName: node
+ linkType: hard
+
+"micromark-util-normalize-identifier@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "micromark-util-normalize-identifier@npm:1.0.0"
+ dependencies:
+ micromark-util-symbol: ^1.0.0
+ checksum: d7c09d5e8318fb72f194af72664bd84a48a2928e3550b2b21c8fbc0ec22524f2a72e0f6663d2b95dc189a6957d3d7759b60716e888909710767cd557be821f8b
+ languageName: node
+ linkType: hard
+
+"micromark-util-resolve-all@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "micromark-util-resolve-all@npm:1.0.0"
+ dependencies:
+ micromark-util-types: ^1.0.0
+ checksum: 409667f2bd126ef8acce009270d2aecaaa5584c5807672bc657b09e50aa91bd2e552cf41e5be1e6469244a83349cbb71daf6059b746b1c44e3f35446fef63e50
+ languageName: node
+ linkType: hard
+
+"micromark-util-sanitize-uri@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "micromark-util-sanitize-uri@npm:1.0.0"
+ dependencies:
+ micromark-util-character: ^1.0.0
+ micromark-util-encode: ^1.0.0
+ micromark-util-symbol: ^1.0.0
+ checksum: 77448ec3a5d18f0ac975ea47591fbf0d5bd5568f9a0d033d9e318f90656031f037c5ff9137e93faf289480eaea70a5382e2571ebf9edcb1c1cd2a5187b6b3160
+ languageName: node
+ linkType: hard
+
+"micromark-util-subtokenize@npm:^1.0.0":
+ version: 1.0.2
+ resolution: "micromark-util-subtokenize@npm:1.0.2"
+ dependencies:
+ micromark-util-chunked: ^1.0.0
+ micromark-util-symbol: ^1.0.0
+ micromark-util-types: ^1.0.0
+ uvu: ^0.5.0
+ checksum: c32ee58a7e1384ab1161a9ee02fbb04ad7b6e96d0b8c93dba9803c329a53d07f22ab394c7a96b2e30d6b8fbe3585b85817dba07277b1317111fc234e166bd2d1
+ languageName: node
+ linkType: hard
+
+"micromark-util-symbol@npm:^1.0.0":
+ version: 1.0.1
+ resolution: "micromark-util-symbol@npm:1.0.1"
+ checksum: c6a3023b3a7432c15864b5e33a1bcb5042ac7aa097f2f452e587bef45433d42d39e0a5cce12fbea91e0671098ba0c3f62a2b30ce1cde66ecbb5e8336acf4391d
+ languageName: node
+ linkType: hard
+
+"micromark-util-types@npm:^1.0.0, micromark-util-types@npm:^1.0.1":
+ version: 1.0.2
+ resolution: "micromark-util-types@npm:1.0.2"
+ checksum: 08dc901b7c06ee3dfeb54befca05cbdab9525c1cf1c1080967c3878c9e72cb9856c7e8ff6112816e18ead36ce6f99d55aaa91560768f2f6417b415dcba1244df
+ languageName: node
+ linkType: hard
+
+"micromark@npm:^3.0.0":
+ version: 3.0.10
+ resolution: "micromark@npm:3.0.10"
+ dependencies:
+ "@types/debug": ^4.0.0
+ debug: ^4.0.0
+ decode-named-character-reference: ^1.0.0
+ micromark-core-commonmark: ^1.0.1
+ micromark-factory-space: ^1.0.0
+ micromark-util-character: ^1.0.0
+ micromark-util-chunked: ^1.0.0
+ micromark-util-combine-extensions: ^1.0.0
+ micromark-util-decode-numeric-character-reference: ^1.0.0
+ micromark-util-encode: ^1.0.0
+ micromark-util-normalize-identifier: ^1.0.0
+ micromark-util-resolve-all: ^1.0.0
+ micromark-util-sanitize-uri: ^1.0.0
+ micromark-util-subtokenize: ^1.0.0
+ micromark-util-symbol: ^1.0.0
+ micromark-util-types: ^1.0.1
+ uvu: ^0.5.0
+ checksum: 04663fe0308cccfbf338111b41d3d82d6445d1d2b834c9fc1880e1ea3874c4a3b81adfafe62b0bc7708ba0a86889885ea31b4dbb39f1f72190c3aab46b743bb1
+ languageName: node
+ linkType: hard
+
"micromatch@npm:^4.0.4":
version: 4.0.5
resolution: "micromatch@npm:4.0.5"
@@ -4421,6 +5999,15 @@ __metadata:
languageName: node
linkType: hard
+"minimatch@npm:^5.0.1":
+ version: 5.0.1
+ resolution: "minimatch@npm:5.0.1"
+ dependencies:
+ brace-expansion: ^2.0.1
+ checksum: b34b98463da4754bc526b244d680c69d4d6089451ebe512edaf6dd9eeed0279399cfa3edb19233513b8f830bf4bfcad911dddcdf125e75074100d52f724774f0
+ languageName: node
+ linkType: hard
+
"minimist-options@npm:4.1.0":
version: 4.1.0
resolution: "minimist-options@npm:4.1.0"
@@ -4598,6 +6185,13 @@ __metadata:
languageName: node
linkType: hard
+"mri@npm:^1.1.0":
+ version: 1.2.0
+ resolution: "mri@npm:1.2.0"
+ checksum: 83f515abbcff60150873e424894a2f65d68037e5a7fcde8a9e2b285ee9c13ac581b63cfc1e6826c4732de3aeb84902f7c1e16b7aff46cd3f897a0f757a894e85
+ languageName: node
+ linkType: hard
+
"ms@npm:2.1.2":
version: 2.1.2
resolution: "ms@npm:2.1.2"
@@ -4632,6 +6226,15 @@ __metadata:
languageName: node
linkType: hard
+"nanoid@npm:^3.1.30":
+ version: 3.3.3
+ resolution: "nanoid@npm:3.3.3"
+ bin:
+ nanoid: bin/nanoid.cjs
+ checksum: ada019402a07464a694553c61d2dca8a4353645a7d92f2830f0d487fedff403678a0bee5323a46522752b2eab95a0bc3da98b6cccaa7c0c55cd9975130e6d6f0
+ languageName: node
+ linkType: hard
+
"napi-build-utils@npm:^1.0.1":
version: 1.0.2
resolution: "napi-build-utils@npm:1.0.2"
@@ -4653,6 +6256,126 @@ __metadata:
languageName: node
linkType: hard
+"next-themes@npm:^0.2.0-beta.0":
+ version: 0.2.0-beta.0
+ resolution: "next-themes@npm:0.2.0-beta.0"
+ peerDependencies:
+ next: ">=11.1.1"
+ react: "*"
+ react-dom: "*"
+ checksum: fed4689b17c87020bccc1c2c84323d92285f5f932c98db19e46de484a594a6eb264835d5932b56f863b4e03ee7bd2286cbc299f605e67a5f2ff09fc233eea504
+ languageName: node
+ linkType: hard
+
+"next@npm:canary":
+ version: 12.1.6-canary.5
+ resolution: "next@npm:12.1.6-canary.5"
+ dependencies:
+ "@next/env": 12.1.6-canary.5
+ "@next/swc-android-arm-eabi": 12.1.6-canary.5
+ "@next/swc-android-arm64": 12.1.6-canary.5
+ "@next/swc-darwin-arm64": 12.1.6-canary.5
+ "@next/swc-darwin-x64": 12.1.6-canary.5
+ "@next/swc-linux-arm-gnueabihf": 12.1.6-canary.5
+ "@next/swc-linux-arm64-gnu": 12.1.6-canary.5
+ "@next/swc-linux-arm64-musl": 12.1.6-canary.5
+ "@next/swc-linux-x64-gnu": 12.1.6-canary.5
+ "@next/swc-linux-x64-musl": 12.1.6-canary.5
+ "@next/swc-win32-arm64-msvc": 12.1.6-canary.5
+ "@next/swc-win32-ia32-msvc": 12.1.6-canary.5
+ "@next/swc-win32-x64-msvc": 12.1.6-canary.5
+ caniuse-lite: ^1.0.30001283
+ postcss: 8.4.5
+ styled-jsx: 5.0.1
+ peerDependencies:
+ fibers: ">= 3.1.0"
+ node-sass: ^6.0.0 || ^7.0.0
+ react: ^17.0.2 || ^18.0.0-0
+ react-dom: ^17.0.2 || ^18.0.0-0
+ sass: ^1.3.0
+ dependenciesMeta:
+ "@next/swc-android-arm-eabi":
+ optional: true
+ "@next/swc-android-arm64":
+ optional: true
+ "@next/swc-darwin-arm64":
+ optional: true
+ "@next/swc-darwin-x64":
+ optional: true
+ "@next/swc-linux-arm-gnueabihf":
+ optional: true
+ "@next/swc-linux-arm64-gnu":
+ optional: true
+ "@next/swc-linux-arm64-musl":
+ optional: true
+ "@next/swc-linux-x64-gnu":
+ optional: true
+ "@next/swc-linux-x64-musl":
+ optional: true
+ "@next/swc-win32-arm64-msvc":
+ optional: true
+ "@next/swc-win32-ia32-msvc":
+ optional: true
+ "@next/swc-win32-x64-msvc":
+ optional: true
+ peerDependenciesMeta:
+ fibers:
+ optional: true
+ node-sass:
+ optional: true
+ sass:
+ optional: true
+ bin:
+ next: dist/bin/next
+ checksum: 4fd3e16ae54e7787b246797c44abdd7d51b0f628bc717cc73d853677a42040961fb9ca55aa46e348638ef0137624b1c3413970180bca9def0ccf5714896dd6d8
+ languageName: node
+ linkType: hard
+
+"nextra-theme-docs@npm:2.0.0-alpha.50":
+ version: 2.0.0-alpha.50
+ resolution: "nextra-theme-docs@npm:2.0.0-alpha.50"
+ dependencies:
+ "@headlessui/react": ^1.5.0
+ "@mdx-js/react": ^2.1.0
+ "@reach/skip-nav": ^0.16.0
+ classnames: ^2.2.6
+ flexsearch: ^0.7.21
+ focus-visible: ^5.1.0
+ github-slugger: ^1.4.0
+ intersection-observer: ^0.12.0
+ match-sorter: ^4.2.0
+ next-themes: ^0.2.0-beta.0
+ parse-git-url: ^1.0.1
+ scroll-into-view-if-needed: ^2.2.29
+ title: ^3.4.2
+ peerDependencies:
+ next: ">=9.5.3"
+ react: ">=16.13.1"
+ react-dom: ">=16.13.1"
+ checksum: b32d2d2226898590fbea503d45cb7fd4b8800bc513fb7ea809033e47b4d9b177736bc8e8e78889767267d90eb3fb51b7f90731d8f154de24ae31400bb6a089d0
+ languageName: node
+ linkType: hard
+
+"nextra@npm:2.0.0-alpha.49":
+ version: 2.0.0-alpha.49
+ resolution: "nextra@npm:2.0.0-alpha.49"
+ dependencies:
+ "@mdx-js/mdx": ^2.1.0
+ "@napi-rs/simple-git": ^0.1.7
+ github-slugger: ^1.4.0
+ graceful-fs: ^4.2.6
+ gray-matter: ^4.0.3
+ p-limit: ^4.0.0
+ rehype-pretty-code: ^0.1.0
+ remark-gfm: ^3.0.1
+ shiki: 0.10.1
+ slash: ^3.0.0
+ peerDependencies:
+ react: ">=16.13.1"
+ checksum: 64de8350f560928aec5dce1fe3dde1880c9eaa2698036357789b312f722f9dc58b49fd58feb545797577aa8abb7b2835124dfcbbcbbabccfca4435281d93f172
+ languageName: node
+ linkType: hard
+
"nice-try@npm:^1.0.4":
version: 1.0.5
resolution: "nice-try@npm:1.0.5"
@@ -4661,11 +6384,11 @@ __metadata:
linkType: hard
"node-abi@npm:^3.3.0":
- version: 3.8.0
- resolution: "node-abi@npm:3.8.0"
+ version: 3.15.0
+ resolution: "node-abi@npm:3.15.0"
dependencies:
semver: ^7.3.5
- checksum: 3644dd51f4f189358ef56055407501aa698632d67448585b38c46c81a482a0c3bfb06da513ac4060a12ce5f607f208ba9d9c8280f1c38329670b709bd735fcae
+ checksum: 8fb0374d11f4d02beaacfedf5e536006f0c5f4c479cd2ff6cfda39b0a8f1f9230dbac865f80e98f030dae5ae8e197806b8683547dad1b79af16246e32a441e24
languageName: node
linkType: hard
@@ -4678,6 +6401,13 @@ __metadata:
languageName: node
linkType: hard
+"node-domexception@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "node-domexception@npm:1.0.0"
+ checksum: ee1d37dd2a4eb26a8a92cd6b64dfc29caec72bff5e1ed9aba80c294f57a31ba4895a60fd48347cf17dd6e766da0ae87d75657dfd1f384ebfa60462c2283f5c7f
+ languageName: node
+ linkType: hard
+
"node-fetch@npm:^2.6.1, node-fetch@npm:^2.6.7":
version: 2.6.7
resolution: "node-fetch@npm:2.6.7"
@@ -4692,6 +6422,17 @@ __metadata:
languageName: node
linkType: hard
+"node-fetch@npm:^3.2.3":
+ version: 3.2.3
+ resolution: "node-fetch@npm:3.2.3"
+ dependencies:
+ data-uri-to-buffer: ^4.0.0
+ fetch-blob: ^3.1.4
+ formdata-polyfill: ^4.0.10
+ checksum: 6f702b2683d6e1c097e99888bedaac4625d6895f2a8a60573a2bc04916f5577ea61d274f26e308c08cfb724b23d45de7d3514c14b59e0293e9809c66c88ac12c
+ languageName: node
+ linkType: hard
+
"node-gyp@npm:^5.0.2":
version: 5.1.1
resolution: "node-gyp@npm:5.1.1"
@@ -4950,6 +6691,15 @@ __metadata:
languageName: node
linkType: hard
+"npm-run-path@npm:^2.0.0":
+ version: 2.0.2
+ resolution: "npm-run-path@npm:2.0.2"
+ dependencies:
+ path-key: ^2.0.0
+ checksum: acd5ad81648ba4588ba5a8effb1d98d2b339d31be16826a118d50f182a134ac523172101b82eab1d01cb4c2ba358e857d54cfafd8163a1ffe7bd52100b741125
+ languageName: node
+ linkType: hard
+
"npm-run-path@npm:^4.0.1":
version: 4.0.1
resolution: "npm-run-path@npm:4.0.1"
@@ -4972,14 +6722,14 @@ __metadata:
linkType: hard
"npmlog@npm:^6.0.0":
- version: 6.0.1
- resolution: "npmlog@npm:6.0.1"
+ version: 6.0.2
+ resolution: "npmlog@npm:6.0.2"
dependencies:
are-we-there-yet: ^3.0.0
console-control-strings: ^1.1.0
- gauge: ^4.0.0
+ gauge: ^4.0.3
set-blocking: ^2.0.0
- checksum: f1a4078a73ebc89896a832bbf869f491c32ecb12e0434b9a7499878ce8f29f22e72befe3c53cd8cdc9dbf4b4057297e783ab0b6746a8b067734de6205af4d538
+ checksum: ae238cd264a1c3f22091cdd9e2b106f684297d3c184f1146984ecbe18aaa86343953f26b9520dedd1b1372bc0316905b736c1932d778dbeb1fcf5a1001390e2a
languageName: node
linkType: hard
@@ -5011,7 +6761,7 @@ __metadata:
languageName: node
linkType: hard
-"object-keys@npm:^1.0.12, object-keys@npm:^1.1.1":
+"object-keys@npm:^1.1.1":
version: 1.1.1
resolution: "object-keys@npm:1.1.1"
checksum: b363c5e7644b1e1b04aa507e88dcb8e3a2f52b6ffd0ea801e4c7a62d5aa559affe21c55a07fd4b1fd55fc03a33c610d73426664b20032405d7b92a1414c34d6a
@@ -5286,6 +7036,29 @@ __metadata:
languageName: node
linkType: hard
+"parse-entities@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "parse-entities@npm:4.0.0"
+ dependencies:
+ "@types/unist": ^2.0.0
+ character-entities: ^2.0.0
+ character-entities-legacy: ^3.0.0
+ character-reference-invalid: ^2.0.0
+ decode-named-character-reference: ^1.0.0
+ is-alphanumerical: ^2.0.0
+ is-decimal: ^2.0.0
+ is-hexadecimal: ^2.0.0
+ checksum: cd9fa53bc056ad8cf8a45494bfd7ce65e8bf6f1b12dcc9a6343376fa529c2012041303c5d0f86babf70afbd13b71c2f219fc3a76fb97d9d559b66578e19cdaf0
+ languageName: node
+ linkType: hard
+
+"parse-git-url@npm:^1.0.1":
+ version: 1.0.1
+ resolution: "parse-git-url@npm:1.0.1"
+ checksum: 764d15c50d17308dd90883337d34f6dfc68a6a1e3441d714d9434cf2b12607ee74dd51754b01d07e2fb19592357e59242a1ebdfe2d8025ac6c0998205f66d6dd
+ languageName: node
+ linkType: hard
+
"parse-json@npm:^4.0.0":
version: 4.0.0
resolution: "parse-json@npm:4.0.0"
@@ -5315,6 +7088,13 @@ __metadata:
languageName: node
linkType: hard
+"parse-numeric-range@npm:^1.3.0":
+ version: 1.3.0
+ resolution: "parse-numeric-range@npm:1.3.0"
+ checksum: 289ca126d5b8ace7325b199218de198014f58ea6895ccc88a5247491d07f0143bf047f80b4a31784f1ca8911762278d7d6ecb90a31dfae31da91cc1a2524c8ce
+ languageName: node
+ linkType: hard
+
"parse-path@npm:^4.0.0":
version: 4.0.3
resolution: "parse-path@npm:4.0.3"
@@ -5367,7 +7147,7 @@ __metadata:
languageName: node
linkType: hard
-"path-key@npm:^2.0.1":
+"path-key@npm:^2.0.0, path-key@npm:^2.0.1":
version: 2.0.1
resolution: "path-key@npm:2.0.1"
checksum: f7ab0ad42fe3fb8c7f11d0c4f849871e28fbd8e1add65c370e422512fc5887097b9cf34d09c1747d45c942a8c1e26468d6356e2df3f740bf177ab8ca7301ebfd
@@ -5411,6 +7191,23 @@ __metadata:
languageName: node
linkType: hard
+"periscopic@npm:^3.0.0":
+ version: 3.0.4
+ resolution: "periscopic@npm:3.0.4"
+ dependencies:
+ estree-walker: ^3.0.0
+ is-reference: ^3.0.0
+ checksum: 0920ea1b0294c2463b7df858d7f895d0a69f15ec5c7b93d63749e7a8f6d9c065853ebea701305f1756f70310633832cf5c90e43e9363cce51abec44cc2f5c188
+ languageName: node
+ linkType: hard
+
+"picocolors@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "picocolors@npm:1.0.0"
+ checksum: a2e8092dd86c8396bdba9f2b5481032848525b3dc295ce9b57896f931e63fc16f79805144321f72976383fc249584672a75cc18d6777c6b757603f372f745981
+ languageName: node
+ linkType: hard
+
"picomatch@npm:^2.0.4, picomatch@npm:^2.2.1, picomatch@npm:^2.3.1":
version: 2.3.1
resolution: "picomatch@npm:2.3.1"
@@ -5483,9 +7280,20 @@ __metadata:
languageName: node
linkType: hard
+"postcss@npm:8.4.5":
+ version: 8.4.5
+ resolution: "postcss@npm:8.4.5"
+ dependencies:
+ nanoid: ^3.1.30
+ picocolors: ^1.0.0
+ source-map-js: ^1.0.1
+ checksum: b78abdd89c10f7b48f4bdcd376104a19d6e9c7495ab521729bdb3df315af6c211360e9f06887ad3bc0ab0f61a04b91d68ea11462997c79cced58b9ccd66fac07
+ languageName: node
+ linkType: hard
+
"prebuild-install@npm:^7.0.1":
- version: 7.0.1
- resolution: "prebuild-install@npm:7.0.1"
+ version: 7.1.0
+ resolution: "prebuild-install@npm:7.1.0"
dependencies:
detect-libc: ^2.0.0
expand-template: ^2.0.3
@@ -5502,7 +7310,7 @@ __metadata:
tunnel-agent: ^0.6.0
bin:
prebuild-install: bin.js
- checksum: 117c8966f221242633bbf245755fb469dabc7085909f5e3db83359d6281a88dedbdada7e839315805a192c74b7cce3ed1a86c1382a8d950c1ea60a9d5d8e7bf0
+ checksum: 204f2d89c6d6179fa1039036514aa72f7d0b537e421ef72c40840286e318f41489f00f22c6acc725cce6e10d43825b69dcabeaadfc917db781c58cd56fc25f90
languageName: node
linkType: hard
@@ -5557,6 +7365,13 @@ __metadata:
languageName: node
linkType: hard
+"property-information@npm:^6.0.0":
+ version: 6.1.1
+ resolution: "property-information@npm:6.1.1"
+ checksum: 654b1e5c3578e1d522bd22b7cf48881f5054789969ddbefea22e5359805fda5dbf0c5ef76bb26516da26fedac8752587ddc4c8f3b9e16bc0c6e7feb8b6086864
+ languageName: node
+ linkType: hard
+
"proto-list@npm:~1.2.1":
version: 1.2.4
resolution: "proto-list@npm:1.2.4"
@@ -5571,6 +7386,13 @@ __metadata:
languageName: node
linkType: hard
+"pseudomap@npm:^1.0.2":
+ version: 1.0.2
+ resolution: "pseudomap@npm:1.0.2"
+ checksum: 856c0aae0ff2ad60881168334448e898ad7a0e45fe7386d114b150084254c01e200c957cf378378025df4e052c7890c5bd933939b0e0d2ecfcc1dc2f0b2991f5
+ languageName: node
+ linkType: hard
+
"psl@npm:^1.1.28":
version: 1.8.0
resolution: "psl@npm:1.8.0"
@@ -5658,6 +7480,27 @@ __metadata:
languageName: node
linkType: hard
+"react-dom@npm:^18.0.0":
+ version: 18.0.0
+ resolution: "react-dom@npm:18.0.0"
+ dependencies:
+ loose-envify: ^1.1.0
+ scheduler: ^0.21.0
+ peerDependencies:
+ react: ^18.0.0
+ checksum: dd0ba9f2f31dd728076c892a95b2f5a8dfe79136431b0289afb46eec39d0ca6b6f0f40a60fd8aa6ef702c98ce7c26100d3d4dbc35c7c9e87429cd04f84cb58bd
+ languageName: node
+ linkType: hard
+
+"react@npm:^18.0.0":
+ version: 18.0.0
+ resolution: "react@npm:18.0.0"
+ dependencies:
+ loose-envify: ^1.1.0
+ checksum: 293020b96536b3c7113ee57ca5c990a3f25649d1751b1c7a3aabd16dff0691fe9f1eed1206616d0906d05933536052037340a0c8d0941ff870b0eb469a2f975b
+ languageName: node
+ linkType: hard
+
"read-cmd-shim@npm:^2.0.0":
version: 2.0.0
resolution: "read-cmd-shim@npm:2.0.0"
@@ -5832,6 +7675,76 @@ __metadata:
languageName: node
linkType: hard
+"regenerator-runtime@npm:^0.13.4":
+ version: 0.13.9
+ resolution: "regenerator-runtime@npm:0.13.9"
+ checksum: 65ed455fe5afd799e2897baf691ca21c2772e1a969d19bb0c4695757c2d96249eb74ee3553ea34a91062b2a676beedf630b4c1551cc6299afb937be1426ec55e
+ languageName: node
+ linkType: hard
+
+"rehype-pretty-code@npm:^0.1.0":
+ version: 0.1.0
+ resolution: "rehype-pretty-code@npm:0.1.0"
+ dependencies:
+ parse-numeric-range: ^1.3.0
+ peerDependencies:
+ shiki: "*"
+ checksum: 6a326f3ec15337417b2f901223128864f60ad97479f658bc7ac258f4764a00cece71c983970f209a61cfa076bff7243393118bd8c01d56740b6b23b08c2f95a6
+ languageName: node
+ linkType: hard
+
+"remark-gfm@npm:^3.0.1":
+ version: 3.0.1
+ resolution: "remark-gfm@npm:3.0.1"
+ dependencies:
+ "@types/mdast": ^3.0.0
+ mdast-util-gfm: ^2.0.0
+ micromark-extension-gfm: ^2.0.0
+ unified: ^10.0.0
+ checksum: 02254f74d67b3419c2c9cf62d799ec35f6c6cd74db25c001361751991552a7ce86049a972107bff8122d85d15ae4a8d1a0618f3bc01a7df837af021ae9b2a04e
+ languageName: node
+ linkType: hard
+
+"remark-mdx@npm:^2.0.0":
+ version: 2.1.1
+ resolution: "remark-mdx@npm:2.1.1"
+ dependencies:
+ mdast-util-mdx: ^2.0.0
+ micromark-extension-mdxjs: ^1.0.0
+ checksum: cd67006499d85b73fd69ff79e3a9202ffa831bfd243eeafd53a2d335d860e7cb4956801461d752e8791a4cface9663f787ad5c828ed028cbc0f11b12846633aa
+ languageName: node
+ linkType: hard
+
+"remark-parse@npm:^10.0.0":
+ version: 10.0.1
+ resolution: "remark-parse@npm:10.0.1"
+ dependencies:
+ "@types/mdast": ^3.0.0
+ mdast-util-from-markdown: ^1.0.0
+ unified: ^10.0.0
+ checksum: 505088e564ab53ff054433368adbb7b551f69240c7d9768975529837a86f1d0f085e72d6211929c5c42db315273df4afc94f3d3a8662ffdb69468534c6643d29
+ languageName: node
+ linkType: hard
+
+"remark-rehype@npm:^10.0.0":
+ version: 10.1.0
+ resolution: "remark-rehype@npm:10.1.0"
+ dependencies:
+ "@types/hast": ^2.0.0
+ "@types/mdast": ^3.0.0
+ mdast-util-to-hast: ^12.1.0
+ unified: ^10.0.0
+ checksum: b9ac8acff3383b204dfdc2599d0bdf86e6ca7e837033209584af2e6aaa6a9013e519a379afa3201299798cab7298c8f4b388de118c312c67234c133318aec084
+ languageName: node
+ linkType: hard
+
+"remove-accents@npm:0.4.2":
+ version: 0.4.2
+ resolution: "remove-accents@npm:0.4.2"
+ checksum: 84a6988555dea24115e2d1954db99509588d43fe55a1590f0b5894802776f7b488b3151c37ceb9e4f4b646f26b80b7325dcea2fae58bc3865df146e1fa606711
+ languageName: node
+ linkType: hard
+
"request@npm:^2.88.0, request@npm:^2.88.2":
version: 2.88.2
resolution: "request@npm:2.88.2"
@@ -5996,6 +7909,15 @@ __metadata:
languageName: node
linkType: hard
+"sade@npm:^1.7.3":
+ version: 1.8.1
+ resolution: "sade@npm:1.8.1"
+ dependencies:
+ mri: ^1.1.0
+ checksum: 0756e5b04c51ccdc8221ebffd1548d0ce5a783a44a0fa9017a026659b97d632913e78f7dca59f2496aa996a0be0b0c322afd87ca72ccd909406f49dbffa0f45d
+ languageName: node
+ linkType: hard
+
"safe-buffer@npm:^5.0.1, safe-buffer@npm:^5.1.2, safe-buffer@npm:^5.2.1, safe-buffer@npm:~5.2.0":
version: 5.2.1
resolution: "safe-buffer@npm:5.2.1"
@@ -6017,6 +7939,34 @@ __metadata:
languageName: node
linkType: hard
+"scheduler@npm:^0.21.0":
+ version: 0.21.0
+ resolution: "scheduler@npm:0.21.0"
+ dependencies:
+ loose-envify: ^1.1.0
+ checksum: 4f8285076041ed2c81acdd1faa987f1655fdbd30554bc667c1ea64743fc74fb3a04ca7d27454b3d678735df5a230137a3b84756061b43dc5796e80701b66d124
+ languageName: node
+ linkType: hard
+
+"scroll-into-view-if-needed@npm:^2.2.29":
+ version: 2.2.29
+ resolution: "scroll-into-view-if-needed@npm:2.2.29"
+ dependencies:
+ compute-scroll-into-view: ^1.0.17
+ checksum: 6b888404ccf68fe2f2f1da8977e1a8a0a64a7139352e02e98621a0e8be3b3db393519ee3dcfb7c32aff3c4790a36829f1be1cccc0cfb2b90a60a61caa669eee2
+ languageName: node
+ linkType: hard
+
+"section-matter@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "section-matter@npm:1.0.0"
+ dependencies:
+ extend-shallow: ^2.0.1
+ kind-of: ^6.0.0
+ checksum: 3cc4131705493b2955729b075dcf562359bba66183debb0332752dc9cad35616f6da7a23e42b6cab45cd2e4bb5cda113e9e84c8f05aee77adb6b0289a0229101
+ languageName: node
+ linkType: hard
+
"semver@npm:2 || 3 || 4 || 5, semver@npm:^5.5.0, semver@npm:^5.6.0, semver@npm:^5.7.1":
version: 5.7.1
resolution: "semver@npm:5.7.1"
@@ -6035,18 +7985,7 @@ __metadata:
languageName: node
linkType: hard
-"semver@npm:^7.1.1, semver@npm:^7.1.3, semver@npm:^7.3.2, semver@npm:^7.3.4, semver@npm:^7.3.5":
- version: 7.3.6
- resolution: "semver@npm:7.3.6"
- dependencies:
- lru-cache: ^7.4.0
- bin:
- semver: bin/semver.js
- checksum: 9845f96b22268190b30025e02feca391451f2bd49b2c51920c27cc56744f64cbe397df089018fdb347d4b4fd800eabbd85661870eb63eb28055d2b72e457f759
- languageName: node
- linkType: hard
-
-"semver@npm:^7.3.7":
+"semver@npm:^7.1.1, semver@npm:^7.1.3, semver@npm:^7.3.2, semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.3.7":
version: 7.3.7
resolution: "semver@npm:7.3.7"
dependencies:
@@ -6138,6 +8077,17 @@ __metadata:
languageName: node
linkType: hard
+"shiki@npm:0.10.1":
+ version: 0.10.1
+ resolution: "shiki@npm:0.10.1"
+ dependencies:
+ jsonc-parser: ^3.0.0
+ vscode-oniguruma: ^1.6.1
+ vscode-textmate: 5.2.0
+ checksum: fb746f3cb3de7e545e3b10a6cb658d3938f840e4ccc9a3c90ceb7e69a8f89dbb432171faac1e9f02a03f103684dad88ee5e54b5c4964fa6b579fca6e8e26424d
+ languageName: node
+ linkType: hard
+
"side-channel@npm:^1.0.4":
version: 1.0.4
resolution: "side-channel@npm:1.0.4"
@@ -6233,17 +8183,17 @@ __metadata:
linkType: hard
"socks-proxy-agent@npm:^6.0.0, socks-proxy-agent@npm:^6.1.1":
- version: 6.1.1
- resolution: "socks-proxy-agent@npm:6.1.1"
+ version: 6.2.0
+ resolution: "socks-proxy-agent@npm:6.2.0"
dependencies:
agent-base: ^6.0.2
- debug: ^4.3.1
- socks: ^2.6.1
- checksum: 9a8a4f791bba0060315cf7291ca6f9db37d6fc280fd0860d73d8887d3efe4c22e823aa25a8d5375f6079279f8dc91b50c075345179bf832bfe3c7c26d3582e3c
+ debug: ^4.3.3
+ socks: ^2.6.2
+ checksum: 6723fd64fb50334e2b340fd0a80fd8488ffc5bc43d85b7cf1d25612044f814dd7d6ea417fd47602159941236f7f4bd15669fa5d7e1f852598a31288e1a43967b
languageName: node
linkType: hard
-"socks@npm:^2.3.3, socks@npm:^2.6.1":
+"socks@npm:^2.3.3, socks@npm:^2.6.2":
version: 2.6.2
resolution: "socks@npm:2.6.2"
dependencies:
@@ -6271,6 +8221,13 @@ __metadata:
languageName: node
linkType: hard
+"source-map-js@npm:^1.0.1":
+ version: 1.0.2
+ resolution: "source-map-js@npm:1.0.2"
+ checksum: c049a7fc4deb9a7e9b481ae3d424cc793cb4845daa690bc5a05d428bf41bf231ced49b4cf0c9e77f9d42fdb3d20d6187619fc586605f5eabe995a316da8d377c
+ languageName: node
+ linkType: hard
+
"source-map@npm:^0.6.1":
version: 0.6.1
resolution: "source-map@npm:0.6.1"
@@ -6278,6 +8235,13 @@ __metadata:
languageName: node
linkType: hard
+"space-separated-tokens@npm:^2.0.0":
+ version: 2.0.1
+ resolution: "space-separated-tokens@npm:2.0.1"
+ checksum: 66e30a6382d6e3ab0a6573d510235a198202071d4ebfef8c198f10433166f0cdced4dbf0946cad3c4b2ecc336896a11f98b2ec93047e140fe7aef6fd3a21365b
+ languageName: node
+ linkType: hard
+
"spdx-correct@npm:^3.0.0":
version: 3.1.1
resolution: "spdx-correct@npm:3.1.1"
@@ -6481,6 +8445,16 @@ __metadata:
languageName: node
linkType: hard
+"stringify-entities@npm:^4.0.0":
+ version: 4.0.2
+ resolution: "stringify-entities@npm:4.0.2"
+ dependencies:
+ character-entities-html4: ^2.0.0
+ character-entities-legacy: ^3.0.0
+ checksum: a5736d92d8e2f162452121e786aa7cc8b330f2347585c373061dc756477679d0f40ee2199914aeb115cbe807c2166a4480d9344246d5e674a0a78d0ea9812fb3
+ languageName: node
+ linkType: hard
+
"strip-ansi@npm:^3.0.0, strip-ansi@npm:^3.0.1":
version: 3.0.1
resolution: "strip-ansi@npm:3.0.1"
@@ -6508,6 +8482,13 @@ __metadata:
languageName: node
linkType: hard
+"strip-bom-string@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "strip-bom-string@npm:1.0.0"
+ checksum: 5635a3656d8512a2c194d6c8d5dee7ef0dde6802f7be9413b91e201981ad4132506656d9cf14137f019fd50f0269390d91c7f6a2601b1bee039a4859cfce4934
+ languageName: node
+ linkType: hard
+
"strip-bom@npm:^3.0.0":
version: 3.0.0
resolution: "strip-bom@npm:3.0.0"
@@ -6522,6 +8503,13 @@ __metadata:
languageName: node
linkType: hard
+"strip-eof@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "strip-eof@npm:1.0.0"
+ checksum: 40bc8ddd7e072f8ba0c2d6d05267b4e0a4800898c3435b5fb5f5a21e6e47dfaff18467e7aa0d1844bb5d6274c3097246595841fbfeb317e541974ee992cac506
+ languageName: node
+ linkType: hard
+
"strip-final-newline@npm:^2.0.0":
version: 2.0.0
resolution: "strip-final-newline@npm:2.0.0"
@@ -6558,6 +8546,29 @@ __metadata:
languageName: node
linkType: hard
+"style-to-object@npm:^0.3.0":
+ version: 0.3.0
+ resolution: "style-to-object@npm:0.3.0"
+ dependencies:
+ inline-style-parser: 0.1.1
+ checksum: 4d7084015207f2a606dfc10c29cb5ba569f2fe8005551df7396110dd694d6ff650f2debafa95bd5d147dfb4ca50f57868e2a7f91bf5d11ef734fe7ccbd7abf59
+ languageName: node
+ linkType: hard
+
+"styled-jsx@npm:5.0.1":
+ version: 5.0.1
+ resolution: "styled-jsx@npm:5.0.1"
+ peerDependencies:
+ react: ">= 16.8.0 || 17.x.x || ^18.0.0-0"
+ peerDependenciesMeta:
+ "@babel/core":
+ optional: true
+ babel-plugin-macros:
+ optional: true
+ checksum: b85eb03da76b566065b10911a24396659b45a34efa16eef87ed8ff2ce3ea7b9b6a9c0c92c3b2113f92cbca9ab12496690d72329cb9932759ea98d0386acb38a9
+ languageName: node
+ linkType: hard
+
"supertap@npm:^3.0.1":
version: 3.0.1
resolution: "supertap@npm:3.0.1"
@@ -6570,6 +8581,15 @@ __metadata:
languageName: node
linkType: hard
+"supports-color@npm:^4.0.0":
+ version: 4.5.0
+ resolution: "supports-color@npm:4.5.0"
+ dependencies:
+ has-flag: ^2.0.0
+ checksum: 6da4f498d5c71e8619f06e4a11d16f044105faf7590b5b005fc84933fbefdf72c2b4e5b7174c66da6ddc68e7f6ef56cc960a5ebd6f2d542d910e259e61b02335
+ languageName: node
+ linkType: hard
+
"supports-color@npm:^5.3.0":
version: 5.5.0
resolution: "supports-color@npm:5.5.0"
@@ -6716,6 +8736,34 @@ __metadata:
languageName: node
linkType: hard
+"tiny-warning@npm:^1.0.3":
+ version: 1.0.3
+ resolution: "tiny-warning@npm:1.0.3"
+ checksum: da62c4acac565902f0624b123eed6dd3509bc9a8d30c06e017104bedcf5d35810da8ff72864400ad19c5c7806fc0a8323c68baf3e326af7cb7d969f846100d71
+ languageName: node
+ linkType: hard
+
+"title@npm:^3.4.2":
+ version: 3.4.4
+ resolution: "title@npm:3.4.4"
+ dependencies:
+ arg: 1.0.0
+ chalk: 2.3.0
+ clipboardy: 1.2.2
+ titleize: 1.0.0
+ bin:
+ title: bin/title.js
+ checksum: bc2a8728f1fff4fa29062c6fb9652ee37e46d13728661e1fd5197d74ebb2ebe122bf4c142828c2c86d95f135e653d3374c1918df35120b1eb68f357ad7669b5f
+ languageName: node
+ linkType: hard
+
+"titleize@npm:1.0.0":
+ version: 1.0.0
+ resolution: "titleize@npm:1.0.0"
+ checksum: a8234b7860077f7d391d06e13c645fe2bf60431012d78ca196d4d73e4768e33cfc3a0dd881bf2f9974c8bd8beeb9d85e7842ec35d267b7c2a06f287de1c4ea7e
+ languageName: node
+ linkType: hard
+
"tmp@npm:^0.0.33":
version: 0.0.33
resolution: "tmp@npm:0.0.33"
@@ -6767,6 +8815,13 @@ __metadata:
languageName: node
linkType: hard
+"trough@npm:^2.0.0":
+ version: 2.1.0
+ resolution: "trough@npm:2.1.0"
+ checksum: a577bb561c2b401cc0e1d9e188fcfcdf63b09b151ff56a668da12197fe97cac15e3d77d5b51f426ccfd94255744a9118e9e9935afe81a3644fa1be9783c82886
+ languageName: node
+ linkType: hard
+
"tslib@npm:^1.9.0":
version: 1.14.1
resolution: "tslib@npm:1.14.1"
@@ -6774,10 +8829,10 @@ __metadata:
languageName: node
linkType: hard
-"tslib@npm:^2.1.0":
- version: 2.3.1
- resolution: "tslib@npm:2.3.1"
- checksum: de17a98d4614481f7fcb5cd53ffc1aaf8654313be0291e1bfaee4b4bb31a20494b7d218ff2e15017883e8ea9626599b3b0e0229c18383ba9dce89da2adf15cb9
+"tslib@npm:^2.1.0, tslib@npm:^2.3.0":
+ version: 2.4.0
+ resolution: "tslib@npm:2.4.0"
+ checksum: 8c4aa6a3c5a754bf76aefc38026134180c053b7bd2f81338cb5e5ebf96fefa0f417bff221592bf801077f5bf990562f6264fecbc42cd3309b33872cb6fc3b113
languageName: node
linkType: hard
@@ -6876,11 +8931,11 @@ __metadata:
linkType: hard
"uglify-js@npm:^3.1.4":
- version: 3.15.3
- resolution: "uglify-js@npm:3.15.3"
+ version: 3.15.4
+ resolution: "uglify-js@npm:3.15.4"
bin:
uglifyjs: bin/uglifyjs
- checksum: 5d2f5a8591b84d81317783205ba26c7a94c435476c19df8612024d28986acbe1f5dbd65bc604134a8557a3f64e8a5ed2660d11e2ba74b59af1fe531fd5506b16
+ checksum: 5f673c5dd7f3b3dd15d1d26aebfe29bccbb1b896c4b5423ec70a2e8b9506c70b6fb6a53dec83df5ad65a717ec9a850adf08e0aedf9b1711eac5eb080216615fa
languageName: node
linkType: hard
@@ -6910,6 +8965,21 @@ __metadata:
languageName: node
linkType: hard
+"unified@npm:^10.0.0":
+ version: 10.1.2
+ resolution: "unified@npm:10.1.2"
+ dependencies:
+ "@types/unist": ^2.0.0
+ bail: ^2.0.0
+ extend: ^3.0.0
+ is-buffer: ^2.0.0
+ is-plain-obj: ^4.0.0
+ trough: ^2.0.0
+ vfile: ^5.0.0
+ checksum: 053e7c65ede644607f87bd625a299e4b709869d2f76ec8138569e6e886903b6988b21cd9699e471eda42bee189527be0a9dac05936f1d069a5e65d0125d5d756
+ languageName: node
+ linkType: hard
+
"unique-filename@npm:^1.1.1":
version: 1.1.1
resolution: "unique-filename@npm:1.1.1"
@@ -6928,6 +8998,108 @@ __metadata:
languageName: node
linkType: hard
+"unist-builder@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "unist-builder@npm:3.0.0"
+ dependencies:
+ "@types/unist": ^2.0.0
+ checksum: 80459ee3c2ece90bbc4f4b4faeed524d144c1a09ee07ff3e9004648d9b71a652e80a3b3ef60311a1e92f6ab915caf27c6f08062b5f8c84fa725bc0d7c5759e84
+ languageName: node
+ linkType: hard
+
+"unist-util-generated@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "unist-util-generated@npm:2.0.0"
+ checksum: 3a806793fa24a75190c217740ce706340d6cb0d51eff677134253d628f8e4355ebd8a243fe8045c583463f6bebfd50f902d653161da87c1359fcd1a14b99c8e0
+ languageName: node
+ linkType: hard
+
+"unist-util-is@npm:^5.0.0":
+ version: 5.1.1
+ resolution: "unist-util-is@npm:5.1.1"
+ checksum: e8743a19a304d8a8f5684f3e5ddb5546f2655847b42123687277d76566a2aba89beb7b4a8a9e9ebc4d904cd1cecc285356d7923d973a43cfc19a1e10ff6bdee4
+ languageName: node
+ linkType: hard
+
+"unist-util-position-from-estree@npm:^1.0.0, unist-util-position-from-estree@npm:^1.1.0":
+ version: 1.1.1
+ resolution: "unist-util-position-from-estree@npm:1.1.1"
+ dependencies:
+ "@types/unist": ^2.0.0
+ checksum: 63808bdcb8b49afa5231712d95b586fe877859ee03d23adb47485c30222007a5af55e95d103d4af51d1d16376aaa5a58fa985a08d63727c38b1515873df8b79b
+ languageName: node
+ linkType: hard
+
+"unist-util-position@npm:^4.0.0":
+ version: 4.0.3
+ resolution: "unist-util-position@npm:4.0.3"
+ dependencies:
+ "@types/unist": ^2.0.0
+ checksum: 0d89973628d40f19345cbcc50008f7f56d411afa54434bbe6c224b22d26aaf9d4500da2de363f1f01945acab1f1c31920c514253149eb546ff9b8bbc1ea94209
+ languageName: node
+ linkType: hard
+
+"unist-util-remove-position@npm:^4.0.0":
+ version: 4.0.1
+ resolution: "unist-util-remove-position@npm:4.0.1"
+ dependencies:
+ "@types/unist": ^2.0.0
+ unist-util-visit: ^4.0.0
+ checksum: 7d2808662ac65f2b2f615822b78060419f738fb3b074b10cec77c596ea966b8f5c47553d2d322822a5975c49d2b21cdd64c198ae9fb02a9d54d1afa6342cdd6a
+ languageName: node
+ linkType: hard
+
+"unist-util-stringify-position@npm:^3.0.0":
+ version: 3.0.2
+ resolution: "unist-util-stringify-position@npm:3.0.2"
+ dependencies:
+ "@types/unist": ^2.0.0
+ checksum: 2dfd7a0fb2a55e99cc319c3bf7f9f1f73ed652978fa70d19117faa7245d20f21738ec926ecc47f341705ca1bb157e87ced0b6bb5ecaa666bd2ae6b2510d6a671
+ languageName: node
+ linkType: hard
+
+"unist-util-visit-parents@npm:^4.0.0":
+ version: 4.1.1
+ resolution: "unist-util-visit-parents@npm:4.1.1"
+ dependencies:
+ "@types/unist": ^2.0.0
+ unist-util-is: ^5.0.0
+ checksum: 49d78984a6dd858a989f849d2b4330c8a04d1ee99c0e9920a5e37668cf847dab95db77a3bf0c8aaeb3e66abeae12e2d454949ec401614efef377d8f82d215662
+ languageName: node
+ linkType: hard
+
+"unist-util-visit-parents@npm:^5.0.0":
+ version: 5.1.0
+ resolution: "unist-util-visit-parents@npm:5.1.0"
+ dependencies:
+ "@types/unist": ^2.0.0
+ unist-util-is: ^5.0.0
+ checksum: 7c413dbb3dfcb679109fa8f0965d9abf117c3c53fa7b8823f68cac0ea53adbe98c1ce954d36c034e086c966b48b1d44d42c85f7bf6b42a032f728ac338929513
+ languageName: node
+ linkType: hard
+
+"unist-util-visit@npm:^3.0.0":
+ version: 3.1.0
+ resolution: "unist-util-visit@npm:3.1.0"
+ dependencies:
+ "@types/unist": ^2.0.0
+ unist-util-is: ^5.0.0
+ unist-util-visit-parents: ^4.0.0
+ checksum: c37dbc0c5509f85f3abdf46d927b3dd11e6c419159771b1f1a5ce446d36ac993d04b087e28bc6173a172e0fbe9d77e997f120029b2b449766ebe55b6f6e0cc2c
+ languageName: node
+ linkType: hard
+
+"unist-util-visit@npm:^4.0.0":
+ version: 4.1.0
+ resolution: "unist-util-visit@npm:4.1.0"
+ dependencies:
+ "@types/unist": ^2.0.0
+ unist-util-is: ^5.0.0
+ unist-util-visit-parents: ^5.0.0
+ checksum: 3521abee2ed4535092aac073d05f46255475c89781b8e9d8c951a473d91b5d6e4d5912ae4a68a4c1cf17a42ed0108cb93103c7f5c736977529969997451363fb
+ languageName: node
+ linkType: hard
+
"universal-user-agent@npm:^6.0.0":
version: 6.0.0
resolution: "universal-user-agent@npm:6.0.0"
@@ -6983,6 +9155,20 @@ __metadata:
languageName: node
linkType: hard
+"uvu@npm:^0.5.0":
+ version: 0.5.3
+ resolution: "uvu@npm:0.5.3"
+ dependencies:
+ dequal: ^2.0.0
+ diff: ^5.0.0
+ kleur: ^4.0.3
+ sade: ^1.7.3
+ bin:
+ uvu: bin.js
+ checksum: 0cf8e9e6ec79199dacc64fe0e9f82b5bf1d2308f3c54ec1aba5d1ca0a4beff4f173cae0f87bc52d35121565fd232b969fbf52cca3707e20517e62645e19b898e
+ languageName: node
+ linkType: hard
+
"validate-npm-package-license@npm:^3.0.1, validate-npm-package-license@npm:^3.0.4":
version: 3.0.4
resolution: "validate-npm-package-license@npm:3.0.4"
@@ -7013,6 +9199,52 @@ __metadata:
languageName: node
linkType: hard
+"vfile-location@npm:^4.0.0":
+ version: 4.0.1
+ resolution: "vfile-location@npm:4.0.1"
+ dependencies:
+ "@types/unist": ^2.0.0
+ vfile: ^5.0.0
+ checksum: cc0df62075c741beee699e651374aeb56c4c1f4333398c0ba924281c2b51d4b7669c69c5b837ea395775626ad030d6f1bd27fd0a7eaf3f9f1bbd55393948ad6c
+ languageName: node
+ linkType: hard
+
+"vfile-message@npm:^3.0.0":
+ version: 3.1.2
+ resolution: "vfile-message@npm:3.1.2"
+ dependencies:
+ "@types/unist": ^2.0.0
+ unist-util-stringify-position: ^3.0.0
+ checksum: 96fbd9e9b5e0babb5ee61e3a716dc7a6a8c28f2c8c711837d95c88b782161b31549ad16059a78990d7b836d0f4d3b4d8c9ffde44370d48d9cac991fc1e3e17c5
+ languageName: node
+ linkType: hard
+
+"vfile@npm:^5.0.0":
+ version: 5.3.2
+ resolution: "vfile@npm:5.3.2"
+ dependencies:
+ "@types/unist": ^2.0.0
+ is-buffer: ^2.0.0
+ unist-util-stringify-position: ^3.0.0
+ vfile-message: ^3.0.0
+ checksum: c352a76974c4ce0a0177e157335c95a647dae9e510ed4fad9b328479eb46230dc9ade8793d4c8b7f78263314797fc5026ff14da086e3805d530645e7d8057dcb
+ languageName: node
+ linkType: hard
+
+"vscode-oniguruma@npm:^1.6.1":
+ version: 1.6.2
+ resolution: "vscode-oniguruma@npm:1.6.2"
+ checksum: 6b754acdafd5b68242ea5938bb00a32effc16c77f471d4f0f337d879d0e8e592622998e2441f42d9a7ff799c1593f31c11f26ca8d9bf9917e3ca881d3c1f3e19
+ languageName: node
+ linkType: hard
+
+"vscode-textmate@npm:5.2.0":
+ version: 5.2.0
+ resolution: "vscode-textmate@npm:5.2.0"
+ checksum: 5449b42d451080f6f3649b66948f4b5ee4643c4e88cfe3558a3b31c84c78060cfdd288c4958c1690eaa5cd65d09992fa6b7c3bef9d4aa72b3651054a04624d20
+ languageName: node
+ linkType: hard
+
"wcwidth@npm:^1.0.0":
version: 1.0.1
resolution: "wcwidth@npm:1.0.1"
@@ -7022,6 +9254,13 @@ __metadata:
languageName: node
linkType: hard
+"web-streams-polyfill@npm:^3.0.3":
+ version: 3.2.1
+ resolution: "web-streams-polyfill@npm:3.2.1"
+ checksum: b119c78574b6d65935e35098c2afdcd752b84268e18746606af149e3c424e15621b6f1ff0b42b2676dc012fc4f0d313f964b41a4b5031e525faa03997457da02
+ languageName: node
+ linkType: hard
+
"webidl-conversions@npm:^3.0.0":
version: 3.0.1
resolution: "webidl-conversions@npm:3.0.1"
@@ -7036,6 +9275,23 @@ __metadata:
languageName: node
linkType: hard
+"website@workspace:website":
+ version: 0.0.0-use.local
+ resolution: "website@workspace:website"
+ dependencies:
+ "@napi-rs/image": ^1.1.1
+ chalk: ^5.0.1
+ markdown-to-jsx: ^7.1.7
+ next: canary
+ nextra: 2.0.0-alpha.49
+ nextra-theme-docs: 2.0.0-alpha.50
+ node-fetch: ^3.2.3
+ react: ^18.0.0
+ react-dom: ^18.0.0
+ sharp: ^0.30.4
+ languageName: unknown
+ linkType: soft
+
"well-known-symbols@npm:^2.0.0":
version: 2.0.0
resolution: "well-known-symbols@npm:2.0.0"
@@ -7219,6 +9475,13 @@ __metadata:
languageName: node
linkType: hard
+"yallist@npm:^2.1.2":
+ version: 2.1.2
+ resolution: "yallist@npm:2.1.2"
+ checksum: 9ba99409209f485b6fcb970330908a6d41fa1c933f75e08250316cce19383179a6b70a7e0721b89672ebb6199cc377bf3e432f55100da6a7d6e11902b0a642cb
+ languageName: node
+ linkType: hard
+
"yallist@npm:^3.0.0, yallist@npm:^3.1.1":
version: 3.1.1
resolution: "yallist@npm:3.1.1"
@@ -7277,8 +9540,8 @@ __metadata:
linkType: hard
"yargs@npm:^17.3.1":
- version: 17.4.0
- resolution: "yargs@npm:17.4.0"
+ version: 17.4.1
+ resolution: "yargs@npm:17.4.1"
dependencies:
cliui: ^7.0.2
escalade: ^3.1.1
@@ -7287,7 +9550,7 @@ __metadata:
string-width: ^4.2.3
y18n: ^5.0.5
yargs-parser: ^21.0.0
- checksum: 63985bddddf1fb6b9c98744591e8b70f99839591521cb84eea60903d52ec0da35ab46c42c325d151f3ab5c41935f976c10da096b5a7067c217714a91c0bd4be3
+ checksum: e9012322870d7e4e912a6ae1f63b203e365f911c0cf158be92c36edefddfb3bd38ce17eb9ef0d18858a4777f047c50589ea22dacb44bd949169ba37dc6d34bee
languageName: node
linkType: hard
@@ -7297,3 +9560,10 @@ __metadata:
checksum: 2cac84540f65c64ccc1683c267edce396b26b1e931aa429660aefac8fbe0188167b7aee815a3c22fa59a28a58d898d1a2b1825048f834d8d629f4c2a5d443801
languageName: node
linkType: hard
+
+"zwitch@npm:^2.0.0":
+ version: 2.0.2
+ resolution: "zwitch@npm:2.0.2"
+ checksum: 8edd7af8375f12f64d8dbef815af32cd77bd9237d0b013210ba4e3aef25fdc460fe264cd0a19deabe9f86ef0c607240ebac1a336bf4a70bf06ef53e0652de116
+ languageName: node
+ linkType: hard