Automatically add garden pages
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 27s
Some checks failed
Build and Deploy / build-and-deploy (push) Failing after 27s
This commit is contained in:
parent
f1940818f7
commit
2acd60899d
11 changed files with 851 additions and 162 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,3 +1,5 @@
|
||||||
node_modules
|
node_modules
|
||||||
site/.vitepress/dist
|
site/.vitepress/dist
|
||||||
site/.vitepress/cache
|
site/.vitepress/cache
|
||||||
|
site/garden/
|
||||||
|
garden-output/
|
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -32,3 +32,6 @@
|
||||||
path = site/public/planar
|
path = site/public/planar
|
||||||
url = https://github.com/thepaperpilot/planar-pioneers
|
url = https://github.com/thepaperpilot/planar-pioneers
|
||||||
branch = gh-pages
|
branch = gh-pages
|
||||||
|
[submodule "Garden.git"]
|
||||||
|
path = Garden
|
||||||
|
url = git@code.incremental.social:thepaperpilot/Garden.git
|
||||||
|
|
1
Garden
Submodule
1
Garden
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 87c5ec9f00068af2767b9d42760e78314ca666e3
|
140
build_garden.js
Normal file
140
build_garden.js
Normal file
|
@ -0,0 +1,140 @@
|
||||||
|
const fs = require("fs");
|
||||||
|
const path = require("path");
|
||||||
|
|
||||||
|
function walk(dir, cb) {
|
||||||
|
const list = fs.readdirSync(dir);
|
||||||
|
return Promise.all(list.map(file => {
|
||||||
|
const resolvedFile = path.resolve(dir, file);
|
||||||
|
const stat = fs.statSync(resolvedFile);
|
||||||
|
if (stat.isDirectory()) {
|
||||||
|
return walk(resolvedFile, cb);
|
||||||
|
} else {
|
||||||
|
return new Promise((resolve) => cb(dir, resolvedFile, resolve));
|
||||||
|
}
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
function toSlug(string) {
|
||||||
|
return string.toLowerCase().replaceAll(' ', '-');
|
||||||
|
}
|
||||||
|
|
||||||
|
(async () => {
|
||||||
|
const blockRefs = {};
|
||||||
|
await walk("./garden-output/logseq-pages", (dir, file, resolve) => {
|
||||||
|
const filePath = path.resolve(dir, file);
|
||||||
|
const data = fs.readFileSync(filePath).toString();
|
||||||
|
for (const match of data.matchAll(/- (.*)\n\s*id:: (.*)/gm)) {
|
||||||
|
const text = match[1];
|
||||||
|
const id = match[2];
|
||||||
|
blockRefs[id] = `[${text}](/garden/${path.basename(file, ".md")}/index.md#${id})`;
|
||||||
|
}
|
||||||
|
resolve();
|
||||||
|
});
|
||||||
|
|
||||||
|
const pageLinks = {};
|
||||||
|
const taggedBy = {};
|
||||||
|
const tagged = {};
|
||||||
|
const referencedBy = {};
|
||||||
|
// Walk through the pages to make sure we get the canonical name page (pre-slug)
|
||||||
|
// The logseq-export README made it sound like even the title property is transformed sometimes
|
||||||
|
await walk("./Garden/pages", (dir, file, resolve) => {
|
||||||
|
const filePath = path.resolve(dir, file);
|
||||||
|
const data = fs.readFileSync(filePath).toString();
|
||||||
|
if (!data.match(/public::/g)) {
|
||||||
|
resolve();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const name = path.basename(file, ".md").replaceAll('___', '/');
|
||||||
|
const slug = toSlug(name);
|
||||||
|
const link = `/garden/${slug}/index.md`;
|
||||||
|
pageLinks[name] = link;
|
||||||
|
|
||||||
|
for (match of data.matchAll(/alias:: (.*)/g)) {
|
||||||
|
match[1].split(", ").forEach(page => (pageLinks[page] = link));
|
||||||
|
}
|
||||||
|
|
||||||
|
for (match of data.matchAll(/tags:: (.*)/g)) {
|
||||||
|
match[1].split(", ").forEach(page => {
|
||||||
|
const pageSlug = toSlug(page);
|
||||||
|
taggedBy[pageSlug] = [...(taggedBy[pageSlug] ?? []), name];
|
||||||
|
tagged[slug] = [...(tagged[slug] ?? []), page];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
for (match of data.matchAll(/\[\[([^\[\]]*)\]\]/g)) {
|
||||||
|
const pageSlug = toSlug(match[1]);
|
||||||
|
referencedBy[pageSlug] = [...(referencedBy[pageSlug] ?? []), name];
|
||||||
|
}
|
||||||
|
|
||||||
|
resolve();
|
||||||
|
});
|
||||||
|
Object.keys(referencedBy).forEach(page => {
|
||||||
|
referencedBy[page] = Array.from(new Set(referencedBy[page]));
|
||||||
|
});
|
||||||
|
|
||||||
|
await walk("./garden-output/logseq-pages", (dir, file, resolve) => {
|
||||||
|
const filePath = path.resolve(dir, file);
|
||||||
|
let data = fs.readFileSync(filePath).toString();
|
||||||
|
|
||||||
|
// Replace youtube embeds
|
||||||
|
data = data.replaceAll(
|
||||||
|
/{{video https:\/\/(?:www\.)?youtube\.com\/watch\?v=(.*)}}/g,
|
||||||
|
'<iframe width="560" height="315" src="https://www.youtube.com/embed/$1" title="" frameBorder="0" allowFullScreen />');
|
||||||
|
// Replace internal links
|
||||||
|
data = data.replaceAll(
|
||||||
|
/]\(\/logseq-pages\/([^\)]*)\)/g,
|
||||||
|
'](/garden/$1/index.md)');
|
||||||
|
// Replace block links
|
||||||
|
data = data.replaceAll(
|
||||||
|
/\(\((.*)\)\)/g,
|
||||||
|
(_, id) => blockRefs[id]);
|
||||||
|
// Remove id:: lines
|
||||||
|
data = data.replaceAll(
|
||||||
|
/- (.*)\n\s*id:: (.*)/gm,
|
||||||
|
'- <span id="$2">$1</span>');
|
||||||
|
// Fix internal links with spaces not getting mapped
|
||||||
|
data = data.replaceAll(
|
||||||
|
/\[\[([^\[\]]*)\]\]/g,
|
||||||
|
(_, page) => `[${page}](${pageLinks[page]})`);
|
||||||
|
// Add tags and references
|
||||||
|
const title = path.basename(file, ".md");
|
||||||
|
if (title in tagged) {
|
||||||
|
data = data.replaceAll(
|
||||||
|
/---\n\n/gm,
|
||||||
|
`---\n\n> Tags: ${tagged[title].map(tag => `[${tag}](${pageLinks[tag]})`).join(", ")}\n\n`);
|
||||||
|
}
|
||||||
|
if (title in taggedBy) {
|
||||||
|
data = data.replaceAll(
|
||||||
|
/---\n\n/gm,
|
||||||
|
`---\n\n> Tagged by: ${taggedBy[title].map(tag => `[${tag}](${pageLinks[tag]})`).join(", ")}\n\n`);
|
||||||
|
}
|
||||||
|
// TODO show context on references? Perhaps in a `::: info` block?
|
||||||
|
if (title in referencedBy) {
|
||||||
|
data = data.replaceAll(
|
||||||
|
/---\n\n/gm,
|
||||||
|
`---\n\n> Referenced by: ${referencedBy[title].map(tag => `[${tag}](${pageLinks[tag]})`).join(", ")}\n\n`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const fd = fs.openSync(filePath, "w+");
|
||||||
|
fs.writeSync(fd, data);
|
||||||
|
fs.closeSync(fd);
|
||||||
|
resolve();
|
||||||
|
});
|
||||||
|
|
||||||
|
fs.mkdirSync("./site/garden");
|
||||||
|
|
||||||
|
// Move everything from ./garden-output/logseq-pages into ./site/garden
|
||||||
|
await walk("./garden-output/logseq-pages", (dir, file, resolve) => {
|
||||||
|
const folder = path.resolve("./site/garden", path.basename(file, ".md"));
|
||||||
|
fs.mkdirSync(folder);
|
||||||
|
fs.copyFileSync(path.resolve(dir, file), path.resolve(folder, "index.md"));
|
||||||
|
resolve();
|
||||||
|
});
|
||||||
|
|
||||||
|
// Move everything from ./garden-output/logseq-assets into ./site/public
|
||||||
|
await walk("./garden-output/logseq-assets", (dir, file, resolve) => {
|
||||||
|
fs.copyFileSync(path.resolve(dir, file), path.resolve("./site/public", path.basename(file)));
|
||||||
|
resolve();
|
||||||
|
});
|
||||||
|
})();
|
9
logseq-export/CHANGELOG.md
Normal file
9
logseq-export/CHANGELOG.md
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
### 0.0.2 - 2022-09-27
|
||||||
|
|
||||||
|
- export images from Logseq pages
|
||||||
|
- ignore `.git` and `logseq` root folders when looking for pages to export
|
||||||
|
|
||||||
|
### 0.0.1 - 2022-09-25
|
||||||
|
|
||||||
|
- initial version of logseq-export, it was even called logseq-extractor
|
||||||
|
- the command looks through Logseq graph, finds all pages with `public::` in them and turns them into blog Markdown with front matter
|
9
logseq-export/LICENSE
Normal file
9
logseq-export/LICENSE
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright © 2022 Tomas Vik
|
||||||
|
|
||||||
|
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.
|
128
logseq-export/README.md
Normal file
128
logseq-export/README.md
Normal file
|
@ -0,0 +1,128 @@
|
||||||
|
# logseq-export
|
||||||
|
|
||||||
|
Tool to export raw [Logseq](https://github.com/logseq/logseq) Markdown pages (with `public::` page property) into Markdown blog posts with front matter.
|
||||||
|
|
||||||
|
- Takes Logseq page properties (`title:: Hello world`) and turns them into [Front Matter properties](https://gohugo.io/content-management/front-matter/) `title: Hello World`.
|
||||||
|
- Changes the Markdown syntax to remove the top-level bullet points.
|
||||||
|
- if you have top-level block `- private` in your file, `logseq-export` will remove it and all content that follows. I use it for copyrighted content like verbatim highlights/pictures from books.
|
||||||
|
|
||||||
|
See an **example of a deployed graph** on [viktomas.github.io/logseq-export](https://viktomas.github.io/logseq-export/). The graph and the [Hugo](https://gohugo.io/) project can be found in the [example](/example/) folder. Run the example locally with ``
|
||||||
|
|
||||||
|
**Note: I completely reworked `logseq-export` to be a bit more versatile and universal. See the [version `v0.0.3`](https://github.com/viktomas/logseq-export/tree/v0.0.3) if you are not ready to move on.**
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
|
- Download the latest binary for your OS in the [Releases](https://github.com/viktomas/logseq-export/releases) page
|
||||||
|
- `go install github.com/viktomas/logseq-export@latest` if you have Go installed
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
The `logseq-export` utility will export the pages into an export folder that can then be imported into your static site generator.
|
||||||
|
|
||||||
|
```mermaid
|
||||||
|
graph LR;
|
||||||
|
LS[Logseq graph] --"logseq-export"--> EF[export folder]
|
||||||
|
EF --"import_to_hugo.sh"--> HU[Hugo static site generator]
|
||||||
|
```
|
||||||
|
|
||||||
|
### Export
|
||||||
|
|
||||||
|
```
|
||||||
|
logseq-export
|
||||||
|
-outputFolder string
|
||||||
|
[MANDATORY] Folder where all public pages are exported.
|
||||||
|
-logseqFolder string
|
||||||
|
[MANDATORY] Path to the root of your logseq graph containing /pages and /journals directories.
|
||||||
|
```
|
||||||
|
|
||||||
|
*Optional* configuration is in a file called `export.yaml` in your logseq folder.
|
||||||
|
|
||||||
|
```yml
|
||||||
|
# list of logseq page properties that won't be quoted in the markdown front matter
|
||||||
|
unquotedProperties:
|
||||||
|
- date
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Command example
|
||||||
|
|
||||||
|
This is how I run the command on my machine:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
logseq-export \
|
||||||
|
--logseqFolder /Users/tomas/workspace/private/notes \
|
||||||
|
--outputFolder /tmp/logseq-export \
|
||||||
|
```
|
||||||
|
|
||||||
|
This will take my logseq notes and copies them to the export folder, it will also copy all the images to `/tmp/logseq-export/logseq-assets`, but the image links themselves are going to have `/logseq-asstes/` prefix (`![alt](/logseq/assets/image.png)`).
|
||||||
|
|
||||||
|
#### Constraints
|
||||||
|
|
||||||
|
- `logseq-export` assumes that all the pages you want to export are in `pages/` folder inside your `logseqFolder`.
|
||||||
|
|
||||||
|
|
||||||
|
### Import
|
||||||
|
|
||||||
|
```sh
|
||||||
|
# these environment variables are optional
|
||||||
|
# the values in this example are default values
|
||||||
|
export BLOG_CONTENT_FODLER="/graph"
|
||||||
|
export BLOG_IMAGES_FOLDER="/assets/graph"
|
||||||
|
|
||||||
|
# copies pages from `/tmp/logseq/export/logseq-pages` to `~/workspace/private/blog/content/graph`
|
||||||
|
# copies assets from `/tmp/logseq/export/logseq-assets` to `~/workspace/private/blog/static/assets/graph`
|
||||||
|
# replaces all `/logseq-assets` in all image URLs with `/assets/graph`
|
||||||
|
./import_to_hugo.sh \
|
||||||
|
/tmp/logseq-export
|
||||||
|
~/workspace/private/blog
|
||||||
|
```
|
||||||
|
|
||||||
|
### Logseq page properties with a special meaning (all optional)
|
||||||
|
|
||||||
|
- `public` - as soon as this page property is present (regardless of value), the page gets exported
|
||||||
|
- `title` - either the `title::` is present and used as `title:` front matter attribute, or the page file name is unescaped (e.g. `%3A` changes to `:`) and used as the `title:`
|
||||||
|
- `tags` - Logseq uses comma separated values (`tags:: tag1, tag2`) but valid `yaml` in the front matter has to surround the value with square brackets (`tags: [tag1, tag2]`). The `tags` attribute is **always unquoted**.
|
||||||
|
- `slug` used as a file name
|
||||||
|
- `date` it's used as a file name prefix
|
||||||
|
- if your logseq `date::` attributes contains the link brackets e.g. `[[2023-07-30]]`, `logseq-export` will remove them
|
||||||
|
|
||||||
|
## From
|
||||||
|
|
||||||
|
![logseq test page](./docs/assets/logseq-teset-page-2.png)
|
||||||
|
|
||||||
|
## To
|
||||||
|
|
||||||
|
`content/graph/2022-09-25-test-page.md` :
|
||||||
|
|
||||||
|
~~~md
|
||||||
|
---
|
||||||
|
date: "2022-09-25"
|
||||||
|
public: true
|
||||||
|
slug: "test-page"
|
||||||
|
title: "Test page"
|
||||||
|
---
|
||||||
|
|
||||||
|
This is an example paragraph
|
||||||
|
|
||||||
|
- Second level means bullet points
|
||||||
|
- `logseq-export` also supports multi-level bullet points
|
||||||
|
|
||||||
|
```ts
|
||||||
|
const v = "Hello world"
|
||||||
|
```
|
||||||
|
|
||||||
|
You can
|
||||||
|
also
|
||||||
|
have
|
||||||
|
|
||||||
|
Multi-line strings
|
||||||
|
~~~
|
||||||
|
|
||||||
|
## Local development
|
||||||
|
|
||||||
|
- Have golang installed
|
||||||
|
- Use unix or WSL2 on Windows
|
||||||
|
- `make build` - builds the binary
|
||||||
|
- `make test` - tests the project
|
||||||
|
- `make watch-test` - (only on macOS) - run test on every file change
|
||||||
|
- `make example` - export the example Logseq graph into the example Hugo site
|
||||||
|
- `make watch-example` (only on macOS) - run `make example` on any file change
|
BIN
logseq-export/logseq-export
Normal file
BIN
logseq-export/logseq-export
Normal file
Binary file not shown.
BIN
logseq-export/logseq-export.exe
Normal file
BIN
logseq-export/logseq-export.exe
Normal file
Binary file not shown.
|
@ -5,14 +5,18 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"serve": "vitepress serve site",
|
"serve": "vitepress serve site",
|
||||||
"dev": "vitepress dev site",
|
"dev": "vitepress dev site",
|
||||||
"build": "vitepress build site"
|
"build": "rm -rf ./site/garden && rm -rf ./garden-output && yarn run logseq-export && node build_garden.js && vitepress build site",
|
||||||
|
"logseq-export": "run-script-os",
|
||||||
|
"logseq-export:win32": "logseq-export/logseq-export.exe --logseqFolder ./Garden --outputFolder ./garden-output",
|
||||||
|
"logseq-export:linux": "logseq-export/logseq-export --logseqFolder ./Garden --outputFolder ./garden-output"
|
||||||
},
|
},
|
||||||
"repository": "git+https://github.com/thepaperpilot/thepaperpilot.github.io.git",
|
"repository": "git+https://github.com/thepaperpilot/thepaperpilot.github.io.git",
|
||||||
"author": "thepaperpilot",
|
"author": "thepaperpilot",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"homepage": "https://www.thepaperpilot.org/thepaperpilot.github.io",
|
"homepage": "https://www.thepaperpilot.org/thepaperpilot.github.io",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"vitepress": "^1.0.0-rc.22",
|
"run-script-os": "^1.1.6",
|
||||||
|
"vitepress": "^1.2.2",
|
||||||
"vue": "^3.3.4"
|
"vue": "^3.3.4"
|
||||||
},
|
},
|
||||||
"private": true
|
"private": true
|
||||||
|
|
713
yarn.lock
713
yarn.lock
|
@ -84,7 +84,7 @@
|
||||||
"@algolia/requester-common" "4.20.0"
|
"@algolia/requester-common" "4.20.0"
|
||||||
"@algolia/transporter" "4.20.0"
|
"@algolia/transporter" "4.20.0"
|
||||||
|
|
||||||
"@algolia/client-search@>= 4.9.1 < 6", "@algolia/client-search@4.20.0":
|
"@algolia/client-search@4.20.0":
|
||||||
version "4.20.0"
|
version "4.20.0"
|
||||||
resolved "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.20.0.tgz"
|
resolved "https://registry.npmjs.org/@algolia/client-search/-/client-search-4.20.0.tgz"
|
||||||
integrity sha512-zgwqnMvhWLdpzKTpd3sGmMlr4c+iS7eyyLGiaO51zDZWGMkpgoNVmltkzdBwxOVXz0RsFMznIxB9zuarUv4TZg==
|
integrity sha512-zgwqnMvhWLdpzKTpd3sGmMlr4c+iS7eyyLGiaO51zDZWGMkpgoNVmltkzdBwxOVXz0RsFMznIxB9zuarUv4TZg==
|
||||||
|
@ -138,61 +138,278 @@
|
||||||
resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz"
|
resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.23.0.tgz"
|
||||||
integrity sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==
|
integrity sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==
|
||||||
|
|
||||||
"@docsearch/css@^3.5.2", "@docsearch/css@3.5.2":
|
"@babel/parser@^7.24.4":
|
||||||
version "3.5.2"
|
version "7.24.6"
|
||||||
resolved "https://registry.npmjs.org/@docsearch/css/-/css-3.5.2.tgz"
|
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.6.tgz#5e030f440c3c6c78d195528c3b688b101a365328"
|
||||||
integrity sha512-SPiDHaWKQZpwR2siD0KQUwlStvIAnEyK6tAE2h2Wuoq8ue9skzhlyVQ1ddzOxX6khULnAALDiR/isSF3bnuciA==
|
integrity sha512-eNZXdfU35nJC2h24RznROuOpO94h6x8sg9ju0tT9biNtLZ2vuP8SduLqqV+/8+cebSLV9SJEAN5Z3zQbJG/M+Q==
|
||||||
|
|
||||||
"@docsearch/js@^3.5.2":
|
"@docsearch/css@3.6.0", "@docsearch/css@^3.6.0":
|
||||||
version "3.5.2"
|
version "3.6.0"
|
||||||
resolved "https://registry.npmjs.org/@docsearch/js/-/js-3.5.2.tgz"
|
resolved "https://registry.yarnpkg.com/@docsearch/css/-/css-3.6.0.tgz#0e9f56f704b3a34d044d15fd9962ebc1536ba4fb"
|
||||||
integrity sha512-p1YFTCDflk8ieHgFJYfmyHBki1D61+U9idwrLh+GQQMrBSP3DLGKpy0XUJtPjAOPltcVbqsTjiPFfH7JImjUNg==
|
integrity sha512-+sbxb71sWre+PwDK7X2T8+bhS6clcVMLwBPznX45Qu6opJcgRjAp7gYSDzVFp187J+feSj5dNBN1mJoi6ckkUQ==
|
||||||
|
|
||||||
|
"@docsearch/js@^3.6.0":
|
||||||
|
version "3.6.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@docsearch/js/-/js-3.6.0.tgz#f9e46943449b9092d874944f7a80bcc071004cfb"
|
||||||
|
integrity sha512-QujhqINEElrkIfKwyyyTfbsfMAYCkylInLYMRqHy7PHc8xTBQCow73tlo/Kc7oIwBrCLf0P3YhjlOeV4v8hevQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@docsearch/react" "3.5.2"
|
"@docsearch/react" "3.6.0"
|
||||||
preact "^10.0.0"
|
preact "^10.0.0"
|
||||||
|
|
||||||
"@docsearch/react@3.5.2":
|
"@docsearch/react@3.6.0":
|
||||||
version "3.5.2"
|
version "3.6.0"
|
||||||
resolved "https://registry.npmjs.org/@docsearch/react/-/react-3.5.2.tgz"
|
resolved "https://registry.yarnpkg.com/@docsearch/react/-/react-3.6.0.tgz#b4f25228ecb7fc473741aefac592121e86dd2958"
|
||||||
integrity sha512-9Ahcrs5z2jq/DcAvYtvlqEBHImbm4YJI8M9y0x6Tqg598P40HTEkX7hsMcIuThI+hTFxRGZ9hll0Wygm2yEjng==
|
integrity sha512-HUFut4ztcVNmqy9gp/wxNbC7pTOHhgVVkHVGCACTuLhUKUhKAF9KYHJtMiLUJxEqiFLQiuri1fWF8zqwM/cu1w==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@algolia/autocomplete-core" "1.9.3"
|
"@algolia/autocomplete-core" "1.9.3"
|
||||||
"@algolia/autocomplete-preset-algolia" "1.9.3"
|
"@algolia/autocomplete-preset-algolia" "1.9.3"
|
||||||
"@docsearch/css" "3.5.2"
|
"@docsearch/css" "3.6.0"
|
||||||
algoliasearch "^4.19.1"
|
algoliasearch "^4.19.1"
|
||||||
|
|
||||||
"@esbuild/win32-x64@0.18.20":
|
"@esbuild/aix-ppc64@0.20.2":
|
||||||
version "0.18.20"
|
version "0.20.2"
|
||||||
resolved "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz"
|
resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz#a70f4ac11c6a1dfc18b8bbb13284155d933b9537"
|
||||||
integrity sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==
|
integrity sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==
|
||||||
|
|
||||||
|
"@esbuild/android-arm64@0.20.2":
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz#db1c9202a5bc92ea04c7b6840f1bbe09ebf9e6b9"
|
||||||
|
integrity sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==
|
||||||
|
|
||||||
|
"@esbuild/android-arm@0.20.2":
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.20.2.tgz#3b488c49aee9d491c2c8f98a909b785870d6e995"
|
||||||
|
integrity sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==
|
||||||
|
|
||||||
|
"@esbuild/android-x64@0.20.2":
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.20.2.tgz#3b1628029e5576249d2b2d766696e50768449f98"
|
||||||
|
integrity sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==
|
||||||
|
|
||||||
|
"@esbuild/darwin-arm64@0.20.2":
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz#6e8517a045ddd86ae30c6608c8475ebc0c4000bb"
|
||||||
|
integrity sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==
|
||||||
|
|
||||||
|
"@esbuild/darwin-x64@0.20.2":
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz#90ed098e1f9dd8a9381695b207e1cff45540a0d0"
|
||||||
|
integrity sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==
|
||||||
|
|
||||||
|
"@esbuild/freebsd-arm64@0.20.2":
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz#d71502d1ee89a1130327e890364666c760a2a911"
|
||||||
|
integrity sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==
|
||||||
|
|
||||||
|
"@esbuild/freebsd-x64@0.20.2":
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz#aa5ea58d9c1dd9af688b8b6f63ef0d3d60cea53c"
|
||||||
|
integrity sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==
|
||||||
|
|
||||||
|
"@esbuild/linux-arm64@0.20.2":
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz#055b63725df678379b0f6db9d0fa85463755b2e5"
|
||||||
|
integrity sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==
|
||||||
|
|
||||||
|
"@esbuild/linux-arm@0.20.2":
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz#76b3b98cb1f87936fbc37f073efabad49dcd889c"
|
||||||
|
integrity sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==
|
||||||
|
|
||||||
|
"@esbuild/linux-ia32@0.20.2":
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz#c0e5e787c285264e5dfc7a79f04b8b4eefdad7fa"
|
||||||
|
integrity sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==
|
||||||
|
|
||||||
|
"@esbuild/linux-loong64@0.20.2":
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz#a6184e62bd7cdc63e0c0448b83801001653219c5"
|
||||||
|
integrity sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==
|
||||||
|
|
||||||
|
"@esbuild/linux-mips64el@0.20.2":
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz#d08e39ce86f45ef8fc88549d29c62b8acf5649aa"
|
||||||
|
integrity sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==
|
||||||
|
|
||||||
|
"@esbuild/linux-ppc64@0.20.2":
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz#8d252f0b7756ffd6d1cbde5ea67ff8fd20437f20"
|
||||||
|
integrity sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==
|
||||||
|
|
||||||
|
"@esbuild/linux-riscv64@0.20.2":
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz#19f6dcdb14409dae607f66ca1181dd4e9db81300"
|
||||||
|
integrity sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==
|
||||||
|
|
||||||
|
"@esbuild/linux-s390x@0.20.2":
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz#3c830c90f1a5d7dd1473d5595ea4ebb920988685"
|
||||||
|
integrity sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==
|
||||||
|
|
||||||
|
"@esbuild/linux-x64@0.20.2":
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz#86eca35203afc0d9de0694c64ec0ab0a378f6fff"
|
||||||
|
integrity sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==
|
||||||
|
|
||||||
|
"@esbuild/netbsd-x64@0.20.2":
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz#e771c8eb0e0f6e1877ffd4220036b98aed5915e6"
|
||||||
|
integrity sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==
|
||||||
|
|
||||||
|
"@esbuild/openbsd-x64@0.20.2":
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz#9a795ae4b4e37e674f0f4d716f3e226dd7c39baf"
|
||||||
|
integrity sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==
|
||||||
|
|
||||||
|
"@esbuild/sunos-x64@0.20.2":
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz#7df23b61a497b8ac189def6e25a95673caedb03f"
|
||||||
|
integrity sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==
|
||||||
|
|
||||||
|
"@esbuild/win32-arm64@0.20.2":
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz#f1ae5abf9ca052ae11c1bc806fb4c0f519bacf90"
|
||||||
|
integrity sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==
|
||||||
|
|
||||||
|
"@esbuild/win32-ia32@0.20.2":
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz#241fe62c34d8e8461cd708277813e1d0ba55ce23"
|
||||||
|
integrity sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==
|
||||||
|
|
||||||
|
"@esbuild/win32-x64@0.20.2":
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz#9c907b21e30a52db959ba4f80bb01a0cc403d5cc"
|
||||||
|
integrity sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==
|
||||||
|
|
||||||
"@jridgewell/sourcemap-codec@^1.4.15":
|
"@jridgewell/sourcemap-codec@^1.4.15":
|
||||||
version "1.4.15"
|
version "1.4.15"
|
||||||
resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz"
|
resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz"
|
||||||
integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
|
integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
|
||||||
|
|
||||||
"@types/linkify-it@*":
|
"@rollup/rollup-android-arm-eabi@4.18.0":
|
||||||
version "3.0.3"
|
version "4.18.0"
|
||||||
resolved "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-3.0.3.tgz"
|
resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.18.0.tgz#bbd0e616b2078cd2d68afc9824d1fadb2f2ffd27"
|
||||||
integrity sha512-pTjcqY9E4nOI55Wgpz7eiI8+LzdYnw3qxXCfHyBDdPbYvbyLgWLJGh8EdPvqawwMK1Uo1794AUkkR38Fr0g+2g==
|
integrity sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==
|
||||||
|
|
||||||
"@types/markdown-it@^13.0.2":
|
"@rollup/rollup-android-arm64@4.18.0":
|
||||||
version "13.0.2"
|
version "4.18.0"
|
||||||
resolved "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-13.0.2.tgz"
|
resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.18.0.tgz#97255ef6384c5f73f4800c0de91f5f6518e21203"
|
||||||
integrity sha512-Tla7hH9oeXHOlJyBFdoqV61xWE9FZf/y2g+gFVwQ2vE1/eBzjUno5JCd3Hdb5oATve5OF6xNjZ/4VIZhVVx+hA==
|
integrity sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==
|
||||||
|
|
||||||
|
"@rollup/rollup-darwin-arm64@4.18.0":
|
||||||
|
version "4.18.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.18.0.tgz#b6dd74e117510dfe94541646067b0545b42ff096"
|
||||||
|
integrity sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==
|
||||||
|
|
||||||
|
"@rollup/rollup-darwin-x64@4.18.0":
|
||||||
|
version "4.18.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.18.0.tgz#e07d76de1cec987673e7f3d48ccb8e106d42c05c"
|
||||||
|
integrity sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==
|
||||||
|
|
||||||
|
"@rollup/rollup-linux-arm-gnueabihf@4.18.0":
|
||||||
|
version "4.18.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.18.0.tgz#9f1a6d218b560c9d75185af4b8bb42f9f24736b8"
|
||||||
|
integrity sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==
|
||||||
|
|
||||||
|
"@rollup/rollup-linux-arm-musleabihf@4.18.0":
|
||||||
|
version "4.18.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.18.0.tgz#53618b92e6ffb642c7b620e6e528446511330549"
|
||||||
|
integrity sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==
|
||||||
|
|
||||||
|
"@rollup/rollup-linux-arm64-gnu@4.18.0":
|
||||||
|
version "4.18.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.18.0.tgz#99a7ba5e719d4f053761a698f7b52291cefba577"
|
||||||
|
integrity sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==
|
||||||
|
|
||||||
|
"@rollup/rollup-linux-arm64-musl@4.18.0":
|
||||||
|
version "4.18.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.18.0.tgz#f53db99a45d9bc00ce94db8a35efa7c3c144a58c"
|
||||||
|
integrity sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==
|
||||||
|
|
||||||
|
"@rollup/rollup-linux-powerpc64le-gnu@4.18.0":
|
||||||
|
version "4.18.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.18.0.tgz#cbb0837408fe081ce3435cf3730e090febafc9bf"
|
||||||
|
integrity sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==
|
||||||
|
|
||||||
|
"@rollup/rollup-linux-riscv64-gnu@4.18.0":
|
||||||
|
version "4.18.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.18.0.tgz#8ed09c1d1262ada4c38d791a28ae0fea28b80cc9"
|
||||||
|
integrity sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==
|
||||||
|
|
||||||
|
"@rollup/rollup-linux-s390x-gnu@4.18.0":
|
||||||
|
version "4.18.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.18.0.tgz#938138d3c8e0c96f022252a28441dcfb17afd7ec"
|
||||||
|
integrity sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==
|
||||||
|
|
||||||
|
"@rollup/rollup-linux-x64-gnu@4.18.0":
|
||||||
|
version "4.18.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.18.0.tgz#1a7481137a54740bee1ded4ae5752450f155d942"
|
||||||
|
integrity sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==
|
||||||
|
|
||||||
|
"@rollup/rollup-linux-x64-musl@4.18.0":
|
||||||
|
version "4.18.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.18.0.tgz#f1186afc601ac4f4fc25fac4ca15ecbee3a1874d"
|
||||||
|
integrity sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==
|
||||||
|
|
||||||
|
"@rollup/rollup-win32-arm64-msvc@4.18.0":
|
||||||
|
version "4.18.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.18.0.tgz#ed6603e93636a96203c6915be4117245c1bd2daf"
|
||||||
|
integrity sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==
|
||||||
|
|
||||||
|
"@rollup/rollup-win32-ia32-msvc@4.18.0":
|
||||||
|
version "4.18.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.18.0.tgz#14e0b404b1c25ebe6157a15edb9c46959ba74c54"
|
||||||
|
integrity sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==
|
||||||
|
|
||||||
|
"@rollup/rollup-win32-x64-msvc@4.18.0":
|
||||||
|
version "4.18.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.18.0.tgz#5d694d345ce36b6ecf657349e03eb87297e68da4"
|
||||||
|
integrity sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==
|
||||||
|
|
||||||
|
"@shikijs/core@1.6.1", "@shikijs/core@^1.5.2":
|
||||||
|
version "1.6.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/@shikijs/core/-/core-1.6.1.tgz#4b4becfd26754334652a0b474f02705868dcb28c"
|
||||||
|
integrity sha512-CqYyepN4SnBopaoXYwng4NO8riB5ask/LTCkhOFq+GNGtr2X+aKeD767eYdqYukeixEUvv4bXdyTYVaogj7KBw==
|
||||||
|
|
||||||
|
"@shikijs/transformers@^1.5.2":
|
||||||
|
version "1.6.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/@shikijs/transformers/-/transformers-1.6.1.tgz#2318f62ea70ba0119a9c04599c8480ec5bbf50de"
|
||||||
|
integrity sha512-m/h2Dh99XWvTzHL8MUQmEnrB+/gxDljIfgDNR00Zg941KENqORx8Hi9sKpGYjCgXoEJKASZlEMQdPnkHj9/8aQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/linkify-it" "*"
|
shiki "1.6.1"
|
||||||
"@types/mdurl" "*"
|
|
||||||
|
|
||||||
"@types/mdurl@*":
|
"@types/estree@1.0.5":
|
||||||
version "1.0.3"
|
version "1.0.5"
|
||||||
resolved "https://registry.npmjs.org/@types/mdurl/-/mdurl-1.0.3.tgz"
|
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4"
|
||||||
integrity sha512-T5k6kTXak79gwmIOaDF2UUQXFbnBE0zBUzF20pz7wDYu0RQMzWg+Ml/Pz50214NsFHBITkoi5VtdjFZnJ2ijjA==
|
integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==
|
||||||
|
|
||||||
"@types/web-bluetooth@^0.0.18":
|
"@types/linkify-it@^5":
|
||||||
version "0.0.18"
|
version "5.0.0"
|
||||||
resolved "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.18.tgz"
|
resolved "https://registry.yarnpkg.com/@types/linkify-it/-/linkify-it-5.0.0.tgz#21413001973106cda1c3a9b91eedd4ccd5469d76"
|
||||||
integrity sha512-v/ZHEj9xh82usl8LMR3GarzFY1IrbXJw5L4QfQhokjRV91q+SelFqxQWSep1ucXEZ22+dSTwLFkXeur25sPIbw==
|
integrity sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==
|
||||||
|
|
||||||
|
"@types/markdown-it@^14.1.1":
|
||||||
|
version "14.1.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/markdown-it/-/markdown-it-14.1.1.tgz#06bafb7a4e3f77b62b1f308acf7df76687887e0b"
|
||||||
|
integrity sha512-4NpsnpYl2Gt1ljyBGrKMxFYAYvpqbnnkgP/i/g+NLpjEUa3obn1XJCur9YbEXKDAkaXqsR1LbDnGEJ0MmKFxfg==
|
||||||
|
dependencies:
|
||||||
|
"@types/linkify-it" "^5"
|
||||||
|
"@types/mdurl" "^2"
|
||||||
|
|
||||||
|
"@types/mdurl@^2":
|
||||||
|
version "2.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/mdurl/-/mdurl-2.0.0.tgz#d43878b5b20222682163ae6f897b20447233bdfd"
|
||||||
|
integrity sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==
|
||||||
|
|
||||||
|
"@types/web-bluetooth@^0.0.20":
|
||||||
|
version "0.0.20"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz#f066abfcd1cbe66267cdbbf0de010d8a41b41597"
|
||||||
|
integrity sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==
|
||||||
|
|
||||||
|
"@vitejs/plugin-vue@^5.0.4":
|
||||||
|
version "5.0.5"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-5.0.5.tgz#e3dc11e427d4b818b7e3202766ad156e3d5e2eaa"
|
||||||
|
integrity sha512-LOjm7XeIimLBZyzinBQ6OSm3UBCNVCpLkxGC0oWmm2YPzVZoxMsdvNVimLTBzpAnR9hl/yn1SHGuRfe6/Td9rQ==
|
||||||
|
|
||||||
"@vue/compiler-core@3.3.4":
|
"@vue/compiler-core@3.3.4":
|
||||||
version "3.3.4"
|
version "3.3.4"
|
||||||
|
@ -204,6 +421,17 @@
|
||||||
estree-walker "^2.0.2"
|
estree-walker "^2.0.2"
|
||||||
source-map-js "^1.0.2"
|
source-map-js "^1.0.2"
|
||||||
|
|
||||||
|
"@vue/compiler-core@3.4.27":
|
||||||
|
version "3.4.27"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.4.27.tgz#e69060f4b61429fe57976aa5872cfa21389e4d91"
|
||||||
|
integrity sha512-E+RyqY24KnyDXsCuQrI+mlcdW3ALND6U7Gqa/+bVwbcpcR3BRRIckFoz7Qyd4TTlnugtwuI7YgjbvsLmxb+yvg==
|
||||||
|
dependencies:
|
||||||
|
"@babel/parser" "^7.24.4"
|
||||||
|
"@vue/shared" "3.4.27"
|
||||||
|
entities "^4.5.0"
|
||||||
|
estree-walker "^2.0.2"
|
||||||
|
source-map-js "^1.2.0"
|
||||||
|
|
||||||
"@vue/compiler-dom@3.3.4":
|
"@vue/compiler-dom@3.3.4":
|
||||||
version "3.3.4"
|
version "3.3.4"
|
||||||
resolved "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz"
|
resolved "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.4.tgz"
|
||||||
|
@ -212,6 +440,14 @@
|
||||||
"@vue/compiler-core" "3.3.4"
|
"@vue/compiler-core" "3.3.4"
|
||||||
"@vue/shared" "3.3.4"
|
"@vue/shared" "3.3.4"
|
||||||
|
|
||||||
|
"@vue/compiler-dom@3.4.27":
|
||||||
|
version "3.4.27"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.4.27.tgz#d51d35f40d00ce235d7afc6ad8b09dfd92b1cc1c"
|
||||||
|
integrity sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw==
|
||||||
|
dependencies:
|
||||||
|
"@vue/compiler-core" "3.4.27"
|
||||||
|
"@vue/shared" "3.4.27"
|
||||||
|
|
||||||
"@vue/compiler-sfc@3.3.4":
|
"@vue/compiler-sfc@3.3.4":
|
||||||
version "3.3.4"
|
version "3.3.4"
|
||||||
resolved "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz"
|
resolved "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.4.tgz"
|
||||||
|
@ -228,6 +464,21 @@
|
||||||
postcss "^8.1.10"
|
postcss "^8.1.10"
|
||||||
source-map-js "^1.0.2"
|
source-map-js "^1.0.2"
|
||||||
|
|
||||||
|
"@vue/compiler-sfc@3.4.27":
|
||||||
|
version "3.4.27"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.4.27.tgz#399cac1b75c6737bf5440dc9cf3c385bb2959701"
|
||||||
|
integrity sha512-nDwntUEADssW8e0rrmE0+OrONwmRlegDA1pD6QhVeXxjIytV03yDqTey9SBDiALsvAd5U4ZrEKbMyVXhX6mCGA==
|
||||||
|
dependencies:
|
||||||
|
"@babel/parser" "^7.24.4"
|
||||||
|
"@vue/compiler-core" "3.4.27"
|
||||||
|
"@vue/compiler-dom" "3.4.27"
|
||||||
|
"@vue/compiler-ssr" "3.4.27"
|
||||||
|
"@vue/shared" "3.4.27"
|
||||||
|
estree-walker "^2.0.2"
|
||||||
|
magic-string "^0.30.10"
|
||||||
|
postcss "^8.4.38"
|
||||||
|
source-map-js "^1.2.0"
|
||||||
|
|
||||||
"@vue/compiler-ssr@3.3.4":
|
"@vue/compiler-ssr@3.3.4":
|
||||||
version "3.3.4"
|
version "3.3.4"
|
||||||
resolved "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz"
|
resolved "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.4.tgz"
|
||||||
|
@ -236,10 +487,38 @@
|
||||||
"@vue/compiler-dom" "3.3.4"
|
"@vue/compiler-dom" "3.3.4"
|
||||||
"@vue/shared" "3.3.4"
|
"@vue/shared" "3.3.4"
|
||||||
|
|
||||||
"@vue/devtools-api@^6.5.1":
|
"@vue/compiler-ssr@3.4.27":
|
||||||
version "6.5.1"
|
version "3.4.27"
|
||||||
resolved "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.5.1.tgz"
|
resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.4.27.tgz#2a8ecfef1cf448b09be633901a9c020360472e3d"
|
||||||
integrity sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==
|
integrity sha512-CVRzSJIltzMG5FcidsW0jKNQnNRYC8bT21VegyMMtHmhW3UOI7knmUehzswXLrExDLE6lQCZdrhD4ogI7c+vuw==
|
||||||
|
dependencies:
|
||||||
|
"@vue/compiler-dom" "3.4.27"
|
||||||
|
"@vue/shared" "3.4.27"
|
||||||
|
|
||||||
|
"@vue/devtools-api@^7.2.0":
|
||||||
|
version "7.2.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vue/devtools-api/-/devtools-api-7.2.1.tgz#1eb3d33c85b76306106d5804bafa0d13178e9224"
|
||||||
|
integrity sha512-6oNCtyFOrNdqm6GUkFujsCgFlpbsHLnZqq7edeM/+cxAbMyCWvsaCsIMUaz7AiluKLccCGEM8fhOsjaKgBvb7g==
|
||||||
|
dependencies:
|
||||||
|
"@vue/devtools-kit" "^7.2.1"
|
||||||
|
|
||||||
|
"@vue/devtools-kit@^7.2.1":
|
||||||
|
version "7.2.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vue/devtools-kit/-/devtools-kit-7.2.1.tgz#eb4e6726f0f71aa0b9405c847799f75cc86d3d81"
|
||||||
|
integrity sha512-Wak/fin1X0Q8LLIfCAHBrdaaB+R6IdpSXsDByPHbQ3BmkCP0/cIo/oEGp9i0U2+gEqD4L3V9RDjNf1S34DTzQQ==
|
||||||
|
dependencies:
|
||||||
|
"@vue/devtools-shared" "^7.2.1"
|
||||||
|
hookable "^5.5.3"
|
||||||
|
mitt "^3.0.1"
|
||||||
|
perfect-debounce "^1.0.0"
|
||||||
|
speakingurl "^14.0.1"
|
||||||
|
|
||||||
|
"@vue/devtools-shared@^7.2.1":
|
||||||
|
version "7.2.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vue/devtools-shared/-/devtools-shared-7.2.1.tgz#576c048375ba3c63e555017abbc0b1019a7d4cbe"
|
||||||
|
integrity sha512-PCJF4UknJmOal68+X9XHyVeQ+idv0LFujkTOIW30+GaMJqwFVN9LkQKX4gLqn61KkGMdJTzQ1bt7EJag3TI6AA==
|
||||||
|
dependencies:
|
||||||
|
rfdc "^1.3.1"
|
||||||
|
|
||||||
"@vue/reactivity-transform@3.3.4":
|
"@vue/reactivity-transform@3.3.4":
|
||||||
version "3.3.4"
|
version "3.3.4"
|
||||||
|
@ -259,6 +538,13 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
"@vue/shared" "3.3.4"
|
"@vue/shared" "3.3.4"
|
||||||
|
|
||||||
|
"@vue/reactivity@3.4.27":
|
||||||
|
version "3.4.27"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.4.27.tgz#6ece72331bf719953f5eaa95ec60b2b8d49e3791"
|
||||||
|
integrity sha512-kK0g4NknW6JX2yySLpsm2jlunZJl2/RJGZ0H9ddHdfBVHcNzxmQ0sS0b09ipmBoQpY8JM2KmUw+a6sO8Zo+zIA==
|
||||||
|
dependencies:
|
||||||
|
"@vue/shared" "3.4.27"
|
||||||
|
|
||||||
"@vue/runtime-core@3.3.4":
|
"@vue/runtime-core@3.3.4":
|
||||||
version "3.3.4"
|
version "3.3.4"
|
||||||
resolved "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.4.tgz"
|
resolved "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.4.tgz"
|
||||||
|
@ -267,6 +553,14 @@
|
||||||
"@vue/reactivity" "3.3.4"
|
"@vue/reactivity" "3.3.4"
|
||||||
"@vue/shared" "3.3.4"
|
"@vue/shared" "3.3.4"
|
||||||
|
|
||||||
|
"@vue/runtime-core@3.4.27":
|
||||||
|
version "3.4.27"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.4.27.tgz#1b6e1d71e4604ba7442dd25ed22e4a1fc6adbbda"
|
||||||
|
integrity sha512-7aYA9GEbOOdviqVvcuweTLe5Za4qBZkUY7SvET6vE8kyypxVgaT1ixHLg4urtOlrApdgcdgHoTZCUuTGap/5WA==
|
||||||
|
dependencies:
|
||||||
|
"@vue/reactivity" "3.4.27"
|
||||||
|
"@vue/shared" "3.4.27"
|
||||||
|
|
||||||
"@vue/runtime-dom@3.3.4":
|
"@vue/runtime-dom@3.3.4":
|
||||||
version "3.3.4"
|
version "3.3.4"
|
||||||
resolved "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz"
|
resolved "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.4.tgz"
|
||||||
|
@ -276,6 +570,15 @@
|
||||||
"@vue/shared" "3.3.4"
|
"@vue/shared" "3.3.4"
|
||||||
csstype "^3.1.1"
|
csstype "^3.1.1"
|
||||||
|
|
||||||
|
"@vue/runtime-dom@3.4.27":
|
||||||
|
version "3.4.27"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.4.27.tgz#fe8d1ce9bbe8921d5dd0ad5c10df0e04ef7a5ee7"
|
||||||
|
integrity sha512-ScOmP70/3NPM+TW9hvVAz6VWWtZJqkbdf7w6ySsws+EsqtHvkhxaWLecrTorFxsawelM5Ys9FnDEMt6BPBDS0Q==
|
||||||
|
dependencies:
|
||||||
|
"@vue/runtime-core" "3.4.27"
|
||||||
|
"@vue/shared" "3.4.27"
|
||||||
|
csstype "^3.1.3"
|
||||||
|
|
||||||
"@vue/server-renderer@3.3.4":
|
"@vue/server-renderer@3.3.4":
|
||||||
version "3.3.4"
|
version "3.3.4"
|
||||||
resolved "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.4.tgz"
|
resolved "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.4.tgz"
|
||||||
|
@ -284,43 +587,56 @@
|
||||||
"@vue/compiler-ssr" "3.3.4"
|
"@vue/compiler-ssr" "3.3.4"
|
||||||
"@vue/shared" "3.3.4"
|
"@vue/shared" "3.3.4"
|
||||||
|
|
||||||
|
"@vue/server-renderer@3.4.27":
|
||||||
|
version "3.4.27"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.4.27.tgz#3306176f37e648ba665f97dda3ce705687be63d2"
|
||||||
|
integrity sha512-dlAMEuvmeA3rJsOMJ2J1kXU7o7pOxgsNHVr9K8hB3ImIkSuBrIdy0vF66h8gf8Tuinf1TK3mPAz2+2sqyf3KzA==
|
||||||
|
dependencies:
|
||||||
|
"@vue/compiler-ssr" "3.4.27"
|
||||||
|
"@vue/shared" "3.4.27"
|
||||||
|
|
||||||
"@vue/shared@3.3.4":
|
"@vue/shared@3.3.4":
|
||||||
version "3.3.4"
|
version "3.3.4"
|
||||||
resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.3.4.tgz"
|
resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.3.4.tgz"
|
||||||
integrity sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==
|
integrity sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==
|
||||||
|
|
||||||
"@vueuse/core@^10.5.0", "@vueuse/core@10.5.0":
|
"@vue/shared@3.4.27", "@vue/shared@^3.4.27":
|
||||||
version "10.5.0"
|
version "3.4.27"
|
||||||
resolved "https://registry.npmjs.org/@vueuse/core/-/core-10.5.0.tgz"
|
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.4.27.tgz#f05e3cd107d157354bb4ae7a7b5fc9cf73c63b50"
|
||||||
integrity sha512-z/tI2eSvxwLRjOhDm0h/SXAjNm8N5ld6/SC/JQs6o6kpJ6Ya50LnEL8g5hoYu005i28L0zqB5L5yAl8Jl26K3A==
|
integrity sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==
|
||||||
|
|
||||||
|
"@vueuse/core@10.10.0", "@vueuse/core@^10.9.0":
|
||||||
|
version "10.10.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@vueuse/core/-/core-10.10.0.tgz#05a98d3c5674762455a2c552c915d461d83e6490"
|
||||||
|
integrity sha512-vexJ/YXYs2S42B783rI95lMt3GzEwkxzC8Hb0Ndpd8rD+p+Lk/Za4bd797Ym7yq4jXqdSyj3JLChunF/vyYjUw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/web-bluetooth" "^0.0.18"
|
"@types/web-bluetooth" "^0.0.20"
|
||||||
"@vueuse/metadata" "10.5.0"
|
"@vueuse/metadata" "10.10.0"
|
||||||
"@vueuse/shared" "10.5.0"
|
"@vueuse/shared" "10.10.0"
|
||||||
vue-demi ">=0.14.6"
|
vue-demi ">=0.14.7"
|
||||||
|
|
||||||
"@vueuse/integrations@^10.5.0":
|
"@vueuse/integrations@^10.9.0":
|
||||||
version "10.5.0"
|
version "10.10.0"
|
||||||
resolved "https://registry.npmjs.org/@vueuse/integrations/-/integrations-10.5.0.tgz"
|
resolved "https://registry.yarnpkg.com/@vueuse/integrations/-/integrations-10.10.0.tgz#31f413b88d7ed24213958eba6824d46b2bf71b5f"
|
||||||
integrity sha512-fm5sXLCK0Ww3rRnzqnCQRmfjDURaI4xMsx+T+cec0ngQqHx/JgUtm8G0vRjwtonIeTBsH1Q8L3SucE+7K7upJQ==
|
integrity sha512-vHGeK7X6mkdkpcm1eE9t3Cpm21pNVfZRwrjwwbrEs9XftnSgszF4831G2rei8Dt9cIYJIfFV+iyx/29muimJPQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@vueuse/core" "10.5.0"
|
"@vueuse/core" "10.10.0"
|
||||||
"@vueuse/shared" "10.5.0"
|
"@vueuse/shared" "10.10.0"
|
||||||
vue-demi ">=0.14.6"
|
vue-demi ">=0.14.7"
|
||||||
|
|
||||||
"@vueuse/metadata@10.5.0":
|
"@vueuse/metadata@10.10.0":
|
||||||
version "10.5.0"
|
version "10.10.0"
|
||||||
resolved "https://registry.npmjs.org/@vueuse/metadata/-/metadata-10.5.0.tgz"
|
resolved "https://registry.yarnpkg.com/@vueuse/metadata/-/metadata-10.10.0.tgz#53e61e9380670e342cbe6e03d852f3319308cb5b"
|
||||||
integrity sha512-fEbElR+MaIYyCkeM0SzWkdoMtOpIwO72x8WsZHRE7IggiOlILttqttM69AS13nrDxosnDBYdyy3C5mR1LCxHsw==
|
integrity sha512-UNAo2sTCAW5ge6OErPEHb5z7NEAg3XcO9Cj7OK45aZXfLLH1QkexDcZD77HBi5zvEiLOm1An+p/4b5K3Worpug==
|
||||||
|
|
||||||
"@vueuse/shared@10.5.0":
|
"@vueuse/shared@10.10.0":
|
||||||
version "10.5.0"
|
version "10.10.0"
|
||||||
resolved "https://registry.npmjs.org/@vueuse/shared/-/shared-10.5.0.tgz"
|
resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-10.10.0.tgz#93f7c2210151ff43c2c7677963f7aa3aef5d9896"
|
||||||
integrity sha512-18iyxbbHYLst9MqU1X1QNdMHIjks6wC7XTVf0KNOv5es/Ms6gjVFCAAWTVP2JStuGqydg3DT+ExpFORUEi9yhg==
|
integrity sha512-2aW33Ac0Uk0U+9yo3Ypg9s5KcR42cuehRWl7vnUHadQyFvCktseyxxEPBi1Eiq4D2yBGACOnqLZpx1eMc7g5Og==
|
||||||
dependencies:
|
dependencies:
|
||||||
vue-demi ">=0.14.6"
|
vue-demi ">=0.14.7"
|
||||||
|
|
||||||
algoliasearch@^4.19.1, "algoliasearch@>= 4.9.1 < 6":
|
algoliasearch@^4.19.1:
|
||||||
version "4.20.0"
|
version "4.20.0"
|
||||||
resolved "https://registry.npmjs.org/algoliasearch/-/algoliasearch-4.20.0.tgz"
|
resolved "https://registry.npmjs.org/algoliasearch/-/algoliasearch-4.20.0.tgz"
|
||||||
integrity sha512-y+UHEjnOItoNy0bYO+WWmLWBlPwDjKHW6mNHrPi0NkuhpQOOEbrkwQH/wgKFDLh7qlKjzoKeiRtlpewDPDG23g==
|
integrity sha512-y+UHEjnOItoNy0bYO+WWmLWBlPwDjKHW6mNHrPi0NkuhpQOOEbrkwQH/wgKFDLh7qlKjzoKeiRtlpewDPDG23g==
|
||||||
|
@ -340,60 +656,71 @@ algoliasearch@^4.19.1, "algoliasearch@>= 4.9.1 < 6":
|
||||||
"@algolia/requester-node-http" "4.20.0"
|
"@algolia/requester-node-http" "4.20.0"
|
||||||
"@algolia/transporter" "4.20.0"
|
"@algolia/transporter" "4.20.0"
|
||||||
|
|
||||||
ansi-sequence-parser@^1.1.0:
|
|
||||||
version "1.1.1"
|
|
||||||
resolved "https://registry.npmjs.org/ansi-sequence-parser/-/ansi-sequence-parser-1.1.1.tgz"
|
|
||||||
integrity sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==
|
|
||||||
|
|
||||||
csstype@^3.1.1:
|
csstype@^3.1.1:
|
||||||
version "3.1.2"
|
version "3.1.2"
|
||||||
resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz"
|
resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz"
|
||||||
integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==
|
integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==
|
||||||
|
|
||||||
esbuild@^0.18.10:
|
csstype@^3.1.3:
|
||||||
version "0.18.20"
|
version "3.1.3"
|
||||||
resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz"
|
resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81"
|
||||||
integrity sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==
|
integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==
|
||||||
|
|
||||||
|
entities@^4.5.0:
|
||||||
|
version "4.5.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48"
|
||||||
|
integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
|
||||||
|
|
||||||
|
esbuild@^0.20.1:
|
||||||
|
version "0.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.20.2.tgz#9d6b2386561766ee6b5a55196c6d766d28c87ea1"
|
||||||
|
integrity sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
"@esbuild/android-arm" "0.18.20"
|
"@esbuild/aix-ppc64" "0.20.2"
|
||||||
"@esbuild/android-arm64" "0.18.20"
|
"@esbuild/android-arm" "0.20.2"
|
||||||
"@esbuild/android-x64" "0.18.20"
|
"@esbuild/android-arm64" "0.20.2"
|
||||||
"@esbuild/darwin-arm64" "0.18.20"
|
"@esbuild/android-x64" "0.20.2"
|
||||||
"@esbuild/darwin-x64" "0.18.20"
|
"@esbuild/darwin-arm64" "0.20.2"
|
||||||
"@esbuild/freebsd-arm64" "0.18.20"
|
"@esbuild/darwin-x64" "0.20.2"
|
||||||
"@esbuild/freebsd-x64" "0.18.20"
|
"@esbuild/freebsd-arm64" "0.20.2"
|
||||||
"@esbuild/linux-arm" "0.18.20"
|
"@esbuild/freebsd-x64" "0.20.2"
|
||||||
"@esbuild/linux-arm64" "0.18.20"
|
"@esbuild/linux-arm" "0.20.2"
|
||||||
"@esbuild/linux-ia32" "0.18.20"
|
"@esbuild/linux-arm64" "0.20.2"
|
||||||
"@esbuild/linux-loong64" "0.18.20"
|
"@esbuild/linux-ia32" "0.20.2"
|
||||||
"@esbuild/linux-mips64el" "0.18.20"
|
"@esbuild/linux-loong64" "0.20.2"
|
||||||
"@esbuild/linux-ppc64" "0.18.20"
|
"@esbuild/linux-mips64el" "0.20.2"
|
||||||
"@esbuild/linux-riscv64" "0.18.20"
|
"@esbuild/linux-ppc64" "0.20.2"
|
||||||
"@esbuild/linux-s390x" "0.18.20"
|
"@esbuild/linux-riscv64" "0.20.2"
|
||||||
"@esbuild/linux-x64" "0.18.20"
|
"@esbuild/linux-s390x" "0.20.2"
|
||||||
"@esbuild/netbsd-x64" "0.18.20"
|
"@esbuild/linux-x64" "0.20.2"
|
||||||
"@esbuild/openbsd-x64" "0.18.20"
|
"@esbuild/netbsd-x64" "0.20.2"
|
||||||
"@esbuild/sunos-x64" "0.18.20"
|
"@esbuild/openbsd-x64" "0.20.2"
|
||||||
"@esbuild/win32-arm64" "0.18.20"
|
"@esbuild/sunos-x64" "0.20.2"
|
||||||
"@esbuild/win32-ia32" "0.18.20"
|
"@esbuild/win32-arm64" "0.20.2"
|
||||||
"@esbuild/win32-x64" "0.18.20"
|
"@esbuild/win32-ia32" "0.20.2"
|
||||||
|
"@esbuild/win32-x64" "0.20.2"
|
||||||
|
|
||||||
estree-walker@^2.0.2:
|
estree-walker@^2.0.2:
|
||||||
version "2.0.2"
|
version "2.0.2"
|
||||||
resolved "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz"
|
resolved "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz"
|
||||||
integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==
|
integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==
|
||||||
|
|
||||||
focus-trap@*, focus-trap@^7.5.4:
|
focus-trap@^7.5.4:
|
||||||
version "7.5.4"
|
version "7.5.4"
|
||||||
resolved "https://registry.npmjs.org/focus-trap/-/focus-trap-7.5.4.tgz"
|
resolved "https://registry.npmjs.org/focus-trap/-/focus-trap-7.5.4.tgz"
|
||||||
integrity sha512-N7kHdlgsO/v+iD/dMoJKtsSqs5Dz/dXZVebRgJw23LDk+jMi/974zyiOYDziY2JPp8xivq9BmUGwIJMiuSBi7w==
|
integrity sha512-N7kHdlgsO/v+iD/dMoJKtsSqs5Dz/dXZVebRgJw23LDk+jMi/974zyiOYDziY2JPp8xivq9BmUGwIJMiuSBi7w==
|
||||||
dependencies:
|
dependencies:
|
||||||
tabbable "^6.2.0"
|
tabbable "^6.2.0"
|
||||||
|
|
||||||
jsonc-parser@^3.2.0:
|
fsevents@~2.3.2, fsevents@~2.3.3:
|
||||||
version "3.2.0"
|
version "2.3.3"
|
||||||
resolved "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz"
|
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6"
|
||||||
integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==
|
integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
|
||||||
|
|
||||||
|
hookable@^5.5.3:
|
||||||
|
version "5.5.3"
|
||||||
|
resolved "https://registry.yarnpkg.com/hookable/-/hookable-5.5.3.tgz#6cfc358984a1ef991e2518cb9ed4a778bbd3215d"
|
||||||
|
integrity sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==
|
||||||
|
|
||||||
magic-string@^0.30.0:
|
magic-string@^0.30.0:
|
||||||
version "0.30.5"
|
version "0.30.5"
|
||||||
|
@ -402,27 +729,49 @@ magic-string@^0.30.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
"@jridgewell/sourcemap-codec" "^1.4.15"
|
"@jridgewell/sourcemap-codec" "^1.4.15"
|
||||||
|
|
||||||
|
magic-string@^0.30.10:
|
||||||
|
version "0.30.10"
|
||||||
|
resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.10.tgz#123d9c41a0cb5640c892b041d4cfb3bd0aa4b39e"
|
||||||
|
integrity sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==
|
||||||
|
dependencies:
|
||||||
|
"@jridgewell/sourcemap-codec" "^1.4.15"
|
||||||
|
|
||||||
mark.js@8.11.1:
|
mark.js@8.11.1:
|
||||||
version "8.11.1"
|
version "8.11.1"
|
||||||
resolved "https://registry.npmjs.org/mark.js/-/mark.js-8.11.1.tgz"
|
resolved "https://registry.npmjs.org/mark.js/-/mark.js-8.11.1.tgz"
|
||||||
integrity sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==
|
integrity sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==
|
||||||
|
|
||||||
minisearch@^6.1.0:
|
minisearch@^6.3.0:
|
||||||
version "6.1.0"
|
version "6.3.0"
|
||||||
resolved "https://registry.npmjs.org/minisearch/-/minisearch-6.1.0.tgz"
|
resolved "https://registry.yarnpkg.com/minisearch/-/minisearch-6.3.0.tgz#985a2f1ca3c73c2d65af94f0616bfe57164b0b6b"
|
||||||
integrity sha512-PNxA/X8pWk+TiqPbsoIYH0GQ5Di7m6326/lwU/S4mlo4wGQddIcf/V//1f9TB0V4j59b57b+HZxt8h3iMROGvg==
|
integrity sha512-ihFnidEeU8iXzcVHy74dhkxh/dn8Dc08ERl0xwoMMGqp4+LvRSCgicb+zGqWthVokQKvCSxITlh3P08OzdTYCQ==
|
||||||
|
|
||||||
|
mitt@^3.0.1:
|
||||||
|
version "3.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/mitt/-/mitt-3.0.1.tgz#ea36cf0cc30403601ae074c8f77b7092cdab36d1"
|
||||||
|
integrity sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==
|
||||||
|
|
||||||
nanoid@^3.3.6:
|
nanoid@^3.3.6:
|
||||||
version "3.3.6"
|
version "3.3.6"
|
||||||
resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz"
|
resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz"
|
||||||
integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==
|
integrity sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==
|
||||||
|
|
||||||
|
nanoid@^3.3.7:
|
||||||
|
version "3.3.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8"
|
||||||
|
integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==
|
||||||
|
|
||||||
|
perfect-debounce@^1.0.0:
|
||||||
|
version "1.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/perfect-debounce/-/perfect-debounce-1.0.0.tgz#9c2e8bc30b169cc984a58b7d5b28049839591d2a"
|
||||||
|
integrity sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==
|
||||||
|
|
||||||
picocolors@^1.0.0:
|
picocolors@^1.0.0:
|
||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz"
|
resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz"
|
||||||
integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
|
integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
|
||||||
|
|
||||||
postcss@^8.1.10, postcss@^8.4.27, postcss@^8.4.31:
|
postcss@^8.1.10:
|
||||||
version "8.4.31"
|
version "8.4.31"
|
||||||
resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz"
|
resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz"
|
||||||
integrity sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==
|
integrity sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==
|
||||||
|
@ -431,88 +780,121 @@ postcss@^8.1.10, postcss@^8.4.27, postcss@^8.4.31:
|
||||||
picocolors "^1.0.0"
|
picocolors "^1.0.0"
|
||||||
source-map-js "^1.0.2"
|
source-map-js "^1.0.2"
|
||||||
|
|
||||||
|
postcss@^8.4.38:
|
||||||
|
version "8.4.38"
|
||||||
|
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e"
|
||||||
|
integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==
|
||||||
|
dependencies:
|
||||||
|
nanoid "^3.3.7"
|
||||||
|
picocolors "^1.0.0"
|
||||||
|
source-map-js "^1.2.0"
|
||||||
|
|
||||||
preact@^10.0.0:
|
preact@^10.0.0:
|
||||||
version "10.18.1"
|
version "10.18.1"
|
||||||
resolved "https://registry.npmjs.org/preact/-/preact-10.18.1.tgz"
|
resolved "https://registry.npmjs.org/preact/-/preact-10.18.1.tgz"
|
||||||
integrity sha512-mKUD7RRkQQM6s7Rkmi7IFkoEHjuFqRQUaXamO61E6Nn7vqF/bo7EZCmSyrUnp2UWHw0O7XjZ2eeXis+m7tf4lg==
|
integrity sha512-mKUD7RRkQQM6s7Rkmi7IFkoEHjuFqRQUaXamO61E6Nn7vqF/bo7EZCmSyrUnp2UWHw0O7XjZ2eeXis+m7tf4lg==
|
||||||
|
|
||||||
rollup@^3.27.1:
|
rfdc@^1.3.1:
|
||||||
version "3.29.4"
|
version "1.3.1"
|
||||||
resolved "https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz"
|
resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.1.tgz#2b6d4df52dffe8bb346992a10ea9451f24373a8f"
|
||||||
integrity sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==
|
integrity sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==
|
||||||
|
|
||||||
|
rollup@^4.13.0:
|
||||||
|
version "4.18.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.18.0.tgz#497f60f0c5308e4602cf41136339fbf87d5f5dda"
|
||||||
|
integrity sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==
|
||||||
|
dependencies:
|
||||||
|
"@types/estree" "1.0.5"
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
|
"@rollup/rollup-android-arm-eabi" "4.18.0"
|
||||||
|
"@rollup/rollup-android-arm64" "4.18.0"
|
||||||
|
"@rollup/rollup-darwin-arm64" "4.18.0"
|
||||||
|
"@rollup/rollup-darwin-x64" "4.18.0"
|
||||||
|
"@rollup/rollup-linux-arm-gnueabihf" "4.18.0"
|
||||||
|
"@rollup/rollup-linux-arm-musleabihf" "4.18.0"
|
||||||
|
"@rollup/rollup-linux-arm64-gnu" "4.18.0"
|
||||||
|
"@rollup/rollup-linux-arm64-musl" "4.18.0"
|
||||||
|
"@rollup/rollup-linux-powerpc64le-gnu" "4.18.0"
|
||||||
|
"@rollup/rollup-linux-riscv64-gnu" "4.18.0"
|
||||||
|
"@rollup/rollup-linux-s390x-gnu" "4.18.0"
|
||||||
|
"@rollup/rollup-linux-x64-gnu" "4.18.0"
|
||||||
|
"@rollup/rollup-linux-x64-musl" "4.18.0"
|
||||||
|
"@rollup/rollup-win32-arm64-msvc" "4.18.0"
|
||||||
|
"@rollup/rollup-win32-ia32-msvc" "4.18.0"
|
||||||
|
"@rollup/rollup-win32-x64-msvc" "4.18.0"
|
||||||
fsevents "~2.3.2"
|
fsevents "~2.3.2"
|
||||||
|
|
||||||
"search-insights@>= 1 < 3":
|
run-script-os@^1.1.6:
|
||||||
version "2.9.0"
|
version "1.1.6"
|
||||||
resolved "https://registry.npmjs.org/search-insights/-/search-insights-2.9.0.tgz"
|
resolved "https://registry.npmjs.org/run-script-os/-/run-script-os-1.1.6.tgz"
|
||||||
integrity sha512-bkWW9nIHOFkLwjQ1xqVaMbjjO5vhP26ERsH9Y3pKr8imthofEFIxlnOabkmGcw6ksRj9jWidcI65vvjJH/nTGg==
|
integrity sha512-ql6P2LzhBTTDfzKts+Qo4H94VUKpxKDFz6QxxwaUZN0mwvi7L3lpOI7BqPCq7lgDh3XLl0dpeXwfcVIitlrYrw==
|
||||||
|
|
||||||
shiki@^0.14.5:
|
shiki@1.6.1, shiki@^1.5.2:
|
||||||
version "0.14.5"
|
version "1.6.1"
|
||||||
resolved "https://registry.npmjs.org/shiki/-/shiki-0.14.5.tgz"
|
resolved "https://registry.yarnpkg.com/shiki/-/shiki-1.6.1.tgz#902c8dc2a54f6b94e0d0826e1c68e9b8f34f2be7"
|
||||||
integrity sha512-1gCAYOcmCFONmErGTrS1fjzJLA7MGZmKzrBNX7apqSwhyITJg2O102uFzXUeBxNnEkDA9vHIKLyeKq0V083vIw==
|
integrity sha512-1Pu/A1rtsG6HZvQm4W0NExQ45e02og+rPog7PDaFDiMumZgOYnZIu4JtGQeAIfMwdbKSjJQoCUr79vDLKUUxWA==
|
||||||
dependencies:
|
dependencies:
|
||||||
ansi-sequence-parser "^1.1.0"
|
"@shikijs/core" "1.6.1"
|
||||||
jsonc-parser "^3.2.0"
|
|
||||||
vscode-oniguruma "^1.7.0"
|
|
||||||
vscode-textmate "^8.0.0"
|
|
||||||
|
|
||||||
source-map-js@^1.0.2:
|
source-map-js@^1.0.2:
|
||||||
version "1.0.2"
|
version "1.0.2"
|
||||||
resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz"
|
resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz"
|
||||||
integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
|
integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
|
||||||
|
|
||||||
|
source-map-js@^1.2.0:
|
||||||
|
version "1.2.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af"
|
||||||
|
integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==
|
||||||
|
|
||||||
|
speakingurl@^14.0.1:
|
||||||
|
version "14.0.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/speakingurl/-/speakingurl-14.0.1.tgz#f37ec8ddc4ab98e9600c1c9ec324a8c48d772a53"
|
||||||
|
integrity sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==
|
||||||
|
|
||||||
tabbable@^6.2.0:
|
tabbable@^6.2.0:
|
||||||
version "6.2.0"
|
version "6.2.0"
|
||||||
resolved "https://registry.npmjs.org/tabbable/-/tabbable-6.2.0.tgz"
|
resolved "https://registry.npmjs.org/tabbable/-/tabbable-6.2.0.tgz"
|
||||||
integrity sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==
|
integrity sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==
|
||||||
|
|
||||||
vite@^4.4.11:
|
vite@^5.2.11:
|
||||||
version "4.4.11"
|
version "5.2.12"
|
||||||
resolved "https://registry.npmjs.org/vite/-/vite-4.4.11.tgz"
|
resolved "https://registry.yarnpkg.com/vite/-/vite-5.2.12.tgz#3536c93c58ba18edea4915a2ac573e6537409d97"
|
||||||
integrity sha512-ksNZJlkcU9b0lBwAGZGGaZHCMqHsc8OpgtoYhsQ4/I2v5cnpmmmqe5pM4nv/4Hn6G/2GhTdj0DhZh2e+Er1q5A==
|
integrity sha512-/gC8GxzxMK5ntBwb48pR32GGhENnjtY30G4A0jemunsBkiEZFw60s8InGpN8gkhHEkjnRK1aSAxeQgwvFhUHAA==
|
||||||
dependencies:
|
dependencies:
|
||||||
esbuild "^0.18.10"
|
esbuild "^0.20.1"
|
||||||
postcss "^8.4.27"
|
postcss "^8.4.38"
|
||||||
rollup "^3.27.1"
|
rollup "^4.13.0"
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
fsevents "~2.3.2"
|
fsevents "~2.3.3"
|
||||||
|
|
||||||
vitepress@^1.0.0-rc.22:
|
vitepress@^1.2.2:
|
||||||
version "1.0.0-rc.22"
|
version "1.2.2"
|
||||||
resolved "https://registry.npmjs.org/vitepress/-/vitepress-1.0.0-rc.22.tgz"
|
resolved "https://registry.yarnpkg.com/vitepress/-/vitepress-1.2.2.tgz#7680c807ab62ece6edd1cd1ec41f8619860e9ba2"
|
||||||
integrity sha512-n7le5iikCFgWMuX7sKfzDGJGlrsYQ5trG3S97BghNz2alOTr4Xp+GrB6ShwogUTX9gNgeNmrACjokhW55LNeBA==
|
integrity sha512-uZ3nXR5NY4nYj3RJWCo5jev9qlNZAQo5SUXu1U0QSUx84cUm/o7hCTDVjZ4njVSVui+PsV1oAbdQOg8ygbaf4w==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@docsearch/css" "^3.5.2"
|
"@docsearch/css" "^3.6.0"
|
||||||
"@docsearch/js" "^3.5.2"
|
"@docsearch/js" "^3.6.0"
|
||||||
"@types/markdown-it" "^13.0.2"
|
"@shikijs/core" "^1.5.2"
|
||||||
"@vue/devtools-api" "^6.5.1"
|
"@shikijs/transformers" "^1.5.2"
|
||||||
"@vueuse/core" "^10.5.0"
|
"@types/markdown-it" "^14.1.1"
|
||||||
"@vueuse/integrations" "^10.5.0"
|
"@vitejs/plugin-vue" "^5.0.4"
|
||||||
|
"@vue/devtools-api" "^7.2.0"
|
||||||
|
"@vue/shared" "^3.4.27"
|
||||||
|
"@vueuse/core" "^10.9.0"
|
||||||
|
"@vueuse/integrations" "^10.9.0"
|
||||||
focus-trap "^7.5.4"
|
focus-trap "^7.5.4"
|
||||||
mark.js "8.11.1"
|
mark.js "8.11.1"
|
||||||
minisearch "^6.1.0"
|
minisearch "^6.3.0"
|
||||||
shiki "^0.14.5"
|
shiki "^1.5.2"
|
||||||
vite "^4.4.11"
|
vite "^5.2.11"
|
||||||
vue "^3.3.4"
|
vue "^3.4.27"
|
||||||
|
|
||||||
vscode-oniguruma@^1.7.0:
|
vue-demi@>=0.14.7:
|
||||||
version "1.7.0"
|
version "0.14.8"
|
||||||
resolved "https://registry.npmjs.org/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz"
|
resolved "https://registry.yarnpkg.com/vue-demi/-/vue-demi-0.14.8.tgz#00335e9317b45e4a68d3528aaf58e0cec3d5640a"
|
||||||
integrity sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==
|
integrity sha512-Uuqnk9YE9SsWeReYqK2alDI5YzciATE0r2SkA6iMAtuXvNTMNACJLJEXNXaEy94ECuBe4Sk6RzRU80kjdbIo1Q==
|
||||||
|
|
||||||
vscode-textmate@^8.0.0:
|
vue@^3.3.4:
|
||||||
version "8.0.0"
|
|
||||||
resolved "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-8.0.0.tgz"
|
|
||||||
integrity sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==
|
|
||||||
|
|
||||||
vue-demi@>=0.14.6:
|
|
||||||
version "0.14.6"
|
|
||||||
resolved "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.6.tgz"
|
|
||||||
integrity sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==
|
|
||||||
|
|
||||||
"vue@^3.0.0-0 || ^2.6.0", vue@^3.3.4, vue@3.3.4:
|
|
||||||
version "3.3.4"
|
version "3.3.4"
|
||||||
resolved "https://registry.npmjs.org/vue/-/vue-3.3.4.tgz"
|
resolved "https://registry.npmjs.org/vue/-/vue-3.3.4.tgz"
|
||||||
integrity sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==
|
integrity sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==
|
||||||
|
@ -522,3 +904,14 @@ vue-demi@>=0.14.6:
|
||||||
"@vue/runtime-dom" "3.3.4"
|
"@vue/runtime-dom" "3.3.4"
|
||||||
"@vue/server-renderer" "3.3.4"
|
"@vue/server-renderer" "3.3.4"
|
||||||
"@vue/shared" "3.3.4"
|
"@vue/shared" "3.3.4"
|
||||||
|
|
||||||
|
vue@^3.4.27:
|
||||||
|
version "3.4.27"
|
||||||
|
resolved "https://registry.yarnpkg.com/vue/-/vue-3.4.27.tgz#40b7d929d3e53f427f7f5945386234d2854cc2a1"
|
||||||
|
integrity sha512-8s/56uK6r01r1icG/aEOHqyMVxd1bkYcSe9j8HcKtr/xTOFWvnzIVTehNW+5Yt89f+DLBe4A569pnZLS5HzAMA==
|
||||||
|
dependencies:
|
||||||
|
"@vue/compiler-dom" "3.4.27"
|
||||||
|
"@vue/compiler-sfc" "3.4.27"
|
||||||
|
"@vue/runtime-dom" "3.4.27"
|
||||||
|
"@vue/server-renderer" "3.4.27"
|
||||||
|
"@vue/shared" "3.4.27"
|
||||||
|
|
Loading…
Reference in a new issue