mirror of
https://github.com/CaiJimmy/hugo-theme-stack.git
synced 2025-02-06 11:53:31 +08:00
doc: documentation is now in the same repository as the code
Demo site will be generated in subfolder /demo
This commit is contained in:
parent
9b643df3aa
commit
692804498d
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,4 +1,6 @@
|
||||
public
|
||||
resources
|
||||
assets/jsconfig.json
|
||||
.hugo_build.lock
|
||||
.hugo_build.lock
|
||||
node_modules
|
||||
docs/.vitepress/dist
|
160
docs/.vitepress/config.ts
Normal file
160
docs/.vitepress/config.ts
Normal file
@ -0,0 +1,160 @@
|
||||
import { defineConfig } from 'vitepress'
|
||||
|
||||
export default defineConfig({
|
||||
lang: 'en-US',
|
||||
title: 'Stack',
|
||||
description: 'Card-style Hugo theme designed for bloggers',
|
||||
lastUpdated: true,
|
||||
outDir: '../public',
|
||||
|
||||
head: [
|
||||
['link', { rel: 'apple-touch-icon', sizes: '180x180', href: '/apple-touch-icon.png' }],
|
||||
['link', { rel: 'icon', type: 'image/png', sizes: '32x32', href: '/favicon-32x32.png' }],
|
||||
['link', { rel: 'icon', type: 'image/png', sizes: '16x16', href: '/favicon-16x16.png' }],
|
||||
['link', { rel: 'manifest', href: '/site.webmanifest' }],
|
||||
['link', { rel: 'mask-icon', href: '/safari-pinned-tab.svg', color: '#5bbad5' }],
|
||||
['meta', { name: 'msapplication-TileColor', content: '#00aba9' }],
|
||||
['meta', { name: 'theme-color', content: '#ffffff' }],
|
||||
['script', { defer: "true", "data-domain": "stack.jimmycai.com", src: 'https://stat.jimmycai.com/js/include.js' }],
|
||||
],
|
||||
|
||||
markdown: {
|
||||
lineNumbers: true,
|
||||
theme: 'one-dark-pro'
|
||||
},
|
||||
|
||||
cleanUrls: true,
|
||||
|
||||
themeConfig: {
|
||||
logo: '/logo.png',
|
||||
|
||||
footer: {
|
||||
message: "Documentation released under the MIT License, logo designed by Jimmy Cai, all rights reserved.",
|
||||
copyright: "Copyright © 2020 - Present Jimmy Cai",
|
||||
},
|
||||
|
||||
sidebar: {
|
||||
'/guide/': sidebarGuide(),
|
||||
'/config/': sidebarGuide(),
|
||||
'/writing/': sidebarGuide(),
|
||||
},
|
||||
|
||||
nav: [
|
||||
{ text: 'Guide', link: '/guide/' },
|
||||
{ text: 'Config', link: '/config/' },
|
||||
],
|
||||
|
||||
socialLinks: [
|
||||
{ icon: 'github', link: 'https://github.com/CaiJimmy/hugo-theme-stack' }
|
||||
],
|
||||
|
||||
editLink: {
|
||||
pattern: 'https://github.com/CaiJimmy/hugo-theme-stack/edit/master/docs/:path',
|
||||
text: 'Edit this page on GitHub'
|
||||
},
|
||||
|
||||
outline: [2, 3],
|
||||
|
||||
carbonAds: {
|
||||
code: 'CEAIE27W',
|
||||
placement: 'stackjimmycaicom'
|
||||
},
|
||||
|
||||
algolia: {
|
||||
appId: '6OC1XCG4R5',
|
||||
apiKey: '7779946cc768ec3699123e60a91d0ddc',
|
||||
indexName: 'stack-jimmycai',
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
function sidebarGuide() {
|
||||
return [
|
||||
{
|
||||
text: 'Introduction',
|
||||
collapsible: true,
|
||||
items: [
|
||||
{ text: 'About Stack', link: '/guide/' },
|
||||
{ text: 'Getting Started', link: '/guide/getting-started' },
|
||||
{ text: 'Modify Theme', link: '/guide/modify-theme' }
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'Writing',
|
||||
collapsible: true,
|
||||
items: [
|
||||
{ text: 'Markdown', link: '/writing/markdown' },
|
||||
{
|
||||
text: 'Frontmatter Configs', link: '/writing/frontmatter'
|
||||
},
|
||||
{ text: 'Shortcodes', link: '/writing/shortcodes' },
|
||||
]
|
||||
},
|
||||
{
|
||||
text: 'Config',
|
||||
collapsible: true,
|
||||
items: [
|
||||
{
|
||||
text: 'Introduction',
|
||||
link: '/config/'
|
||||
},
|
||||
{
|
||||
text: 'Site Configs',
|
||||
link: '/config/site'
|
||||
},
|
||||
{
|
||||
text: 'i18n Configs',
|
||||
link: '/config/i18n'
|
||||
},
|
||||
{
|
||||
text: 'Custom Menu',
|
||||
link: '/config/menu'
|
||||
},
|
||||
{
|
||||
text: 'Custom Header / Footer',
|
||||
link: '/config/header-footer'
|
||||
},
|
||||
{
|
||||
text: 'Date Format',
|
||||
link: '/config/date-format'
|
||||
},
|
||||
{
|
||||
text: 'Sidebar',
|
||||
link: '/config/sidebar'
|
||||
},
|
||||
{
|
||||
text: 'Footer',
|
||||
link: '/config/footer'
|
||||
},
|
||||
{
|
||||
text: 'Article',
|
||||
link: '/config/article'
|
||||
},
|
||||
{
|
||||
text: 'Comments',
|
||||
link: '/config/comments'
|
||||
},
|
||||
{
|
||||
text: 'Widgets',
|
||||
link: '/config/widgets'
|
||||
},
|
||||
{
|
||||
text: 'Open Graph',
|
||||
link: '/config/open-graph'
|
||||
},
|
||||
{
|
||||
text: 'Default Image',
|
||||
link: '/config/default-image'
|
||||
},
|
||||
{
|
||||
text: 'Color Scheme',
|
||||
link: '/config/color-scheme'
|
||||
},
|
||||
{
|
||||
text: 'Image Processing',
|
||||
link: '/config/image-processing'
|
||||
}
|
||||
]
|
||||
},
|
||||
]
|
||||
}
|
6
docs/.vitepress/theme/custom.css
Normal file
6
docs/.vitepress/theme/custom.css
Normal file
@ -0,0 +1,6 @@
|
||||
:root {
|
||||
--vp-c-brand-1: var(--vp-c-green-1);
|
||||
--vp-c-brand-2: var(--vp-c-green-2);
|
||||
--vp-c-brand-3: var(--vp-c-green-3);
|
||||
--vp-c-brand-soft: var(--vp-c-green-soft);
|
||||
}
|
15
docs/.vitepress/theme/index.ts
Normal file
15
docs/.vitepress/theme/index.ts
Normal file
@ -0,0 +1,15 @@
|
||||
import DefaultTheme from 'vitepress/theme'
|
||||
import './custom.css'
|
||||
|
||||
export default {
|
||||
...DefaultTheme,
|
||||
enhanceApp({ router }) {
|
||||
const oldOnAfterRouteChanged = router.onAfterRouteChanged;
|
||||
|
||||
router.onAfterRouteChanged = () => {
|
||||
oldOnAfterRouteChanged && oldOnAfterRouteChanged();
|
||||
if (typeof _carbonads !== 'undefined')
|
||||
_carbonads.refresh();
|
||||
}
|
||||
}
|
||||
}
|
49
docs/config/article.md
Normal file
49
docs/config/article.md
Normal file
@ -0,0 +1,49 @@
|
||||
# Article
|
||||
|
||||
Configuration for the article page.
|
||||
|
||||
Fields under `[Params.Article]`.
|
||||
|
||||
## math
|
||||
|
||||
- Type: `bool`
|
||||
|
||||
Enable math support by [KaTeX](https://katex.org/). Can be overridden by front matter field `toc`.
|
||||
|
||||
## toc
|
||||
|
||||
- Type: `bool`
|
||||
|
||||
Enable by default table of contents. Can be overridden by front matter field `toc`.
|
||||
|
||||
::: warning
|
||||
You will still need to add [`toc` widget](widgets.md#toc) to the sidebar to display the table of contents.
|
||||
:::
|
||||
|
||||
|
||||
## readingTime
|
||||
|
||||
- Type: `bool`
|
||||
- Default: `true`
|
||||
|
||||
Display an estimated reading time for the article.
|
||||
|
||||
## license
|
||||
|
||||
- Type: `map[string]:(bool|string)`
|
||||
|
||||
Configurations related with license.
|
||||
|
||||
### license.enabled
|
||||
|
||||
- Type: `bool`
|
||||
- Default: `false`
|
||||
|
||||
Display license information under the article.
|
||||
|
||||
### license.default
|
||||
|
||||
- Type: `string`
|
||||
- Default: `Licensed under CC BY-NC-SA 4.0`
|
||||
|
||||
Default license text displayed under the article. Can be overridden by front matter field `license`.
|
22
docs/config/color-scheme.md
Normal file
22
docs/config/color-scheme.md
Normal file
@ -0,0 +1,22 @@
|
||||
# Color Scheme
|
||||
|
||||
Light and dark color schemes are available in this theme.
|
||||
|
||||
|
||||
## toggle
|
||||
|
||||
- Type: `bool`
|
||||
- Default: `true`
|
||||
|
||||
Display the color scheme toggle button.
|
||||
|
||||
If it's set to `false`, the color scheme will be determined by the `default` option.
|
||||
|
||||
## default
|
||||
|
||||
- Type: `string (light|dark|auto)`
|
||||
- Default: `auto`
|
||||
|
||||
The default color scheme, used when the `toggle` option is set to `false` or when the user visits the site for the first time.
|
||||
|
||||
When set to `auto`, the color scheme will be determined by the user's system preference (`prefers-color-scheme` media query).
|
56
docs/config/comments.md
Normal file
56
docs/config/comments.md
Normal file
@ -0,0 +1,56 @@
|
||||
# Comments
|
||||
|
||||
Comment system is a very important part of a blog. It allows readers to express their opinions and thoughts about the post. It also allows the author to interact with the readers.
|
||||
|
||||
Stack currently supports the following comment systems:
|
||||
|
||||
- [Cactus](https://cactus.chat/)
|
||||
- [Cusdis](https://cusdis.com/)
|
||||
- [Disqus](https://disqus.com/)
|
||||
- [DisqusJS](https://github.com/SukkaW/DisqusJS)
|
||||
- [Giscus](https://giscus.app/)
|
||||
- [Gitalk](https://github.com/gitalk/gitalk)
|
||||
- [Remark42](https://remark42.com/)
|
||||
- [Twikoo](https://twikoo.js.org/)
|
||||
- [utterances](https://utteranc.es/)
|
||||
- [Vssue](https://vssue.js.org/)
|
||||
- [Waline](https://waline.js.org/)
|
||||
|
||||
Each comment system has its own configuration options placed under `[Params.Comments.COMMENT_SYSTEM]` section.
|
||||
|
||||
For example, utterances's configuration options are placed under `[Params.Comments.utterances]` section.
|
||||
|
||||
::: tip
|
||||
A full list of supported configuration options can be found in [here](https://github.com/CaiJimmy/hugo-theme-stack/blob/master/config.yaml#L38)
|
||||
|
||||
For more information about the meaning of each configuration option, please refer to the documentation of the comment system.
|
||||
:::
|
||||
|
||||
::: warning
|
||||
In case of Disqus, the only configuration option is `disqusShortname`, which is not available at `[Params.Comments.disqus]` section. Instead, it is placed at root section of configuration file.
|
||||
:::
|
||||
|
||||
## enabled
|
||||
|
||||
- Type: `bool`
|
||||
- Default: `false`
|
||||
|
||||
Enable / disable comment system.
|
||||
|
||||
## provider
|
||||
|
||||
- Type: `string`
|
||||
|
||||
Comment system provider. Possible values are:
|
||||
|
||||
- `cactus`
|
||||
- `cusdis`
|
||||
- `disqus`
|
||||
- `disqusjs`
|
||||
- `giscus`
|
||||
- `gitalk`
|
||||
- `remark42`
|
||||
- `twikoo`
|
||||
- `utterances`
|
||||
- `vssue`
|
||||
- `waline`
|
19
docs/config/date-format.md
Normal file
19
docs/config/date-format.md
Normal file
@ -0,0 +1,19 @@
|
||||
# Date format
|
||||
|
||||
Fields under `[Params.DateFormat]`.
|
||||
|
||||
Date format setting. Notice that Go's date format is slightly different than other programming language, take a look at official documentation: [dateFormat](https://gohugo.io/functions/dateformat/)
|
||||
|
||||
## published
|
||||
|
||||
- Type: `string`
|
||||
- Default: `Jan 02, 2006`
|
||||
|
||||
Page's publish date format.
|
||||
|
||||
## lastUpdated
|
||||
|
||||
- Type: `string`
|
||||
- Default: `Jan 02, 2006 15:04 MST`
|
||||
|
||||
Page's last updated date format
|
29
docs/config/default-image.md
Normal file
29
docs/config/default-image.md
Normal file
@ -0,0 +1,29 @@
|
||||
# Default Image
|
||||
|
||||
The default image is the image that will be used on a page if no featured image is set. This is useful for Open Graph and Twitter cards.
|
||||
|
||||
## opengraph
|
||||
|
||||
The default image for Open Graph and Twitter.
|
||||
|
||||
### opengraph.enabled
|
||||
|
||||
- Type: `bool`
|
||||
- Default: `false`
|
||||
|
||||
Enable the default image for Open Graph and Twitter.
|
||||
|
||||
### opengraph.src
|
||||
|
||||
- Type: `string`
|
||||
|
||||
Path to the image file.
|
||||
|
||||
### opengraph.local
|
||||
|
||||
- Type: `bool`
|
||||
- Default: `false`
|
||||
|
||||
If `true`, the image is a local file, and must be placed under `assets` folder. Otherwise, it is a remote URL.
|
||||
|
||||
For example, if `src` is set to `img/default.jpg`, the image file must be placed under `assets/img/default.jpg`.
|
17
docs/config/footer.md
Normal file
17
docs/config/footer.md
Normal file
@ -0,0 +1,17 @@
|
||||
# Footer
|
||||
|
||||
The footer is the last section of the page. It is usually used to display the copyright information.
|
||||
|
||||
Fields under `[Params.Footer]`.
|
||||
|
||||
## since
|
||||
|
||||
- Type: `int`
|
||||
|
||||
The year when the site is created.
|
||||
|
||||
## customText
|
||||
|
||||
- Type: `string`
|
||||
|
||||
Custom text displayed in the footer. HTML is supported.
|
38
docs/config/header-footer.md
Normal file
38
docs/config/header-footer.md
Normal file
@ -0,0 +1,38 @@
|
||||
# Custom Header / Footer
|
||||
|
||||
There are two empty files reserved for custom HTML in the theme, useful for adding custom scripts or stylesheets:
|
||||
|
||||
* `layouts/partials/head/custom.html`
|
||||
* `layouts/partials/footer/custom.html`
|
||||
|
||||
To overwrite them:
|
||||
|
||||
1. Create `layout/partials/footer/custom.html` under your Hugo site folder
|
||||
2. Insert custom code in that file.
|
||||
|
||||
## Example: Custom font family for article content
|
||||
|
||||
By default, this theme uses [Lato](https://fonts.google.com/specimen/Lato) for article content. This example shows how to use another font instead. For example, let's change article font family to [Merriweather](https://fonts.google.com/specimen/Merriweather).
|
||||
|
||||
Create `layouts/partials/head/custom.html` under your Hugo site folder, with following code:
|
||||
|
||||
```html
|
||||
<style>
|
||||
/// Overwrite CSS variable
|
||||
:root {
|
||||
--article-font-family: "Merriweather", var(--base-font-family);
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
(function () {
|
||||
const customFont = document.createElement('link');
|
||||
customFont.href = "https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap";
|
||||
|
||||
customFont.type = "text/css";
|
||||
customFont.rel = "stylesheet";
|
||||
|
||||
document.head.appendChild(customFont);
|
||||
}());
|
||||
</script>
|
||||
```
|
38
docs/config/i18n.md
Normal file
38
docs/config/i18n.md
Normal file
@ -0,0 +1,38 @@
|
||||
# i18n
|
||||
|
||||
Hugo has built-in support for multilingual sites. You can find more information about it in the [official documentation](https://gohugo.io/content-management/multilingual/).
|
||||
|
||||
Translation files are placed in the `i18n` directory. The file name is the language code. For example, the `en.yaml` file is the translation file for English.
|
||||
|
||||
In order to use a language, set `DefaultContentLanguage` to the language code in the configuration file. For example, if you want to use English, set `DefaultContentLanguage` to `en`.
|
||||
|
||||
Currently, the theme supports the following languages:
|
||||
|
||||
* `ar`: Arabic
|
||||
* `bn`: Bengali
|
||||
* `ca`: Catalan
|
||||
* `de`: German
|
||||
* `el`: Greek
|
||||
* `en`: English
|
||||
* `es`: Spanish
|
||||
* `fa`: Persian
|
||||
* `fr`: French
|
||||
* `hu`: Hungarian
|
||||
* `id`: Indonesian
|
||||
* `it`: Italian
|
||||
* `ja`: Japanese
|
||||
* `ko`: Korean
|
||||
* `nl`: Dutch
|
||||
* `pl`: Polish
|
||||
* `pt-br`: Portuguese
|
||||
* `ru`: Russian
|
||||
* `th`: Thai
|
||||
* `tr`: Turkish
|
||||
* `uk`: Ukrainian
|
||||
* `zh-cn`: Chinese (Simplified)
|
||||
* `zh-hk`: Chinese (Traditional) (Hong Kong)
|
||||
* `zh-tw`: Chinese (Traditional) (Taiwan)
|
||||
|
||||
::: tip
|
||||
PRs for more language support are welcome 😉.
|
||||
:::
|
27
docs/config/image-processing.md
Normal file
27
docs/config/image-processing.md
Normal file
@ -0,0 +1,27 @@
|
||||
# Image Processing
|
||||
|
||||
This theme uses Hugo's built-in image processing features to resize and optimize local images (included using page bundle feature). This is done automatically when you build your site.
|
||||
|
||||
When there are many images in your site, this can slow down the build process. You can choose to disable this feature here.
|
||||
|
||||
## cover
|
||||
|
||||
- Type: `map[string]bool`
|
||||
|
||||
### cover.enabled
|
||||
|
||||
- Type: `bool`
|
||||
- Default: `true`
|
||||
|
||||
Enable image processing for cover (featured) images.
|
||||
|
||||
## content
|
||||
|
||||
- Type: `map[string]bool`
|
||||
|
||||
### content.enabled
|
||||
|
||||
- Type: `bool`
|
||||
- Default: `true`
|
||||
|
||||
Enable image processing for images in content.
|
13
docs/config/index.md
Normal file
13
docs/config/index.md
Normal file
@ -0,0 +1,13 @@
|
||||
# Introduction
|
||||
|
||||
Hugo acepts `TOML`, `YAML` and `JSON` as configuration formats. This theme currently uses `YAML` and `TOML` as configuration formats.
|
||||
|
||||
::: info
|
||||
In the foreseeable future, this theme will migrate all its configurations to `TOML` format.
|
||||
:::
|
||||
|
||||
If you are using `hugo-theme-stack-starter` template, you can find the configuration file under `config/_default/` folder, separated in different major sections to make it easier to find the configuration you want to modify.
|
||||
|
||||
A full list of available configurations can be found in `config.yaml` file located in the root directory of this theme. (If it is not there, please send an issue to let me know.)
|
||||
|
||||
There are plenty tools that converts `YAML` to `TOML` and vice versa. You can use them to convert the configuration file to the format you prefer.
|
67
docs/config/menu.md
Normal file
67
docs/config/menu.md
Normal file
@ -0,0 +1,67 @@
|
||||
# Custom Menu
|
||||
|
||||
There are two menus in the theme: the main menu (`menu.main`) and the social menu (`menu.social`, icon only). They can be configured in a similar way.
|
||||
|
||||
## First Method (Recommended)
|
||||
If the menu item you'd like to add is a page, add `menu` field to its Front Matter:
|
||||
|
||||
```yaml
|
||||
menu:
|
||||
main:
|
||||
name: title (optional)
|
||||
weight: -90
|
||||
params:
|
||||
icon: icon-name
|
||||
```
|
||||
|
||||
## Second Method
|
||||
|
||||
::: warning
|
||||
This method is not recommended, because the theme can not detect if the current page is in the menu, and the menu item will not be highlighted.
|
||||
:::
|
||||
|
||||
If the menu item you'd like to add is not a page, you can add it to the menu section in the config file:
|
||||
|
||||
Example in TOML:
|
||||
|
||||
```toml
|
||||
[menu]
|
||||
[[menu.main]]
|
||||
name = "Home"
|
||||
url = "/"
|
||||
weight = 10
|
||||
identifier = "home"
|
||||
[menu.main.params]
|
||||
icon = "home"
|
||||
newTab = true
|
||||
```
|
||||
|
||||
Or in YAML:
|
||||
|
||||
```yaml
|
||||
menu:
|
||||
main:
|
||||
- identifier: home
|
||||
name: Home
|
||||
url: /
|
||||
weight: -100
|
||||
params:
|
||||
icon: home
|
||||
newTab: true
|
||||
```
|
||||
|
||||
* `identifier`: Item ID
|
||||
* `name`: Display text
|
||||
* `url`: Link
|
||||
* `weight`: Priority of the item, lower value means higher priority.
|
||||
* `params`:
|
||||
* `icon`: Specify which SVG icon should be used
|
||||
* `newTab`: Open this link in new tab
|
||||
|
||||
If `params.icon` is set to `archive`, theme will look for `archive.svg` under `assets/icons` folder.
|
||||
|
||||
## Add custom icon
|
||||
|
||||
This theme comes with some SVG icons from [Tabler Icons](https://tablericons.com). You can find them under theme folder `assets/icons`.
|
||||
|
||||
To include more icons, just download them from website above, and place them under `assets/icons` folder of your Hugo site.
|
26
docs/config/open-graph.md
Normal file
26
docs/config/open-graph.md
Normal file
@ -0,0 +1,26 @@
|
||||
# Open Graph
|
||||
|
||||
The Open Graph protocol enables any web page to become a rich object in a social graph.
|
||||
|
||||
For more information, see [Open Graph protocol](http://ogp.me/).
|
||||
|
||||
Fields are under `[Params.opengraph]` section.
|
||||
|
||||
## twitter
|
||||
|
||||
- type: `map[string]string`
|
||||
|
||||
Available fields:
|
||||
|
||||
### site
|
||||
|
||||
- type: `string`
|
||||
|
||||
The Twitter account name of the site (without `@`).
|
||||
|
||||
### card
|
||||
|
||||
- type: `string`
|
||||
|
||||
[Twitter card type](https://developer.twitter.com/en/docs/twitter-for-websites/cards/overview/abouts-cards). Available values: `summary`, `summary_large_image`.
|
||||
|
51
docs/config/sidebar.md
Normal file
51
docs/config/sidebar.md
Normal file
@ -0,0 +1,51 @@
|
||||
# Sidebar
|
||||
|
||||
Settings related with left-side sidebar.
|
||||
|
||||
Fields are under `[Params.Sidebar]` section.
|
||||
|
||||
## compact
|
||||
|
||||
- Type: `bool`
|
||||
- Default: `false`
|
||||
|
||||
Enable compact version of sidebar.
|
||||
|
||||
## emoji
|
||||
|
||||
- Type: `string`
|
||||
|
||||
Emoji displayed above the avatar.
|
||||
|
||||
## subtitle
|
||||
|
||||
- Type: `string`
|
||||
|
||||
Subtitle displayed below the site title.
|
||||
|
||||
## avatar
|
||||
|
||||
- Type: `map[string]:(bool|string)`
|
||||
|
||||
Configurations related with avatar.
|
||||
|
||||
### avatar.enable
|
||||
|
||||
- Type: `bool`
|
||||
- Default: `true`
|
||||
|
||||
Enable avatar.
|
||||
|
||||
### avatar.src
|
||||
|
||||
- Type: `string`
|
||||
- Default: `img/avatar.png`
|
||||
|
||||
Path to avatar image.
|
||||
|
||||
### avatar.local
|
||||
|
||||
- Type: `bool`
|
||||
- Default: `true`
|
||||
|
||||
If `true`, the avatar image should be placed at `assets/${avatar.src}`, this allows theme to automatically resize the image.
|
40
docs/config/site.md
Normal file
40
docs/config/site.md
Normal file
@ -0,0 +1,40 @@
|
||||
# Site-wide settings
|
||||
|
||||
Fields under `[Params]`:
|
||||
|
||||
## description
|
||||
|
||||
- Type: `string`
|
||||
|
||||
Site description. By default, it falls back to `.Params.Sidebar.Subtitle`.
|
||||
|
||||
## mainSections
|
||||
|
||||
- Type: `[string]`
|
||||
- Default: `["post"]`
|
||||
|
||||
Pages places under this/those sections will be shown on homepage and archive page.
|
||||
|
||||
For more information, take a look at Hugo's documentation on [Content Sections](https://gohugo.io/content-management/sections/).
|
||||
|
||||
## featuredImageField
|
||||
|
||||
- Type: `string`
|
||||
- Default: `image`
|
||||
|
||||
Front Matter **field** used to get the featured image of a page.
|
||||
|
||||
## rssFullContent
|
||||
|
||||
- Type: `bool`
|
||||
- Default: `true`
|
||||
|
||||
Output page's full content in RSS.
|
||||
|
||||
## favicon
|
||||
|
||||
- Type: `string`
|
||||
|
||||
Site favicon path.
|
||||
|
||||
For example, if you want to use the favicon in `static/favicon.ico`, set `favicon` to `/favicon.ico`.
|
46
docs/config/widgets.md
Normal file
46
docs/config/widgets.md
Normal file
@ -0,0 +1,46 @@
|
||||
# Widgets
|
||||
|
||||
Widgets are placed at right sidebar of the blog. They are used to display some information such as categories, tags, etc.
|
||||
|
||||
You can configure which widgets to display and their order in the homepage and post page.
|
||||
|
||||
`widget.homepage` and `widget.page` are arrays of maps. Each map contains two keys: `type` and `params`. `type` is the name of the widget. `params` is the configuration of the widget.
|
||||
|
||||
## Available widgets
|
||||
|
||||
### archives
|
||||
|
||||
Display a list of years with the number of posts published in each year.
|
||||
|
||||
You need to create a page with `layout: archives` previously.
|
||||
|
||||
#### Paramters
|
||||
|
||||
- `limit`: Number of years to display. Default: `10`.
|
||||
|
||||
### search
|
||||
|
||||
Display a search box.
|
||||
|
||||
You need to create a page with `layout: search` previously.
|
||||
|
||||
### categories
|
||||
|
||||
Display a list of categories available in the blog.
|
||||
|
||||
#### Parameters
|
||||
|
||||
- `limit`: number of categories to display. Default: 10
|
||||
|
||||
### toc
|
||||
|
||||
Display a table of contents of the page.
|
||||
|
||||
### tag-cloud
|
||||
|
||||
Display a tag cloud.
|
||||
|
||||
#### Parameters
|
||||
|
||||
- `limit`: number of tags to display. Default: 10
|
||||
|
1
docs/guide/configuration.md
Normal file
1
docs/guide/configuration.md
Normal file
@ -0,0 +1 @@
|
||||
## Configuration
|
92
docs/guide/getting-started.md
Normal file
92
docs/guide/getting-started.md
Normal file
@ -0,0 +1,92 @@
|
||||
# Getting Started
|
||||
|
||||
::: tip
|
||||
Try this quickstart template to get started with Stack and Hugo in a few minutes:
|
||||
https://github.com/CaiJimmy/hugo-theme-stack-starter
|
||||
:::
|
||||
|
||||
## Requirements
|
||||
Before you start, make sure you have installed Hugo **extended version**. For more information, see [Hugo's documentation](https://gohugo.io/getting-started/installing/).
|
||||
|
||||
This theme uses SCSS and TypeScript, that's why Hugo extended version is required. If you are using a non-extended Hugo installation, you will get the following error:
|
||||
|
||||
```
|
||||
Error: Error building site: TOCSS: failed to transform "scss/style.scss" (text/x-scss): this feature is not available in your current Hugo version
|
||||
```
|
||||
|
||||
Once you have installed Hugo, you can check the version by running the following command:
|
||||
|
||||
```bash
|
||||
hugo version
|
||||
```
|
||||
|
||||
Which should output something like this (the version number may be different), notice the `extended` keyword:
|
||||
|
||||
```
|
||||
hugo v0.102.3-b76146b129d7caa52417f8e914fc5b9271bf56fc+extended windows/amd64 BuildDate=2022-09-01T10:16:19Z VendorInfo=gohugoio
|
||||
```
|
||||
|
||||
The minimum required Hugo version can be seen in the [theme's `theme.toml` file](https://github.com/CaiJimmy/hugo-theme-stack/blob/master/theme.toml#L23)
|
||||
|
||||
## Installation
|
||||
|
||||
### Git
|
||||
On the master branch, you can find the theme's latest source code. To use the latest version, you can clone the repository to `themes/hugo-theme-stack` by running the following command in the root directory of your Hugo site:
|
||||
|
||||
```bash
|
||||
git clone https://github.com/CaiJimmy/hugo-theme-stack/ themes/hugo-theme-stack
|
||||
```
|
||||
|
||||
If you are already using Git for your site, you can add the theme as a submodule by running the following command in the root directory of your Hugo site:
|
||||
|
||||
```bash
|
||||
git submodule add https://github.com/CaiJimmy/hugo-theme-stack/ themes/hugo-theme-stack
|
||||
```
|
||||
|
||||
### Hugo module
|
||||
|
||||
::: warning
|
||||
Using this method, there won't be any file under `themes` directory. In order to modify the theme, you will have to copy the file you want to modify to the same directory under `layouts` directory.
|
||||
|
||||
For example, in order to modify the `themes/hugo-theme-stack/layouts/partials/header.html` file, you will have to copy it to `layouts/partials/header.html` and modify it there (copy the code from theme's repository). The same applies to `assets` and `static` directories.
|
||||
:::
|
||||
|
||||
This theme is also available as a [Hugo module](https://gohugo.io/hugo-modules/). Run the following command in the root directory of your Hugo site:
|
||||
|
||||
First turn your site into a Hugo module (in case you haven't done it yet):
|
||||
|
||||
```sh
|
||||
hugo mod init github.com/me/my-new-blog
|
||||
```
|
||||
|
||||
Then import the theme as a dependency adding the following line to the `module` section of your site's configuration file.
|
||||
|
||||
```toml
|
||||
# config.toml
|
||||
[[module.imports]]
|
||||
path = "github.com/CaiJimmy/hugo-theme-stack/v3"
|
||||
```
|
||||
|
||||
```yaml
|
||||
# config.yaml
|
||||
module:
|
||||
imports:
|
||||
- path: github.com/CaiJimmy/hugo-theme-stack/v3
|
||||
```
|
||||
|
||||
This makes Hugo use the latest stable `v3` version of the theme (available in release page, which probably won't coincide with the latest commit in the `master` branch).
|
||||
|
||||
To update the theme to the latest version, run the following command:
|
||||
|
||||
```sh
|
||||
hugo mod get -u github.com/CaiJimmy/hugo-theme-stack/v3
|
||||
hugo mod tidy
|
||||
```
|
||||
|
||||
::: info
|
||||
In the future, if a new major version of the theme is released, you will need to manually update the version number in the `path` field.
|
||||
:::
|
||||
|
||||
### Download manually (not recommended)
|
||||
|
||||
You can also download the theme from the [release page](https://github.com/CaiJimmy/hugo-theme-stack/releases) and extract it to `themes/hugo-theme-stack` directory.
|
54
docs/guide/index.md
Normal file
54
docs/guide/index.md
Normal file
@ -0,0 +1,54 @@
|
||||
# Welcome
|
||||
|
||||
Stack is a simple card-style Hugo theme designed for Bloggers. Here are some of the features:
|
||||
|
||||
* Responsive images support
|
||||
* Lazy load images
|
||||
* Dark mode
|
||||
* Local search
|
||||
* [PhotoSwipe](https://photoswipe.com/) integration
|
||||
* Archive page template
|
||||
* Full native JavaScript, no jQuery or any other frameworks are used
|
||||
* No CSS framework, keep it simple and minimal
|
||||
* Properly cropped thumbnails
|
||||
* Subsection support
|
||||
* Table of contents
|
||||
|
||||
## Copyright
|
||||
|
||||
**Licensed under the GNU General Public License v3.0**
|
||||
|
||||
Please do not remove the "*Theme Stack designed by Jimmy*" text and link.
|
||||
|
||||
If you want to port this theme to another blogging platform, please let me know🙏.
|
||||
|
||||
## Sponsoring
|
||||
|
||||
If you like this theme, give it a star, and consider supporting its development:
|
||||
|
||||
<iframe src="https://github.com/sponsors/CaiJimmy/button" title="Sponsor CaiJimmy" height="35" width="116" style="border: 0;"></iframe>
|
||||
|
||||
<a href='https://ko-fi.com/C0C530AXX' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://cdn.ko-fi.com/cdn/kofi2.png?v=3' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>
|
||||
|
||||
Your support is greatly appreciated :)
|
||||
|
||||
## Thanks to
|
||||
|
||||
| Project | Licence |
|
||||
| ---------------------------------------------------------------- | ---------------------------------------------------------------------------- |
|
||||
| [PhotoSwipe](https://photoswipe.com/) | [MIT](https://github.com/dimsemenov/PhotoSwipe/blob/master/LICENSE) |
|
||||
| [Normalize.css](https://github.com/necolas/normalize.css) | [MIT](https://github.com/necolas/normalize.css/blob/master/LICENSE.md) |
|
||||
| [Node Vibrant](https://github.com/Vibrant-Colors/node-vibrant) | [MIT](https://github.com/Vibrant-Colors/node-vibrant/blob/master/LICENSE.md) |
|
||||
| [Tabler icons](https://github.com/tabler/tabler-icons) | [MIT](https://github.com/tabler/tabler-icons/blob/master/LICENSE) |
|
||||
| [jonsuh/hamburgers](https://github.com/jonsuh/hamburgers) | [MIT](https://github.com/jonsuh/hamburgers/blob/master/LICENSE) |
|
||||
| [lepture/yue.css](https://github.com/lepture/yue.css) | MIT |
|
||||
| [Typlog](https://typlog.com/) | The author gave me the permission |
|
||||
| [xieranmaya/blog#6](https://github.com/xieranmaya/blog/issues/6) | - |
|
||||
|
||||
### References
|
||||
Some references that I took while building this theme:
|
||||
|
||||
| Project | Licence |
|
||||
| --------------------------------------------------------------------------- | ------------------------------------------------------------------------ |
|
||||
| [artchen/hexo-theme-element](https://github.com/artchen/hexo-theme-element) | [MIT](https://github.com/artchen/hexo-theme-element/blob/master/LICENSE) |
|
||||
| [MunifTanjim/minimo](https://github.com/MunifTanjim/minimo) | [MIT](https://github.com/MunifTanjim/minimo/blob/master/LICENSE) |
|
22
docs/guide/modify-theme.md
Normal file
22
docs/guide/modify-theme.md
Normal file
@ -0,0 +1,22 @@
|
||||
# Modify theme
|
||||
|
||||
Depending on how you installed the theme, it might be harder or easier to modify it.
|
||||
|
||||
## Hugo module
|
||||
|
||||
Using this method, there won't be any file under `themes` directory. In order to modify the theme, you will have to copy the file you want to modify to the same directory under `layouts` directory.
|
||||
|
||||
For example, in order to modify the `themes/hugo-theme-stack/layouts/partials/head/custom.html` file, you will have to copy it to `layouts/partials/head/custom.html` and modify it there (copy the code from theme's repository).
|
||||
The same applies to `assets` and `static` directories.
|
||||
|
||||
## Git submodule
|
||||
|
||||
::: tip
|
||||
The method described above for Hugo module works here too. In fact it's the recommended way for small changes.
|
||||
:::
|
||||
|
||||
If you installed the theme through Git / Git submodule, you can modify the theme file directly and see the changes in your local site.
|
||||
|
||||
However, **you can not commit and push the changes directly** since you don't have the permission to push to the theme repository.
|
||||
|
||||
You need to **fork** the theme repository and push your changes to your forked repository (change submodule's repository url). Then, you can commit those changes to your site repository.
|
37
docs/index.md
Normal file
37
docs/index.md
Normal file
@ -0,0 +1,37 @@
|
||||
---
|
||||
layout: home
|
||||
|
||||
title: Stack
|
||||
titleTemplate: Card-style Hugo theme designed for bloggers
|
||||
|
||||
hero:
|
||||
name: Stack
|
||||
text: Card-style theme designed for bloggers
|
||||
image:
|
||||
src: /logo.png
|
||||
alt: Stack
|
||||
actions:
|
||||
- theme: brand
|
||||
text: Get Started
|
||||
link: /guide/getting-started
|
||||
- theme: alt
|
||||
text: View Demo
|
||||
link: /demo
|
||||
- theme: alt
|
||||
text: View on GitHub
|
||||
link: https://github.com/CaiJimmy/hugo-theme-stack
|
||||
|
||||
features:
|
||||
- title: No CSS and JavaScript framework
|
||||
details: Keep your site lightweight and fast. All the styles are written in SCSS and the scripts are written in vanilla JavaScript.
|
||||
icon: ⚡️
|
||||
- title: Dark mode
|
||||
details: Dark mode is supported by default. It will be automatically enabled when the system is in dark mode.
|
||||
icon: 🌙
|
||||
- title: Multilingual mode and RTL support
|
||||
details: Support for multiple languages and right-to-left languages out of the box. No need to worry about i18n.
|
||||
icon: 🌐
|
||||
- title: A set of useful features
|
||||
details: Table of contents, local search, code highlighting, image zooming, and more.
|
||||
icon: 🧰
|
||||
---
|
73
docs/writing/frontmatter.md
Normal file
73
docs/writing/frontmatter.md
Normal file
@ -0,0 +1,73 @@
|
||||
# Frontmatter Configs
|
||||
|
||||
[[toc]]
|
||||
|
||||
## description
|
||||
|
||||
* Type: `string`
|
||||
* Available in: single pages and list pages
|
||||
|
||||
Description of the page.
|
||||
|
||||
## image
|
||||
|
||||
* Type: `string`
|
||||
* Available in: single pages and list pages
|
||||
|
||||
Featured image of the page.
|
||||
|
||||
## comments
|
||||
|
||||
* Type: `bool`
|
||||
* Available in: single pages
|
||||
|
||||
Show / hide comment section of the page.
|
||||
|
||||
## license
|
||||
|
||||
* Type: `string|bool`
|
||||
* Available in: single pages
|
||||
* Default: `.Site.Params.Article.License.Default`
|
||||
|
||||
License of the page. If it's set to `false`, the license section will be hidden.
|
||||
|
||||
## math
|
||||
|
||||
* Type: `bool`
|
||||
* Available in: single pages
|
||||
|
||||
Enable / disable KaTeX rendering.
|
||||
|
||||
## toc
|
||||
|
||||
* Type: `bool`
|
||||
* Available in: single pages
|
||||
* Default: `.Site.Params.Article.toc`
|
||||
|
||||
Show / hide table of contents of the page.
|
||||
|
||||
::: info
|
||||
TOC will be shown only if the page has at least one heading.
|
||||
:::
|
||||
|
||||
## style
|
||||
|
||||
* Type: `map[string]string`
|
||||
* Available in: list pages
|
||||
|
||||
Additional CSS styles for taxonomy term badge that appears in article page.
|
||||
|
||||
Currently only `background` (background of the badge) and `color` (text color) are supported.
|
||||
|
||||
## keywords
|
||||
|
||||
* Type: `[]string`
|
||||
|
||||
Keywords of the page. Useful for SEO.
|
||||
|
||||
## readingTime
|
||||
|
||||
* Type: `bool`
|
||||
* Default: `.Site.Params.Article.ReadingTime`
|
||||
|
||||
Show / hide reading time of the page.
|
52
docs/writing/markdown.md
Normal file
52
docs/writing/markdown.md
Normal file
@ -0,0 +1,52 @@
|
||||
# Writing
|
||||
|
||||
Stack uses Hugo's **page bundles** to organize your content. A page bundle is a directory that contains a content file and any related resources. For example, a page bundle for a blog post might look like this:
|
||||
|
||||
```
|
||||
content
|
||||
└── post
|
||||
└── my-first-post
|
||||
├── index.md
|
||||
├── image1.png
|
||||
└── image2.png
|
||||
```
|
||||
|
||||
This is the recommended way to organize your content. You can read more about page bundles in [Hugo's documentation](https://gohugo.io/content-management/page-bundles/).
|
||||
|
||||
::: warning
|
||||
Inserting external images is supported, but **it is not recommended**.
|
||||
|
||||
Features like image gallery and image zooming will not work with external images. Those feature needs to know the image's dimensions, which is not possible with external images.
|
||||
:::
|
||||
|
||||
With above organization, you can insert images in your content like this:
|
||||
|
||||
```markdown
|
||||
--- content/post/my-first-post/index.md ---
|
||||
![Image 1](image1.png)
|
||||
![Image 2](image2.png)
|
||||
```
|
||||
|
||||
## Insert image gallery
|
||||
|
||||
To insert an image gallery, you need to create a page bundle for the gallery. For example:
|
||||
|
||||
```
|
||||
content
|
||||
└── gallery
|
||||
└── my-first-gallery
|
||||
├── index.md
|
||||
├── image1.png
|
||||
├── image2.png
|
||||
└── image3.png
|
||||
```
|
||||
|
||||
Then, you can insert the gallery in your content like this:
|
||||
|
||||
```markdown
|
||||
--- content/gallery/my-first-gallery/index.md ---
|
||||
![Image 1](image1.png) ![Image 2](image2.png)
|
||||
![Image 3](image3.png)
|
||||
```
|
||||
|
||||
Which will render in two rows, with two images in the first row and one image in the second row.
|
69
docs/writing/shortcodes.md
Normal file
69
docs/writing/shortcodes.md
Normal file
@ -0,0 +1,69 @@
|
||||
# Shortcodes
|
||||
|
||||
Stack comes with a set of [shortcodes](https://gohugo.io/content-management/shortcodes/) that you can use in your content.
|
||||
|
||||
This page only includes the shortcodes that are specific to Stack. Hugo's built-in shortcodes are documented [here](https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes).
|
||||
|
||||
## Bilibili video
|
||||
|
||||
Embed a [Bilibili](https://www.bilibili.com/) video.
|
||||
|
||||
```markdown
|
||||
{{< bilibili VIDEO_ID PART_NUMBER >}}
|
||||
```
|
||||
|
||||
The `Video_ID` can be found in the URL of the video. For example, the video ID of `https://www.bilibili.com/video/av12345678` is `av12345678`. Both `AV` and `BV` are supported.
|
||||
|
||||
The `PART_NUMBER` is optional. It can be used to specify the part of the video to play. For example, the part number of `https://www.bilibili.com/video/av12345678?p=2` is `2`.
|
||||
|
||||
## Tencent video
|
||||
|
||||
Embed a [Tencent Video](https://v.qq.com/) video.
|
||||
|
||||
```markdown
|
||||
{{< tencent VIDEO_ID >}}
|
||||
```
|
||||
|
||||
The `Video_ID` can be found in the URL of the video. For example, the video ID of `https://v.qq.com/x/cover/hzgtnf6tbvfekfv/g0014r3khdw.html` is `g0014r3khdw`.
|
||||
|
||||
## YouTube video
|
||||
|
||||
Embed a [YouTube](https://www.youtube.com/) video.
|
||||
|
||||
```markdown
|
||||
{{< youtube VIDEO_ID >}}
|
||||
```
|
||||
|
||||
The `Video_ID` can be found in the URL of the video. For example, the video ID of `https://www.youtube.com/watch?v=VIDEO_ID` is `VIDEO_ID`.
|
||||
|
||||
## Generic video file
|
||||
|
||||
Embed a video file.
|
||||
|
||||
```markdown
|
||||
{{< video VIDEO_URL >}}
|
||||
|
||||
{{< video src="VIDEO_URL" autoplay="true" poster="./video-poster.png" >}}
|
||||
```
|
||||
|
||||
The `VIDEO_URL` can be a URL or a path relative to the `static` directory. For example, `src="/video/my-video.mp4"` will embed the video file `static/video/my-video.mp4` of your site folder.
|
||||
|
||||
The `autoplay` attribute is optional. It can be used to specify whether the video should be played automatically. The `poster` attribute is optional. It can be used to specify the poster image of the video.
|
||||
|
||||
## GitLab
|
||||
|
||||
Embed a [GitLab](https://gitlab.com/) snippets.
|
||||
|
||||
```markdown
|
||||
{{< gitlab SNIPPET_ID >}}
|
||||
```
|
||||
|
||||
The `SNIPPET_ID` can be found in the URL of the snippet. For example, the snippet ID of `https://gitlab.com/-/snippets/1234567` is `1234567`.
|
||||
|
||||
## Quote
|
||||
|
||||
```markdown
|
||||
{{< quote author="A famous person" source="The book they wrote" url="https://en.wikipedia.org/wiki/Book">}}
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
|
||||
{{< /quote >}}
|
||||
```
|
@ -1,4 +1,4 @@
|
||||
baseurl: https://demo.stack.jimmycai.com
|
||||
baseurl: https://stack.jimmycai.com/demo/
|
||||
languageCode: en-us
|
||||
paginate: 5
|
||||
|
||||
@ -17,3 +17,5 @@ disqusShortname: hugo-theme-stack
|
||||
|
||||
# GA Tracking ID
|
||||
googleAnalytics: ""
|
||||
|
||||
publishDir: ../public/demo
|
26
netlify.toml
26
netlify.toml
@ -1,26 +0,0 @@
|
||||
[build]
|
||||
publish = "exampleSite/public"
|
||||
|
||||
[build.environment]
|
||||
HUGO_VERSION = "0.117.0"
|
||||
HUGO_THEME = "repo"
|
||||
|
||||
[context.production]
|
||||
command = "cd exampleSite && hugo --gc --themesDir ../.. -b ${URL}"
|
||||
[context.production.environment]
|
||||
HUGO_ENV = "production"
|
||||
|
||||
[context.branch-deploy]
|
||||
command = "cd exampleSite && hugo --gc --themesDir ../.. -b ${DEPLOY_PRIME_URL}"
|
||||
|
||||
[context.deploy-preview]
|
||||
command = "cd exampleSite && hugo --gc --themesDir ../.. -b ${DEPLOY_PRIME_URL}"
|
||||
|
||||
[[plugins]]
|
||||
package = "netlify-plugin-hugo-cache-resources"
|
||||
|
||||
[plugins.inputs]
|
||||
# If it should show more verbose logs (optional, default = true)
|
||||
debug = true
|
||||
# Relative path to source directory in case you use Hugo's "--s" option
|
||||
srcdir = "exampleSite"
|
27
package.json
Normal file
27
package.json
Normal file
@ -0,0 +1,27 @@
|
||||
{
|
||||
"name": "hugo-theme-stack",
|
||||
"version": "1.0.0",
|
||||
"description": "Card-style Hugo theme designed for bloggers",
|
||||
"scripts": {
|
||||
"hugo:dev": "cd exampleSite && hugo server --gc --themesDir=../..",
|
||||
"hugo:build": "cd exampleSite && hugo --gc --themesDir=../..",
|
||||
"docs:dev": "vitepress dev docs",
|
||||
"docs:build": "vitepress build docs",
|
||||
"docs:serve": "vitepress serve docs"
|
||||
},
|
||||
"type": "module",
|
||||
"keywords": [],
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"vitepress": "1.0.0-rc.12",
|
||||
"vue": "^3.3.4"
|
||||
},
|
||||
"pnpm": {
|
||||
"peerDependencyRules": {
|
||||
"ignoreMissing": [
|
||||
"@algolia/client-search"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
853
pnpm-lock.yaml
generated
Normal file
853
pnpm-lock.yaml
generated
Normal file
@ -0,0 +1,853 @@
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
settings:
|
||||
autoInstallPeers: true
|
||||
excludeLinksFromLockfile: false
|
||||
|
||||
devDependencies:
|
||||
vitepress:
|
||||
specifier: 1.0.0-rc.12
|
||||
version: 1.0.0-rc.12(search-insights@2.8.2)
|
||||
vue:
|
||||
specifier: ^3.3.4
|
||||
version: 3.3.4
|
||||
|
||||
packages:
|
||||
|
||||
/@algolia/autocomplete-core@1.9.3(algoliasearch@4.19.1)(search-insights@2.8.2):
|
||||
resolution: {integrity: sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==}
|
||||
dependencies:
|
||||
'@algolia/autocomplete-plugin-algolia-insights': 1.9.3(algoliasearch@4.19.1)(search-insights@2.8.2)
|
||||
'@algolia/autocomplete-shared': 1.9.3(algoliasearch@4.19.1)
|
||||
transitivePeerDependencies:
|
||||
- '@algolia/client-search'
|
||||
- algoliasearch
|
||||
- search-insights
|
||||
dev: true
|
||||
|
||||
/@algolia/autocomplete-plugin-algolia-insights@1.9.3(algoliasearch@4.19.1)(search-insights@2.8.2):
|
||||
resolution: {integrity: sha512-a/yTUkcO/Vyy+JffmAnTWbr4/90cLzw+CC3bRbhnULr/EM0fGNvM13oQQ14f2moLMcVDyAx/leczLlAOovhSZg==}
|
||||
peerDependencies:
|
||||
search-insights: '>= 1 < 3'
|
||||
dependencies:
|
||||
'@algolia/autocomplete-shared': 1.9.3(algoliasearch@4.19.1)
|
||||
search-insights: 2.8.2
|
||||
transitivePeerDependencies:
|
||||
- '@algolia/client-search'
|
||||
- algoliasearch
|
||||
dev: true
|
||||
|
||||
/@algolia/autocomplete-preset-algolia@1.9.3(algoliasearch@4.19.1):
|
||||
resolution: {integrity: sha512-d4qlt6YmrLMYy95n5TB52wtNDr6EgAIPH81dvvvW8UmuWRgxEtY0NJiPwl/h95JtG2vmRM804M0DSwMCNZlzRA==}
|
||||
peerDependencies:
|
||||
'@algolia/client-search': '>= 4.9.1 < 6'
|
||||
algoliasearch: '>= 4.9.1 < 6'
|
||||
peerDependenciesMeta:
|
||||
'@algolia/client-search':
|
||||
optional: true
|
||||
dependencies:
|
||||
'@algolia/autocomplete-shared': 1.9.3(algoliasearch@4.19.1)
|
||||
algoliasearch: 4.19.1
|
||||
dev: true
|
||||
|
||||
/@algolia/autocomplete-shared@1.9.3(algoliasearch@4.19.1):
|
||||
resolution: {integrity: sha512-Wnm9E4Ye6Rl6sTTqjoymD+l8DjSTHsHboVRYrKgEt8Q7UHm9nYbqhN/i0fhUYA3OAEH7WA8x3jfpnmJm3rKvaQ==}
|
||||
peerDependencies:
|
||||
'@algolia/client-search': '>= 4.9.1 < 6'
|
||||
algoliasearch: '>= 4.9.1 < 6'
|
||||
peerDependenciesMeta:
|
||||
'@algolia/client-search':
|
||||
optional: true
|
||||
dependencies:
|
||||
algoliasearch: 4.19.1
|
||||
dev: true
|
||||
|
||||
/@algolia/cache-browser-local-storage@4.19.1:
|
||||
resolution: {integrity: sha512-FYAZWcGsFTTaSAwj9Std8UML3Bu8dyWDncM7Ls8g+58UOe4XYdlgzXWbrIgjaguP63pCCbMoExKr61B+ztK3tw==}
|
||||
dependencies:
|
||||
'@algolia/cache-common': 4.19.1
|
||||
dev: true
|
||||
|
||||
/@algolia/cache-common@4.19.1:
|
||||
resolution: {integrity: sha512-XGghi3l0qA38HiqdoUY+wvGyBsGvKZ6U3vTiMBT4hArhP3fOGLXpIINgMiiGjTe4FVlTa5a/7Zf2bwlIHfRqqg==}
|
||||
dev: true
|
||||
|
||||
/@algolia/cache-in-memory@4.19.1:
|
||||
resolution: {integrity: sha512-+PDWL+XALGvIginigzu8oU6eWw+o76Z8zHbBovWYcrtWOEtinbl7a7UTt3x3lthv+wNuFr/YD1Gf+B+A9V8n5w==}
|
||||
dependencies:
|
||||
'@algolia/cache-common': 4.19.1
|
||||
dev: true
|
||||
|
||||
/@algolia/client-account@4.19.1:
|
||||
resolution: {integrity: sha512-Oy0ritA2k7AMxQ2JwNpfaEcgXEDgeyKu0V7E7xt/ZJRdXfEpZcwp9TOg4TJHC7Ia62gIeT2Y/ynzsxccPw92GA==}
|
||||
dependencies:
|
||||
'@algolia/client-common': 4.19.1
|
||||
'@algolia/client-search': 4.19.1
|
||||
'@algolia/transporter': 4.19.1
|
||||
dev: true
|
||||
|
||||
/@algolia/client-analytics@4.19.1:
|
||||
resolution: {integrity: sha512-5QCq2zmgdZLIQhHqwl55ZvKVpLM3DNWjFI4T+bHr3rGu23ew2bLO4YtyxaZeChmDb85jUdPDouDlCumGfk6wOg==}
|
||||
dependencies:
|
||||
'@algolia/client-common': 4.19.1
|
||||
'@algolia/client-search': 4.19.1
|
||||
'@algolia/requester-common': 4.19.1
|
||||
'@algolia/transporter': 4.19.1
|
||||
dev: true
|
||||
|
||||
/@algolia/client-common@4.19.1:
|
||||
resolution: {integrity: sha512-3kAIVqTcPrjfS389KQvKzliC559x+BDRxtWamVJt8IVp7LGnjq+aVAXg4Xogkur1MUrScTZ59/AaUd5EdpyXgA==}
|
||||
dependencies:
|
||||
'@algolia/requester-common': 4.19.1
|
||||
'@algolia/transporter': 4.19.1
|
||||
dev: true
|
||||
|
||||
/@algolia/client-personalization@4.19.1:
|
||||
resolution: {integrity: sha512-8CWz4/H5FA+krm9HMw2HUQenizC/DxUtsI5oYC0Jxxyce1vsr8cb1aEiSJArQT6IzMynrERif1RVWLac1m36xw==}
|
||||
dependencies:
|
||||
'@algolia/client-common': 4.19.1
|
||||
'@algolia/requester-common': 4.19.1
|
||||
'@algolia/transporter': 4.19.1
|
||||
dev: true
|
||||
|
||||
/@algolia/client-search@4.19.1:
|
||||
resolution: {integrity: sha512-mBecfMFS4N+yK/p0ZbK53vrZbL6OtWMk8YmnOv1i0LXx4pelY8TFhqKoTit3NPVPwoSNN0vdSN9dTu1xr1XOVw==}
|
||||
dependencies:
|
||||
'@algolia/client-common': 4.19.1
|
||||
'@algolia/requester-common': 4.19.1
|
||||
'@algolia/transporter': 4.19.1
|
||||
dev: true
|
||||
|
||||
/@algolia/logger-common@4.19.1:
|
||||
resolution: {integrity: sha512-i6pLPZW/+/YXKis8gpmSiNk1lOmYCmRI6+x6d2Qk1OdfvX051nRVdalRbEcVTpSQX6FQAoyeaui0cUfLYW5Elw==}
|
||||
dev: true
|
||||
|
||||
/@algolia/logger-console@4.19.1:
|
||||
resolution: {integrity: sha512-jj72k9GKb9W0c7TyC3cuZtTr0CngLBLmc8trzZlXdfvQiigpUdvTi1KoWIb2ZMcRBG7Tl8hSb81zEY3zI2RlXg==}
|
||||
dependencies:
|
||||
'@algolia/logger-common': 4.19.1
|
||||
dev: true
|
||||
|
||||
/@algolia/requester-browser-xhr@4.19.1:
|
||||
resolution: {integrity: sha512-09K/+t7lptsweRTueHnSnmPqIxbHMowejAkn9XIcJMLdseS3zl8ObnS5GWea86mu3vy4+8H+ZBKkUN82Zsq/zg==}
|
||||
dependencies:
|
||||
'@algolia/requester-common': 4.19.1
|
||||
dev: true
|
||||
|
||||
/@algolia/requester-common@4.19.1:
|
||||
resolution: {integrity: sha512-BisRkcWVxrDzF1YPhAckmi2CFYK+jdMT60q10d7z3PX+w6fPPukxHRnZwooiTUrzFe50UBmLItGizWHP5bDzVQ==}
|
||||
dev: true
|
||||
|
||||
/@algolia/requester-node-http@4.19.1:
|
||||
resolution: {integrity: sha512-6DK52DHviBHTG2BK/Vv2GIlEw7i+vxm7ypZW0Z7vybGCNDeWzADx+/TmxjkES2h15+FZOqVf/Ja677gePsVItA==}
|
||||
dependencies:
|
||||
'@algolia/requester-common': 4.19.1
|
||||
dev: true
|
||||
|
||||
/@algolia/transporter@4.19.1:
|
||||
resolution: {integrity: sha512-nkpvPWbpuzxo1flEYqNIbGz7xhfhGOKGAZS7tzC+TELgEmi7z99qRyTfNSUlW7LZmB3ACdnqAo+9A9KFBENviQ==}
|
||||
dependencies:
|
||||
'@algolia/cache-common': 4.19.1
|
||||
'@algolia/logger-common': 4.19.1
|
||||
'@algolia/requester-common': 4.19.1
|
||||
dev: true
|
||||
|
||||
/@babel/helper-string-parser@7.22.5:
|
||||
resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
dev: true
|
||||
|
||||
/@babel/helper-validator-identifier@7.22.15:
|
||||
resolution: {integrity: sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
dev: true
|
||||
|
||||
/@babel/parser@7.22.16:
|
||||
resolution: {integrity: sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==}
|
||||
engines: {node: '>=6.0.0'}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
'@babel/types': 7.22.17
|
||||
dev: true
|
||||
|
||||
/@babel/types@7.22.17:
|
||||
resolution: {integrity: sha512-YSQPHLFtQNE5xN9tHuZnzu8vPr61wVTBZdfv1meex1NBosa4iT05k/Jw06ddJugi4bk7The/oSwQGFcksmEJQg==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/helper-string-parser': 7.22.5
|
||||
'@babel/helper-validator-identifier': 7.22.15
|
||||
to-fast-properties: 2.0.0
|
||||
dev: true
|
||||
|
||||
/@docsearch/css@3.5.2:
|
||||
resolution: {integrity: sha512-SPiDHaWKQZpwR2siD0KQUwlStvIAnEyK6tAE2h2Wuoq8ue9skzhlyVQ1ddzOxX6khULnAALDiR/isSF3bnuciA==}
|
||||
dev: true
|
||||
|
||||
/@docsearch/js@3.5.2(search-insights@2.8.2):
|
||||
resolution: {integrity: sha512-p1YFTCDflk8ieHgFJYfmyHBki1D61+U9idwrLh+GQQMrBSP3DLGKpy0XUJtPjAOPltcVbqsTjiPFfH7JImjUNg==}
|
||||
dependencies:
|
||||
'@docsearch/react': 3.5.2(search-insights@2.8.2)
|
||||
preact: 10.17.1
|
||||
transitivePeerDependencies:
|
||||
- '@algolia/client-search'
|
||||
- '@types/react'
|
||||
- react
|
||||
- react-dom
|
||||
- search-insights
|
||||
dev: true
|
||||
|
||||
/@docsearch/react@3.5.2(search-insights@2.8.2):
|
||||
resolution: {integrity: sha512-9Ahcrs5z2jq/DcAvYtvlqEBHImbm4YJI8M9y0x6Tqg598P40HTEkX7hsMcIuThI+hTFxRGZ9hll0Wygm2yEjng==}
|
||||
peerDependencies:
|
||||
'@types/react': '>= 16.8.0 < 19.0.0'
|
||||
react: '>= 16.8.0 < 19.0.0'
|
||||
react-dom: '>= 16.8.0 < 19.0.0'
|
||||
search-insights: '>= 1 < 3'
|
||||
peerDependenciesMeta:
|
||||
'@types/react':
|
||||
optional: true
|
||||
react:
|
||||
optional: true
|
||||
react-dom:
|
||||
optional: true
|
||||
search-insights:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@algolia/autocomplete-core': 1.9.3(algoliasearch@4.19.1)(search-insights@2.8.2)
|
||||
'@algolia/autocomplete-preset-algolia': 1.9.3(algoliasearch@4.19.1)
|
||||
'@docsearch/css': 3.5.2
|
||||
algoliasearch: 4.19.1
|
||||
search-insights: 2.8.2
|
||||
transitivePeerDependencies:
|
||||
- '@algolia/client-search'
|
||||
dev: true
|
||||
|
||||
/@esbuild/android-arm64@0.18.20:
|
||||
resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [arm64]
|
||||
os: [android]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@esbuild/android-arm@0.18.20:
|
||||
resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [arm]
|
||||
os: [android]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@esbuild/android-x64@0.18.20:
|
||||
resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [android]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@esbuild/darwin-arm64@0.18.20:
|
||||
resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [arm64]
|
||||
os: [darwin]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@esbuild/darwin-x64@0.18.20:
|
||||
resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [darwin]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@esbuild/freebsd-arm64@0.18.20:
|
||||
resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [arm64]
|
||||
os: [freebsd]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@esbuild/freebsd-x64@0.18.20:
|
||||
resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [freebsd]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@esbuild/linux-arm64@0.18.20:
|
||||
resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [arm64]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@esbuild/linux-arm@0.18.20:
|
||||
resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [arm]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@esbuild/linux-ia32@0.18.20:
|
||||
resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [ia32]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@esbuild/linux-loong64@0.18.20:
|
||||
resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [loong64]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@esbuild/linux-mips64el@0.18.20:
|
||||
resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [mips64el]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@esbuild/linux-ppc64@0.18.20:
|
||||
resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [ppc64]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@esbuild/linux-riscv64@0.18.20:
|
||||
resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [riscv64]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@esbuild/linux-s390x@0.18.20:
|
||||
resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [s390x]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@esbuild/linux-x64@0.18.20:
|
||||
resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [linux]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@esbuild/netbsd-x64@0.18.20:
|
||||
resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [netbsd]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@esbuild/openbsd-x64@0.18.20:
|
||||
resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [openbsd]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@esbuild/sunos-x64@0.18.20:
|
||||
resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [sunos]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@esbuild/win32-arm64@0.18.20:
|
||||
resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [arm64]
|
||||
os: [win32]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@esbuild/win32-ia32@0.18.20:
|
||||
resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [ia32]
|
||||
os: [win32]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@esbuild/win32-x64@0.18.20:
|
||||
resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
|
||||
engines: {node: '>=12'}
|
||||
cpu: [x64]
|
||||
os: [win32]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/@jridgewell/sourcemap-codec@1.4.15:
|
||||
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
|
||||
dev: true
|
||||
|
||||
/@types/web-bluetooth@0.0.17:
|
||||
resolution: {integrity: sha512-4p9vcSmxAayx72yn70joFoL44c9MO/0+iVEBIQXe3v2h2SiAsEIo/G5v6ObFWvNKRFjbrVadNf9LqEEZeQPzdA==}
|
||||
dev: true
|
||||
|
||||
/@vue/compiler-core@3.3.4:
|
||||
resolution: {integrity: sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==}
|
||||
dependencies:
|
||||
'@babel/parser': 7.22.16
|
||||
'@vue/shared': 3.3.4
|
||||
estree-walker: 2.0.2
|
||||
source-map-js: 1.0.2
|
||||
dev: true
|
||||
|
||||
/@vue/compiler-dom@3.3.4:
|
||||
resolution: {integrity: sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==}
|
||||
dependencies:
|
||||
'@vue/compiler-core': 3.3.4
|
||||
'@vue/shared': 3.3.4
|
||||
dev: true
|
||||
|
||||
/@vue/compiler-sfc@3.3.4:
|
||||
resolution: {integrity: sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==}
|
||||
dependencies:
|
||||
'@babel/parser': 7.22.16
|
||||
'@vue/compiler-core': 3.3.4
|
||||
'@vue/compiler-dom': 3.3.4
|
||||
'@vue/compiler-ssr': 3.3.4
|
||||
'@vue/reactivity-transform': 3.3.4
|
||||
'@vue/shared': 3.3.4
|
||||
estree-walker: 2.0.2
|
||||
magic-string: 0.30.3
|
||||
postcss: 8.4.29
|
||||
source-map-js: 1.0.2
|
||||
dev: true
|
||||
|
||||
/@vue/compiler-ssr@3.3.4:
|
||||
resolution: {integrity: sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==}
|
||||
dependencies:
|
||||
'@vue/compiler-dom': 3.3.4
|
||||
'@vue/shared': 3.3.4
|
||||
dev: true
|
||||
|
||||
/@vue/devtools-api@6.5.0:
|
||||
resolution: {integrity: sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==}
|
||||
dev: true
|
||||
|
||||
/@vue/reactivity-transform@3.3.4:
|
||||
resolution: {integrity: sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==}
|
||||
dependencies:
|
||||
'@babel/parser': 7.22.16
|
||||
'@vue/compiler-core': 3.3.4
|
||||
'@vue/shared': 3.3.4
|
||||
estree-walker: 2.0.2
|
||||
magic-string: 0.30.3
|
||||
dev: true
|
||||
|
||||
/@vue/reactivity@3.3.4:
|
||||
resolution: {integrity: sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==}
|
||||
dependencies:
|
||||
'@vue/shared': 3.3.4
|
||||
dev: true
|
||||
|
||||
/@vue/runtime-core@3.3.4:
|
||||
resolution: {integrity: sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==}
|
||||
dependencies:
|
||||
'@vue/reactivity': 3.3.4
|
||||
'@vue/shared': 3.3.4
|
||||
dev: true
|
||||
|
||||
/@vue/runtime-dom@3.3.4:
|
||||
resolution: {integrity: sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==}
|
||||
dependencies:
|
||||
'@vue/runtime-core': 3.3.4
|
||||
'@vue/shared': 3.3.4
|
||||
csstype: 3.1.2
|
||||
dev: true
|
||||
|
||||
/@vue/server-renderer@3.3.4(vue@3.3.4):
|
||||
resolution: {integrity: sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==}
|
||||
peerDependencies:
|
||||
vue: 3.3.4
|
||||
dependencies:
|
||||
'@vue/compiler-ssr': 3.3.4
|
||||
'@vue/shared': 3.3.4
|
||||
vue: 3.3.4
|
||||
dev: true
|
||||
|
||||
/@vue/shared@3.3.4:
|
||||
resolution: {integrity: sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==}
|
||||
dev: true
|
||||
|
||||
/@vueuse/core@10.4.1(vue@3.3.4):
|
||||
resolution: {integrity: sha512-DkHIfMIoSIBjMgRRvdIvxsyboRZQmImofLyOHADqiVbQVilP8VVHDhBX2ZqoItOgu7dWa8oXiNnScOdPLhdEXg==}
|
||||
dependencies:
|
||||
'@types/web-bluetooth': 0.0.17
|
||||
'@vueuse/metadata': 10.4.1
|
||||
'@vueuse/shared': 10.4.1(vue@3.3.4)
|
||||
vue-demi: 0.14.6(vue@3.3.4)
|
||||
transitivePeerDependencies:
|
||||
- '@vue/composition-api'
|
||||
- vue
|
||||
dev: true
|
||||
|
||||
/@vueuse/integrations@10.4.1(focus-trap@7.5.2)(vue@3.3.4):
|
||||
resolution: {integrity: sha512-uRBPyG5Lxoh1A/J+boiioPT3ELEAPEo4t8W6Mr4yTKIQBeW/FcbsotZNPr4k9uz+3QEksMmflWloS9wCnypM7g==}
|
||||
peerDependencies:
|
||||
async-validator: '*'
|
||||
axios: '*'
|
||||
change-case: '*'
|
||||
drauu: '*'
|
||||
focus-trap: '*'
|
||||
fuse.js: '*'
|
||||
idb-keyval: '*'
|
||||
jwt-decode: '*'
|
||||
nprogress: '*'
|
||||
qrcode: '*'
|
||||
sortablejs: '*'
|
||||
universal-cookie: '*'
|
||||
peerDependenciesMeta:
|
||||
async-validator:
|
||||
optional: true
|
||||
axios:
|
||||
optional: true
|
||||
change-case:
|
||||
optional: true
|
||||
drauu:
|
||||
optional: true
|
||||
focus-trap:
|
||||
optional: true
|
||||
fuse.js:
|
||||
optional: true
|
||||
idb-keyval:
|
||||
optional: true
|
||||
jwt-decode:
|
||||
optional: true
|
||||
nprogress:
|
||||
optional: true
|
||||
qrcode:
|
||||
optional: true
|
||||
sortablejs:
|
||||
optional: true
|
||||
universal-cookie:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@vueuse/core': 10.4.1(vue@3.3.4)
|
||||
'@vueuse/shared': 10.4.1(vue@3.3.4)
|
||||
focus-trap: 7.5.2
|
||||
vue-demi: 0.14.6(vue@3.3.4)
|
||||
transitivePeerDependencies:
|
||||
- '@vue/composition-api'
|
||||
- vue
|
||||
dev: true
|
||||
|
||||
/@vueuse/metadata@10.4.1:
|
||||
resolution: {integrity: sha512-2Sc8X+iVzeuMGHr6O2j4gv/zxvQGGOYETYXEc41h0iZXIRnRbJZGmY/QP8dvzqUelf8vg0p/yEA5VpCEu+WpZg==}
|
||||
dev: true
|
||||
|
||||
/@vueuse/shared@10.4.1(vue@3.3.4):
|
||||
resolution: {integrity: sha512-vz5hbAM4qA0lDKmcr2y3pPdU+2EVw/yzfRsBdu+6+USGa4PxqSQRYIUC9/NcT06y+ZgaTsyURw2I9qOFaaXHAg==}
|
||||
dependencies:
|
||||
vue-demi: 0.14.6(vue@3.3.4)
|
||||
transitivePeerDependencies:
|
||||
- '@vue/composition-api'
|
||||
- vue
|
||||
dev: true
|
||||
|
||||
/algoliasearch@4.19.1:
|
||||
resolution: {integrity: sha512-IJF5b93b2MgAzcE/tuzW0yOPnuUyRgGAtaPv5UUywXM8kzqfdwZTO4sPJBzoGz1eOy6H9uEchsJsBFTELZSu+g==}
|
||||
dependencies:
|
||||
'@algolia/cache-browser-local-storage': 4.19.1
|
||||
'@algolia/cache-common': 4.19.1
|
||||
'@algolia/cache-in-memory': 4.19.1
|
||||
'@algolia/client-account': 4.19.1
|
||||
'@algolia/client-analytics': 4.19.1
|
||||
'@algolia/client-common': 4.19.1
|
||||
'@algolia/client-personalization': 4.19.1
|
||||
'@algolia/client-search': 4.19.1
|
||||
'@algolia/logger-common': 4.19.1
|
||||
'@algolia/logger-console': 4.19.1
|
||||
'@algolia/requester-browser-xhr': 4.19.1
|
||||
'@algolia/requester-common': 4.19.1
|
||||
'@algolia/requester-node-http': 4.19.1
|
||||
'@algolia/transporter': 4.19.1
|
||||
dev: true
|
||||
|
||||
/ansi-sequence-parser@1.1.1:
|
||||
resolution: {integrity: sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==}
|
||||
dev: true
|
||||
|
||||
/csstype@3.1.2:
|
||||
resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
|
||||
dev: true
|
||||
|
||||
/esbuild@0.18.20:
|
||||
resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
|
||||
engines: {node: '>=12'}
|
||||
hasBin: true
|
||||
requiresBuild: true
|
||||
optionalDependencies:
|
||||
'@esbuild/android-arm': 0.18.20
|
||||
'@esbuild/android-arm64': 0.18.20
|
||||
'@esbuild/android-x64': 0.18.20
|
||||
'@esbuild/darwin-arm64': 0.18.20
|
||||
'@esbuild/darwin-x64': 0.18.20
|
||||
'@esbuild/freebsd-arm64': 0.18.20
|
||||
'@esbuild/freebsd-x64': 0.18.20
|
||||
'@esbuild/linux-arm': 0.18.20
|
||||
'@esbuild/linux-arm64': 0.18.20
|
||||
'@esbuild/linux-ia32': 0.18.20
|
||||
'@esbuild/linux-loong64': 0.18.20
|
||||
'@esbuild/linux-mips64el': 0.18.20
|
||||
'@esbuild/linux-ppc64': 0.18.20
|
||||
'@esbuild/linux-riscv64': 0.18.20
|
||||
'@esbuild/linux-s390x': 0.18.20
|
||||
'@esbuild/linux-x64': 0.18.20
|
||||
'@esbuild/netbsd-x64': 0.18.20
|
||||
'@esbuild/openbsd-x64': 0.18.20
|
||||
'@esbuild/sunos-x64': 0.18.20
|
||||
'@esbuild/win32-arm64': 0.18.20
|
||||
'@esbuild/win32-ia32': 0.18.20
|
||||
'@esbuild/win32-x64': 0.18.20
|
||||
dev: true
|
||||
|
||||
/estree-walker@2.0.2:
|
||||
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
|
||||
dev: true
|
||||
|
||||
/focus-trap@7.5.2:
|
||||
resolution: {integrity: sha512-p6vGNNWLDGwJCiEjkSK6oERj/hEyI9ITsSwIUICBoKLlWiTWXJRfQibCwcoi50rTZdbi87qDtUlMCmQwsGSgPw==}
|
||||
dependencies:
|
||||
tabbable: 6.2.0
|
||||
dev: true
|
||||
|
||||
/fsevents@2.3.3:
|
||||
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
||||
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
||||
os: [darwin]
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
optional: true
|
||||
|
||||
/jsonc-parser@3.2.0:
|
||||
resolution: {integrity: sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==}
|
||||
dev: true
|
||||
|
||||
/magic-string@0.30.3:
|
||||
resolution: {integrity: sha512-B7xGbll2fG/VjP+SWg4sX3JynwIU0mjoTc6MPpKNuIvftk6u6vqhDnk1R80b8C2GBR6ywqy+1DcKBrevBg+bmw==}
|
||||
engines: {node: '>=12'}
|
||||
dependencies:
|
||||
'@jridgewell/sourcemap-codec': 1.4.15
|
||||
dev: true
|
||||
|
||||
/mark.js@8.11.1:
|
||||
resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==}
|
||||
dev: true
|
||||
|
||||
/minisearch@6.1.0:
|
||||
resolution: {integrity: sha512-PNxA/X8pWk+TiqPbsoIYH0GQ5Di7m6326/lwU/S4mlo4wGQddIcf/V//1f9TB0V4j59b57b+HZxt8h3iMROGvg==}
|
||||
dev: true
|
||||
|
||||
/nanoid@3.3.6:
|
||||
resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
|
||||
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
||||
hasBin: true
|
||||
dev: true
|
||||
|
||||
/picocolors@1.0.0:
|
||||
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
|
||||
dev: true
|
||||
|
||||
/postcss@8.4.29:
|
||||
resolution: {integrity: sha512-cbI+jaqIeu/VGqXEarWkRCCffhjgXc0qjBtXpqJhTBohMUjUQnbBr0xqX3vEKudc4iviTewcJo5ajcec5+wdJw==}
|
||||
engines: {node: ^10 || ^12 || >=14}
|
||||
dependencies:
|
||||
nanoid: 3.3.6
|
||||
picocolors: 1.0.0
|
||||
source-map-js: 1.0.2
|
||||
dev: true
|
||||
|
||||
/preact@10.17.1:
|
||||
resolution: {integrity: sha512-X9BODrvQ4Ekwv9GURm9AKAGaomqXmip7NQTZgY7gcNmr7XE83adOMJvd3N42id1tMFU7ojiynRsYnY6/BRFxLA==}
|
||||
dev: true
|
||||
|
||||
/rollup@3.29.1:
|
||||
resolution: {integrity: sha512-c+ebvQz0VIH4KhhCpDsI+Bik0eT8ZFEVZEYw0cGMVqIP8zc+gnwl7iXCamTw7vzv2MeuZFZfdx5JJIq+ehzDlg==}
|
||||
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
|
||||
hasBin: true
|
||||
optionalDependencies:
|
||||
fsevents: 2.3.3
|
||||
dev: true
|
||||
|
||||
/search-insights@2.8.2:
|
||||
resolution: {integrity: sha512-PxA9M5Q2bpBelVvJ3oDZR8nuY00Z6qwOxL53wNpgzV28M/D6u9WUbImDckjLSILBF8F1hn/mgyuUaOPtjow4Qw==}
|
||||
dev: true
|
||||
|
||||
/shiki@0.14.4:
|
||||
resolution: {integrity: sha512-IXCRip2IQzKwxArNNq1S+On4KPML3Yyn8Zzs/xRgcgOWIr8ntIK3IKzjFPfjy/7kt9ZMjc+FItfqHRBg8b6tNQ==}
|
||||
dependencies:
|
||||
ansi-sequence-parser: 1.1.1
|
||||
jsonc-parser: 3.2.0
|
||||
vscode-oniguruma: 1.7.0
|
||||
vscode-textmate: 8.0.0
|
||||
dev: true
|
||||
|
||||
/source-map-js@1.0.2:
|
||||
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: true
|
||||
|
||||
/tabbable@6.2.0:
|
||||
resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==}
|
||||
dev: true
|
||||
|
||||
/to-fast-properties@2.0.0:
|
||||
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
|
||||
engines: {node: '>=4'}
|
||||
dev: true
|
||||
|
||||
/vite@4.4.9:
|
||||
resolution: {integrity: sha512-2mbUn2LlUmNASWwSCNSJ/EG2HuSRTnVNaydp6vMCm5VIqJsjMfbIWtbH2kDuwUVW5mMUKKZvGPX/rqeqVvv1XA==}
|
||||
engines: {node: ^14.18.0 || >=16.0.0}
|
||||
hasBin: true
|
||||
peerDependencies:
|
||||
'@types/node': '>= 14'
|
||||
less: '*'
|
||||
lightningcss: ^1.21.0
|
||||
sass: '*'
|
||||
stylus: '*'
|
||||
sugarss: '*'
|
||||
terser: ^5.4.0
|
||||
peerDependenciesMeta:
|
||||
'@types/node':
|
||||
optional: true
|
||||
less:
|
||||
optional: true
|
||||
lightningcss:
|
||||
optional: true
|
||||
sass:
|
||||
optional: true
|
||||
stylus:
|
||||
optional: true
|
||||
sugarss:
|
||||
optional: true
|
||||
terser:
|
||||
optional: true
|
||||
dependencies:
|
||||
esbuild: 0.18.20
|
||||
postcss: 8.4.29
|
||||
rollup: 3.29.1
|
||||
optionalDependencies:
|
||||
fsevents: 2.3.3
|
||||
dev: true
|
||||
|
||||
/vitepress@1.0.0-rc.12(search-insights@2.8.2):
|
||||
resolution: {integrity: sha512-mZknN5l9lgbBjXwumwdOQQDM+gPivswFEykEQeenY0tv7eocS+bb801IpFZT3mFV6YRhSddmbutHlFgPPADjEg==}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
'@docsearch/css': 3.5.2
|
||||
'@docsearch/js': 3.5.2(search-insights@2.8.2)
|
||||
'@vue/devtools-api': 6.5.0
|
||||
'@vueuse/core': 10.4.1(vue@3.3.4)
|
||||
'@vueuse/integrations': 10.4.1(focus-trap@7.5.2)(vue@3.3.4)
|
||||
focus-trap: 7.5.2
|
||||
mark.js: 8.11.1
|
||||
minisearch: 6.1.0
|
||||
shiki: 0.14.4
|
||||
vite: 4.4.9
|
||||
vue: 3.3.4
|
||||
transitivePeerDependencies:
|
||||
- '@algolia/client-search'
|
||||
- '@types/node'
|
||||
- '@types/react'
|
||||
- '@vue/composition-api'
|
||||
- async-validator
|
||||
- axios
|
||||
- change-case
|
||||
- drauu
|
||||
- fuse.js
|
||||
- idb-keyval
|
||||
- jwt-decode
|
||||
- less
|
||||
- lightningcss
|
||||
- nprogress
|
||||
- qrcode
|
||||
- react
|
||||
- react-dom
|
||||
- sass
|
||||
- search-insights
|
||||
- sortablejs
|
||||
- stylus
|
||||
- sugarss
|
||||
- terser
|
||||
- universal-cookie
|
||||
dev: true
|
||||
|
||||
/vscode-oniguruma@1.7.0:
|
||||
resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==}
|
||||
dev: true
|
||||
|
||||
/vscode-textmate@8.0.0:
|
||||
resolution: {integrity: sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==}
|
||||
dev: true
|
||||
|
||||
/vue-demi@0.14.6(vue@3.3.4):
|
||||
resolution: {integrity: sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==}
|
||||
engines: {node: '>=12'}
|
||||
hasBin: true
|
||||
requiresBuild: true
|
||||
peerDependencies:
|
||||
'@vue/composition-api': ^1.0.0-rc.1
|
||||
vue: ^3.0.0-0 || ^2.6.0
|
||||
peerDependenciesMeta:
|
||||
'@vue/composition-api':
|
||||
optional: true
|
||||
dependencies:
|
||||
vue: 3.3.4
|
||||
dev: true
|
||||
|
||||
/vue@3.3.4:
|
||||
resolution: {integrity: sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==}
|
||||
dependencies:
|
||||
'@vue/compiler-dom': 3.3.4
|
||||
'@vue/compiler-sfc': 3.3.4
|
||||
'@vue/runtime-dom': 3.3.4
|
||||
'@vue/server-renderer': 3.3.4(vue@3.3.4)
|
||||
'@vue/shared': 3.3.4
|
||||
dev: true
|
Loading…
Reference in New Issue
Block a user