docs: switch to local search (#3594)
4
docs/.vitepress/components.d.ts
vendored
@ -3,11 +3,9 @@
|
||||
// @ts-nocheck
|
||||
// Generated by unplugin-vue-components
|
||||
// Read more: https://github.com/vuejs/core/pull/3399
|
||||
import '@vue/runtime-core'
|
||||
|
||||
export {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
Contributors: typeof import('./components/Contributors.vue')['default']
|
||||
CourseLink: typeof import('./components/CourseLink.vue')['default']
|
||||
|
||||
@ -24,9 +24,9 @@ export default withPwa(defineConfig({
|
||||
locales: {
|
||||
root: {
|
||||
label: 'English',
|
||||
lang: 'en',
|
||||
lang: 'en-US',
|
||||
},
|
||||
en: {
|
||||
zh: {
|
||||
label: '简体中文',
|
||||
lang: 'zh',
|
||||
link: 'https://cn.vitest.dev/',
|
||||
@ -34,8 +34,8 @@ export default withPwa(defineConfig({
|
||||
},
|
||||
head: [
|
||||
['meta', { name: 'theme-color', content: '#729b1a' }],
|
||||
['link', { rel: 'icon', href: '/favicon.ico', sizes: 'any' }],
|
||||
['link', { rel: 'icon', href: '/logo.svg', type: 'image/svg+xml' }],
|
||||
['link', { rel: 'alternate icon', href: '/favicon.ico', type: 'image/png', sizes: '16x16' }],
|
||||
['meta', { name: 'author', content: `${teamMembers.map(c => c.name).join(', ')} and ${vitestName} contributors` }],
|
||||
['meta', { name: 'keywords', content: 'vitest, vite, test, coverage, snapshot, react, vue, preact, svelte, solid, lit, ruby, cypress, puppeteer, jsdom, happy-dom, test-runner, jest, typescript, esm, tinypool, tinyspy, c8, node' }],
|
||||
['meta', { property: 'og:title', content: vitestName }],
|
||||
@ -66,20 +66,17 @@ export default withPwa(defineConfig({
|
||||
text: 'Suggest changes to this page',
|
||||
},
|
||||
|
||||
algolia: {
|
||||
appId: 'ZTF29HGJ69',
|
||||
apiKey: '9c3ced6fed60d2670bb36ab7e8bed8bc',
|
||||
indexName: 'vitest',
|
||||
// searchParameters: {
|
||||
// facetFilters: ['tags:en'],
|
||||
// },
|
||||
},
|
||||
|
||||
localeLinks: {
|
||||
text: 'English',
|
||||
items: [
|
||||
{ text: '简体中文', link: 'https://cn.vitest.dev' },
|
||||
],
|
||||
search: {
|
||||
provider: 'local',
|
||||
/* provider: 'algolia',
|
||||
options: {
|
||||
appId: 'ZTF29HGJ69',
|
||||
apiKey: '9c3ced6fed60d2670bb36ab7e8bed8bc',
|
||||
indexName: 'vitest',
|
||||
// searchParameters: {
|
||||
// facetFilters: ['tags:en'],
|
||||
// },
|
||||
}, */
|
||||
},
|
||||
|
||||
socialLinks: [
|
||||
|
||||
@ -1,8 +1,9 @@
|
||||
import { join, resolve } from 'pathe'
|
||||
import { fileURLToPath } from 'node:url'
|
||||
import { dirname, join, resolve } from 'pathe'
|
||||
import fs from 'fs-extra'
|
||||
import { $fetch } from 'ohmyfetch'
|
||||
|
||||
const docsDir = resolve(__dirname, '../..')
|
||||
const docsDir = resolve(dirname(fileURLToPath(import.meta.url)), '../..')
|
||||
const pathContributors = resolve(docsDir, '.vitepress/contributor-names.json')
|
||||
const dirAvatars = resolve(docsDir, 'public/user-avatars/')
|
||||
const dirSponsors = resolve(docsDir, 'public/sponsors/')
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
import type { VitePWAOptions } from 'vite-plugin-pwa'
|
||||
import type { PwaOptions } from '@vite-pwa/vitepress'
|
||||
import {
|
||||
githubusercontentRegex,
|
||||
pwaFontStylesRegex,
|
||||
@ -8,7 +8,7 @@ import {
|
||||
vitestShortName,
|
||||
} from '../meta'
|
||||
|
||||
export const pwa: Partial<VitePWAOptions> = {
|
||||
export const pwa: PwaOptions = {
|
||||
outDir: '.vitepress/dist',
|
||||
registerType: 'autoUpdate',
|
||||
// include all static assets under public/
|
||||
@ -18,7 +18,19 @@ export const pwa: Partial<VitePWAOptions> = {
|
||||
short_name: vitestShortName,
|
||||
description: vitestDescription,
|
||||
theme_color: '#ffffff',
|
||||
start_url: '/',
|
||||
lang: 'en-US',
|
||||
dir: 'ltr',
|
||||
orientation: 'natural',
|
||||
display: 'standalone',
|
||||
display_override: ['window-controls-overlay'],
|
||||
categories: ['development', 'developer tools'],
|
||||
icons: [
|
||||
{
|
||||
src: 'pwa-64x64.png',
|
||||
sizes: '64x64',
|
||||
type: 'image/png',
|
||||
},
|
||||
{
|
||||
src: 'pwa-192x192.png',
|
||||
sizes: '192x192',
|
||||
@ -28,14 +40,28 @@ export const pwa: Partial<VitePWAOptions> = {
|
||||
src: 'pwa-512x512.png',
|
||||
sizes: '512x512',
|
||||
type: 'image/png',
|
||||
purpose: 'any',
|
||||
},
|
||||
{
|
||||
src: 'logo.svg',
|
||||
sizes: '165x165',
|
||||
type: 'image/svg',
|
||||
purpose: 'any maskable',
|
||||
src: 'maskable-icon.png',
|
||||
sizes: '512x512',
|
||||
type: 'image/png',
|
||||
purpose: 'maskable',
|
||||
},
|
||||
],
|
||||
screenshots: [{
|
||||
src: 'og.png',
|
||||
sizes: '2258x1185',
|
||||
type: 'image/png',
|
||||
label: `Screenshot of ${vitestName}`,
|
||||
}],
|
||||
handle_links: 'preferred',
|
||||
launch_handler: {
|
||||
client_mode: ['navigate-existing', 'auto'],
|
||||
},
|
||||
edge_side_panel: {
|
||||
preferred_width: 480,
|
||||
},
|
||||
},
|
||||
workbox: {
|
||||
navigateFallbackDenylist: [/^\/new$/],
|
||||
|
||||
@ -13,8 +13,13 @@ export async function transformHead({ pageData }: TransformContext): Promise<Hea
|
||||
})
|
||||
|
||||
head.push(['link', { rel: 'prefetch', href: '/logo.svg' }])
|
||||
if (home)
|
||||
if (home) {
|
||||
head.push(['link', { rel: 'prefetch', href: '/logo-shadow.svg' }])
|
||||
head.push(['link', { rel: 'prefetch', href: '/sponsors/antfu.svg' }])
|
||||
head.push(['link', { rel: 'prefetch', href: '/sponsors/sheremet-va.svg' }])
|
||||
head.push(['link', { rel: 'prefetch', href: '/sponsors/patak-dev.svg' }])
|
||||
head.push(['link', { rel: 'prefetch', href: '/netlify.svg' }])
|
||||
}
|
||||
|
||||
return head
|
||||
}
|
||||
|
||||
@ -74,5 +74,3 @@ img.resizable-img {
|
||||
min-height: unset;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -19,13 +19,9 @@
|
||||
--vp-c-text-light-2: rgba(56 56 56 / 70%);
|
||||
/* fix contrast: lang name on gray code block */
|
||||
--vp-c-text-dark-3: rgba(180, 180, 180, 0.7);
|
||||
--vp-code-tab-divider: var(--vp-c-divider);
|
||||
--vp-code-copy-code-bg: rgba(125,125,125,0.1);
|
||||
--vp-code-copy-code-hover-bg: rgba(125,125,125,0.2);
|
||||
--vp-c-disabled-bg: rgba(125,125,125,0.2);
|
||||
--vp-code-tab-text-color: var(--vp-c-text-2);
|
||||
--vp-code-tab-hover-text-color: var(--vp-c-text-1);
|
||||
--vp-code-copy-code-active-text: var(--vp-c-text-2);
|
||||
}
|
||||
|
||||
.dark {
|
||||
@ -39,10 +35,6 @@
|
||||
--vp-c-text-dark-2: rgba(235, 235, 235, 0.60);
|
||||
/* fix lang name: check the same above (this is the default) */
|
||||
--vp-c-text-dark-3: rgba(235, 235, 235, 0.38);
|
||||
--vp-code-tab-text-color: var(--vp-c-text-dark-2);
|
||||
--vp-code-tab-active-text-color: var(--vp-c-text-dark-1);
|
||||
--vp-code-tab-hover-text-color: var(--vp-c-text-dark-1);
|
||||
--vp-code-copy-code-active-text: var(--vp-c-text-dark-2);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -59,9 +51,6 @@
|
||||
--vp-button-brand-active-border: var(--vp-c-brand-light);
|
||||
--vp-button-brand-active-text: var(--vp-c-text-dark-1);
|
||||
--vp-button-brand-active-bg: var(--vp-button-brand-bg);
|
||||
--vp-code-tab-active-text-color: var(--vp-c-brand);
|
||||
--vp-code-tab-active-bar-color: var(--vp-c-brand-darker);
|
||||
--vp-code-tab-divider: var(--vp-c-brand);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -18,18 +18,17 @@ You can try Vitest online on [StackBlitz](https://vitest.new). It runs Vitest di
|
||||
|
||||
<CourseLink href="https://vueschool.io/lessons/how-to-install-vitest?friend=vueuse">Learn how to install by Video</CourseLink>
|
||||
|
||||
With npm
|
||||
```bash
|
||||
npm install -D vitest
|
||||
```
|
||||
or with yarn
|
||||
```bash
|
||||
yarn add -D vitest
|
||||
```
|
||||
or with pnpm
|
||||
```bash
|
||||
pnpm add -D vitest
|
||||
```
|
||||
::: code-group
|
||||
```bash [npm]
|
||||
npm install -D vitest
|
||||
```
|
||||
```bash [yarn]
|
||||
yarn add -D vitest
|
||||
```
|
||||
```bash [pnpm]
|
||||
pnpm add -D vitest
|
||||
```
|
||||
:::
|
||||
|
||||
:::tip
|
||||
Vitest requires Vite >=v3.0.0 and Node >=v14.18
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
{
|
||||
"name": "docs",
|
||||
"type": "module",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vitepress --port 3333 --open",
|
||||
@ -8,7 +9,8 @@
|
||||
"serve": "vitepress serve",
|
||||
"preview-https": "pnpm run build && serve .vitepress/dist",
|
||||
"preview-https-no-prefetch": "pnpm run build-no-prefetch && serve .vitepress/dist",
|
||||
"prefetch": "esno .vitepress/scripts/fetch-avatars.ts"
|
||||
"prefetch": "esno .vitepress/scripts/fetch-avatars.ts",
|
||||
"generate-pwa-icons": "pwa-assets-generator"
|
||||
},
|
||||
"dependencies": {
|
||||
"@vueuse/core": "^10.2.0",
|
||||
@ -18,6 +20,7 @@
|
||||
"devDependencies": {
|
||||
"@iconify-json/carbon": "^1.1.18",
|
||||
"@unocss/reset": "^0.53.1",
|
||||
"@vite-pwa/assets-generator": "^0.0.3",
|
||||
"@vite-pwa/vitepress": "^0.2.0",
|
||||
"@vitejs/plugin-vue": "latest",
|
||||
"esno": "^0.16.3",
|
||||
@ -30,5 +33,12 @@
|
||||
"vite-plugin-pwa": "^0.16.4",
|
||||
"vitepress": "1.0.0-beta.3",
|
||||
"workbox-window": "^7.0.0"
|
||||
},
|
||||
"pnpm": {
|
||||
"peerDependencyRules": {
|
||||
"ignoreMissing": [
|
||||
"@algolia/client-search"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 840 B |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 814 B |
BIN
docs/public/maskable-icon.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 2.7 KiB |
BIN
docs/public/pwa-64x64.png
Normal file
|
After Width: | Height: | Size: 493 B |
21
docs/pwa-assets.config.ts
Normal file
@ -0,0 +1,21 @@
|
||||
import {
|
||||
defineConfig,
|
||||
minimalPreset as preset,
|
||||
} from '@vite-pwa/assets-generator/config'
|
||||
|
||||
export default defineConfig({
|
||||
preset: {
|
||||
...preset,
|
||||
assetName(type, size) {
|
||||
switch (type) {
|
||||
case 'transparent':
|
||||
return `pwa-${size.width}x${size.height}.png`
|
||||
case 'maskable':
|
||||
return 'maskable-icon.png'
|
||||
case 'apple':
|
||||
return 'apple-touch-icon.png'
|
||||
}
|
||||
},
|
||||
},
|
||||
images: ['public/logo.svg'],
|
||||
})
|
||||
@ -10,10 +10,14 @@ export default defineConfig({
|
||||
optimizeDeps: {
|
||||
// vitepress is aliased with replacement `join(DIST_CLIENT_PATH, '/index')`
|
||||
// This needs to be excluded from optimization
|
||||
exclude: ['vitepress'],
|
||||
exclude: ['@vueuse/core', 'vitepress'],
|
||||
},
|
||||
server: {
|
||||
hmr: {
|
||||
overlay: false,
|
||||
},
|
||||
},
|
||||
plugins: [
|
||||
// TODO remove cast when moved to Vite 3
|
||||
Components({
|
||||
include: [/\.vue/, /\.md/],
|
||||
dirs: '.vitepress/components',
|
||||
@ -32,7 +36,7 @@ export default defineConfig({
|
||||
scale: 1.2,
|
||||
}),
|
||||
],
|
||||
}) as unknown as Plugin,
|
||||
}),
|
||||
IncludesPlugin(),
|
||||
],
|
||||
})
|
||||
|
||||
11
examples/vitesse/src/auto-import.d.ts
vendored
@ -1,4 +1,7 @@
|
||||
// Generated by 'unplugin-auto-import'
|
||||
/* eslint-disable */
|
||||
/* prettier-ignore */
|
||||
// @ts-nocheck
|
||||
// Generated by unplugin-auto-import
|
||||
export {}
|
||||
declare global {
|
||||
const EffectScope: typeof import('vue')['EffectScope']
|
||||
@ -42,6 +45,7 @@ declare global {
|
||||
const toRaw: typeof import('vue')['toRaw']
|
||||
const toRef: typeof import('vue')['toRef']
|
||||
const toRefs: typeof import('vue')['toRefs']
|
||||
const toValue: typeof import('vue')['toValue']
|
||||
const triggerRef: typeof import('vue')['triggerRef']
|
||||
const unref: typeof import('vue')['unref']
|
||||
const useAttrs: typeof import('vue')['useAttrs']
|
||||
@ -53,3 +57,8 @@ declare global {
|
||||
const watchPostEffect: typeof import('vue')['watchPostEffect']
|
||||
const watchSyncEffect: typeof import('vue')['watchSyncEffect']
|
||||
}
|
||||
// for type re-export
|
||||
declare global {
|
||||
// @ts-ignore
|
||||
export type { Component, ComponentPublicInstance, ComputedRef, InjectionKey, PropType, Ref, VNode } from 'vue'
|
||||
}
|
||||
|
||||
237
pnpm-lock.yaml
generated
@ -148,6 +148,9 @@ importers:
|
||||
'@unocss/reset':
|
||||
specifier: ^0.53.1
|
||||
version: 0.53.1
|
||||
'@vite-pwa/assets-generator':
|
||||
specifier: ^0.0.3
|
||||
version: 0.0.3
|
||||
'@vite-pwa/vitepress':
|
||||
specifier: ^0.2.0
|
||||
version: 0.2.0(vite-plugin-pwa@0.16.4)
|
||||
@ -328,10 +331,10 @@ importers:
|
||||
version: 20.3.1
|
||||
'@types/react':
|
||||
specifier: latest
|
||||
version: 18.2.13
|
||||
version: 18.2.12
|
||||
'@vitejs/plugin-react':
|
||||
specifier: latest
|
||||
version: 4.0.1(vite@4.3.9)
|
||||
version: 4.0.0(vite@4.3.9)
|
||||
jsdom:
|
||||
specifier: latest
|
||||
version: 22.1.0
|
||||
@ -389,7 +392,7 @@ importers:
|
||||
version: 17.0.2
|
||||
'@vitejs/plugin-react':
|
||||
specifier: latest
|
||||
version: 4.0.1(vite@4.3.9)
|
||||
version: 4.0.0(vite@4.3.9)
|
||||
'@vitest/ui':
|
||||
specifier: latest
|
||||
version: link:../../packages/ui
|
||||
@ -429,7 +432,7 @@ importers:
|
||||
version: 17.0.17
|
||||
'@vitejs/plugin-react':
|
||||
specifier: latest
|
||||
version: 4.0.1(vite@4.3.9)
|
||||
version: 4.0.0(vite@4.3.9)
|
||||
'@vitest/ui':
|
||||
specifier: latest
|
||||
version: link:../../packages/ui
|
||||
@ -615,7 +618,7 @@ importers:
|
||||
version: 18.0.8
|
||||
'@vitejs/plugin-react':
|
||||
specifier: latest
|
||||
version: 4.0.1(vite@4.3.9)
|
||||
version: 4.0.0(vite@4.3.9)
|
||||
'@vitest/coverage-c8':
|
||||
specifier: ^0.24.5
|
||||
version: 0.24.5
|
||||
@ -2266,13 +2269,6 @@ packages:
|
||||
dependencies:
|
||||
'@babel/highlight': 7.22.5
|
||||
|
||||
/@babel/code-frame@7.21.4:
|
||||
resolution: {integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/highlight': 7.22.5
|
||||
dev: true
|
||||
|
||||
/@babel/code-frame@7.22.5:
|
||||
resolution: {integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
@ -2799,13 +2795,6 @@ packages:
|
||||
dependencies:
|
||||
'@babel/types': 7.22.5
|
||||
|
||||
/@babel/parser@7.21.4:
|
||||
resolution: {integrity: sha512-alVJj7k7zIxqBZ7BTRhz0IqJFxW1VJbm6N8JbcYhQ186df9ZBPbZBmWSqAMXwHGsCJdYks7z/voa3ibiS5bCIw==}
|
||||
engines: {node: '>=6.0.0'}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
'@babel/types': 7.22.5
|
||||
|
||||
/@babel/parser@7.22.5:
|
||||
resolution: {integrity: sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==}
|
||||
engines: {node: '>=6.0.0'}
|
||||
@ -4936,6 +4925,10 @@ packages:
|
||||
/@bcoe/v8-coverage@0.2.3:
|
||||
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
|
||||
|
||||
/@canvas/image-data@1.0.0:
|
||||
resolution: {integrity: sha512-BxOqI5LgsIQP1odU5KMwV9yoijleOPzHL18/YvNqF9KFSGF2K/DLlYAbDQsWqd/1nbaFuSkYD/191dpMtNh4vw==}
|
||||
dev: true
|
||||
|
||||
/@cnakazawa/watch@1.0.4:
|
||||
resolution: {integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==}
|
||||
engines: {node: '>=0.1.95'}
|
||||
@ -8382,7 +8375,7 @@ packages:
|
||||
resolution: {integrity: sha512-KnH2MnJUzmFNPW6RIKfd+zf2Wue8mEKX0M3cpX6aKl5ZXrJM1/c/Pc8c2xDNYQCnJO48Sm5ITbMXgqTr3h4jxQ==}
|
||||
engines: {node: '>=12'}
|
||||
dependencies:
|
||||
'@babel/code-frame': 7.21.4
|
||||
'@babel/code-frame': 7.22.5
|
||||
'@babel/runtime': 7.18.9
|
||||
'@types/aria-query': 4.2.2
|
||||
aria-query: 5.0.2
|
||||
@ -8396,7 +8389,7 @@ packages:
|
||||
resolution: {integrity: sha512-6YWYPPpxG3e/xOo6HIWwB/58HukkwIVTOaZ0VwdMVjhRUX/01E4FtQbck9GazOOj7MXHc5RBzMrU86iBJHbI+A==}
|
||||
engines: {node: '>=12'}
|
||||
dependencies:
|
||||
'@babel/code-frame': 7.21.4
|
||||
'@babel/code-frame': 7.22.5
|
||||
'@babel/runtime': 7.18.9
|
||||
'@types/aria-query': 4.2.2
|
||||
aria-query: 5.0.2
|
||||
@ -8931,6 +8924,14 @@ packages:
|
||||
csstype: 3.1.0
|
||||
dev: true
|
||||
|
||||
/@types/react@18.2.12:
|
||||
resolution: {integrity: sha512-ndmBMLCgn38v3SntMeoJaIrO6tGHYKMEBohCUmw8HoLLQdRMOIGXfeYaBTLe2lsFaSB3MOK1VXscYFnmLtTSmw==}
|
||||
dependencies:
|
||||
'@types/prop-types': 15.7.5
|
||||
'@types/scheduler': 0.16.2
|
||||
csstype: 3.1.2
|
||||
dev: true
|
||||
|
||||
/@types/react@18.2.13:
|
||||
resolution: {integrity: sha512-vJ+zElvi/Zn9cVXB5slX2xL8PZodPCwPRDpittQdw43JR2AJ5k3vKdgJJyneV/cYgIbLQUwXa9JVDvUZXGba+Q==}
|
||||
dependencies:
|
||||
@ -9470,6 +9471,19 @@ packages:
|
||||
- rollup
|
||||
dev: true
|
||||
|
||||
/@vite-pwa/assets-generator@0.0.3:
|
||||
resolution: {integrity: sha512-rGjzFTGAZsY9fIf9qGbvXbo38Yj0MbAtTxAaL/GBlEU0+q/m6upw+4HKE58p2MnjUAOOBHf0871u3onHtkPWlQ==}
|
||||
engines: {node: '>=16.14.0'}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
cac: 6.7.14
|
||||
colorette: 2.0.20
|
||||
consola: 3.1.0
|
||||
sharp: 0.32.1
|
||||
sharp-ico: 0.1.5
|
||||
unconfig: 0.3.9
|
||||
dev: true
|
||||
|
||||
/@vite-pwa/vitepress@0.2.0(vite-plugin-pwa@0.16.4):
|
||||
resolution: {integrity: sha512-dVQVaP6NB9woCFe4UASUqRp7uwBQJOVXlJlqK4krqXcbb3NuXIXIWOnU7HLpJnHqZj5U/81gKtLN6gs5gJBwiQ==}
|
||||
peerDependencies:
|
||||
@ -9494,8 +9508,8 @@ packages:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@vitejs/plugin-react@4.0.1(vite@4.3.9):
|
||||
resolution: {integrity: sha512-g25lL98essfeSj43HJ0o4DMp0325XK0ITkxpgChzJU/CyemgyChtlxfnRbjfwxDGCTRxTiXtQAsdebQXKMRSOA==}
|
||||
/@vitejs/plugin-react@4.0.0(vite@4.3.9):
|
||||
resolution: {integrity: sha512-HX0XzMjL3hhOYm+0s95pb0Z7F8O81G7joUHgfDd/9J/ZZf5k4xX6QAMFkKsHFxaHlf6X7GD7+XuaZ66ULiJuhQ==}
|
||||
engines: {node: ^14.18.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
vite: ^4.2.0
|
||||
@ -9580,7 +9594,7 @@ packages:
|
||||
'@vue/compiler-core': 3.3.4
|
||||
'@vue/compiler-dom': 3.3.4
|
||||
'@vue/compiler-sfc': 3.3.4
|
||||
'@vue/reactivity': 3.2.47
|
||||
'@vue/reactivity': 3.3.4
|
||||
'@vue/shared': 3.3.4
|
||||
dev: true
|
||||
|
||||
@ -9651,7 +9665,7 @@ packages:
|
||||
/@vue/compiler-sfc@3.2.39:
|
||||
resolution: {integrity: sha512-fqAQgFs1/BxTUZkd0Vakn3teKUt//J3c420BgnYgEOoVdTwYpBTSXCMJ88GOBCylmUBbtquGPli9tVs7LzsWIA==}
|
||||
dependencies:
|
||||
'@babel/parser': 7.21.4
|
||||
'@babel/parser': 7.22.5
|
||||
'@vue/compiler-core': 3.2.39
|
||||
'@vue/compiler-dom': 3.2.39
|
||||
'@vue/compiler-ssr': 3.2.39
|
||||
@ -9721,12 +9735,6 @@ packages:
|
||||
dependencies:
|
||||
'@vue/shared': 3.2.39
|
||||
|
||||
/@vue/reactivity@3.2.47:
|
||||
resolution: {integrity: sha512-7khqQ/75oyyg+N/e+iwV6lpy1f5wq759NdlS1fpAhFXa8VeAIKGgk2E/C4VF59lx5b+Ezs5fpp/5WsRYXQiKxQ==}
|
||||
dependencies:
|
||||
'@vue/shared': 3.2.47
|
||||
dev: true
|
||||
|
||||
/@vue/reactivity@3.3.4:
|
||||
resolution: {integrity: sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==}
|
||||
dependencies:
|
||||
@ -9783,10 +9791,6 @@ packages:
|
||||
/@vue/shared@3.2.39:
|
||||
resolution: {integrity: sha512-D3dl2ZB9qE6mTuWPk9RlhDeP1dgNRUKC3NJxji74A4yL8M2MwlhLKUC/49WHjrNzSPug58fWx/yFbaTzGAQSBw==}
|
||||
|
||||
/@vue/shared@3.2.47:
|
||||
resolution: {integrity: sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ==}
|
||||
dev: true
|
||||
|
||||
/@vue/shared@3.3.4:
|
||||
resolution: {integrity: sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==}
|
||||
|
||||
@ -12214,13 +12218,24 @@ packages:
|
||||
/color-name@1.1.4:
|
||||
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
||||
|
||||
/color-string@1.9.1:
|
||||
resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
|
||||
dependencies:
|
||||
color-name: 1.1.4
|
||||
simple-swizzle: 0.2.2
|
||||
dev: true
|
||||
|
||||
/color-support@1.1.3:
|
||||
resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
|
||||
hasBin: true
|
||||
dev: true
|
||||
|
||||
/colorette@2.0.19:
|
||||
resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==}
|
||||
/color@4.2.3:
|
||||
resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
|
||||
engines: {node: '>=12.5.0'}
|
||||
dependencies:
|
||||
color-convert: 2.0.1
|
||||
color-string: 1.9.1
|
||||
dev: true
|
||||
|
||||
/colorette@2.0.20:
|
||||
@ -13017,6 +13032,23 @@ packages:
|
||||
resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
|
||||
dev: true
|
||||
|
||||
/decode-bmp@0.2.1:
|
||||
resolution: {integrity: sha512-NiOaGe+GN0KJqi2STf24hfMkFitDUaIoUU3eKvP/wAbLe8o6FuW5n/x7MHPR0HKvBokp6MQY/j7w8lewEeVCIA==}
|
||||
engines: {node: '>=8.6.0'}
|
||||
dependencies:
|
||||
'@canvas/image-data': 1.0.0
|
||||
to-data-view: 1.1.0
|
||||
dev: true
|
||||
|
||||
/decode-ico@0.4.1:
|
||||
resolution: {integrity: sha512-69NZfbKIzux1vBOd31al3XnMnH+2mqDhEgLdpygErm4d60N+UwA5Sq5WFjmEDQzumgB9fElojGwWG0vybVfFmA==}
|
||||
engines: {node: '>=8.6'}
|
||||
dependencies:
|
||||
'@canvas/image-data': 1.0.0
|
||||
decode-bmp: 0.2.1
|
||||
to-data-view: 1.1.0
|
||||
dev: true
|
||||
|
||||
/decode-uri-component@0.2.0:
|
||||
resolution: {integrity: sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==}
|
||||
engines: {node: '>=0.10'}
|
||||
@ -13063,6 +13095,11 @@ packages:
|
||||
which-typed-array: 1.1.9
|
||||
dev: true
|
||||
|
||||
/deep-extend@0.6.0:
|
||||
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
|
||||
engines: {node: '>=4.0.0'}
|
||||
dev: true
|
||||
|
||||
/deep-is@0.1.4:
|
||||
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
|
||||
dev: true
|
||||
@ -13197,6 +13234,11 @@ packages:
|
||||
engines: {node: '>=8'}
|
||||
dev: true
|
||||
|
||||
/detect-libc@2.0.1:
|
||||
resolution: {integrity: sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==}
|
||||
engines: {node: '>=8'}
|
||||
dev: true
|
||||
|
||||
/detect-newline@3.1.0:
|
||||
resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
|
||||
engines: {node: '>=8'}
|
||||
@ -14880,6 +14922,11 @@ packages:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/expand-template@2.0.3:
|
||||
resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==}
|
||||
engines: {node: '>=6'}
|
||||
dev: true
|
||||
|
||||
/expect-type@0.16.0:
|
||||
resolution: {integrity: sha512-wCpFeVBiAPGiYkQZzaqvGuuBnNCHbtnowMOBpBGY8a27XbG8VAit3lklWph1r8VmgsH61mOZqI3NuGm8bZnUlw==}
|
||||
engines: {node: '>=12.0.0'}
|
||||
@ -15708,6 +15755,10 @@ packages:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/github-from-package@0.0.0:
|
||||
resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
|
||||
dev: true
|
||||
|
||||
/github-slugger@1.4.0:
|
||||
resolution: {integrity: sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ==}
|
||||
dev: true
|
||||
@ -16386,6 +16437,10 @@ packages:
|
||||
engines: {node: '>=14.18.0'}
|
||||
dev: true
|
||||
|
||||
/ico-endec@0.1.6:
|
||||
resolution: {integrity: sha512-ZdLU38ZoED3g1j3iEyzcQj+wAkY2xfWNkymszfJPoxucIUhK7NayQ+/C4Kv0nDFMIsbtbEHldv3V8PU494/ueQ==}
|
||||
dev: true
|
||||
|
||||
/iconv-lite@0.4.24:
|
||||
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
@ -16638,6 +16693,10 @@ packages:
|
||||
/is-arrayish@0.2.1:
|
||||
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
|
||||
|
||||
/is-arrayish@0.3.2:
|
||||
resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
|
||||
dev: true
|
||||
|
||||
/is-bigint@1.0.4:
|
||||
resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
|
||||
dependencies:
|
||||
@ -16714,16 +16773,10 @@ packages:
|
||||
ci-info: 3.7.0
|
||||
dev: true
|
||||
|
||||
/is-core-module@2.11.0:
|
||||
resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==}
|
||||
dependencies:
|
||||
has: 1.0.3
|
||||
|
||||
/is-core-module@2.12.1:
|
||||
resolution: {integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==}
|
||||
dependencies:
|
||||
has: 1.0.3
|
||||
dev: true
|
||||
|
||||
/is-data-descriptor@0.1.4:
|
||||
resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==}
|
||||
@ -18339,7 +18392,7 @@ packages:
|
||||
optional: true
|
||||
dependencies:
|
||||
cli-truncate: 2.1.0
|
||||
colorette: 2.0.19
|
||||
colorette: 2.0.20
|
||||
log-update: 4.0.0
|
||||
p-map: 4.0.0
|
||||
rfdc: 1.3.0
|
||||
@ -19305,6 +19358,10 @@ packages:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/napi-build-utils@1.0.2:
|
||||
resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==}
|
||||
dev: true
|
||||
|
||||
/natural-compare-lite@1.4.0:
|
||||
resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
|
||||
dev: true
|
||||
@ -19389,6 +19446,17 @@ packages:
|
||||
tslib: 2.5.3
|
||||
dev: true
|
||||
|
||||
/node-abi@3.45.0:
|
||||
resolution: {integrity: sha512-iwXuFrMAcFVi/ZoZiqq8BzAdsLw9kxDfTC0HMyjXfSL/6CSDAGD5UmR7azrAgWV1zKYq7dUUMj4owusBWKLsiQ==}
|
||||
engines: {node: '>=10'}
|
||||
dependencies:
|
||||
semver: 7.5.2
|
||||
dev: true
|
||||
|
||||
/node-addon-api@6.1.0:
|
||||
resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==}
|
||||
dev: true
|
||||
|
||||
/node-dir@0.1.17:
|
||||
resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==}
|
||||
engines: {node: '>= 0.10.5'}
|
||||
@ -20565,6 +20633,25 @@ packages:
|
||||
resolution: {integrity: sha512-w0mCL5vICUAZrh1DuHEdOWBjxdO62lvcO++jbzr8UhhYcTbFkpegLH9XX+7MadjTl/y0feoqwQ/zAnzkc/EGog==}
|
||||
dev: true
|
||||
|
||||
/prebuild-install@7.1.1:
|
||||
resolution: {integrity: sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==}
|
||||
engines: {node: '>=10'}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
detect-libc: 2.0.1
|
||||
expand-template: 2.0.3
|
||||
github-from-package: 0.0.0
|
||||
minimist: 1.2.8
|
||||
mkdirp-classic: 0.5.3
|
||||
napi-build-utils: 1.0.2
|
||||
node-abi: 3.45.0
|
||||
pump: 3.0.0
|
||||
rc: 1.2.8
|
||||
simple-get: 4.0.1
|
||||
tar-fs: 2.1.1
|
||||
tunnel-agent: 0.6.0
|
||||
dev: true
|
||||
|
||||
/prelude-ls@1.1.2:
|
||||
resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==}
|
||||
engines: {node: '>= 0.8.0'}
|
||||
@ -20971,6 +21058,16 @@ packages:
|
||||
flat: 5.0.2
|
||||
dev: true
|
||||
|
||||
/rc@1.2.8:
|
||||
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
deep-extend: 0.6.0
|
||||
ini: 1.3.8
|
||||
minimist: 1.2.8
|
||||
strip-json-comments: 2.0.1
|
||||
dev: true
|
||||
|
||||
/react-docgen-typescript@2.2.2(typescript@4.8.4):
|
||||
resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==}
|
||||
peerDependencies:
|
||||
@ -21670,7 +21767,7 @@ packages:
|
||||
resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
is-core-module: 2.11.0
|
||||
is-core-module: 2.12.1
|
||||
path-parse: 1.0.7
|
||||
supports-preserve-symlinks-flag: 1.0.0
|
||||
|
||||
@ -22212,6 +22309,29 @@ packages:
|
||||
kind-of: 6.0.3
|
||||
dev: true
|
||||
|
||||
/sharp-ico@0.1.5:
|
||||
resolution: {integrity: sha512-a3jODQl82NPp1d5OYb0wY+oFaPk7AvyxipIowCHk7pBsZCWgbe0yAkU2OOXdoH0ENyANhyOQbs9xkAiRHcF02Q==}
|
||||
dependencies:
|
||||
decode-ico: 0.4.1
|
||||
ico-endec: 0.1.6
|
||||
sharp: 0.32.1
|
||||
dev: true
|
||||
|
||||
/sharp@0.32.1:
|
||||
resolution: {integrity: sha512-kQTFtj7ldpUqSe8kDxoGLZc1rnMFU0AO2pqbX6pLy3b7Oj8ivJIdoKNwxHVQG2HN6XpHPJqCSM2nsma2gOXvOg==}
|
||||
engines: {node: '>=14.15.0'}
|
||||
requiresBuild: true
|
||||
dependencies:
|
||||
color: 4.2.3
|
||||
detect-libc: 2.0.1
|
||||
node-addon-api: 6.1.0
|
||||
prebuild-install: 7.1.1
|
||||
semver: 7.5.2
|
||||
simple-get: 4.0.1
|
||||
tar-fs: 2.1.1
|
||||
tunnel-agent: 0.6.0
|
||||
dev: true
|
||||
|
||||
/shebang-command@1.2.0:
|
||||
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
@ -22271,12 +22391,30 @@ packages:
|
||||
engines: {node: '>=14'}
|
||||
dev: true
|
||||
|
||||
/simple-concat@1.0.1:
|
||||
resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==}
|
||||
dev: true
|
||||
|
||||
/simple-get@4.0.1:
|
||||
resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==}
|
||||
dependencies:
|
||||
decompress-response: 6.0.0
|
||||
once: 1.4.0
|
||||
simple-concat: 1.0.1
|
||||
dev: true
|
||||
|
||||
/simple-git-hooks@2.8.1:
|
||||
resolution: {integrity: sha512-DYpcVR1AGtSfFUNzlBdHrQGPsOhuuEJ/FkmPOOlFysP60AHd3nsEpkGq/QEOdtUyT1Qhk7w9oLmFoMG+75BDog==}
|
||||
hasBin: true
|
||||
requiresBuild: true
|
||||
dev: true
|
||||
|
||||
/simple-swizzle@0.2.2:
|
||||
resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
|
||||
dependencies:
|
||||
is-arrayish: 0.3.2
|
||||
dev: true
|
||||
|
||||
/sirv@2.0.3:
|
||||
resolution: {integrity: sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==}
|
||||
engines: {node: '>= 10'}
|
||||
@ -22874,6 +23012,11 @@ packages:
|
||||
min-indent: 1.0.1
|
||||
dev: true
|
||||
|
||||
/strip-json-comments@2.0.1:
|
||||
resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: true
|
||||
|
||||
/strip-json-comments@3.1.1:
|
||||
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
||||
engines: {node: '>=8'}
|
||||
@ -23419,6 +23562,10 @@ packages:
|
||||
resolution: {integrity: sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==}
|
||||
dev: true
|
||||
|
||||
/to-data-view@1.1.0:
|
||||
resolution: {integrity: sha512-1eAdufMg6mwgmlojAx3QeMnzB/BTVp7Tbndi3U7ftcT2zCZadjxkkmLmd97zmaxWi+sgGcgWrokmpEoy0Dn0vQ==}
|
||||
dev: true
|
||||
|
||||
/to-fast-properties@2.0.0:
|
||||
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
|
||||
engines: {node: '>=4'}
|
||||
|
||||