mirror of https://github.com/YunYouJun/valaxy
fix: docs with press build
This commit is contained in:
parent
00a976854a
commit
2d408b8dfa
|
@ -46,7 +46,7 @@ For a example, you can see [demo/yun](./demo/yun/) folder.
|
|||
|
||||
- ⚡️ [Vue 3](https://github.com/vuejs/vue-next), [Vite 2](https://github.com/vitejs/vite), [pnpm](https://pnpm.js.org/), [ESBuild](https://github.com/evanw/esbuild) - born with fastness
|
||||
- 🔥 Hot Reload with Config & Markdown
|
||||
- 🔧 Type Tooltip for all config by `valaxy.config.ts` and `site.config.ts`
|
||||
- 🔧 Type Tooltip for all config by `valaxy.config.ts`
|
||||
- 🗒 Extended Markdown Frontmatter
|
||||
- 🗂 File based routing via [vite-plugin-pages](https://github.com/hannoeru/vite-plugin-pages)
|
||||
- 📦 Components auto importing via [unplugin-vue-components](https://github.com/antfu/unplugin-vue-components)
|
||||
|
|
|
@ -15,9 +15,9 @@ pnpm add [valaxy-addon-package1] [valaxy-addon-package2]
|
|||
使用
|
||||
|
||||
```ts
|
||||
// site.config.ts
|
||||
import { defineSite } from 'valaxy'
|
||||
export default defineSite({
|
||||
// valaxy.config.ts
|
||||
import { defineConfig } from 'valaxy'
|
||||
export default defineConfig({
|
||||
addons: [
|
||||
'valaxy-addon-package1',
|
||||
// pass addon options
|
||||
|
|
|
@ -27,9 +27,9 @@ export interface SocialLink {
|
|||
示例:
|
||||
|
||||
```ts
|
||||
// site.config.ts
|
||||
// valaxy.config.ts
|
||||
import { defineSite } from 'valaxy'
|
||||
export default defineSite({
|
||||
export default defineConfig({
|
||||
social: [
|
||||
{
|
||||
name: 'RSS',
|
||||
|
@ -58,9 +58,9 @@ export default defineSite({
|
|||
> 在每篇文章末尾,展示赞助(打赏)信息。
|
||||
|
||||
```ts
|
||||
// site.config.ts
|
||||
// valaxy.config.ts
|
||||
import { defineSite } from 'valaxy'
|
||||
export default defineSite({
|
||||
export default defineConfig({
|
||||
sponsor: {
|
||||
enable: true,
|
||||
methods: [
|
||||
|
|
|
@ -75,7 +75,7 @@ const b = a
|
|||
> `valaxy-theme-yun` 支持
|
||||
|
||||
```ts
|
||||
// site.config.ts
|
||||
// valaxy.config.ts
|
||||
export default {
|
||||
themeConfig: {
|
||||
colors: {
|
||||
|
@ -139,9 +139,9 @@ Katex is enabled by default.
|
|||
:::
|
||||
|
||||
```ts
|
||||
// site.config.ts
|
||||
import { defineSite } from 'valaxy'
|
||||
export default defineSite({
|
||||
// valaxy.config.ts
|
||||
import { defineConfig } from 'valaxy'
|
||||
export default defineConfig({
|
||||
features: {
|
||||
// disable katex
|
||||
katex: false
|
||||
|
|
|
@ -80,7 +80,7 @@ See `http://localhost:4859/`, have fun!
|
|||
|
||||
### Config
|
||||
|
||||
Modify `site.config.ts` to custom your blog.
|
||||
Modify `valaxy.config.ts` to custom your blog.
|
||||
|
||||
English & Chinese Docs is coming!
|
||||
|
||||
|
|
|
@ -17,9 +17,9 @@ npm i valaxy-theme-yun
|
|||
配置 `theme` 字段为主题名称,如 `yun`。
|
||||
|
||||
```ts
|
||||
// site.config.ts
|
||||
import { defineSite } from 'valaxy'
|
||||
export default defineSite({
|
||||
// valaxy.config.ts
|
||||
import { defineConfig } from 'valaxy'
|
||||
export default defineConfig({
|
||||
theme: 'yun'
|
||||
})
|
||||
```
|
||||
|
@ -29,9 +29,9 @@ export default defineSite({
|
|||
参见对应主题文档,配置 `themeConfig`。
|
||||
|
||||
```ts
|
||||
// site.config.ts
|
||||
import { defineSite } from 'valaxy'
|
||||
export default defineSite({
|
||||
// valaxy.config.ts
|
||||
import { defineConfig } from 'valaxy'
|
||||
export default defineConfig({
|
||||
theme: 'yun',
|
||||
themeConfig: {
|
||||
// ...
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
import { defineSite } from 'valaxy'
|
||||
|
||||
export default defineSite({
|
||||
title: 'Valaxy',
|
||||
url: 'https://valaxy.site',
|
||||
description: 'Valaxy Site Docs',
|
||||
|
||||
theme: 'press',
|
||||
themeConfig: {},
|
||||
})
|
|
@ -1,8 +1,17 @@
|
|||
import { defineConfig } from 'valaxy'
|
||||
|
||||
const safelist = [
|
||||
'i-ri-home-line',
|
||||
]
|
||||
|
||||
export default defineConfig({
|
||||
title: 'Valaxy',
|
||||
url: 'https://valaxy.site',
|
||||
description: 'Valaxy Site Docs',
|
||||
|
||||
theme: 'press',
|
||||
themeConfig: {},
|
||||
|
||||
vite: {
|
||||
base: '/',
|
||||
},
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
"@types/resolve": "^1.20.2",
|
||||
"@types/semver": "^7.3.10",
|
||||
"cross-env": "^7.0.3",
|
||||
"eslint": "^8.19.0",
|
||||
"eslint": "^8.20.0",
|
||||
"lint-staged": "^13.0.3",
|
||||
"prompts": "^2.4.2",
|
||||
"rimraf": "^3.0.2",
|
||||
|
@ -57,7 +57,7 @@
|
|||
"valaxy-theme-press": "workspace:*",
|
||||
"valaxy-theme-yun": "workspace:*",
|
||||
"vitest": "^0.18.1",
|
||||
"vue-tsc": "0.38.5",
|
||||
"vue-tsc": "0.38.8",
|
||||
"zx": "^7.0.7"
|
||||
},
|
||||
"simple-git-hooks": {
|
||||
|
|
|
@ -36,7 +36,7 @@ async function init() {
|
|||
console.log(` ${bold('Check it')}:`)
|
||||
console.log()
|
||||
console.log(`- Change ${bold('author')} name in ${yellow('LICENSE')} & ${green('package.json')} & ${blue('.github')}`)
|
||||
console.log(`- Change ${blue('site.config.ts')} theme: ${yellow('starter')} to ${cyan(`${themeName}`)}`)
|
||||
console.log(`- Change ${blue('valaxy.config.ts')} theme: ${yellow('starter')} to ${cyan(`${themeName}`)}`)
|
||||
console.log(`- Rename ${yellow(`valaxy-theme-${themeName}`)} to ${cyan(`valaxy-theme-${themeName}`)}`)
|
||||
console.log()
|
||||
console.log(` ${cyan('✨')}`)
|
||||
|
|
|
@ -18,7 +18,7 @@ See `http://localhost:4859/`, have fun!
|
|||
|
||||
### Config
|
||||
|
||||
Modify `site.config.ts` to custom your blog.
|
||||
Modify `valaxy.config.ts` to custom your blog.
|
||||
|
||||
English & Chinese Docs is coming!
|
||||
|
||||
|
|
|
@ -17,4 +17,4 @@ Write your first post!
|
|||
|
||||
## Usage
|
||||
|
||||
Modify `site.config.ts` to custom your blog.
|
||||
Modify `valaxy.config.ts` to custom your blog.
|
||||
|
|
|
@ -1,155 +0,0 @@
|
|||
import { defineSite } from 'valaxy'
|
||||
import type { ThemeConfig } from 'valaxy-theme-yun'
|
||||
|
||||
/**
|
||||
* User Config
|
||||
*/
|
||||
export default defineSite<ThemeConfig>({
|
||||
lang: 'zh-CN',
|
||||
title: 'Valaxy Theme Yun',
|
||||
author: {
|
||||
name: '云游君',
|
||||
},
|
||||
description: 'Valaxy Theme Yun Preview.',
|
||||
social: [
|
||||
{
|
||||
name: 'RSS',
|
||||
link: '/atom.xml',
|
||||
icon: 'i-ri-rss-line',
|
||||
color: 'orange',
|
||||
},
|
||||
{
|
||||
name: 'QQ 群 1050458482',
|
||||
link: 'https://qm.qq.com/cgi-bin/qm/qr?k=kZJzggTTCf4SpvEQ8lXWoi5ZjhAx0ILZ&jump_from=webapi',
|
||||
icon: 'i-ri-qq-line',
|
||||
color: '#12B7F5',
|
||||
},
|
||||
{
|
||||
name: 'GitHub',
|
||||
link: 'https://github.com/YunYouJun',
|
||||
icon: 'i-ri-github-line',
|
||||
color: '#6e5494',
|
||||
},
|
||||
{
|
||||
name: '微博',
|
||||
link: 'https://weibo.com/jizhideyunyoujun',
|
||||
icon: 'i-ri-weibo-line',
|
||||
color: '#E6162D',
|
||||
},
|
||||
{
|
||||
name: '豆瓣',
|
||||
link: 'https://www.douban.com/people/yunyoujun/',
|
||||
icon: 'i-ri-douban-line',
|
||||
color: '#007722',
|
||||
},
|
||||
{
|
||||
name: '网易云音乐',
|
||||
link: 'https://music.163.com/#/user/home?id=247102977',
|
||||
icon: 'i-ri-netease-cloud-music-line',
|
||||
color: '#C20C0C',
|
||||
},
|
||||
{
|
||||
name: '知乎',
|
||||
link: 'https://www.zhihu.com/people/yunyoujun/',
|
||||
icon: 'i-ri-zhihu-line',
|
||||
color: '#0084FF',
|
||||
},
|
||||
{
|
||||
name: '哔哩哔哩',
|
||||
link: 'https://space.bilibili.com/1579790',
|
||||
icon: 'i-ri-bilibili-line',
|
||||
color: '#FF8EB3',
|
||||
},
|
||||
{
|
||||
name: '微信公众号',
|
||||
link: 'https://cdn.yunyoujun.cn/img/about/white-qrcode-and-search.jpg',
|
||||
icon: 'i-ri-wechat-2-line',
|
||||
color: '#1AAD19',
|
||||
},
|
||||
{
|
||||
name: 'Twitter',
|
||||
link: 'https://twitter.com/YunYouJun',
|
||||
icon: 'i-ri-twitter-line',
|
||||
color: '#1da1f2',
|
||||
},
|
||||
{
|
||||
name: 'Telegram Channel',
|
||||
link: 'https://t.me/elpsycn',
|
||||
icon: 'i-ri-telegram-line',
|
||||
color: '#0088CC',
|
||||
},
|
||||
{
|
||||
name: 'E-Mail',
|
||||
link: 'mailto:me@yunyoujun.cn',
|
||||
icon: 'i-ri-mail-line',
|
||||
color: '#8E71C1',
|
||||
},
|
||||
{
|
||||
name: 'Travelling',
|
||||
link: 'https://travellings.link',
|
||||
icon: 'i-ri-train-line',
|
||||
color: 'var(--va-c-text)',
|
||||
},
|
||||
],
|
||||
|
||||
search: {
|
||||
enable: false,
|
||||
},
|
||||
|
||||
sponsor: {
|
||||
enable: true,
|
||||
title: '我很可爱,请给我钱!',
|
||||
methods: [
|
||||
{
|
||||
name: '支付宝',
|
||||
url: 'https://cdn.yunyoujun.cn/img/donate/alipay-qrcode.jpg',
|
||||
color: '#00A3EE',
|
||||
icon: 'i-ri-alipay-line',
|
||||
},
|
||||
{
|
||||
name: 'QQ 支付',
|
||||
url: 'https://cdn.yunyoujun.cn/img/donate/qqpay-qrcode.png',
|
||||
color: '#12B7F5',
|
||||
icon: 'i-ri-qq-line',
|
||||
},
|
||||
{
|
||||
name: '微信支付',
|
||||
url: 'https://cdn.yunyoujun.cn/img/donate/wechatpay-qrcode.jpg',
|
||||
color: '#2DC100',
|
||||
icon: 'i-ri-wechat-pay-line',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
theme: 'yun',
|
||||
|
||||
themeConfig: {
|
||||
banner: {
|
||||
enable: true,
|
||||
title: '云游君的小站',
|
||||
},
|
||||
|
||||
pages: [
|
||||
{
|
||||
name: '我的小伙伴们',
|
||||
url: '/links/',
|
||||
icon: 'i-ri-genderless-line',
|
||||
color: 'dodgerblue',
|
||||
},
|
||||
{
|
||||
name: '喜欢的女孩子',
|
||||
url: '/girls/',
|
||||
icon: 'i-ri-women-line',
|
||||
color: 'hotpink',
|
||||
},
|
||||
],
|
||||
|
||||
footer: {
|
||||
since: 2016,
|
||||
beian: {
|
||||
enable: true,
|
||||
icp: '苏ICP备17038157号',
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
|
@ -183,9 +183,9 @@ export function createValaxyPlugin(options: ResolvedValaxyOptions, serverOptions
|
|||
},
|
||||
|
||||
async handleHotUpdate(ctx) {
|
||||
// handle site.config.ts hmr
|
||||
const { file, server, read } = ctx
|
||||
|
||||
// handle valaxy.config.ts hmr
|
||||
if (file === options.configFile) {
|
||||
const { config } = await resolveOptions({ userRoot: options.userRoot })
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ export async function ViteValaxyPlugins(
|
|||
const { roots, config: valaxyConfig } = options
|
||||
|
||||
// const MarkdownPlugin = createMarkdownPlugin(options)
|
||||
const UnocssPlugin = await createUnocssPlugin(options, valaxyConfig)
|
||||
const UnocssPlugin = await createUnocssPlugin(options)
|
||||
|
||||
const ValaxyPlugin = createValaxyPlugin(options, serverOptions)
|
||||
|
||||
|
|
|
@ -14,10 +14,9 @@ import {
|
|||
transformerVariantGroup,
|
||||
} from 'unocss'
|
||||
import type { ResolvedValaxyOptions } from '../options'
|
||||
import type { ValaxyConfig } from '../types'
|
||||
import { loadSetups } from './setupNode'
|
||||
|
||||
export const createSafelist = async (options: ResolvedValaxyOptions, pluginOptions: ValaxyConfig = {}) => {
|
||||
export const createSafelist = async (options: ResolvedValaxyOptions) => {
|
||||
const { config } = options
|
||||
const safeIcons: string[] = [
|
||||
'i-ri-clipboard-line',
|
||||
|
@ -27,7 +26,7 @@ export const createSafelist = async (options: ResolvedValaxyOptions, pluginOptio
|
|||
'i-ri-price-tag-3-line',
|
||||
|
||||
'i-ri-cloud-line',
|
||||
].concat(pluginOptions.unocss?.safelist || [])
|
||||
].concat(options.config.unocss?.safelist || [])
|
||||
|
||||
const safelist = 'animate-fade-in m-auto text-left'.split(' ').concat([
|
||||
'rotate-y-180',
|
||||
|
@ -45,7 +44,9 @@ export const createSafelist = async (options: ResolvedValaxyOptions, pluginOptio
|
|||
return safelist
|
||||
}
|
||||
|
||||
export const createUnocssConfig = async (options: ResolvedValaxyOptions, pluginOptions: ValaxyConfig) => {
|
||||
export const createUnocssConfig = async (options: ResolvedValaxyOptions) => {
|
||||
const { config: pluginOptions } = options
|
||||
|
||||
const unocssConfig: VitePluginConfig = {
|
||||
shortcuts: [
|
||||
['btn', 'px-4 py-1 rounded inline-block bg-sky-600 text-white cursor-pointer hover:bg-sky-700 disabled:cursor-default disabled:bg-gray-600 disabled:opacity-50'],
|
||||
|
@ -95,9 +96,9 @@ export const createUnocssConfig = async (options: ResolvedValaxyOptions, pluginO
|
|||
return unocssConfig
|
||||
}
|
||||
|
||||
export const createUnocssPlugin = async (options: ResolvedValaxyOptions, pluginOptions: ValaxyConfig) => {
|
||||
const { unocss: unoOptions } = pluginOptions
|
||||
const defaultConfig = await createUnocssConfig(options, pluginOptions)
|
||||
export const createUnocssPlugin = async (options: ResolvedValaxyOptions) => {
|
||||
const { unocss: unoOptions } = options.config
|
||||
const defaultConfig = await createUnocssConfig(options)
|
||||
|
||||
const { themeRoot, clientRoot, roots } = options
|
||||
|
||||
|
|
257
pnpm-lock.yaml
257
pnpm-lock.yaml
|
@ -10,7 +10,7 @@ importers:
|
|||
'@types/resolve': ^1.20.2
|
||||
'@types/semver': ^7.3.10
|
||||
cross-env: ^7.0.3
|
||||
eslint: ^8.19.0
|
||||
eslint: ^8.20.0
|
||||
lint-staged: ^13.0.3
|
||||
prompts: ^2.4.2
|
||||
rimraf: ^3.0.2
|
||||
|
@ -22,16 +22,16 @@ importers:
|
|||
valaxy-theme-press: workspace:*
|
||||
valaxy-theme-yun: workspace:*
|
||||
vitest: ^0.18.1
|
||||
vue-tsc: 0.38.5
|
||||
vue-tsc: 0.38.8
|
||||
zx: ^7.0.7
|
||||
devDependencies:
|
||||
'@antfu/eslint-config': 0.25.2_4x5o4skxv6sl53vpwefgt23khm
|
||||
'@antfu/eslint-config': 0.25.2_he2ccbldppg44uulnyq4rwocfa
|
||||
'@types/debug': 4.1.7
|
||||
'@types/prompts': 2.0.14
|
||||
'@types/resolve': 1.20.2
|
||||
'@types/semver': 7.3.10
|
||||
cross-env: 7.0.3
|
||||
eslint: 8.19.0
|
||||
eslint: 8.20.0
|
||||
lint-staged: 13.0.3
|
||||
prompts: 2.4.2
|
||||
rimraf: 3.0.2
|
||||
|
@ -43,7 +43,7 @@ importers:
|
|||
valaxy-theme-press: link:packages/valaxy-theme-press
|
||||
valaxy-theme-yun: link:packages/valaxy-theme-yun
|
||||
vitest: 0.18.1
|
||||
vue-tsc: 0.38.5_typescript@4.7.4
|
||||
vue-tsc: 0.38.8_typescript@4.7.4
|
||||
zx: 7.0.7
|
||||
|
||||
demo/yun:
|
||||
|
@ -351,22 +351,22 @@ packages:
|
|||
'@jridgewell/gen-mapping': 0.1.1
|
||||
'@jridgewell/trace-mapping': 0.3.14
|
||||
|
||||
/@antfu/eslint-config-basic/0.25.2_hyhkoiy62keebsro2cuewzwyme:
|
||||
/@antfu/eslint-config-basic/0.25.2_abk5i7tz6ur3qy3ufsag7eod2u:
|
||||
resolution: {integrity: sha512-D81jE90B7cujMmU2mKEaUcRsKRAfVX4PniEoaD0c3HiqprqghfBjuv3B6p1+tG9uJQAgLBVsK+G92Y+AAgFaOA==}
|
||||
peerDependencies:
|
||||
eslint: '>=7.4.0'
|
||||
dependencies:
|
||||
eslint: 8.19.0
|
||||
eslint-plugin-antfu: 0.25.2_4x5o4skxv6sl53vpwefgt23khm
|
||||
eslint-plugin-eslint-comments: 3.2.0_eslint@8.19.0
|
||||
eslint: 8.20.0
|
||||
eslint-plugin-antfu: 0.25.2_he2ccbldppg44uulnyq4rwocfa
|
||||
eslint-plugin-eslint-comments: 3.2.0_eslint@8.20.0
|
||||
eslint-plugin-html: 6.2.0
|
||||
eslint-plugin-import: 2.26.0_57gvyn65w4xhr7pbo3dz7muce4
|
||||
eslint-plugin-jsonc: 2.3.0_eslint@8.19.0
|
||||
eslint-plugin-markdown: 2.2.1_eslint@8.19.0
|
||||
eslint-plugin-n: 15.2.3_eslint@8.19.0
|
||||
eslint-plugin-promise: 6.0.0_eslint@8.19.0
|
||||
eslint-plugin-unicorn: 42.0.0_eslint@8.19.0
|
||||
eslint-plugin-yml: 1.0.0_eslint@8.19.0
|
||||
eslint-plugin-import: 2.26.0_iwgptdptnivlpb26w4guqgzghe
|
||||
eslint-plugin-jsonc: 2.3.0_eslint@8.20.0
|
||||
eslint-plugin-markdown: 2.2.1_eslint@8.20.0
|
||||
eslint-plugin-n: 15.2.3_eslint@8.20.0
|
||||
eslint-plugin-promise: 6.0.0_eslint@8.20.0
|
||||
eslint-plugin-unicorn: 42.0.0_eslint@8.20.0
|
||||
eslint-plugin-yml: 1.0.0_eslint@8.20.0
|
||||
jsonc-eslint-parser: 2.1.0
|
||||
yaml-eslint-parser: 1.0.1
|
||||
transitivePeerDependencies:
|
||||
|
@ -377,14 +377,14 @@ packages:
|
|||
- typescript
|
||||
dev: true
|
||||
|
||||
/@antfu/eslint-config-react/0.25.2_4x5o4skxv6sl53vpwefgt23khm:
|
||||
/@antfu/eslint-config-react/0.25.2_he2ccbldppg44uulnyq4rwocfa:
|
||||
resolution: {integrity: sha512-jGol7/UTUa9z55p4Oy/K5yGgY179fj1kl0kdo3bRnFjzUZQuDGuxw5HiZdYx333pjBdizkPl6cMJ8M6sc3PzFg==}
|
||||
peerDependencies:
|
||||
eslint: '>=7.4.0'
|
||||
dependencies:
|
||||
'@antfu/eslint-config-ts': 0.25.2_4x5o4skxv6sl53vpwefgt23khm
|
||||
eslint: 8.19.0
|
||||
eslint-plugin-react: 7.30.1_eslint@8.19.0
|
||||
'@antfu/eslint-config-ts': 0.25.2_he2ccbldppg44uulnyq4rwocfa
|
||||
eslint: 8.20.0
|
||||
eslint-plugin-react: 7.30.1_eslint@8.20.0
|
||||
transitivePeerDependencies:
|
||||
- eslint-import-resolver-typescript
|
||||
- eslint-import-resolver-webpack
|
||||
|
@ -392,16 +392,16 @@ packages:
|
|||
- typescript
|
||||
dev: true
|
||||
|
||||
/@antfu/eslint-config-ts/0.25.2_4x5o4skxv6sl53vpwefgt23khm:
|
||||
/@antfu/eslint-config-ts/0.25.2_he2ccbldppg44uulnyq4rwocfa:
|
||||
resolution: {integrity: sha512-Dpp4r3CaDZVh73lMxhW0sVGsPwUf1YTpYV5JefmBtgEZKOAc+QqYbLjFZ6QGRUpdPLldRvD+xTFpax6t8NKgyA==}
|
||||
peerDependencies:
|
||||
eslint: '>=7.4.0'
|
||||
typescript: '>=3.9'
|
||||
dependencies:
|
||||
'@antfu/eslint-config-basic': 0.25.2_hyhkoiy62keebsro2cuewzwyme
|
||||
'@typescript-eslint/eslint-plugin': 5.29.0_hyhkoiy62keebsro2cuewzwyme
|
||||
'@typescript-eslint/parser': 5.29.0_4x5o4skxv6sl53vpwefgt23khm
|
||||
eslint: 8.19.0
|
||||
'@antfu/eslint-config-basic': 0.25.2_abk5i7tz6ur3qy3ufsag7eod2u
|
||||
'@typescript-eslint/eslint-plugin': 5.29.0_abk5i7tz6ur3qy3ufsag7eod2u
|
||||
'@typescript-eslint/parser': 5.29.0_he2ccbldppg44uulnyq4rwocfa
|
||||
eslint: 8.20.0
|
||||
typescript: 4.7.4
|
||||
transitivePeerDependencies:
|
||||
- eslint-import-resolver-typescript
|
||||
|
@ -409,14 +409,14 @@ packages:
|
|||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@antfu/eslint-config-vue/0.25.2_4x5o4skxv6sl53vpwefgt23khm:
|
||||
/@antfu/eslint-config-vue/0.25.2_he2ccbldppg44uulnyq4rwocfa:
|
||||
resolution: {integrity: sha512-ObZOzvQvLe/qETq5miVmFWRgjNwWAE/P1I2YhKyDFK7KHquM7bKysfnmkoPpm2HkOpseMILoc+5UKo/w3L7GHg==}
|
||||
peerDependencies:
|
||||
eslint: '>=7.4.0'
|
||||
dependencies:
|
||||
'@antfu/eslint-config-ts': 0.25.2_4x5o4skxv6sl53vpwefgt23khm
|
||||
eslint: 8.19.0
|
||||
eslint-plugin-vue: 9.1.1_eslint@8.19.0
|
||||
'@antfu/eslint-config-ts': 0.25.2_he2ccbldppg44uulnyq4rwocfa
|
||||
eslint: 8.20.0
|
||||
eslint-plugin-vue: 9.1.1_eslint@8.20.0
|
||||
transitivePeerDependencies:
|
||||
- eslint-import-resolver-typescript
|
||||
- eslint-import-resolver-webpack
|
||||
|
@ -424,25 +424,25 @@ packages:
|
|||
- typescript
|
||||
dev: true
|
||||
|
||||
/@antfu/eslint-config/0.25.2_4x5o4skxv6sl53vpwefgt23khm:
|
||||
/@antfu/eslint-config/0.25.2_he2ccbldppg44uulnyq4rwocfa:
|
||||
resolution: {integrity: sha512-dIqxqBa6ALqaBQyErMnYLpyn4xpwp1YefbYxDMgNFM8MzY/ShJgaBWAGlywFeDwyAR44jaaVY8wRwDxODF8bPg==}
|
||||
peerDependencies:
|
||||
eslint: '>=7.4.0'
|
||||
dependencies:
|
||||
'@antfu/eslint-config-react': 0.25.2_4x5o4skxv6sl53vpwefgt23khm
|
||||
'@antfu/eslint-config-vue': 0.25.2_4x5o4skxv6sl53vpwefgt23khm
|
||||
'@typescript-eslint/eslint-plugin': 5.29.0_hyhkoiy62keebsro2cuewzwyme
|
||||
'@typescript-eslint/parser': 5.29.0_4x5o4skxv6sl53vpwefgt23khm
|
||||
eslint: 8.19.0
|
||||
eslint-plugin-eslint-comments: 3.2.0_eslint@8.19.0
|
||||
'@antfu/eslint-config-react': 0.25.2_he2ccbldppg44uulnyq4rwocfa
|
||||
'@antfu/eslint-config-vue': 0.25.2_he2ccbldppg44uulnyq4rwocfa
|
||||
'@typescript-eslint/eslint-plugin': 5.29.0_abk5i7tz6ur3qy3ufsag7eod2u
|
||||
'@typescript-eslint/parser': 5.29.0_he2ccbldppg44uulnyq4rwocfa
|
||||
eslint: 8.20.0
|
||||
eslint-plugin-eslint-comments: 3.2.0_eslint@8.20.0
|
||||
eslint-plugin-html: 6.2.0
|
||||
eslint-plugin-import: 2.26.0_57gvyn65w4xhr7pbo3dz7muce4
|
||||
eslint-plugin-jsonc: 2.3.0_eslint@8.19.0
|
||||
eslint-plugin-n: 15.2.3_eslint@8.19.0
|
||||
eslint-plugin-promise: 6.0.0_eslint@8.19.0
|
||||
eslint-plugin-unicorn: 42.0.0_eslint@8.19.0
|
||||
eslint-plugin-vue: 9.1.1_eslint@8.19.0
|
||||
eslint-plugin-yml: 1.0.0_eslint@8.19.0
|
||||
eslint-plugin-import: 2.26.0_iwgptdptnivlpb26w4guqgzghe
|
||||
eslint-plugin-jsonc: 2.3.0_eslint@8.20.0
|
||||
eslint-plugin-n: 15.2.3_eslint@8.20.0
|
||||
eslint-plugin-promise: 6.0.0_eslint@8.20.0
|
||||
eslint-plugin-unicorn: 42.0.0_eslint@8.20.0
|
||||
eslint-plugin-vue: 9.1.1_eslint@8.20.0
|
||||
eslint-plugin-yml: 1.0.0_eslint@8.20.0
|
||||
jsonc-eslint-parser: 2.1.0
|
||||
yaml-eslint-parser: 1.0.1
|
||||
transitivePeerDependencies:
|
||||
|
@ -726,7 +726,6 @@ packages:
|
|||
/@babel/helper-validator-identifier/7.18.6:
|
||||
resolution: {integrity: sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
dev: true
|
||||
|
||||
/@babel/helper-validator-option/7.18.6:
|
||||
resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==}
|
||||
|
@ -782,20 +781,12 @@ packages:
|
|||
'@babel/types': 7.17.10
|
||||
dev: false
|
||||
|
||||
/@babel/parser/7.18.4:
|
||||
resolution: {integrity: sha512-FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow==}
|
||||
engines: {node: '>=6.0.0'}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
'@babel/types': 7.18.4
|
||||
|
||||
/@babel/parser/7.18.8:
|
||||
resolution: {integrity: sha512-RSKRfYX20dyH+elbJK2uqAkVyucL+xXzhqlMD5/ZXx+dAAwpyB7HsvnHe/ZUGOF+xLr5Wx9/JoXVTj6BQE2/oA==}
|
||||
engines: {node: '>=6.0.0'}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
'@babel/types': 7.18.8
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.18.6:
|
||||
resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==}
|
||||
|
@ -1645,20 +1636,12 @@ packages:
|
|||
to-fast-properties: 2.0.0
|
||||
dev: false
|
||||
|
||||
/@babel/types/7.18.4:
|
||||
resolution: {integrity: sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/helper-validator-identifier': 7.16.7
|
||||
to-fast-properties: 2.0.0
|
||||
|
||||
/@babel/types/7.18.8:
|
||||
resolution: {integrity: sha512-qwpdsmraq0aJ3osLJRApsc2ouSJCdnMeZwB0DhbtHAtRpZNZCdlbRnHIgcRKzdE1g0iOGg644fzjOBcdOz9cPw==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/helper-validator-identifier': 7.18.6
|
||||
to-fast-properties: 2.0.0
|
||||
dev: true
|
||||
|
||||
/@ctrl/tinycolor/3.4.1:
|
||||
resolution: {integrity: sha512-ej5oVy6lykXsvieQtqZxCOaLT+xD4+QNarq78cIYISHmZXshCvROLudpQN3lfL8G0NL7plMSSK+zlyvCaIJ4Iw==}
|
||||
|
@ -1724,7 +1707,7 @@ packages:
|
|||
ajv: 6.12.6
|
||||
debug: 4.3.4
|
||||
espree: 9.3.2
|
||||
globals: 13.15.0
|
||||
globals: 13.16.0
|
||||
ignore: 5.2.0
|
||||
import-fresh: 3.3.0
|
||||
js-yaml: 4.1.0
|
||||
|
@ -2197,7 +2180,7 @@ packages:
|
|||
'@types/yargs-parser': 21.0.0
|
||||
dev: true
|
||||
|
||||
/@typescript-eslint/eslint-plugin/5.29.0_hyhkoiy62keebsro2cuewzwyme:
|
||||
/@typescript-eslint/eslint-plugin/5.29.0_abk5i7tz6ur3qy3ufsag7eod2u:
|
||||
resolution: {integrity: sha512-kgTsISt9pM53yRFQmLZ4npj99yGl3x3Pl7z4eA66OuTzAGC4bQB5H5fuLwPnqTKU3yyrrg4MIhjF17UYnL4c0w==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
|
@ -2208,12 +2191,12 @@ packages:
|
|||
typescript:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@typescript-eslint/parser': 5.29.0_4x5o4skxv6sl53vpwefgt23khm
|
||||
'@typescript-eslint/parser': 5.29.0_he2ccbldppg44uulnyq4rwocfa
|
||||
'@typescript-eslint/scope-manager': 5.29.0
|
||||
'@typescript-eslint/type-utils': 5.29.0_4x5o4skxv6sl53vpwefgt23khm
|
||||
'@typescript-eslint/utils': 5.29.0_4x5o4skxv6sl53vpwefgt23khm
|
||||
'@typescript-eslint/type-utils': 5.29.0_he2ccbldppg44uulnyq4rwocfa
|
||||
'@typescript-eslint/utils': 5.29.0_he2ccbldppg44uulnyq4rwocfa
|
||||
debug: 4.3.4
|
||||
eslint: 8.19.0
|
||||
eslint: 8.20.0
|
||||
functional-red-black-tree: 1.0.1
|
||||
ignore: 5.2.0
|
||||
regexpp: 3.2.0
|
||||
|
@ -2224,7 +2207,7 @@ packages:
|
|||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@typescript-eslint/parser/5.29.0_4x5o4skxv6sl53vpwefgt23khm:
|
||||
/@typescript-eslint/parser/5.29.0_he2ccbldppg44uulnyq4rwocfa:
|
||||
resolution: {integrity: sha512-ruKWTv+x0OOxbzIw9nW5oWlUopvP/IQDjB5ZqmTglLIoDTctLlAJpAQFpNPJP/ZI7hTT9sARBosEfaKbcFuECw==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
|
@ -2238,7 +2221,7 @@ packages:
|
|||
'@typescript-eslint/types': 5.29.0
|
||||
'@typescript-eslint/typescript-estree': 5.29.0_typescript@4.7.4
|
||||
debug: 4.3.4
|
||||
eslint: 8.19.0
|
||||
eslint: 8.20.0
|
||||
typescript: 4.7.4
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
|
@ -2252,7 +2235,7 @@ packages:
|
|||
'@typescript-eslint/visitor-keys': 5.29.0
|
||||
dev: true
|
||||
|
||||
/@typescript-eslint/type-utils/5.29.0_4x5o4skxv6sl53vpwefgt23khm:
|
||||
/@typescript-eslint/type-utils/5.29.0_he2ccbldppg44uulnyq4rwocfa:
|
||||
resolution: {integrity: sha512-JK6bAaaiJozbox3K220VRfCzLa9n0ib/J+FHIwnaV3Enw/TO267qe0pM1b1QrrEuy6xun374XEAsRlA86JJnyg==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
|
@ -2262,9 +2245,9 @@ packages:
|
|||
typescript:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@typescript-eslint/utils': 5.29.0_4x5o4skxv6sl53vpwefgt23khm
|
||||
'@typescript-eslint/utils': 5.29.0_he2ccbldppg44uulnyq4rwocfa
|
||||
debug: 4.3.4
|
||||
eslint: 8.19.0
|
||||
eslint: 8.20.0
|
||||
tsutils: 3.21.0_typescript@4.7.4
|
||||
typescript: 4.7.4
|
||||
transitivePeerDependencies:
|
||||
|
@ -2297,7 +2280,7 @@ packages:
|
|||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@typescript-eslint/utils/5.29.0_4x5o4skxv6sl53vpwefgt23khm:
|
||||
/@typescript-eslint/utils/5.29.0_he2ccbldppg44uulnyq4rwocfa:
|
||||
resolution: {integrity: sha512-3Eos6uP1nyLOBayc/VUdKZikV90HahXE5Dx9L5YlSd/7ylQPXhLk1BYb29SDgnBnTp+jmSZUU0QxUiyHgW4p7A==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
|
@ -2307,9 +2290,9 @@ packages:
|
|||
'@typescript-eslint/scope-manager': 5.29.0
|
||||
'@typescript-eslint/types': 5.29.0
|
||||
'@typescript-eslint/typescript-estree': 5.29.0_typescript@4.7.4
|
||||
eslint: 8.19.0
|
||||
eslint: 8.20.0
|
||||
eslint-scope: 5.1.1
|
||||
eslint-utils: 3.0.0_eslint@8.19.0
|
||||
eslint-utils: 3.0.0_eslint@8.20.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
- typescript
|
||||
|
@ -2469,32 +2452,32 @@ packages:
|
|||
vue: 3.2.37
|
||||
dev: false
|
||||
|
||||
/@volar/code-gen/0.38.5:
|
||||
resolution: {integrity: sha512-GRGhPKoNtRwZyn9M0b2buobeMR1Aj9zxZI0osanLG9vB9YCnJov1myxKU8EJV5NobpyspLIv1X6/BEHLZNsKig==}
|
||||
/@volar/code-gen/0.38.8:
|
||||
resolution: {integrity: sha512-e37jd+JwNjBpWiBblsdmYMbJ9bELiuj2yZrsXv1IVKpYNSfvS92ZiYjJqVXHUwpzNeZjFG0RCd5nTpbiebwANw==}
|
||||
dependencies:
|
||||
'@volar/source-map': 0.38.5
|
||||
'@volar/source-map': 0.38.8
|
||||
dev: true
|
||||
|
||||
/@volar/source-map/0.38.5:
|
||||
resolution: {integrity: sha512-TyTLkOtAW/7qnl4Gabt4W4vcKPBPCBdaPLKwkMglKcaX70lPH2CIwZcPMJo6PAilbUVXcuX86xfgdncWDKKaZQ==}
|
||||
/@volar/source-map/0.38.8:
|
||||
resolution: {integrity: sha512-JZvpjW/z2U3wq5wvwcTounPrRAZuSl4hlVKr3y7y72bKr++6W05OnX7fl/ddw39G/wLHdI2ag5+4JWsSd/EYhg==}
|
||||
dev: true
|
||||
|
||||
/@volar/vue-code-gen/0.38.5:
|
||||
resolution: {integrity: sha512-4t2bX2bCmmlyYwPLqfH3AJXj9Km79uRmCy81recc8LB8ZT2Z9hOFNBAnlGNcCeZAtVWtmHVV7sXJtQAJQxkWeg==}
|
||||
/@volar/vue-code-gen/0.38.8:
|
||||
resolution: {integrity: sha512-iQVNmIu1TqnqTko+l9yeylmZipZ8zNH20XZAK9+48hkv2fEQnnJn5AI2W9Zb2M5DkGMpbYiJk9Fq1vm51YY1+g==}
|
||||
dependencies:
|
||||
'@volar/code-gen': 0.38.5
|
||||
'@volar/source-map': 0.38.5
|
||||
'@volar/code-gen': 0.38.8
|
||||
'@volar/source-map': 0.38.8
|
||||
'@vue/compiler-core': 3.2.37
|
||||
'@vue/compiler-dom': 3.2.37
|
||||
'@vue/shared': 3.2.37
|
||||
dev: true
|
||||
|
||||
/@volar/vue-typescript/0.38.5:
|
||||
resolution: {integrity: sha512-Gobtg5gxR3bf/l1h300OWCWkvDQnOINgnxkDYiF8qdTBalW6qGsgGmq0uLBBDLaoahrfM7rqNd5QfJwGBgFXZg==}
|
||||
/@volar/vue-typescript/0.38.8:
|
||||
resolution: {integrity: sha512-7WeFt5piz9I6FKw2cQQCWm+75MxS6xCOGm300iu+hJORlroN2dwWbwj97pQnDGbjQbftCRplUYf0GqmhcOsanQ==}
|
||||
dependencies:
|
||||
'@volar/code-gen': 0.38.5
|
||||
'@volar/source-map': 0.38.5
|
||||
'@volar/vue-code-gen': 0.38.5
|
||||
'@volar/code-gen': 0.38.8
|
||||
'@volar/source-map': 0.38.8
|
||||
'@volar/vue-code-gen': 0.38.8
|
||||
'@vue/compiler-sfc': 3.2.37
|
||||
'@vue/reactivity': 3.2.37
|
||||
dev: true
|
||||
|
@ -2511,7 +2494,7 @@ packages:
|
|||
/@vue/compiler-core/3.2.37:
|
||||
resolution: {integrity: sha512-81KhEjo7YAOh0vQJoSmAD68wLfYqJvoiD4ulyedzF+OEk/bk6/hx3fTNVfuzugIIaTrOx4PGx6pAiBRe5e9Zmg==}
|
||||
dependencies:
|
||||
'@babel/parser': 7.18.4
|
||||
'@babel/parser': 7.18.8
|
||||
'@vue/shared': 3.2.37
|
||||
estree-walker: 2.0.2
|
||||
source-map: 0.6.1
|
||||
|
@ -2547,7 +2530,7 @@ packages:
|
|||
/@vue/compiler-sfc/3.2.37:
|
||||
resolution: {integrity: sha512-+7i/2+9LYlpqDv+KTtWhOZH+pa8/HnX/905MdVmAcI/mPQOBwkHHIzrsEsucyOIZQYMkXUiTkmZq5am/NyXKkg==}
|
||||
dependencies:
|
||||
'@babel/parser': 7.18.4
|
||||
'@babel/parser': 7.18.8
|
||||
'@vue/compiler-core': 3.2.37
|
||||
'@vue/compiler-dom': 3.2.37
|
||||
'@vue/compiler-ssr': 3.2.37
|
||||
|
@ -2596,7 +2579,7 @@ packages:
|
|||
/@vue/reactivity-transform/3.2.37:
|
||||
resolution: {integrity: sha512-IWopkKEb+8qpu/1eMKVeXrK0NLw9HicGviJzhJDEyfxTR9e1WtpnnbYkJWurX6WwoFP0sz10xQg8yL8lgskAZg==}
|
||||
dependencies:
|
||||
'@babel/parser': 7.18.4
|
||||
'@babel/parser': 7.18.8
|
||||
'@vue/compiler-core': 3.2.37
|
||||
'@vue/shared': 3.2.37
|
||||
estree-walker: 2.0.2
|
||||
|
@ -3325,7 +3308,7 @@ packages:
|
|||
dev: true
|
||||
|
||||
/concat-map/0.0.1:
|
||||
resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
|
||||
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
||||
|
||||
/consola/2.15.3:
|
||||
resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==}
|
||||
|
@ -4206,7 +4189,7 @@ packages:
|
|||
eslint-import-resolver-webpack:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@typescript-eslint/parser': 5.29.0_4x5o4skxv6sl53vpwefgt23khm
|
||||
'@typescript-eslint/parser': 5.29.0_he2ccbldppg44uulnyq4rwocfa
|
||||
debug: 3.2.7
|
||||
eslint-import-resolver-node: 0.3.6
|
||||
find-up: 2.1.0
|
||||
|
@ -4214,35 +4197,35 @@ packages:
|
|||
- supports-color
|
||||
dev: true
|
||||
|
||||
/eslint-plugin-antfu/0.25.2_4x5o4skxv6sl53vpwefgt23khm:
|
||||
/eslint-plugin-antfu/0.25.2_he2ccbldppg44uulnyq4rwocfa:
|
||||
resolution: {integrity: sha512-yRhuFMwUKhSYm8BWTZsW4ymYnFPCJWZb2LzjG+mQb7JbKflk73JIFMCREPOaV4nWwc4YJEPhym75QsC7AFbqSw==}
|
||||
dependencies:
|
||||
'@typescript-eslint/utils': 5.29.0_4x5o4skxv6sl53vpwefgt23khm
|
||||
'@typescript-eslint/utils': 5.29.0_he2ccbldppg44uulnyq4rwocfa
|
||||
transitivePeerDependencies:
|
||||
- eslint
|
||||
- supports-color
|
||||
- typescript
|
||||
dev: true
|
||||
|
||||
/eslint-plugin-es/4.1.0_eslint@8.19.0:
|
||||
/eslint-plugin-es/4.1.0_eslint@8.20.0:
|
||||
resolution: {integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==}
|
||||
engines: {node: '>=8.10.0'}
|
||||
peerDependencies:
|
||||
eslint: '>=4.19.1'
|
||||
dependencies:
|
||||
eslint: 8.19.0
|
||||
eslint: 8.20.0
|
||||
eslint-utils: 2.1.0
|
||||
regexpp: 3.2.0
|
||||
dev: true
|
||||
|
||||
/eslint-plugin-eslint-comments/3.2.0_eslint@8.19.0:
|
||||
/eslint-plugin-eslint-comments/3.2.0_eslint@8.20.0:
|
||||
resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==}
|
||||
engines: {node: '>=6.5.0'}
|
||||
peerDependencies:
|
||||
eslint: '>=4.19.1'
|
||||
dependencies:
|
||||
escape-string-regexp: 1.0.5
|
||||
eslint: 8.19.0
|
||||
eslint: 8.20.0
|
||||
ignore: 5.2.0
|
||||
dev: true
|
||||
|
||||
|
@ -4252,7 +4235,7 @@ packages:
|
|||
htmlparser2: 7.2.0
|
||||
dev: true
|
||||
|
||||
/eslint-plugin-import/2.26.0_57gvyn65w4xhr7pbo3dz7muce4:
|
||||
/eslint-plugin-import/2.26.0_iwgptdptnivlpb26w4guqgzghe:
|
||||
resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
|
||||
engines: {node: '>=4'}
|
||||
peerDependencies:
|
||||
|
@ -4262,12 +4245,12 @@ packages:
|
|||
'@typescript-eslint/parser':
|
||||
optional: true
|
||||
dependencies:
|
||||
'@typescript-eslint/parser': 5.29.0_4x5o4skxv6sl53vpwefgt23khm
|
||||
'@typescript-eslint/parser': 5.29.0_he2ccbldppg44uulnyq4rwocfa
|
||||
array-includes: 3.1.5
|
||||
array.prototype.flat: 1.3.0
|
||||
debug: 2.6.9
|
||||
doctrine: 2.1.0
|
||||
eslint: 8.19.0
|
||||
eslint: 8.20.0
|
||||
eslint-import-resolver-node: 0.3.6
|
||||
eslint-module-utils: 2.7.3_tf5cicivm5w4o4owwu2j7i4y2u
|
||||
has: 1.0.3
|
||||
|
@ -4283,40 +4266,40 @@ packages:
|
|||
- supports-color
|
||||
dev: true
|
||||
|
||||
/eslint-plugin-jsonc/2.3.0_eslint@8.19.0:
|
||||
/eslint-plugin-jsonc/2.3.0_eslint@8.20.0:
|
||||
resolution: {integrity: sha512-QqHj7Chw8vsALsCOhFxecRIepxpbcpmMon9yA1+GaYk1Am0GanHAwnTkeVX+/ysAb4QTkeGMZ+ZPK4TKrZ/VSw==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
eslint: '>=6.0.0'
|
||||
dependencies:
|
||||
eslint: 8.19.0
|
||||
eslint-utils: 3.0.0_eslint@8.19.0
|
||||
eslint: 8.20.0
|
||||
eslint-utils: 3.0.0_eslint@8.20.0
|
||||
jsonc-eslint-parser: 2.1.0
|
||||
natural-compare: 1.4.0
|
||||
dev: true
|
||||
|
||||
/eslint-plugin-markdown/2.2.1_eslint@8.19.0:
|
||||
/eslint-plugin-markdown/2.2.1_eslint@8.20.0:
|
||||
resolution: {integrity: sha512-FgWp4iyYvTFxPwfbxofTvXxgzPsDuSKHQy2S+a8Ve6savbujey+lgrFFbXQA0HPygISpRYWYBjooPzhYSF81iA==}
|
||||
engines: {node: ^8.10.0 || ^10.12.0 || >= 12.0.0}
|
||||
peerDependencies:
|
||||
eslint: '>=6.0.0'
|
||||
dependencies:
|
||||
eslint: 8.19.0
|
||||
eslint: 8.20.0
|
||||
mdast-util-from-markdown: 0.8.5
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/eslint-plugin-n/15.2.3_eslint@8.19.0:
|
||||
/eslint-plugin-n/15.2.3_eslint@8.20.0:
|
||||
resolution: {integrity: sha512-H+KC7U5R+3IWTeRnACm/4wlqLvS1Q7M6t7BGhn89qXDkZan8HTAEv3ouIONA0ifDwc2YzPFmyPzHuNLddNK4jw==}
|
||||
engines: {node: '>=12.22.0'}
|
||||
peerDependencies:
|
||||
eslint: '>=7.0.0'
|
||||
dependencies:
|
||||
builtins: 5.0.1
|
||||
eslint: 8.19.0
|
||||
eslint-plugin-es: 4.1.0_eslint@8.19.0
|
||||
eslint-utils: 3.0.0_eslint@8.19.0
|
||||
eslint: 8.20.0
|
||||
eslint-plugin-es: 4.1.0_eslint@8.20.0
|
||||
eslint-utils: 3.0.0_eslint@8.20.0
|
||||
ignore: 5.2.0
|
||||
is-core-module: 2.9.0
|
||||
minimatch: 3.1.2
|
||||
|
@ -4324,16 +4307,16 @@ packages:
|
|||
semver: 7.3.7
|
||||
dev: true
|
||||
|
||||
/eslint-plugin-promise/6.0.0_eslint@8.19.0:
|
||||
/eslint-plugin-promise/6.0.0_eslint@8.20.0:
|
||||
resolution: {integrity: sha512-7GPezalm5Bfi/E22PnQxDWH2iW9GTvAlUNTztemeHb6c1BniSyoeTrM87JkC0wYdi6aQrZX9p2qEiAno8aTcbw==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
eslint: ^7.0.0 || ^8.0.0
|
||||
dependencies:
|
||||
eslint: 8.19.0
|
||||
eslint: 8.20.0
|
||||
dev: true
|
||||
|
||||
/eslint-plugin-react/7.30.1_eslint@8.19.0:
|
||||
/eslint-plugin-react/7.30.1_eslint@8.20.0:
|
||||
resolution: {integrity: sha512-NbEvI9jtqO46yJA3wcRF9Mo0lF9T/jhdHqhCHXiXtD+Zcb98812wvokjWpU7Q4QH5edo6dmqrukxVvWWXHlsUg==}
|
||||
engines: {node: '>=4'}
|
||||
peerDependencies:
|
||||
|
@ -4342,7 +4325,7 @@ packages:
|
|||
array-includes: 3.1.5
|
||||
array.prototype.flatmap: 1.3.0
|
||||
doctrine: 2.1.0
|
||||
eslint: 8.19.0
|
||||
eslint: 8.20.0
|
||||
estraverse: 5.3.0
|
||||
jsx-ast-utils: 3.3.1
|
||||
minimatch: 3.1.2
|
||||
|
@ -4356,7 +4339,7 @@ packages:
|
|||
string.prototype.matchall: 4.0.7
|
||||
dev: true
|
||||
|
||||
/eslint-plugin-unicorn/42.0.0_eslint@8.19.0:
|
||||
/eslint-plugin-unicorn/42.0.0_eslint@8.20.0:
|
||||
resolution: {integrity: sha512-ixBsbhgWuxVaNlPTT8AyfJMlhyC5flCJFjyK3oKE8TRrwBnaHvUbuIkCM1lqg8ryYrFStL/T557zfKzX4GKSlg==}
|
||||
engines: {node: '>=12'}
|
||||
peerDependencies:
|
||||
|
@ -4365,8 +4348,8 @@ packages:
|
|||
'@babel/helper-validator-identifier': 7.16.7
|
||||
ci-info: 3.3.2
|
||||
clean-regexp: 1.0.0
|
||||
eslint: 8.19.0
|
||||
eslint-utils: 3.0.0_eslint@8.19.0
|
||||
eslint: 8.20.0
|
||||
eslint-utils: 3.0.0_eslint@8.20.0
|
||||
esquery: 1.4.0
|
||||
indent-string: 4.0.0
|
||||
is-builtin-module: 3.1.0
|
||||
|
@ -4379,32 +4362,32 @@ packages:
|
|||
strip-indent: 3.0.0
|
||||
dev: true
|
||||
|
||||
/eslint-plugin-vue/9.1.1_eslint@8.19.0:
|
||||
/eslint-plugin-vue/9.1.1_eslint@8.20.0:
|
||||
resolution: {integrity: sha512-W9n5PB1X2jzC7CK6riG0oAcxjmKrjTF6+keL1rni8n57DZeilx/Fulz+IRJK3lYseLNAygN0I62L7DvioW40Tw==}
|
||||
engines: {node: ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
eslint: ^6.2.0 || ^7.0.0 || ^8.0.0
|
||||
dependencies:
|
||||
eslint: 8.19.0
|
||||
eslint-utils: 3.0.0_eslint@8.19.0
|
||||
eslint: 8.20.0
|
||||
eslint-utils: 3.0.0_eslint@8.20.0
|
||||
natural-compare: 1.4.0
|
||||
nth-check: 2.1.1
|
||||
postcss-selector-parser: 6.0.10
|
||||
semver: 7.3.7
|
||||
vue-eslint-parser: 9.0.3_eslint@8.19.0
|
||||
vue-eslint-parser: 9.0.3_eslint@8.20.0
|
||||
xml-name-validator: 4.0.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/eslint-plugin-yml/1.0.0_eslint@8.19.0:
|
||||
/eslint-plugin-yml/1.0.0_eslint@8.20.0:
|
||||
resolution: {integrity: sha512-0RVoUFh5vpznE2DIP5agSpWO/nU8GgAWwoTAHWopU2X+1SCB5ykHU6DwS0GrZ5Hvejtk6CcADQllpQQJB4C5QA==}
|
||||
engines: {node: ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
eslint: '>=6.0.0'
|
||||
dependencies:
|
||||
debug: 4.3.4
|
||||
eslint: 8.19.0
|
||||
eslint: 8.20.0
|
||||
lodash: 4.17.21
|
||||
natural-compare: 1.4.0
|
||||
yaml-eslint-parser: 1.0.1
|
||||
|
@ -4434,13 +4417,13 @@ packages:
|
|||
dependencies:
|
||||
eslint-visitor-keys: 1.3.0
|
||||
|
||||
/eslint-utils/3.0.0_eslint@8.19.0:
|
||||
/eslint-utils/3.0.0_eslint@8.20.0:
|
||||
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
|
||||
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
|
||||
peerDependencies:
|
||||
eslint: '>=5'
|
||||
dependencies:
|
||||
eslint: 8.19.0
|
||||
eslint: 8.20.0
|
||||
eslint-visitor-keys: 2.1.0
|
||||
dev: true
|
||||
|
||||
|
@ -4458,8 +4441,8 @@ packages:
|
|||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
dev: true
|
||||
|
||||
/eslint/8.19.0:
|
||||
resolution: {integrity: sha512-SXOPj3x9VKvPe81TjjUJCYlV4oJjQw68Uek+AM0X4p+33dj2HY5bpTZOgnQHcG2eAm1mtCU9uNMnJi7exU/kYw==}
|
||||
/eslint/8.20.0:
|
||||
resolution: {integrity: sha512-d4ixhz5SKCa1D6SCPrivP7yYVi7nyD6A4vs6HIAul9ujBzcEmZVM3/0NN/yu5nKhmO1wjp5xQ46iRfmDGlOviA==}
|
||||
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
|
@ -4472,7 +4455,7 @@ packages:
|
|||
doctrine: 3.0.0
|
||||
escape-string-regexp: 4.0.0
|
||||
eslint-scope: 7.1.1
|
||||
eslint-utils: 3.0.0_eslint@8.19.0
|
||||
eslint-utils: 3.0.0_eslint@8.20.0
|
||||
eslint-visitor-keys: 3.3.0
|
||||
espree: 9.3.2
|
||||
esquery: 1.4.0
|
||||
|
@ -4481,7 +4464,7 @@ packages:
|
|||
file-entry-cache: 6.0.1
|
||||
functional-red-black-tree: 1.0.1
|
||||
glob-parent: 6.0.2
|
||||
globals: 13.15.0
|
||||
globals: 13.16.0
|
||||
ignore: 5.2.0
|
||||
import-fresh: 3.3.0
|
||||
imurmurhash: 0.1.4
|
||||
|
@ -4947,8 +4930,8 @@ packages:
|
|||
engines: {node: '>=4'}
|
||||
dev: true
|
||||
|
||||
/globals/13.15.0:
|
||||
resolution: {integrity: sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==}
|
||||
/globals/13.16.0:
|
||||
resolution: {integrity: sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==}
|
||||
engines: {node: '>=8'}
|
||||
dependencies:
|
||||
type-fest: 0.20.2
|
||||
|
@ -8035,14 +8018,14 @@ packages:
|
|||
vue: 3.2.37
|
||||
dev: false
|
||||
|
||||
/vue-eslint-parser/9.0.3_eslint@8.19.0:
|
||||
/vue-eslint-parser/9.0.3_eslint@8.20.0:
|
||||
resolution: {integrity: sha512-yL+ZDb+9T0ELG4VIFo/2anAOz8SvBdlqEnQnvJ3M7Scq56DvtjY0VY88bByRZB0D4J0u8olBcfrXTVONXsh4og==}
|
||||
engines: {node: ^14.17.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
eslint: '>=6.0.0'
|
||||
dependencies:
|
||||
debug: 4.3.4
|
||||
eslint: 8.19.0
|
||||
eslint: 8.20.0
|
||||
eslint-scope: 7.1.1
|
||||
eslint-visitor-keys: 3.3.0
|
||||
espree: 9.3.2
|
||||
|
@ -8075,13 +8058,13 @@ packages:
|
|||
vue: 3.2.37
|
||||
dev: false
|
||||
|
||||
/vue-tsc/0.38.5_typescript@4.7.4:
|
||||
resolution: {integrity: sha512-AFlqvwpENOTTJxS1Gl1uG0ZVsvtGCbgv9d0i4fXk5Pnao/ETVwWewPEsj+4cPlwa5htO9WhK6qfWwoqcCqg0yQ==}
|
||||
/vue-tsc/0.38.8_typescript@4.7.4:
|
||||
resolution: {integrity: sha512-hhyc5SODiekcYNXG08aNg17LogR19o3i14avVejo+Fm45Dqk9Ke6rb0M19HoTKdQGfZBgqg2VUboYxmtAukWeg==}
|
||||
hasBin: true
|
||||
peerDependencies:
|
||||
typescript: '*'
|
||||
dependencies:
|
||||
'@volar/vue-typescript': 0.38.5
|
||||
'@volar/vue-typescript': 0.38.8
|
||||
typescript: 4.7.4
|
||||
dev: true
|
||||
|
||||
|
|
Loading…
Reference in New Issue