├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── .travis.yml ├── .vscode └── extensions.json ├── LICENSE ├── README.md ├── assets └── link-preview.png ├── dist ├── types │ └── VueLinkPreview.vue.d.ts ├── vite.config.d.ts ├── vuelinkpreview.cjs.js ├── vuelinkpreview.esm.js ├── vuelinkpreview.min.js └── vuelinkpreview.umd.js ├── examples ├── nuxt2 │ ├── .editorconfig │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── nuxt.config.js │ ├── package.json │ ├── pages │ │ └── index.vue │ ├── static │ │ └── favicon.ico │ ├── store │ │ └── README.md │ └── yarn.lock ├── nuxt3 │ ├── .gitignore │ ├── README.md │ ├── app.vue │ ├── nuxt.config.ts │ ├── package.json │ ├── public │ │ └── favicon.ico │ ├── server │ │ └── tsconfig.json │ ├── tsconfig.json │ └── yarn.lock ├── vue2 │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── public │ │ └── favicon.ico │ ├── src │ │ ├── App.vue │ │ └── main.js │ ├── vite.config.js │ └── yarn.lock └── vue3 │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── .prettierrc.json │ ├── .vscode │ └── extensions.json │ ├── README.md │ ├── index.html │ ├── jsconfig.json │ ├── package.json │ ├── public │ └── favicon.ico │ ├── src │ ├── App.vue │ ├── assets │ │ ├── base.css │ │ ├── logo.svg │ │ └── main.css │ ├── components │ │ ├── HelloWorld.vue │ │ ├── TheWelcome.vue │ │ ├── WelcomeItem.vue │ │ └── icons │ │ │ ├── IconCommunity.vue │ │ │ ├── IconDocumentation.vue │ │ │ ├── IconEcosystem.vue │ │ │ ├── IconSupport.vue │ │ │ └── IconTooling.vue │ └── main.js │ ├── vite.config.js │ └── yarn.lock ├── package.json ├── src ├── VueLinkPreview.vue └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 4 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | # Directories & files 11 | node_modules 12 | /cypress/videos/ 13 | /cypress/screenshots/ 14 | .cache 15 | dist 16 | dist-ssr 17 | coverage 18 | .DS_Store 19 | Thumbs.db 20 | *.local 21 | .nuxt 22 | lib 23 | *.js.map 24 | *.d.ts 25 | .yarn 26 | postcss.config.js 27 | 28 | # Editor directories and files 29 | .vscode/* 30 | !.vscode/extensions.json 31 | .idea 32 | *.suo 33 | *.ntvs* 34 | *.njsproj 35 | *.sln 36 | *.sw? 37 | .env 38 | .env.development 39 | 40 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | extends: [ 3 | 'plugin:vue/recommended' 4 | ], 5 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | *.local 12 | 13 | # Editor directories and files 14 | .vscode/* 15 | !.vscode/extensions.json 16 | .idea 17 | .DS_Store 18 | *.suo 19 | *.ntvs* 20 | *.njsproj 21 | *.sln 22 | *.sw? 23 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *~ 3 | *.iml 4 | .*.haste_cache.* 5 | .DS_Store 6 | .idea 7 | .gitignore 8 | .babelrc 9 | .eslintrc 10 | .travis.yml 11 | rollup.config.* 12 | tsconfig.json 13 | tsconfig.node.json 14 | vite.config.ts 15 | npm-debug.log 16 | yarn-error.log 17 | src 18 | .prettierignore 19 | .prettierrc.js 20 | .editorconfig 21 | .eslintrc.js 22 | .eslintignore 23 | .vscode 24 | examples 25 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | static/ 4 | assets 5 | public 6 | coverage 7 | # *.html 8 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | useTabs: false, 3 | trailingComma: "none", 4 | jsxSingleQuote: false, 5 | bracketSpacing: true, 6 | bracketSameLine: false, 7 | endOfLine: "auto" 8 | }; 9 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | sudo: false 3 | os: 4 | - linux 5 | - osx 6 | node_js: 7 | - "node" 8 | - "13" 9 | - "12" 10 | - "11" 11 | - "10" 12 | cache: 13 | yarn: true 14 | directories: 15 | - node_modules 16 | script: 17 | - yarn build 18 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2020 Shashank Shekhar 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | link-preview 3 |

4 | 5 | > For use with `Vue 2`, Use the v2 instructions [here](https://github.com/ashwamegh/vue-link-preview/tree/v2). 6 | 7 | # Vue Link Preview 8 | 9 | A Vuejs component to fetch metadata from a URL and preview it 10 | 11 | Inspired by [link-preview-generator](https://github.com/AndrejGajdos/link-preview-generator) and [link-prevue](https://github.com/nivaldomartinez/link-prevue) 🙏 12 | 13 | [![MIT Licence](https://badges.frapsoft.com/os/mit/mit.svg?v=103)](https://opensource.org/licenses/mit-license.php) 14 | [![Open Source Love](https://badges.frapsoft.com/os/v2/open-source.svg?v=103)](https://github.com/ashwamegh/vue-link-preview/) 15 | [![Build Status](https://travis-ci.org/ashwamegh/vue-link-preview.svg?branch=master)](https://travis-ci.org/github/ashwamegh/link-preview-vue) 16 | [![npm version](https://badge.fury.io/js/%40ashwamegh%2Fvue-link-preview.svg)](https://www.npmjs.com/package/@ashwamegh/vue-link-preview) 17 | [![Netlify Status](https://api.netlify.com/api/v1/badges/034f75bc-1190-436b-922e-07d0b284b9c3/deploy-status)](https://app.netlify.com/sites/link-preview/deploys) 18 |
19 | Buy Me A Coffee 20 | 21 | > **NOTE: This utilizes https://github.com/ashwamegh/link-preview-generator-server server deployed on Azure, a free web server which can run 30 minutes in a day. If you want to use it in a PRODUCTION app, I would recommend you to use your own server (You can use the [`Dockerfile`](https://github.com/ashwamegh/link-preview-generator-server/blob/master/Dockerfile) or the [Docker hub image](https://hub.docker.com/repository/docker/ashwamegh/lpdg-server) for deploying [link-preview-generator-server](https://github.com/ashwamegh/link-preview-generator-server)) and provide the custom link of the API for `customDomain` in the Component Props** 22 | 23 | ## Demo 24 | 25 | ## Table of Contents 26 | 27 | - [Install](#install) 28 | - [Usage](#usage) 29 | - [Props](#props) 30 | - [Events](#events) 31 | - [Contribute](#contribute) 32 | - [License](#license) 33 | 34 | ## Install 35 | 36 | ### NPM 37 | 38 | ```sh 39 | npm install @ashwamegh/vue-link-preview 40 | ``` 41 | 42 | ### Yarn 43 | 44 | ```sh 45 | yarn add @ashwamegh/vue-link-preview 46 | ``` 47 | 48 | ### UMD build 49 | 50 | ```html 51 | 52 | ``` 53 | 54 | ## Usage 55 | 56 | ### With Options API 57 | 58 | ```vue 59 | 79 | 87 | ``` 88 | 89 | ### With Composition API 90 | 91 | ```vue 92 | 105 | 106 | 112 | ``` 113 | 114 | ### With custom layout (With Vue Slots) 115 | 116 | For replacing the Loader, you can add this html: 117 | 118 | ```html 119 | 120 | 123 | 124 | 125 | 126 | 127 | 128 | 131 | 132 | ``` 133 | 134 | For replacing the content layout, you can use this: 135 | 136 | ```html 137 | 138 | 151 | 152 | ``` 153 | 154 | All together with loader and default slot, it'll look like this: 155 | 156 | ```html 157 | 158 | 161 | 174 | 175 | ``` 176 | 177 | 178 | ## More Examples [here](https://github.com/ashwamegh/vue-link-preview/tree/main/examples) 179 | 180 | ## Props 181 | 182 | | Property | Type | Default | Description | Required | 183 | | -------------- | --------- | -------------------------------------------------- | --------------------------------------------------------------- | -------- | 184 | | `url` | `string` | | URL of the page you need the preview for | true | 185 | | `customDomain` | `string` | `https://lpdg-server.azurewebsites.net/parse/link` | Custom Server API link which can parse the metadata of the page | false | 186 | | `width` | `string` | `90%` | Width of the card preview | false | 187 | | `maxWidth` | `string` | `700px` | Max Width of the card preview | false | 188 | | `marginTop` | `string` | `18px` | Margin top for the card | false | 189 | | `marginBottom` | `string` | `18px` | Margin bottom for the card | false | 190 | | `marginRight` | `string` | `18px` | Margin right for the card | false | 191 | | `marginLeft` | `string` | `18px` | Margin left for the card | false | 192 | | `canOpenLink` | `boolean` | `true` | Enables, to open link when clicked on card | false | 193 | 194 | ## Events 195 | 196 | | Name | Description | 197 | | ------- | ------------------------- | 198 | | `onClick` | It emits the preview data | 199 | 200 | > Note: If you want to use `click` event without opening the url, then pass `:canOpenLink="false"` in the props 201 | 202 | ## Contribute 203 | 204 | Thanks for taking the time to contribute, please check out the [src](src) to understand how things work. 205 | 206 | ### Reporting Issues 207 | 208 | Found a problem? Want a new feature? First of all, see if your issue or idea has [already been reported](../../issues). 209 | If don't, just open a [new clear and descriptive issue](../../issues/new). 210 | 211 | ### Submitting pull requests 212 | 213 | Pull requests are the greatest contributions, so be sure they are focused in scope and do avoid unrelated commits. 214 | 215 | - Fork it! 216 | - Clone your fork: `git clone https://github.com//vue-link-preview` 217 | - Navigate to the newly cloned directory: `cd vue-link-preview` 218 | - Create a new branch for the new feature: `git checkout -b my-new-feature` 219 | - Install the tools necessary for development: `yarn` 220 | - Make your changes. 221 | - Commit your changes: `git commit -am 'Add some feature'` 222 | - Push to the branch: `git push origin my-new-feature` 223 | - Submit a pull request with full remarks documenting your changes 224 | 225 | ## License 226 | 227 | [MIT License](https://opensource.org/licenses/MIT) © [Shashank Shekhar](https://ashwamegh.github.io) 228 | -------------------------------------------------------------------------------- /assets/link-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwamegh/vue-link-preview/d847705077d24aa79c79632e82f8ed08c21390c6/assets/link-preview.png -------------------------------------------------------------------------------- /dist/types/VueLinkPreview.vue.d.ts: -------------------------------------------------------------------------------- 1 | export type TPreviewResponse = { 2 | title: string; 3 | description: string; 4 | domain: string; 5 | img?: string; 6 | }; 7 | type VueLinkPreviewProps = { 8 | url: string; 9 | width?: string; 10 | maxWidth?: string; 11 | marginTop?: string; 12 | marginBottom?: string; 13 | marginRight?: string; 14 | marginLeft?: string; 15 | customDomain?: string; 16 | canOpenLink?: boolean; 17 | }; 18 | declare const _default: __VLS_WithTemplateSlots, { 19 | width: string; 20 | maxWidth: string; 21 | marginTop: string; 22 | marginBottom: string; 23 | marginRight: string; 24 | marginLeft: string; 25 | customDomain: string; 26 | canOpenLink: boolean; 27 | }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { 28 | onClick: (...args: any[]) => void; 29 | }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly, { 30 | width: string; 31 | maxWidth: string; 32 | marginTop: string; 33 | marginBottom: string; 34 | marginRight: string; 35 | marginLeft: string; 36 | customDomain: string; 37 | canOpenLink: boolean; 38 | }>>> & { 39 | onOnClick?: ((...args: any[]) => any) | undefined; 40 | }, { 41 | width: string; 42 | maxWidth: string; 43 | marginTop: string; 44 | marginBottom: string; 45 | marginRight: string; 46 | marginLeft: string; 47 | customDomain: string; 48 | canOpenLink: boolean; 49 | }, {}>, { 50 | default?(_: { 51 | title: string; 52 | img: string | undefined; 53 | description: string; 54 | domain: string; 55 | }): any; 56 | loader?(_: {}): any; 57 | }>; 58 | export default _default; 59 | type __VLS_NonUndefinedable = T extends undefined ? never : T; 60 | type __VLS_TypePropsToRuntimeProps = { 61 | [K in keyof T]-?: {} extends Pick ? { 62 | type: import('vue').PropType<__VLS_NonUndefinedable>; 63 | } : { 64 | type: import('vue').PropType; 65 | required: true; 66 | }; 67 | }; 68 | type __VLS_WithDefaults = { 69 | [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; 72 | }; 73 | type __VLS_Prettify = { 74 | [K in keyof T]: T[K]; 75 | } & {}; 76 | type __VLS_WithTemplateSlots = T & { 77 | new (): { 78 | $slots: S; 79 | }; 80 | }; 81 | -------------------------------------------------------------------------------- /dist/vite.config.d.ts: -------------------------------------------------------------------------------- 1 | declare const _default: import("vite").UserConfig; 2 | export default _default; 3 | -------------------------------------------------------------------------------- /dist/vuelinkpreview.cjs.js: -------------------------------------------------------------------------------- 1 | (function(){"use strict";try{if(typeof document<"u"){var i=document.createElement("style");i.appendChild(document.createTextNode(".link-preview-section[data-v-7cc2d39e]{display:flex;flex-direction:row;justify-content:space-between;padding:14px;border-radius:5px;margin:20px 0;box-shadow:0 0 0 1px #0000001a,0 -4px 24px 2px #00000008;line-height:1.5;cursor:pointer}.link-preview-section .animated-background[data-v-7cc2d39e],.link-preview-section .link-image-loader .img[data-v-7cc2d39e]{animation-duration:2.25s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer-7cc2d39e;animation-timing-function:linear;background:#f6f6f6;background:linear-gradient(to right,#f6f6f6 8%,#f0f0f0 18%,#f6f6f6 33%);position:relative}@keyframes placeHolderShimmer-7cc2d39e{0%{background-position:-468px 0}to{background-position:468px 0}}.link-preview-section .link-description[data-v-7cc2d39e]{display:flex;flex-direction:column}.link-preview-section .link-description .domain[data-v-7cc2d39e]{display:flex;flex-direction:row;align-items:center;margin-bottom:4px}.link-preview-section .link-description .domain img[data-v-7cc2d39e]{height:16px;width:16px}.link-preview-section .link-description .domain .link-url[data-v-7cc2d39e],.link-preview-section .link-description .domain .link-url-loader[data-v-7cc2d39e]{font-weight:600}.link-preview-section .link-description .domain .link-url-loader[data-v-7cc2d39e]{background-color:#f6f6f6;color:#f6f6f6;border-radius:10px}.link-preview-section .link-description .link-data .link-title[data-v-7cc2d39e]{color:#1364a2;font-weight:600;font-size:15px}.link-preview-section .link-description .link-data .link-description[data-v-7cc2d39e]{font-size:14px;text-align:left}.link-preview-section .link-description .link-data-loader .p1[data-v-7cc2d39e]{font-weight:600;font-size:15px}.link-preview-section .link-description .link-data-loader .p2[data-v-7cc2d39e]{font-size:14px}.link-preview-section .link-description .link-data-loader .p1[data-v-7cc2d39e],.link-preview-section .link-description .link-data-loader .p2[data-v-7cc2d39e]{background-color:#f6f6f6;color:#f6f6f6;border-radius:10px;margin-bottom:4px}.link-preview-section .link-image[data-v-7cc2d39e]{display:flex;align-content:center;align-items:center;height:100%}.link-preview-section .link-image img[data-v-7cc2d39e]{max-height:64px;object-fit:cover}.link-preview-section .link-image-loader[data-v-7cc2d39e]{display:flex;align-content:center;align-items:center}.link-preview-section .link-image-loader .img[data-v-7cc2d39e]{height:64px;width:64px}")),document.head.appendChild(i)}}catch(e){console.error("vite-plugin-css-injected-by-js",e)}})(); 2 | "use strict";const e=require("vue"),h={key:0},_={class:"link-description"},f={class:"domain"},w={class:"link-url"},y={class:"link-data"},V={class:"link-title"},N={class:"link-description"},E={class:"link-image"},S=["src","alt"],b=e.createStaticVNode('',2),x=[b],B=e.defineComponent({__name:"VueLinkPreview",props:{url:{},width:{default:"90%"},maxWidth:{default:"700px"},marginTop:{default:"18px"},marginBottom:{default:"18px"},marginRight:{default:"auto"},marginLeft:{default:"auto"},customDomain:{default:"https://lpdg-server.azurewebsites.net/parse/link"},canOpenLink:{type:Boolean,default:!0}},emits:["onClick"],setup(c,{emit:l}){const a=c,d=l,o=e.ref(!1),t=e.ref(null),r=e.ref(!1),u=i=>{const n=/(http(s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/gi;return r.value=n.test(i),r.value},v=()=>{const{url:i,customDomain:n}=a;return new Promise((k,g)=>{u(i)&&fetch(n,{method:"POST",headers:{Accept:"application/json","Content-Type":"application/json"},body:JSON.stringify({url:i})}).then(s=>s.json()).then(s=>{k(s)}).catch(s=>g(s))})},p=()=>{const{url:i,canOpenLink:n}=a;n&&window.open(i,"_blank"),d("onClick",t.value)},m=()=>({width:a.width,maxWidth:a.maxWidth,marginTop:a.marginTop,marginBottom:a.marginBottom,marginRight:a.marginRight,marginLeft:a.marginLeft});return e.onMounted(()=>{o.value=!0,v().then(i=>{t.value=i,o.value=!1})}),(i,n)=>r.value?(e.openBlock(),e.createElementBlock("div",h,[!o.value&&t.value?e.renderSlot(i.$slots,"default",{key:0,title:t.value.title,img:t.value.img,description:t.value.description,domain:t.value.domain},()=>[e.createElementVNode("div",{class:"link-preview-section",style:m,onClick:p},[e.createElementVNode("div",_,[e.createElementVNode("div",f,[e.createElementVNode("span",w,e.toDisplayString(t.value.domain),1)]),e.createElementVNode("div",y,[e.createElementVNode("div",V,e.toDisplayString(t.value.title),1),e.createElementVNode("div",N,e.toDisplayString(t.value.description),1)])]),e.createElementVNode("div",E,[t.value.img?(e.openBlock(),e.createElementBlock("img",{key:0,src:t.value.img,alt:t.value.description},null,8,S)):e.createCommentVNode("",!0)])])],!0):e.renderSlot(i.$slots,"loader",{key:1},()=>[e.createElementVNode("div",{class:"link-preview-section",style:m},x)],!0)])):e.createCommentVNode("",!0)}}),C=(c,l)=>{const a=c.__vccOpts||c;for(const[d,o]of l)a[d]=o;return a},L=C(B,[["__scopeId","data-v-7cc2d39e"]]);module.exports=L; 3 | -------------------------------------------------------------------------------- /dist/vuelinkpreview.esm.js: -------------------------------------------------------------------------------- 1 | (function(){"use strict";try{if(typeof document<"u"){var i=document.createElement("style");i.appendChild(document.createTextNode(".link-preview-section[data-v-7cc2d39e]{display:flex;flex-direction:row;justify-content:space-between;padding:14px;border-radius:5px;margin:20px 0;box-shadow:0 0 0 1px #0000001a,0 -4px 24px 2px #00000008;line-height:1.5;cursor:pointer}.link-preview-section .animated-background[data-v-7cc2d39e],.link-preview-section .link-image-loader .img[data-v-7cc2d39e]{animation-duration:2.25s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer-7cc2d39e;animation-timing-function:linear;background:#f6f6f6;background:linear-gradient(to right,#f6f6f6 8%,#f0f0f0 18%,#f6f6f6 33%);position:relative}@keyframes placeHolderShimmer-7cc2d39e{0%{background-position:-468px 0}to{background-position:468px 0}}.link-preview-section .link-description[data-v-7cc2d39e]{display:flex;flex-direction:column}.link-preview-section .link-description .domain[data-v-7cc2d39e]{display:flex;flex-direction:row;align-items:center;margin-bottom:4px}.link-preview-section .link-description .domain img[data-v-7cc2d39e]{height:16px;width:16px}.link-preview-section .link-description .domain .link-url[data-v-7cc2d39e],.link-preview-section .link-description .domain .link-url-loader[data-v-7cc2d39e]{font-weight:600}.link-preview-section .link-description .domain .link-url-loader[data-v-7cc2d39e]{background-color:#f6f6f6;color:#f6f6f6;border-radius:10px}.link-preview-section .link-description .link-data .link-title[data-v-7cc2d39e]{color:#1364a2;font-weight:600;font-size:15px}.link-preview-section .link-description .link-data .link-description[data-v-7cc2d39e]{font-size:14px;text-align:left}.link-preview-section .link-description .link-data-loader .p1[data-v-7cc2d39e]{font-weight:600;font-size:15px}.link-preview-section .link-description .link-data-loader .p2[data-v-7cc2d39e]{font-size:14px}.link-preview-section .link-description .link-data-loader .p1[data-v-7cc2d39e],.link-preview-section .link-description .link-data-loader .p2[data-v-7cc2d39e]{background-color:#f6f6f6;color:#f6f6f6;border-radius:10px;margin-bottom:4px}.link-preview-section .link-image[data-v-7cc2d39e]{display:flex;align-content:center;align-items:center;height:100%}.link-preview-section .link-image img[data-v-7cc2d39e]{max-height:64px;object-fit:cover}.link-preview-section .link-image-loader[data-v-7cc2d39e]{display:flex;align-content:center;align-items:center}.link-preview-section .link-image-loader .img[data-v-7cc2d39e]{height:64px;width:64px}")),document.head.appendChild(i)}}catch(e){console.error("vite-plugin-css-injected-by-js",e)}})(); 2 | import { defineComponent as x, ref as u, onMounted as S, openBlock as p, createElementBlock as h, renderSlot as _, createElementVNode as i, toDisplayString as v, createCommentVNode as k, createStaticVNode as L } from "vue"; 3 | const B = { key: 0 }, C = { class: "link-description" }, T = { class: "domain" }, V = { class: "link-url" }, O = { class: "link-data" }, P = { class: "link-title" }, z = { class: "link-description" }, D = { class: "link-image" }, N = ["src", "alt"], j = /* @__PURE__ */ L('', 2), A = [ 4 | j 5 | ], R = /* @__PURE__ */ x({ 6 | __name: "VueLinkPreview", 7 | props: { 8 | url: {}, 9 | width: { default: "90%" }, 10 | maxWidth: { default: "700px" }, 11 | marginTop: { default: "18px" }, 12 | marginBottom: { default: "18px" }, 13 | marginRight: { default: "auto" }, 14 | marginLeft: { default: "auto" }, 15 | customDomain: { default: "https://lpdg-server.azurewebsites.net/parse/link" }, 16 | canOpenLink: { type: Boolean, default: !0 } 17 | }, 18 | emits: ["onClick"], 19 | setup(d, { emit: l }) { 20 | const t = d, c = l, s = u(!1), e = u(null), r = u(!1), g = (a) => { 21 | const n = /(http(s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/gi; 22 | return r.value = n.test(a), r.value; 23 | }, f = () => { 24 | const { url: a, customDomain: n } = t; 25 | return new Promise((y, b) => { 26 | g(a) && fetch(n, { 27 | method: "POST", 28 | headers: { 29 | Accept: "application/json", 30 | "Content-Type": "application/json" 31 | }, 32 | body: JSON.stringify({ url: a }) 33 | }).then((o) => o.json()).then((o) => { 34 | y(o); 35 | }).catch((o) => b(o)); 36 | }); 37 | }, w = () => { 38 | const { url: a, canOpenLink: n } = t; 39 | n && window.open(a, "_blank"), c("onClick", e.value); 40 | }, m = () => ({ 41 | width: t.width, 42 | maxWidth: t.maxWidth, 43 | marginTop: t.marginTop, 44 | marginBottom: t.marginBottom, 45 | marginRight: t.marginRight, 46 | marginLeft: t.marginLeft 47 | }); 48 | return S(() => { 49 | s.value = !0, f().then((a) => { 50 | e.value = a, s.value = !1; 51 | }); 52 | }), (a, n) => r.value ? (p(), h("div", B, [ 53 | !s.value && e.value ? _(a.$slots, "default", { 54 | key: 0, 55 | title: e.value.title, 56 | img: e.value.img, 57 | description: e.value.description, 58 | domain: e.value.domain 59 | }, () => [ 60 | i("div", { 61 | class: "link-preview-section", 62 | style: m, 63 | onClick: w 64 | }, [ 65 | i("div", C, [ 66 | i("div", T, [ 67 | i("span", V, v(e.value.domain), 1) 68 | ]), 69 | i("div", O, [ 70 | i("div", P, v(e.value.title), 1), 71 | i("div", z, v(e.value.description), 1) 72 | ]) 73 | ]), 74 | i("div", D, [ 75 | e.value.img ? (p(), h("img", { 76 | key: 0, 77 | src: e.value.img, 78 | alt: e.value.description 79 | }, null, 8, N)) : k("", !0) 80 | ]) 81 | ]) 82 | ], !0) : _(a.$slots, "loader", { key: 1 }, () => [ 83 | i("div", { 84 | class: "link-preview-section", 85 | style: m 86 | }, A) 87 | ], !0) 88 | ])) : k("", !0); 89 | } 90 | }), U = (d, l) => { 91 | const t = d.__vccOpts || d; 92 | for (const [c, s] of l) 93 | t[c] = s; 94 | return t; 95 | }, E = /* @__PURE__ */ U(R, [["__scopeId", "data-v-7cc2d39e"]]); 96 | export { 97 | E as default 98 | }; 99 | -------------------------------------------------------------------------------- /dist/vuelinkpreview.min.js: -------------------------------------------------------------------------------- 1 | (function(){"use strict";try{if(typeof document<"u"){var i=document.createElement("style");i.appendChild(document.createTextNode(".link-preview-section[data-v-7cc2d39e]{display:flex;flex-direction:row;justify-content:space-between;padding:14px;border-radius:5px;margin:20px 0;box-shadow:0 0 0 1px #0000001a,0 -4px 24px 2px #00000008;line-height:1.5;cursor:pointer}.link-preview-section .animated-background[data-v-7cc2d39e],.link-preview-section .link-image-loader .img[data-v-7cc2d39e]{animation-duration:2.25s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer-7cc2d39e;animation-timing-function:linear;background:#f6f6f6;background:linear-gradient(to right,#f6f6f6 8%,#f0f0f0 18%,#f6f6f6 33%);position:relative}@keyframes placeHolderShimmer-7cc2d39e{0%{background-position:-468px 0}to{background-position:468px 0}}.link-preview-section .link-description[data-v-7cc2d39e]{display:flex;flex-direction:column}.link-preview-section .link-description .domain[data-v-7cc2d39e]{display:flex;flex-direction:row;align-items:center;margin-bottom:4px}.link-preview-section .link-description .domain img[data-v-7cc2d39e]{height:16px;width:16px}.link-preview-section .link-description .domain .link-url[data-v-7cc2d39e],.link-preview-section .link-description .domain .link-url-loader[data-v-7cc2d39e]{font-weight:600}.link-preview-section .link-description .domain .link-url-loader[data-v-7cc2d39e]{background-color:#f6f6f6;color:#f6f6f6;border-radius:10px}.link-preview-section .link-description .link-data .link-title[data-v-7cc2d39e]{color:#1364a2;font-weight:600;font-size:15px}.link-preview-section .link-description .link-data .link-description[data-v-7cc2d39e]{font-size:14px;text-align:left}.link-preview-section .link-description .link-data-loader .p1[data-v-7cc2d39e]{font-weight:600;font-size:15px}.link-preview-section .link-description .link-data-loader .p2[data-v-7cc2d39e]{font-size:14px}.link-preview-section .link-description .link-data-loader .p1[data-v-7cc2d39e],.link-preview-section .link-description .link-data-loader .p2[data-v-7cc2d39e]{background-color:#f6f6f6;color:#f6f6f6;border-radius:10px;margin-bottom:4px}.link-preview-section .link-image[data-v-7cc2d39e]{display:flex;align-content:center;align-items:center;height:100%}.link-preview-section .link-image img[data-v-7cc2d39e]{max-height:64px;object-fit:cover}.link-preview-section .link-image-loader[data-v-7cc2d39e]{display:flex;align-content:center;align-items:center}.link-preview-section .link-image-loader .img[data-v-7cc2d39e]{height:64px;width:64px}")),document.head.appendChild(i)}}catch(e){console.error("vite-plugin-css-injected-by-js",e)}})(); 2 | var VueLinkPreview=function(e){"use strict";var p=document.createElement("style");p.textContent=`.link-preview-section[data-v-7cc2d39e]{display:flex;flex-direction:row;justify-content:space-between;padding:14px;border-radius:5px;margin:20px 0;box-shadow:0 0 0 1px #0000001a,0 -4px 24px 2px #00000008;line-height:1.5;cursor:pointer}.link-preview-section .animated-background[data-v-7cc2d39e],.link-preview-section .link-image-loader .img[data-v-7cc2d39e]{animation-duration:2.25s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer-7cc2d39e;animation-timing-function:linear;background:#f6f6f6;background:linear-gradient(to right,#f6f6f6 8%,#f0f0f0 18%,#f6f6f6 33%);position:relative}@keyframes placeHolderShimmer-7cc2d39e{0%{background-position:-468px 0}to{background-position:468px 0}}.link-preview-section .link-description[data-v-7cc2d39e]{display:flex;flex-direction:column}.link-preview-section .link-description .domain[data-v-7cc2d39e]{display:flex;flex-direction:row;align-items:center;margin-bottom:4px}.link-preview-section .link-description .domain img[data-v-7cc2d39e]{height:16px;width:16px}.link-preview-section .link-description .domain .link-url[data-v-7cc2d39e],.link-preview-section .link-description .domain .link-url-loader[data-v-7cc2d39e]{font-weight:600}.link-preview-section .link-description .domain .link-url-loader[data-v-7cc2d39e]{background-color:#f6f6f6;color:#f6f6f6;border-radius:10px}.link-preview-section .link-description .link-data .link-title[data-v-7cc2d39e]{color:#1364a2;font-weight:600;font-size:15px}.link-preview-section .link-description .link-data .link-description[data-v-7cc2d39e]{font-size:14px;text-align:left}.link-preview-section .link-description .link-data-loader .p1[data-v-7cc2d39e]{font-weight:600;font-size:15px}.link-preview-section .link-description .link-data-loader .p2[data-v-7cc2d39e]{font-size:14px}.link-preview-section .link-description .link-data-loader .p1[data-v-7cc2d39e],.link-preview-section .link-description .link-data-loader .p2[data-v-7cc2d39e]{background-color:#f6f6f6;color:#f6f6f6;border-radius:10px;margin-bottom:4px}.link-preview-section .link-image[data-v-7cc2d39e]{display:flex;align-content:center;align-items:center;height:100%}.link-preview-section .link-image img[data-v-7cc2d39e]{max-height:64px;object-fit:cover}.link-preview-section .link-image-loader[data-v-7cc2d39e]{display:flex;align-content:center;align-items:center}.link-preview-section .link-image-loader .img[data-v-7cc2d39e]{height:64px;width:64px} 3 | `,document.head.appendChild(p);const k={key:0},v={class:"link-description"},f={class:"domain"},g={class:"link-url"},u={class:"link-data"},h={class:"link-title"},w={class:"link-description"},_={class:"link-image"},x=["src","alt"],y=[e.createStaticVNode('',2)];return((d,l)=>{const t=d.__vccOpts||d;for(const[r,o]of l)t[r]=o;return t})(e.defineComponent({__name:"VueLinkPreview",props:{url:{},width:{default:"90%"},maxWidth:{default:"700px"},marginTop:{default:"18px"},marginBottom:{default:"18px"},marginRight:{default:"auto"},marginLeft:{default:"auto"},customDomain:{default:"https://lpdg-server.azurewebsites.net/parse/link"},canOpenLink:{type:Boolean,default:!0}},emits:["onClick"],setup(d,{emit:l}){const t=d,r=l,o=e.ref(!1),i=e.ref(null),s=e.ref(!1),b=n=>{const a=/(http(s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/gi;return s.value=a.test(n),s.value},V=()=>{const{url:n,customDomain:a}=t;return new Promise((S,E)=>{b(n)&&fetch(a,{method:"POST",headers:{Accept:"application/json","Content-Type":"application/json"},body:JSON.stringify({url:n})}).then(c=>c.json()).then(c=>{S(c)}).catch(c=>E(c))})},N=()=>{const{url:n,canOpenLink:a}=t;a&&window.open(n,"_blank"),r("onClick",i.value)},m=()=>({width:t.width,maxWidth:t.maxWidth,marginTop:t.marginTop,marginBottom:t.marginBottom,marginRight:t.marginRight,marginLeft:t.marginLeft});return e.onMounted(()=>{o.value=!0,V().then(n=>{i.value=n,o.value=!1})}),(n,a)=>s.value?(e.openBlock(),e.createElementBlock("div",k,[!o.value&&i.value?e.renderSlot(n.$slots,"default",{key:0,title:i.value.title,img:i.value.img,description:i.value.description,domain:i.value.domain},()=>[e.createElementVNode("div",{class:"link-preview-section",style:m,onClick:N},[e.createElementVNode("div",v,[e.createElementVNode("div",f,[e.createElementVNode("span",g,e.toDisplayString(i.value.domain),1)]),e.createElementVNode("div",u,[e.createElementVNode("div",h,e.toDisplayString(i.value.title),1),e.createElementVNode("div",w,e.toDisplayString(i.value.description),1)])]),e.createElementVNode("div",_,[i.value.img?(e.openBlock(),e.createElementBlock("img",{key:0,src:i.value.img,alt:i.value.description},null,8,x)):e.createCommentVNode("",!0)])])],!0):e.renderSlot(n.$slots,"loader",{key:1},()=>[e.createElementVNode("div",{class:"link-preview-section",style:m},y)],!0)])):e.createCommentVNode("",!0)}}),[["__scopeId","data-v-7cc2d39e"]])}(Vue); 4 | -------------------------------------------------------------------------------- /dist/vuelinkpreview.umd.js: -------------------------------------------------------------------------------- 1 | (function(){"use strict";try{if(typeof document<"u"){var i=document.createElement("style");i.appendChild(document.createTextNode(".link-preview-section[data-v-7cc2d39e]{display:flex;flex-direction:row;justify-content:space-between;padding:14px;border-radius:5px;margin:20px 0;box-shadow:0 0 0 1px #0000001a,0 -4px 24px 2px #00000008;line-height:1.5;cursor:pointer}.link-preview-section .animated-background[data-v-7cc2d39e],.link-preview-section .link-image-loader .img[data-v-7cc2d39e]{animation-duration:2.25s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer-7cc2d39e;animation-timing-function:linear;background:#f6f6f6;background:linear-gradient(to right,#f6f6f6 8%,#f0f0f0 18%,#f6f6f6 33%);position:relative}@keyframes placeHolderShimmer-7cc2d39e{0%{background-position:-468px 0}to{background-position:468px 0}}.link-preview-section .link-description[data-v-7cc2d39e]{display:flex;flex-direction:column}.link-preview-section .link-description .domain[data-v-7cc2d39e]{display:flex;flex-direction:row;align-items:center;margin-bottom:4px}.link-preview-section .link-description .domain img[data-v-7cc2d39e]{height:16px;width:16px}.link-preview-section .link-description .domain .link-url[data-v-7cc2d39e],.link-preview-section .link-description .domain .link-url-loader[data-v-7cc2d39e]{font-weight:600}.link-preview-section .link-description .domain .link-url-loader[data-v-7cc2d39e]{background-color:#f6f6f6;color:#f6f6f6;border-radius:10px}.link-preview-section .link-description .link-data .link-title[data-v-7cc2d39e]{color:#1364a2;font-weight:600;font-size:15px}.link-preview-section .link-description .link-data .link-description[data-v-7cc2d39e]{font-size:14px;text-align:left}.link-preview-section .link-description .link-data-loader .p1[data-v-7cc2d39e]{font-weight:600;font-size:15px}.link-preview-section .link-description .link-data-loader .p2[data-v-7cc2d39e]{font-size:14px}.link-preview-section .link-description .link-data-loader .p1[data-v-7cc2d39e],.link-preview-section .link-description .link-data-loader .p2[data-v-7cc2d39e]{background-color:#f6f6f6;color:#f6f6f6;border-radius:10px;margin-bottom:4px}.link-preview-section .link-image[data-v-7cc2d39e]{display:flex;align-content:center;align-items:center;height:100%}.link-preview-section .link-image img[data-v-7cc2d39e]{max-height:64px;object-fit:cover}.link-preview-section .link-image-loader[data-v-7cc2d39e]{display:flex;align-content:center;align-items:center}.link-preview-section .link-image-loader .img[data-v-7cc2d39e]{height:64px;width:64px}")),document.head.appendChild(i)}}catch(e){console.error("vite-plugin-css-injected-by-js",e)}})(); 2 | (function(e,a){typeof exports=="object"&&typeof module<"u"?module.exports=a(require("vue")):typeof define=="function"&&define.amd?define(["vue"],a):(e=typeof globalThis<"u"?globalThis:e||self,e.VueLinkPreview=a(e.Vue))})(this,function(e){"use strict";var a=document.createElement("style");a.textContent=`.link-preview-section[data-v-7cc2d39e]{display:flex;flex-direction:row;justify-content:space-between;padding:14px;border-radius:5px;margin:20px 0;box-shadow:0 0 0 1px #0000001a,0 -4px 24px 2px #00000008;line-height:1.5;cursor:pointer}.link-preview-section .animated-background[data-v-7cc2d39e],.link-preview-section .link-image-loader .img[data-v-7cc2d39e]{animation-duration:2.25s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:placeHolderShimmer-7cc2d39e;animation-timing-function:linear;background:#f6f6f6;background:linear-gradient(to right,#f6f6f6 8%,#f0f0f0 18%,#f6f6f6 33%);position:relative}@keyframes placeHolderShimmer-7cc2d39e{0%{background-position:-468px 0}to{background-position:468px 0}}.link-preview-section .link-description[data-v-7cc2d39e]{display:flex;flex-direction:column}.link-preview-section .link-description .domain[data-v-7cc2d39e]{display:flex;flex-direction:row;align-items:center;margin-bottom:4px}.link-preview-section .link-description .domain img[data-v-7cc2d39e]{height:16px;width:16px}.link-preview-section .link-description .domain .link-url[data-v-7cc2d39e],.link-preview-section .link-description .domain .link-url-loader[data-v-7cc2d39e]{font-weight:600}.link-preview-section .link-description .domain .link-url-loader[data-v-7cc2d39e]{background-color:#f6f6f6;color:#f6f6f6;border-radius:10px}.link-preview-section .link-description .link-data .link-title[data-v-7cc2d39e]{color:#1364a2;font-weight:600;font-size:15px}.link-preview-section .link-description .link-data .link-description[data-v-7cc2d39e]{font-size:14px;text-align:left}.link-preview-section .link-description .link-data-loader .p1[data-v-7cc2d39e]{font-weight:600;font-size:15px}.link-preview-section .link-description .link-data-loader .p2[data-v-7cc2d39e]{font-size:14px}.link-preview-section .link-description .link-data-loader .p1[data-v-7cc2d39e],.link-preview-section .link-description .link-data-loader .p2[data-v-7cc2d39e]{background-color:#f6f6f6;color:#f6f6f6;border-radius:10px;margin-bottom:4px}.link-preview-section .link-image[data-v-7cc2d39e]{display:flex;align-content:center;align-items:center;height:100%}.link-preview-section .link-image img[data-v-7cc2d39e]{max-height:64px;object-fit:cover}.link-preview-section .link-image-loader[data-v-7cc2d39e]{display:flex;align-content:center;align-items:center}.link-preview-section .link-image-loader .img[data-v-7cc2d39e]{height:64px;width:64px} 3 | `,document.head.appendChild(a);const k={key:0},f={class:"link-description"},v={class:"domain"},g={class:"link-url"},u={class:"link-data"},h={class:"link-title"},w={class:"link-description"},_={class:"link-image"},x=["src","alt"],y=[e.createStaticVNode('',2)];return((l,r)=>{const t=l.__vccOpts||l;for(const[s,d]of r)t[s]=d;return t})(e.defineComponent({__name:"VueLinkPreview",props:{url:{},width:{default:"90%"},maxWidth:{default:"700px"},marginTop:{default:"18px"},marginBottom:{default:"18px"},marginRight:{default:"auto"},marginLeft:{default:"auto"},customDomain:{default:"https://lpdg-server.azurewebsites.net/parse/link"},canOpenLink:{type:Boolean,default:!0}},emits:["onClick"],setup(l,{emit:r}){const t=l,s=r,d=e.ref(!1),i=e.ref(null),p=e.ref(!1),b=n=>{const o=/(http(s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&//=]*)/gi;return p.value=o.test(n),p.value},V=()=>{const{url:n,customDomain:o}=t;return new Promise((S,E)=>{b(n)&&fetch(o,{method:"POST",headers:{Accept:"application/json","Content-Type":"application/json"},body:JSON.stringify({url:n})}).then(c=>c.json()).then(c=>{S(c)}).catch(c=>E(c))})},N=()=>{const{url:n,canOpenLink:o}=t;o&&window.open(n,"_blank"),s("onClick",i.value)},m=()=>({width:t.width,maxWidth:t.maxWidth,marginTop:t.marginTop,marginBottom:t.marginBottom,marginRight:t.marginRight,marginLeft:t.marginLeft});return e.onMounted(()=>{d.value=!0,V().then(n=>{i.value=n,d.value=!1})}),(n,o)=>p.value?(e.openBlock(),e.createElementBlock("div",k,[!d.value&&i.value?e.renderSlot(n.$slots,"default",{key:0,title:i.value.title,img:i.value.img,description:i.value.description,domain:i.value.domain},()=>[e.createElementVNode("div",{class:"link-preview-section",style:m,onClick:N},[e.createElementVNode("div",f,[e.createElementVNode("div",v,[e.createElementVNode("span",g,e.toDisplayString(i.value.domain),1)]),e.createElementVNode("div",u,[e.createElementVNode("div",h,e.toDisplayString(i.value.title),1),e.createElementVNode("div",w,e.toDisplayString(i.value.description),1)])]),e.createElementVNode("div",_,[i.value.img?(e.openBlock(),e.createElementBlock("img",{key:0,src:i.value.img,alt:i.value.description},null,8,x)):e.createCommentVNode("",!0)])])],!0):e.renderSlot(n.$slots,"loader",{key:1},()=>[e.createElementVNode("div",{class:"link-preview-section",style:m},y)],!0)])):e.createCommentVNode("",!0)}}),[["__scopeId","data-v-7cc2d39e"]])}); 4 | -------------------------------------------------------------------------------- /examples/nuxt2/.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /examples/nuxt2/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | env: { 4 | browser: true, 5 | node: true, 6 | }, 7 | parserOptions: { 8 | parser: '@babel/eslint-parser', 9 | requireConfigFile: false, 10 | }, 11 | extends: ['@nuxtjs', 'plugin:nuxt/recommended', 'prettier'], 12 | plugins: [], 13 | // add your custom rules here 14 | rules: {}, 15 | } 16 | -------------------------------------------------------------------------------- /examples/nuxt2/.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | ### Node template 3 | # Logs 4 | /logs 5 | *.log 6 | npm-debug.log* 7 | yarn-debug.log* 8 | yarn-error.log* 9 | 10 | # Runtime data 11 | pids 12 | *.pid 13 | *.seed 14 | *.pid.lock 15 | 16 | # Directory for instrumented libs generated by jscoverage/JSCover 17 | lib-cov 18 | 19 | # Coverage directory used by tools like istanbul 20 | coverage 21 | 22 | # nyc test coverage 23 | .nyc_output 24 | 25 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 26 | .grunt 27 | 28 | # Bower dependency directory (https://bower.io/) 29 | bower_components 30 | 31 | # node-waf configuration 32 | .lock-wscript 33 | 34 | # Compiled binary addons (https://nodejs.org/api/addons.html) 35 | build/Release 36 | 37 | # Dependency directories 38 | node_modules/ 39 | jspm_packages/ 40 | 41 | # TypeScript v1 declaration files 42 | typings/ 43 | 44 | # Optional npm cache directory 45 | .npm 46 | 47 | # Optional eslint cache 48 | .eslintcache 49 | 50 | # Optional REPL history 51 | .node_repl_history 52 | 53 | # Output of 'npm pack' 54 | *.tgz 55 | 56 | # Yarn Integrity file 57 | .yarn-integrity 58 | 59 | # dotenv environment variables file 60 | .env 61 | 62 | # parcel-bundler cache (https://parceljs.org/) 63 | .cache 64 | 65 | # next.js build output 66 | .next 67 | 68 | # nuxt.js build output 69 | .nuxt 70 | 71 | # Nuxt generate 72 | dist 73 | 74 | # vuepress build output 75 | .vuepress/dist 76 | 77 | # Serverless directories 78 | .serverless 79 | 80 | # IDE / Editor 81 | .idea 82 | 83 | # Service worker 84 | sw.* 85 | 86 | # macOS 87 | .DS_Store 88 | 89 | # Vim swap files 90 | *.swp 91 | -------------------------------------------------------------------------------- /examples/nuxt2/.prettierignore: -------------------------------------------------------------------------------- 1 | ### 2 | # Place your Prettier ignore content here 3 | 4 | ### 5 | # .gitignore content is duplicated here due to https://github.com/prettier/prettier/issues/8506 6 | 7 | # Created by .ignore support plugin (hsz.mobi) 8 | ### Node template 9 | # Logs 10 | /logs 11 | *.log 12 | npm-debug.log* 13 | yarn-debug.log* 14 | yarn-error.log* 15 | 16 | # Runtime data 17 | pids 18 | *.pid 19 | *.seed 20 | *.pid.lock 21 | 22 | # Directory for instrumented libs generated by jscoverage/JSCover 23 | lib-cov 24 | 25 | # Coverage directory used by tools like istanbul 26 | coverage 27 | 28 | # nyc test coverage 29 | .nyc_output 30 | 31 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 32 | .grunt 33 | 34 | # Bower dependency directory (https://bower.io/) 35 | bower_components 36 | 37 | # node-waf configuration 38 | .lock-wscript 39 | 40 | # Compiled binary addons (https://nodejs.org/api/addons.html) 41 | build/Release 42 | 43 | # Dependency directories 44 | node_modules/ 45 | jspm_packages/ 46 | 47 | # TypeScript v1 declaration files 48 | typings/ 49 | 50 | # Optional npm cache directory 51 | .npm 52 | 53 | # Optional eslint cache 54 | .eslintcache 55 | 56 | # Optional REPL history 57 | .node_repl_history 58 | 59 | # Output of 'npm pack' 60 | *.tgz 61 | 62 | # Yarn Integrity file 63 | .yarn-integrity 64 | 65 | # dotenv environment variables file 66 | .env 67 | 68 | # parcel-bundler cache (https://parceljs.org/) 69 | .cache 70 | 71 | # next.js build output 72 | .next 73 | 74 | # nuxt.js build output 75 | .nuxt 76 | 77 | # Nuxt generate 78 | dist 79 | 80 | # vuepress build output 81 | .vuepress/dist 82 | 83 | # Serverless directories 84 | .serverless 85 | 86 | # IDE / Editor 87 | .idea 88 | 89 | # Service worker 90 | sw.* 91 | 92 | # macOS 93 | .DS_Store 94 | 95 | # Vim swap files 96 | *.swp 97 | -------------------------------------------------------------------------------- /examples/nuxt2/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "semi": false, 3 | "singleQuote": true 4 | } 5 | -------------------------------------------------------------------------------- /examples/nuxt2/README.md: -------------------------------------------------------------------------------- 1 | # nuxt2 2 | 3 | ## Build Setup 4 | 5 | ```bash 6 | # install dependencies 7 | $ yarn install 8 | 9 | # serve with hot reload at localhost:3000 10 | $ yarn dev 11 | 12 | # build for production and launch server 13 | $ yarn build 14 | $ yarn start 15 | 16 | # generate static project 17 | $ yarn generate 18 | ``` 19 | 20 | For detailed explanation on how things work, check out the [documentation](https://nuxtjs.org). 21 | 22 | ## Special Directories 23 | 24 | You can create the following extra directories, some of which have special behaviors. Only `pages` is required; you can delete them if you don't want to use their functionality. 25 | 26 | ### `assets` 27 | 28 | The assets directory contains your uncompiled assets such as Stylus or Sass files, images, or fonts. 29 | 30 | More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/assets). 31 | 32 | ### `components` 33 | 34 | The components directory contains your Vue.js components. Components make up the different parts of your page and can be reused and imported into your pages, layouts and even other components. 35 | 36 | More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/components). 37 | 38 | ### `layouts` 39 | 40 | Layouts are a great help when you want to change the look and feel of your Nuxt app, whether you want to include a sidebar or have distinct layouts for mobile and desktop. 41 | 42 | More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/layouts). 43 | 44 | ### `pages` 45 | 46 | This directory contains your application views and routes. Nuxt will read all the `*.vue` files inside this directory and setup Vue Router automatically. 47 | 48 | More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/get-started/routing). 49 | 50 | ### `plugins` 51 | 52 | The plugins directory contains JavaScript plugins that you want to run before instantiating the root Vue.js Application. This is the place to add Vue plugins and to inject functions or constants. Every time you need to use `Vue.use()`, you should create a file in `plugins/` and add its path to plugins in `nuxt.config.js`. 53 | 54 | More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/plugins). 55 | 56 | ### `static` 57 | 58 | This directory contains your static files. Each file inside this directory is mapped to `/`. 59 | 60 | Example: `/static/robots.txt` is mapped as `/robots.txt`. 61 | 62 | More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/static). 63 | 64 | ### `store` 65 | 66 | This directory contains your Vuex store files. Creating a file in this directory automatically activates Vuex. 67 | 68 | More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/store). 69 | -------------------------------------------------------------------------------- /examples/nuxt2/nuxt.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | // Global page headers: https://go.nuxtjs.dev/config-head 3 | head: { 4 | title: 'nuxt2', 5 | htmlAttrs: { 6 | lang: 'en', 7 | }, 8 | meta: [ 9 | { charset: 'utf-8' }, 10 | { name: 'viewport', content: 'width=device-width, initial-scale=1' }, 11 | { hid: 'description', name: 'description', content: '' }, 12 | { name: 'format-detection', content: 'telephone=no' }, 13 | ], 14 | link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }], 15 | }, 16 | 17 | // Global CSS: https://go.nuxtjs.dev/config-css 18 | css: [], 19 | 20 | // Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins 21 | plugins: [], 22 | 23 | // Auto import components: https://go.nuxtjs.dev/config-components 24 | components: true, 25 | 26 | // Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules 27 | buildModules: [ 28 | // https://go.nuxtjs.dev/eslint 29 | '@nuxtjs/eslint-module', 30 | ], 31 | 32 | // Modules: https://go.nuxtjs.dev/config-modules 33 | modules: [], 34 | 35 | // Build Configuration: https://go.nuxtjs.dev/config-build 36 | build: {}, 37 | } 38 | -------------------------------------------------------------------------------- /examples/nuxt2/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nuxt2", 3 | "version": "1.0.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "nuxt", 7 | "build": "nuxt build", 8 | "start": "nuxt start", 9 | "generate": "nuxt generate", 10 | "lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .", 11 | "lint:prettier": "prettier --check .", 12 | "lint": "yarn lint:js && yarn lint:prettier", 13 | "lintfix": "prettier --write --list-different . && yarn lint:js --fix" 14 | }, 15 | "dependencies": { 16 | "core-js": "^3.25.3", 17 | "nuxt": "^2.15.8", 18 | "vue": "^2.7.10", 19 | "vue-server-renderer": "^2.7.10", 20 | "vue-template-compiler": "^2.7.10", 21 | "@ashwamegh/vue-link-preview": "^2.7.15" 22 | }, 23 | "devDependencies": { 24 | "@babel/eslint-parser": "^7.19.1", 25 | "@nuxtjs/eslint-config": "^11.0.0", 26 | "@nuxtjs/eslint-module": "^3.1.0", 27 | "eslint": "^8.24.0", 28 | "eslint-config-prettier": "^8.5.0", 29 | "eslint-plugin-nuxt": "^4.0.0", 30 | "eslint-plugin-vue": "^9.5.1", 31 | "prettier": "^2.7.1" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /examples/nuxt2/pages/index.vue: -------------------------------------------------------------------------------- 1 | 9 | 10 | 31 | 32 | 42 | -------------------------------------------------------------------------------- /examples/nuxt2/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwamegh/vue-link-preview/d847705077d24aa79c79632e82f8ed08c21390c6/examples/nuxt2/static/favicon.ico -------------------------------------------------------------------------------- /examples/nuxt2/store/README.md: -------------------------------------------------------------------------------- 1 | # STORE 2 | 3 | **This directory is not required, you can delete it if you don't want to use it.** 4 | 5 | This directory contains your Vuex Store files. 6 | Vuex Store option is implemented in the Nuxt.js framework. 7 | 8 | Creating a file in this directory automatically activates the option in the framework. 9 | 10 | More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/vuex-store). 11 | -------------------------------------------------------------------------------- /examples/nuxt3/.gitignore: -------------------------------------------------------------------------------- 1 | # Nuxt dev/build outputs 2 | .output 3 | .data 4 | .nuxt 5 | .nitro 6 | .cache 7 | dist 8 | 9 | # Node dependencies 10 | node_modules 11 | 12 | # Logs 13 | logs 14 | *.log 15 | 16 | # Misc 17 | .DS_Store 18 | .fleet 19 | .idea 20 | 21 | # Local env files 22 | .env 23 | .env.* 24 | !.env.example 25 | -------------------------------------------------------------------------------- /examples/nuxt3/README.md: -------------------------------------------------------------------------------- 1 | # Nuxt 3 Minimal Starter 2 | 3 | Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more. 4 | 5 | ## Setup 6 | 7 | Make sure to install the dependencies: 8 | 9 | ```bash 10 | # npm 11 | npm install 12 | 13 | # pnpm 14 | pnpm install 15 | 16 | # yarn 17 | yarn install 18 | 19 | # bun 20 | bun install 21 | ``` 22 | 23 | ## Development Server 24 | 25 | Start the development server on `http://localhost:3000`: 26 | 27 | ```bash 28 | # npm 29 | npm run dev 30 | 31 | # pnpm 32 | pnpm run dev 33 | 34 | # yarn 35 | yarn dev 36 | 37 | # bun 38 | bun run dev 39 | ``` 40 | 41 | ## Production 42 | 43 | Build the application for production: 44 | 45 | ```bash 46 | # npm 47 | npm run build 48 | 49 | # pnpm 50 | pnpm run build 51 | 52 | # yarn 53 | yarn build 54 | 55 | # bun 56 | bun run build 57 | ``` 58 | 59 | Locally preview production build: 60 | 61 | ```bash 62 | # npm 63 | npm run preview 64 | 65 | # pnpm 66 | pnpm run preview 67 | 68 | # yarn 69 | yarn preview 70 | 71 | # bun 72 | bun run preview 73 | ``` 74 | 75 | Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information. 76 | -------------------------------------------------------------------------------- /examples/nuxt3/app.vue: -------------------------------------------------------------------------------- 1 | 15 | 16 | 21 | 22 | 35 | -------------------------------------------------------------------------------- /examples/nuxt3/nuxt.config.ts: -------------------------------------------------------------------------------- 1 | // https://nuxt.com/docs/api/configuration/nuxt-config 2 | export default defineNuxtConfig({ 3 | devtools: { enabled: true }, 4 | ssr: true 5 | }) 6 | -------------------------------------------------------------------------------- /examples/nuxt3/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nuxt-app", 3 | "private": true, 4 | "type": "module", 5 | "scripts": { 6 | "build": "nuxt build", 7 | "dev": "nuxt dev", 8 | "generate": "nuxt generate", 9 | "preview": "nuxt preview", 10 | "postinstall": "nuxt prepare" 11 | }, 12 | "dependencies": { 13 | "@ashwamegh/vue-link-preview": "^3.3.0" 14 | }, 15 | "devDependencies": { 16 | "@nuxt/devtools": "latest", 17 | "nuxt": "^3.8.2", 18 | "vue": "^3.3.12", 19 | "vue-router": "^4.2.5" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /examples/nuxt3/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwamegh/vue-link-preview/d847705077d24aa79c79632e82f8ed08c21390c6/examples/nuxt3/public/favicon.ico -------------------------------------------------------------------------------- /examples/nuxt3/server/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.nuxt/tsconfig.server.json" 3 | } 4 | -------------------------------------------------------------------------------- /examples/nuxt3/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | // https://nuxt.com/docs/guide/concepts/typescript 3 | "extends": "./.nuxt/tsconfig.json" 4 | } 5 | -------------------------------------------------------------------------------- /examples/vue2/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | .DS_Store 12 | dist 13 | dist-ssr 14 | *.local 15 | 16 | /cypress/videos/ 17 | /cypress/screenshots/ 18 | 19 | # Editor directories and files 20 | .vscode 21 | !.vscode/extensions.json 22 | .idea 23 | *.suo 24 | *.ntvs* 25 | *.njsproj 26 | *.sln 27 | *.sw? 28 | -------------------------------------------------------------------------------- /examples/vue2/README.md: -------------------------------------------------------------------------------- 1 | # vue2 2 | 3 | This template should help get you started developing with Vue 3 in Vite. 4 | 5 | ## Recommended IDE Setup 6 | 7 | [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). 8 | 9 | ## Customize configuration 10 | 11 | See [Vite Configuration Reference](https://vitejs.dev/config/). 12 | 13 | ## Project Setup 14 | 15 | ```sh 16 | npm install 17 | ``` 18 | 19 | ### Compile and Hot-Reload for Development 20 | 21 | ```sh 22 | npm run dev 23 | ``` 24 | 25 | ### Compile and Minify for Production 26 | 27 | ```sh 28 | npm run build 29 | ``` 30 | -------------------------------------------------------------------------------- /examples/vue2/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Vite App 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /examples/vue2/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue2", 3 | "version": "0.0.0", 4 | "scripts": { 5 | "dev": "vite", 6 | "build": "vite build", 7 | "preview": "vite preview --port 4173" 8 | }, 9 | "dependencies": { 10 | "vue": "^2.7.15", 11 | "@ashwamegh/vue-link-preview": "^2.7.15" 12 | }, 13 | "devDependencies": { 14 | "@vitejs/plugin-legacy": "^2.0.0", 15 | "@vitejs/plugin-vue2": "^1.1.2", 16 | "terser": "^5.14.2", 17 | "vite": "^3.0.2" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /examples/vue2/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwamegh/vue-link-preview/d847705077d24aa79c79632e82f8ed08c21390c6/examples/vue2/public/favicon.ico -------------------------------------------------------------------------------- /examples/vue2/src/App.vue: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 22 | 23 | 33 | -------------------------------------------------------------------------------- /examples/vue2/src/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './App.vue' 3 | 4 | Vue.config.productionTip = false 5 | 6 | new Vue({ 7 | render: (h) => h(App) 8 | }).$mount('#app') 9 | -------------------------------------------------------------------------------- /examples/vue2/vite.config.js: -------------------------------------------------------------------------------- 1 | import { fileURLToPath, URL } from 'node:url' 2 | 3 | import { defineConfig } from 'vite' 4 | import legacy from '@vitejs/plugin-legacy' 5 | import vue2 from '@vitejs/plugin-vue2' 6 | 7 | // https://vitejs.dev/config/ 8 | export default defineConfig({ 9 | plugins: [ 10 | vue2(), 11 | legacy({ 12 | targets: ['ie >= 11'], 13 | additionalLegacyPolyfills: ['regenerator-runtime/runtime'] 14 | }) 15 | ], 16 | resolve: { 17 | alias: { 18 | '@': fileURLToPath(new URL('./src', import.meta.url)) 19 | } 20 | } 21 | }) 22 | -------------------------------------------------------------------------------- /examples/vue2/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/parser@^7.18.4": 6 | version "7.23.6" 7 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.6.tgz#ba1c9e512bda72a47e285ae42aff9d2a635a9e3b" 8 | integrity sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ== 9 | 10 | "@babel/standalone@^7.20.0": 11 | version "7.23.6" 12 | resolved "https://registry.yarnpkg.com/@babel/standalone/-/standalone-7.23.6.tgz#b90a1739f05699de1f0fa10aa1a27ee262774d20" 13 | integrity sha512-+AzS6BZwZdSosrgS/TiGDYLxtlefARKClWgJ4ql//XfmV9KbPWbkEekvbvDRJ8a6qog8E9j3CziHLz5dbIEMyw== 14 | 15 | "@esbuild/android-arm@0.15.18": 16 | version "0.15.18" 17 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.15.18.tgz#266d40b8fdcf87962df8af05b76219bc786b4f80" 18 | integrity sha512-5GT+kcs2WVGjVs7+boataCkO5Fg0y4kCjzkB5bAip7H4jfnOS3dA6KPiww9W1OEKTKeAcUVhdZGvgI65OXmUnw== 19 | 20 | "@esbuild/linux-loong64@0.15.18": 21 | version "0.15.18" 22 | resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.15.18.tgz#128b76ecb9be48b60cf5cfc1c63a4f00691a3239" 23 | integrity sha512-L4jVKS82XVhw2nvzLg/19ClLWg0y27ulRwuP7lcyL6AbUWB5aPglXY3M21mauDQMDfRLs8cQmeT03r/+X3cZYQ== 24 | 25 | "@jridgewell/gen-mapping@^0.3.0": 26 | version "0.3.3" 27 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" 28 | integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== 29 | dependencies: 30 | "@jridgewell/set-array" "^1.0.1" 31 | "@jridgewell/sourcemap-codec" "^1.4.10" 32 | "@jridgewell/trace-mapping" "^0.3.9" 33 | 34 | "@jridgewell/resolve-uri@^3.1.0": 35 | version "3.1.1" 36 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721" 37 | integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== 38 | 39 | "@jridgewell/set-array@^1.0.1": 40 | version "1.1.2" 41 | resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" 42 | integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== 43 | 44 | "@jridgewell/source-map@^0.3.3": 45 | version "0.3.5" 46 | resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.5.tgz#a3bb4d5c6825aab0d281268f47f6ad5853431e91" 47 | integrity sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ== 48 | dependencies: 49 | "@jridgewell/gen-mapping" "^0.3.0" 50 | "@jridgewell/trace-mapping" "^0.3.9" 51 | 52 | "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": 53 | version "1.4.15" 54 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" 55 | integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== 56 | 57 | "@jridgewell/trace-mapping@^0.3.9": 58 | version "0.3.20" 59 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz#72e45707cf240fa6b081d0366f8265b0cd10197f" 60 | integrity sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q== 61 | dependencies: 62 | "@jridgewell/resolve-uri" "^3.1.0" 63 | "@jridgewell/sourcemap-codec" "^1.4.14" 64 | 65 | "@vitejs/plugin-legacy@^2.0.0": 66 | version "2.3.1" 67 | resolved "https://registry.yarnpkg.com/@vitejs/plugin-legacy/-/plugin-legacy-2.3.1.tgz#44d8e608e66ef03ff82ae176588c7a621d56c524" 68 | integrity sha512-J5KaGBlSt2tEYPVjM/C8dA6DkRzkFkbPe+Xb4IX5G+XOV5OGbVAfkMjKywdrkO3gGynO8S98i71Lmsff4cWkCQ== 69 | dependencies: 70 | "@babel/standalone" "^7.20.0" 71 | core-js "^3.26.0" 72 | magic-string "^0.26.7" 73 | regenerator-runtime "^0.13.10" 74 | systemjs "^6.13.0" 75 | 76 | "@vitejs/plugin-vue2@^1.1.2": 77 | version "1.1.2" 78 | resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue2/-/plugin-vue2-1.1.2.tgz#891f0acc5a6a2b4886a74cb8d6359d42f19f968a" 79 | integrity sha512-y6OEA+2UdJ0xrEQHodq20v9r3SpS62IOHrgN92JPLvVpNkhcissu7yvD5PXMzMESyazj0XNWGsc8UQk8+mVrjQ== 80 | 81 | "@vue/compiler-sfc@2.7.15": 82 | version "2.7.15" 83 | resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-2.7.15.tgz#62135fb2f69559fc723fd9c56b8e8b0ac7864a0b" 84 | integrity sha512-FCvIEevPmgCgqFBH7wD+3B97y7u7oj/Wr69zADBf403Tui377bThTjBvekaZvlRr4IwUAu3M6hYZeULZFJbdYg== 85 | dependencies: 86 | "@babel/parser" "^7.18.4" 87 | postcss "^8.4.14" 88 | source-map "^0.6.1" 89 | 90 | acorn@^8.8.2: 91 | version "8.11.2" 92 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.2.tgz#ca0d78b51895be5390a5903c5b3bdcdaf78ae40b" 93 | integrity sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w== 94 | 95 | buffer-from@^1.0.0: 96 | version "1.1.2" 97 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" 98 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== 99 | 100 | commander@^2.20.0: 101 | version "2.20.3" 102 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 103 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 104 | 105 | core-js@^3.26.0: 106 | version "3.34.0" 107 | resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.34.0.tgz#5705e6ad5982678612e96987d05b27c6c7c274a5" 108 | integrity sha512-aDdvlDder8QmY91H88GzNi9EtQi2TjvQhpCX6B1v/dAZHU1AuLgHvRh54RiOerpEhEW46Tkf+vgAViB/CWC0ag== 109 | 110 | csstype@^3.1.0: 111 | version "3.1.3" 112 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" 113 | integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== 114 | 115 | esbuild-android-64@0.15.18: 116 | version "0.15.18" 117 | resolved "https://registry.yarnpkg.com/esbuild-android-64/-/esbuild-android-64-0.15.18.tgz#20a7ae1416c8eaade917fb2453c1259302c637a5" 118 | integrity sha512-wnpt3OXRhcjfIDSZu9bnzT4/TNTDsOUvip0foZOUBG7QbSt//w3QV4FInVJxNhKc/ErhUxc5z4QjHtMi7/TbgA== 119 | 120 | esbuild-android-arm64@0.15.18: 121 | version "0.15.18" 122 | resolved "https://registry.yarnpkg.com/esbuild-android-arm64/-/esbuild-android-arm64-0.15.18.tgz#9cc0ec60581d6ad267568f29cf4895ffdd9f2f04" 123 | integrity sha512-G4xu89B8FCzav9XU8EjsXacCKSG2FT7wW9J6hOc18soEHJdtWu03L3TQDGf0geNxfLTtxENKBzMSq9LlbjS8OQ== 124 | 125 | esbuild-darwin-64@0.15.18: 126 | version "0.15.18" 127 | resolved "https://registry.yarnpkg.com/esbuild-darwin-64/-/esbuild-darwin-64-0.15.18.tgz#428e1730ea819d500808f220fbc5207aea6d4410" 128 | integrity sha512-2WAvs95uPnVJPuYKP0Eqx+Dl/jaYseZEUUT1sjg97TJa4oBtbAKnPnl3b5M9l51/nbx7+QAEtuummJZW0sBEmg== 129 | 130 | esbuild-darwin-arm64@0.15.18: 131 | version "0.15.18" 132 | resolved "https://registry.yarnpkg.com/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.18.tgz#b6dfc7799115a2917f35970bfbc93ae50256b337" 133 | integrity sha512-tKPSxcTJ5OmNb1btVikATJ8NftlyNlc8BVNtyT/UAr62JFOhwHlnoPrhYWz09akBLHI9nElFVfWSTSRsrZiDUA== 134 | 135 | esbuild-freebsd-64@0.15.18: 136 | version "0.15.18" 137 | resolved "https://registry.yarnpkg.com/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.18.tgz#4e190d9c2d1e67164619ae30a438be87d5eedaf2" 138 | integrity sha512-TT3uBUxkteAjR1QbsmvSsjpKjOX6UkCstr8nMr+q7zi3NuZ1oIpa8U41Y8I8dJH2fJgdC3Dj3CXO5biLQpfdZA== 139 | 140 | esbuild-freebsd-arm64@0.15.18: 141 | version "0.15.18" 142 | resolved "https://registry.yarnpkg.com/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.18.tgz#18a4c0344ee23bd5a6d06d18c76e2fd6d3f91635" 143 | integrity sha512-R/oVr+X3Tkh+S0+tL41wRMbdWtpWB8hEAMsOXDumSSa6qJR89U0S/PpLXrGF7Wk/JykfpWNokERUpCeHDl47wA== 144 | 145 | esbuild-linux-32@0.15.18: 146 | version "0.15.18" 147 | resolved "https://registry.yarnpkg.com/esbuild-linux-32/-/esbuild-linux-32-0.15.18.tgz#9a329731ee079b12262b793fb84eea762e82e0ce" 148 | integrity sha512-lphF3HiCSYtaa9p1DtXndiQEeQDKPl9eN/XNoBf2amEghugNuqXNZA/ZovthNE2aa4EN43WroO0B85xVSjYkbg== 149 | 150 | esbuild-linux-64@0.15.18: 151 | version "0.15.18" 152 | resolved "https://registry.yarnpkg.com/esbuild-linux-64/-/esbuild-linux-64-0.15.18.tgz#532738075397b994467b514e524aeb520c191b6c" 153 | integrity sha512-hNSeP97IviD7oxLKFuii5sDPJ+QHeiFTFLoLm7NZQligur8poNOWGIgpQ7Qf8Balb69hptMZzyOBIPtY09GZYw== 154 | 155 | esbuild-linux-arm64@0.15.18: 156 | version "0.15.18" 157 | resolved "https://registry.yarnpkg.com/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.18.tgz#5372e7993ac2da8f06b2ba313710d722b7a86e5d" 158 | integrity sha512-54qr8kg/6ilcxd+0V3h9rjT4qmjc0CccMVWrjOEM/pEcUzt8X62HfBSeZfT2ECpM7104mk4yfQXkosY8Quptug== 159 | 160 | esbuild-linux-arm@0.15.18: 161 | version "0.15.18" 162 | resolved "https://registry.yarnpkg.com/esbuild-linux-arm/-/esbuild-linux-arm-0.15.18.tgz#e734aaf259a2e3d109d4886c9e81ec0f2fd9a9cc" 163 | integrity sha512-UH779gstRblS4aoS2qpMl3wjg7U0j+ygu3GjIeTonCcN79ZvpPee12Qun3vcdxX+37O5LFxz39XeW2I9bybMVA== 164 | 165 | esbuild-linux-mips64le@0.15.18: 166 | version "0.15.18" 167 | resolved "https://registry.yarnpkg.com/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.18.tgz#c0487c14a9371a84eb08fab0e1d7b045a77105eb" 168 | integrity sha512-Mk6Ppwzzz3YbMl/ZZL2P0q1tnYqh/trYZ1VfNP47C31yT0K8t9s7Z077QrDA/guU60tGNp2GOwCQnp+DYv7bxQ== 169 | 170 | esbuild-linux-ppc64le@0.15.18: 171 | version "0.15.18" 172 | resolved "https://registry.yarnpkg.com/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.18.tgz#af048ad94eed0ce32f6d5a873f7abe9115012507" 173 | integrity sha512-b0XkN4pL9WUulPTa/VKHx2wLCgvIAbgwABGnKMY19WhKZPT+8BxhZdqz6EgkqCLld7X5qiCY2F/bfpUUlnFZ9w== 174 | 175 | esbuild-linux-riscv64@0.15.18: 176 | version "0.15.18" 177 | resolved "https://registry.yarnpkg.com/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.18.tgz#423ed4e5927bd77f842bd566972178f424d455e6" 178 | integrity sha512-ba2COaoF5wL6VLZWn04k+ACZjZ6NYniMSQStodFKH/Pu6RxzQqzsmjR1t9QC89VYJxBeyVPTaHuBMCejl3O/xg== 179 | 180 | esbuild-linux-s390x@0.15.18: 181 | version "0.15.18" 182 | resolved "https://registry.yarnpkg.com/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.18.tgz#21d21eaa962a183bfb76312e5a01cc5ae48ce8eb" 183 | integrity sha512-VbpGuXEl5FCs1wDVp93O8UIzl3ZrglgnSQ+Hu79g7hZu6te6/YHgVJxCM2SqfIila0J3k0csfnf8VD2W7u2kzQ== 184 | 185 | esbuild-netbsd-64@0.15.18: 186 | version "0.15.18" 187 | resolved "https://registry.yarnpkg.com/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.18.tgz#ae75682f60d08560b1fe9482bfe0173e5110b998" 188 | integrity sha512-98ukeCdvdX7wr1vUYQzKo4kQ0N2p27H7I11maINv73fVEXt2kyh4K4m9f35U1K43Xc2QGXlzAw0K9yoU7JUjOg== 189 | 190 | esbuild-openbsd-64@0.15.18: 191 | version "0.15.18" 192 | resolved "https://registry.yarnpkg.com/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.18.tgz#79591a90aa3b03e4863f93beec0d2bab2853d0a8" 193 | integrity sha512-yK5NCcH31Uae076AyQAXeJzt/vxIo9+omZRKj1pauhk3ITuADzuOx5N2fdHrAKPxN+zH3w96uFKlY7yIn490xQ== 194 | 195 | esbuild-sunos-64@0.15.18: 196 | version "0.15.18" 197 | resolved "https://registry.yarnpkg.com/esbuild-sunos-64/-/esbuild-sunos-64-0.15.18.tgz#fd528aa5da5374b7e1e93d36ef9b07c3dfed2971" 198 | integrity sha512-On22LLFlBeLNj/YF3FT+cXcyKPEI263nflYlAhz5crxtp3yRG1Ugfr7ITyxmCmjm4vbN/dGrb/B7w7U8yJR9yw== 199 | 200 | esbuild-windows-32@0.15.18: 201 | version "0.15.18" 202 | resolved "https://registry.yarnpkg.com/esbuild-windows-32/-/esbuild-windows-32-0.15.18.tgz#0e92b66ecdf5435a76813c4bc5ccda0696f4efc3" 203 | integrity sha512-o+eyLu2MjVny/nt+E0uPnBxYuJHBvho8vWsC2lV61A7wwTWC3jkN2w36jtA+yv1UgYkHRihPuQsL23hsCYGcOQ== 204 | 205 | esbuild-windows-64@0.15.18: 206 | version "0.15.18" 207 | resolved "https://registry.yarnpkg.com/esbuild-windows-64/-/esbuild-windows-64-0.15.18.tgz#0fc761d785414284fc408e7914226d33f82420d0" 208 | integrity sha512-qinug1iTTaIIrCorAUjR0fcBk24fjzEedFYhhispP8Oc7SFvs+XeW3YpAKiKp8dRpizl4YYAhxMjlftAMJiaUw== 209 | 210 | esbuild-windows-arm64@0.15.18: 211 | version "0.15.18" 212 | resolved "https://registry.yarnpkg.com/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.18.tgz#5b5bdc56d341d0922ee94965c89ee120a6a86eb7" 213 | integrity sha512-q9bsYzegpZcLziq0zgUi5KqGVtfhjxGbnksaBFYmWLxeV/S1fK4OLdq2DFYnXcLMjlZw2L0jLsk1eGoB522WXQ== 214 | 215 | esbuild@^0.15.9: 216 | version "0.15.18" 217 | resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.15.18.tgz#ea894adaf3fbc036d32320a00d4d6e4978a2f36d" 218 | integrity sha512-x/R72SmW3sSFRm5zrrIjAhCeQSAWoni3CmHEqfQrZIQTM3lVCdehdwuIqaOtfC2slvpdlLa62GYoN8SxT23m6Q== 219 | optionalDependencies: 220 | "@esbuild/android-arm" "0.15.18" 221 | "@esbuild/linux-loong64" "0.15.18" 222 | esbuild-android-64 "0.15.18" 223 | esbuild-android-arm64 "0.15.18" 224 | esbuild-darwin-64 "0.15.18" 225 | esbuild-darwin-arm64 "0.15.18" 226 | esbuild-freebsd-64 "0.15.18" 227 | esbuild-freebsd-arm64 "0.15.18" 228 | esbuild-linux-32 "0.15.18" 229 | esbuild-linux-64 "0.15.18" 230 | esbuild-linux-arm "0.15.18" 231 | esbuild-linux-arm64 "0.15.18" 232 | esbuild-linux-mips64le "0.15.18" 233 | esbuild-linux-ppc64le "0.15.18" 234 | esbuild-linux-riscv64 "0.15.18" 235 | esbuild-linux-s390x "0.15.18" 236 | esbuild-netbsd-64 "0.15.18" 237 | esbuild-openbsd-64 "0.15.18" 238 | esbuild-sunos-64 "0.15.18" 239 | esbuild-windows-32 "0.15.18" 240 | esbuild-windows-64 "0.15.18" 241 | esbuild-windows-arm64 "0.15.18" 242 | 243 | fsevents@~2.3.2: 244 | version "2.3.3" 245 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" 246 | integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== 247 | 248 | function-bind@^1.1.2: 249 | version "1.1.2" 250 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" 251 | integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== 252 | 253 | hasown@^2.0.0: 254 | version "2.0.0" 255 | resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.0.tgz#f4c513d454a57b7c7e1650778de226b11700546c" 256 | integrity sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA== 257 | dependencies: 258 | function-bind "^1.1.2" 259 | 260 | is-core-module@^2.13.0: 261 | version "2.13.1" 262 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" 263 | integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== 264 | dependencies: 265 | hasown "^2.0.0" 266 | 267 | magic-string@^0.26.7: 268 | version "0.26.7" 269 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.26.7.tgz#caf7daf61b34e9982f8228c4527474dac8981d6f" 270 | integrity sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow== 271 | dependencies: 272 | sourcemap-codec "^1.4.8" 273 | 274 | nanoid@^3.3.7: 275 | version "3.3.7" 276 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" 277 | integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== 278 | 279 | path-parse@^1.0.7: 280 | version "1.0.7" 281 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 282 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 283 | 284 | picocolors@^1.0.0: 285 | version "1.0.0" 286 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 287 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 288 | 289 | postcss@^8.4.14, postcss@^8.4.18: 290 | version "8.4.32" 291 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.32.tgz#1dac6ac51ab19adb21b8b34fd2d93a86440ef6c9" 292 | integrity sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw== 293 | dependencies: 294 | nanoid "^3.3.7" 295 | picocolors "^1.0.0" 296 | source-map-js "^1.0.2" 297 | 298 | regenerator-runtime@^0.13.10: 299 | version "0.13.11" 300 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" 301 | integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== 302 | 303 | resolve@^1.22.1: 304 | version "1.22.8" 305 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" 306 | integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== 307 | dependencies: 308 | is-core-module "^2.13.0" 309 | path-parse "^1.0.7" 310 | supports-preserve-symlinks-flag "^1.0.0" 311 | 312 | rollup@^2.79.1: 313 | version "2.79.1" 314 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.79.1.tgz#bedee8faef7c9f93a2647ac0108748f497f081c7" 315 | integrity sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw== 316 | optionalDependencies: 317 | fsevents "~2.3.2" 318 | 319 | source-map-js@^1.0.2: 320 | version "1.0.2" 321 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" 322 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 323 | 324 | source-map-support@~0.5.20: 325 | version "0.5.21" 326 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" 327 | integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== 328 | dependencies: 329 | buffer-from "^1.0.0" 330 | source-map "^0.6.0" 331 | 332 | source-map@^0.6.0, source-map@^0.6.1: 333 | version "0.6.1" 334 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 335 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 336 | 337 | sourcemap-codec@^1.4.8: 338 | version "1.4.8" 339 | resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" 340 | integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== 341 | 342 | supports-preserve-symlinks-flag@^1.0.0: 343 | version "1.0.0" 344 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 345 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 346 | 347 | systemjs@^6.13.0: 348 | version "6.14.2" 349 | resolved "https://registry.yarnpkg.com/systemjs/-/systemjs-6.14.2.tgz#e289f959f8c8b407403bd39c6abaa16f2c13f316" 350 | integrity sha512-1TlOwvKWdXxAY9vba+huLu99zrQURDWA8pUTYsRIYDZYQbGyK+pyEP4h4dlySsqo7ozyJBmYD20F+iUHhAltEg== 351 | 352 | terser@^5.14.2: 353 | version "5.26.0" 354 | resolved "https://registry.yarnpkg.com/terser/-/terser-5.26.0.tgz#ee9f05d929f4189a9c28a0feb889d96d50126fe1" 355 | integrity sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ== 356 | dependencies: 357 | "@jridgewell/source-map" "^0.3.3" 358 | acorn "^8.8.2" 359 | commander "^2.20.0" 360 | source-map-support "~0.5.20" 361 | 362 | vite@^3.0.2: 363 | version "3.2.7" 364 | resolved "https://registry.yarnpkg.com/vite/-/vite-3.2.7.tgz#35a62826bd4d6b778ae5db8766d023bcd4e7bef3" 365 | integrity sha512-29pdXjk49xAP0QBr0xXqu2s5jiQIXNvE/xwd0vUizYT2Hzqe4BksNNoWllFVXJf4eLZ+UlVQmXfB4lWrc+t18g== 366 | dependencies: 367 | esbuild "^0.15.9" 368 | postcss "^8.4.18" 369 | resolve "^1.22.1" 370 | rollup "^2.79.1" 371 | optionalDependencies: 372 | fsevents "~2.3.2" 373 | 374 | vue@^2.7.7: 375 | version "2.7.15" 376 | resolved "https://registry.yarnpkg.com/vue/-/vue-2.7.15.tgz#94cd34e6e9f22cd2d35a02143f96a5beac1c1f54" 377 | integrity sha512-a29fsXd2G0KMRqIFTpRgpSbWaNBK3lpCTOLuGLEDnlHWdjB8fwl6zyYZ8xCrqkJdatwZb4mGHiEfJjnw0Q6AwQ== 378 | dependencies: 379 | "@vue/compiler-sfc" "2.7.15" 380 | csstype "^3.1.0" 381 | -------------------------------------------------------------------------------- /examples/vue3/.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | /* eslint-env node */ 2 | require('@rushstack/eslint-patch/modern-module-resolution') 3 | 4 | module.exports = { 5 | root: true, 6 | 'extends': [ 7 | 'plugin:vue/vue3-essential', 8 | 'eslint:recommended', 9 | '@vue/eslint-config-prettier/skip-formatting' 10 | ], 11 | parserOptions: { 12 | ecmaVersion: 'latest' 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /examples/vue3/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | .DS_Store 12 | dist 13 | dist-ssr 14 | coverage 15 | *.local 16 | 17 | /cypress/videos/ 18 | /cypress/screenshots/ 19 | 20 | # Editor directories and files 21 | .vscode/* 22 | !.vscode/extensions.json 23 | .idea 24 | *.suo 25 | *.ntvs* 26 | *.njsproj 27 | *.sln 28 | *.sw? 29 | 30 | *.tsbuildinfo 31 | -------------------------------------------------------------------------------- /examples/vue3/.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://json.schemastore.org/prettierrc", 3 | "semi": false, 4 | "tabWidth": 2, 5 | "singleQuote": true, 6 | "printWidth": 100, 7 | "trailingComma": "none" 8 | } -------------------------------------------------------------------------------- /examples/vue3/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "Vue.volar", 4 | "Vue.vscode-typescript-vue-plugin", 5 | "dbaeumer.vscode-eslint", 6 | "esbenp.prettier-vscode" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /examples/vue3/README.md: -------------------------------------------------------------------------------- 1 | # vue3 2 | 3 | This template should help get you started developing with Vue 3 in Vite. 4 | 5 | ## Recommended IDE Setup 6 | 7 | [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). 8 | 9 | ## Customize configuration 10 | 11 | See [Vite Configuration Reference](https://vitejs.dev/config/). 12 | 13 | ## Project Setup 14 | 15 | ```sh 16 | npm install 17 | ``` 18 | 19 | ### Compile and Hot-Reload for Development 20 | 21 | ```sh 22 | npm run dev 23 | ``` 24 | 25 | ### Compile and Minify for Production 26 | 27 | ```sh 28 | npm run build 29 | ``` 30 | 31 | ### Lint with [ESLint](https://eslint.org/) 32 | 33 | ```sh 34 | npm run lint 35 | ``` 36 | -------------------------------------------------------------------------------- /examples/vue3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Vite App 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /examples/vue3/jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "paths": { 4 | "@/*": ["./src/*"] 5 | } 6 | }, 7 | "exclude": ["node_modules", "dist"] 8 | } 9 | -------------------------------------------------------------------------------- /examples/vue3/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue3", 3 | "version": "0.0.0", 4 | "private": true, 5 | "type": "module", 6 | "scripts": { 7 | "dev": "vite", 8 | "build": "vite build", 9 | "preview": "vite preview", 10 | "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore", 11 | "format": "prettier --write src/" 12 | }, 13 | "dependencies": { 14 | "vue": "^3.3.11", 15 | "@ashwamegh/vue-link-preview": "^3.3.0" 16 | }, 17 | "devDependencies": { 18 | "@rushstack/eslint-patch": "^1.3.3", 19 | "@vitejs/plugin-vue": "^4.5.2", 20 | "@vue/eslint-config-prettier": "^8.0.0", 21 | "eslint": "^8.49.0", 22 | "eslint-plugin-vue": "^9.17.0", 23 | "prettier": "^3.0.3", 24 | "vite": "^5.0.10" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /examples/vue3/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashwamegh/vue-link-preview/d847705077d24aa79c79632e82f8ed08c21390c6/examples/vue3/public/favicon.ico -------------------------------------------------------------------------------- /examples/vue3/src/App.vue: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 18 | -------------------------------------------------------------------------------- /examples/vue3/src/assets/base.css: -------------------------------------------------------------------------------- 1 | /* color palette from */ 2 | :root { 3 | --vt-c-white: #ffffff; 4 | --vt-c-white-soft: #f8f8f8; 5 | --vt-c-white-mute: #f2f2f2; 6 | 7 | --vt-c-black: #181818; 8 | --vt-c-black-soft: #222222; 9 | --vt-c-black-mute: #282828; 10 | 11 | --vt-c-indigo: #2c3e50; 12 | 13 | --vt-c-divider-light-1: rgba(60, 60, 60, 0.29); 14 | --vt-c-divider-light-2: rgba(60, 60, 60, 0.12); 15 | --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65); 16 | --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48); 17 | 18 | --vt-c-text-light-1: var(--vt-c-indigo); 19 | --vt-c-text-light-2: rgba(60, 60, 60, 0.66); 20 | --vt-c-text-dark-1: var(--vt-c-white); 21 | --vt-c-text-dark-2: rgba(235, 235, 235, 0.64); 22 | } 23 | 24 | /* semantic color variables for this project */ 25 | :root { 26 | --color-background: var(--vt-c-white); 27 | --color-background-soft: var(--vt-c-white-soft); 28 | --color-background-mute: var(--vt-c-white-mute); 29 | 30 | --color-border: var(--vt-c-divider-light-2); 31 | --color-border-hover: var(--vt-c-divider-light-1); 32 | 33 | --color-heading: var(--vt-c-text-light-1); 34 | --color-text: var(--vt-c-text-light-1); 35 | 36 | --section-gap: 160px; 37 | } 38 | 39 | @media (prefers-color-scheme: dark) { 40 | :root { 41 | --color-background: var(--vt-c-black); 42 | --color-background-soft: var(--vt-c-black-soft); 43 | --color-background-mute: var(--vt-c-black-mute); 44 | 45 | --color-border: var(--vt-c-divider-dark-2); 46 | --color-border-hover: var(--vt-c-divider-dark-1); 47 | 48 | --color-heading: var(--vt-c-text-dark-1); 49 | --color-text: var(--vt-c-text-dark-2); 50 | } 51 | } 52 | 53 | *, 54 | *::before, 55 | *::after { 56 | box-sizing: border-box; 57 | margin: 0; 58 | font-weight: normal; 59 | } 60 | 61 | body { 62 | min-height: 100vh; 63 | color: var(--color-text); 64 | background: var(--color-background); 65 | transition: 66 | color 0.5s, 67 | background-color 0.5s; 68 | line-height: 1.6; 69 | font-family: 70 | Inter, 71 | -apple-system, 72 | BlinkMacSystemFont, 73 | 'Segoe UI', 74 | Roboto, 75 | Oxygen, 76 | Ubuntu, 77 | Cantarell, 78 | 'Fira Sans', 79 | 'Droid Sans', 80 | 'Helvetica Neue', 81 | sans-serif; 82 | font-size: 15px; 83 | text-rendering: optimizeLegibility; 84 | -webkit-font-smoothing: antialiased; 85 | -moz-osx-font-smoothing: grayscale; 86 | } 87 | -------------------------------------------------------------------------------- /examples/vue3/src/assets/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/vue3/src/assets/main.css: -------------------------------------------------------------------------------- 1 | @import './base.css'; 2 | 3 | #app { 4 | max-width: 1280px; 5 | margin: 0 auto; 6 | padding: 2rem; 7 | font-weight: normal; 8 | } 9 | 10 | a, 11 | .green { 12 | text-decoration: none; 13 | color: hsla(160, 100%, 37%, 1); 14 | transition: 0.4s; 15 | padding: 3px; 16 | } 17 | 18 | @media (hover: hover) { 19 | a:hover { 20 | background-color: hsla(160, 100%, 37%, 0.2); 21 | } 22 | } 23 | 24 | @media (min-width: 1024px) { 25 | body { 26 | display: flex; 27 | place-items: center; 28 | } 29 | 30 | #app { 31 | font-family: Avenir, Helvetica, Arial, sans-serif; 32 | -webkit-font-smoothing: antialiased; 33 | -moz-osx-font-smoothing: grayscale; 34 | text-align: center; 35 | color: #2c3e50; 36 | margin-top: 60px; 37 | } 38 | 39 | #app .link-preview-section { 40 | min-width: 500px; 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /examples/vue3/src/components/HelloWorld.vue: -------------------------------------------------------------------------------- 1 | 9 | 10 | 20 | 21 | 45 | -------------------------------------------------------------------------------- /examples/vue3/src/components/TheWelcome.vue: -------------------------------------------------------------------------------- 1 | 9 | 10 | 89 | -------------------------------------------------------------------------------- /examples/vue3/src/components/WelcomeItem.vue: -------------------------------------------------------------------------------- 1 | 14 | 15 | 88 | -------------------------------------------------------------------------------- /examples/vue3/src/components/icons/IconCommunity.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /examples/vue3/src/components/icons/IconDocumentation.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /examples/vue3/src/components/icons/IconEcosystem.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /examples/vue3/src/components/icons/IconSupport.vue: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /examples/vue3/src/components/icons/IconTooling.vue: -------------------------------------------------------------------------------- 1 | 2 | 20 | -------------------------------------------------------------------------------- /examples/vue3/src/main.js: -------------------------------------------------------------------------------- 1 | import './assets/main.css' 2 | 3 | import { createApp } from 'vue' 4 | import App from './App.vue' 5 | 6 | createApp(App).mount('#app') 7 | -------------------------------------------------------------------------------- /examples/vue3/vite.config.js: -------------------------------------------------------------------------------- 1 | import { fileURLToPath, URL } from 'node:url' 2 | 3 | import { defineConfig } from 'vite' 4 | import vue from '@vitejs/plugin-vue' 5 | 6 | // https://vitejs.dev/config/ 7 | export default defineConfig({ 8 | plugins: [ 9 | vue(), 10 | ], 11 | resolve: { 12 | alias: { 13 | '@': fileURLToPath(new URL('./src', import.meta.url)) 14 | } 15 | } 16 | }) 17 | -------------------------------------------------------------------------------- /examples/vue3/yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@aashutoshrathi/word-wrap@^1.2.3": 6 | version "1.2.6" 7 | resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" 8 | integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== 9 | 10 | "@babel/parser@^7.23.5": 11 | version "7.23.6" 12 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.6.tgz#ba1c9e512bda72a47e285ae42aff9d2a635a9e3b" 13 | integrity sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ== 14 | 15 | "@esbuild/aix-ppc64@0.19.10": 16 | version "0.19.10" 17 | resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.19.10.tgz#fb3922a0183d27446de00cf60d4f7baaadf98d84" 18 | integrity sha512-Q+mk96KJ+FZ30h9fsJl+67IjNJm3x2eX+GBWGmocAKgzp27cowCOOqSdscX80s0SpdFXZnIv/+1xD1EctFx96Q== 19 | 20 | "@esbuild/android-arm64@0.19.10": 21 | version "0.19.10" 22 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.19.10.tgz#ef31015416dd79398082409b77aaaa2ade4d531a" 23 | integrity sha512-1X4CClKhDgC3by7k8aOWZeBXQX8dHT5QAMCAQDArCLaYfkppoARvh0fit3X2Qs+MXDngKcHv6XXyQCpY0hkK1Q== 24 | 25 | "@esbuild/android-arm@0.19.10": 26 | version "0.19.10" 27 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.19.10.tgz#1c23c7e75473aae9fb323be5d9db225142f47f52" 28 | integrity sha512-7W0bK7qfkw1fc2viBfrtAEkDKHatYfHzr/jKAHNr9BvkYDXPcC6bodtm8AyLJNNuqClLNaeTLuwURt4PRT9d7w== 29 | 30 | "@esbuild/android-x64@0.19.10": 31 | version "0.19.10" 32 | resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.19.10.tgz#df6a4e6d6eb8da5595cfce16d4e3f6bc24464707" 33 | integrity sha512-O/nO/g+/7NlitUxETkUv/IvADKuZXyH4BHf/g/7laqKC4i/7whLpB0gvpPc2zpF0q9Q6FXS3TS75QHac9MvVWw== 34 | 35 | "@esbuild/darwin-arm64@0.19.10": 36 | version "0.19.10" 37 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.19.10.tgz#8462a55db07c1b2fad61c8244ce04469ef1043be" 38 | integrity sha512-YSRRs2zOpwypck+6GL3wGXx2gNP7DXzetmo5pHXLrY/VIMsS59yKfjPizQ4lLt5vEI80M41gjm2BxrGZ5U+VMA== 39 | 40 | "@esbuild/darwin-x64@0.19.10": 41 | version "0.19.10" 42 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.19.10.tgz#d1de20bfd41bb75b955ba86a6b1004539e8218c1" 43 | integrity sha512-alfGtT+IEICKtNE54hbvPg13xGBe4GkVxyGWtzr+yHO7HIiRJppPDhOKq3zstTcVf8msXb/t4eavW3jCDpMSmA== 44 | 45 | "@esbuild/freebsd-arm64@0.19.10": 46 | version "0.19.10" 47 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.10.tgz#16904879e34c53a2e039d1284695d2db3e664d57" 48 | integrity sha512-dMtk1wc7FSH8CCkE854GyGuNKCewlh+7heYP/sclpOG6Cectzk14qdUIY5CrKDbkA/OczXq9WesqnPl09mj5dg== 49 | 50 | "@esbuild/freebsd-x64@0.19.10": 51 | version "0.19.10" 52 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.19.10.tgz#8ad9e5ca9786ca3f1ef1411bfd10b08dcd9d4cef" 53 | integrity sha512-G5UPPspryHu1T3uX8WiOEUa6q6OlQh6gNl4CO4Iw5PS+Kg5bVggVFehzXBJY6X6RSOMS8iXDv2330VzaObm4Ag== 54 | 55 | "@esbuild/linux-arm64@0.19.10": 56 | version "0.19.10" 57 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.19.10.tgz#d82cf2c590faece82d28bbf1cfbe36f22ae25bd2" 58 | integrity sha512-QxaouHWZ+2KWEj7cGJmvTIHVALfhpGxo3WLmlYfJ+dA5fJB6lDEIg+oe/0//FuyVHuS3l79/wyBxbHr0NgtxJQ== 59 | 60 | "@esbuild/linux-arm@0.19.10": 61 | version "0.19.10" 62 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.19.10.tgz#477b8e7c7bcd34369717b04dd9ee6972c84f4029" 63 | integrity sha512-j6gUW5aAaPgD416Hk9FHxn27On28H4eVI9rJ4az7oCGTFW48+LcgNDBN+9f8rKZz7EEowo889CPKyeaD0iw9Kg== 64 | 65 | "@esbuild/linux-ia32@0.19.10": 66 | version "0.19.10" 67 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.19.10.tgz#d55ff822cf5b0252a57112f86857ff23be6cab0e" 68 | integrity sha512-4ub1YwXxYjj9h1UIZs2hYbnTZBtenPw5NfXCRgEkGb0b6OJ2gpkMvDqRDYIDRjRdWSe/TBiZltm3Y3Q8SN1xNg== 69 | 70 | "@esbuild/linux-loong64@0.19.10": 71 | version "0.19.10" 72 | resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.19.10.tgz#a9ad057d7e48d6c9f62ff50f6f208e331c4543c7" 73 | integrity sha512-lo3I9k+mbEKoxtoIbM0yC/MZ1i2wM0cIeOejlVdZ3D86LAcFXFRdeuZmh91QJvUTW51bOK5W2BznGNIl4+mDaA== 74 | 75 | "@esbuild/linux-mips64el@0.19.10": 76 | version "0.19.10" 77 | resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.19.10.tgz#b011a96924773d60ebab396fbd7a08de66668179" 78 | integrity sha512-J4gH3zhHNbdZN0Bcr1QUGVNkHTdpijgx5VMxeetSk6ntdt+vR1DqGmHxQYHRmNb77tP6GVvD+K0NyO4xjd7y4A== 79 | 80 | "@esbuild/linux-ppc64@0.19.10": 81 | version "0.19.10" 82 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.19.10.tgz#5d8b59929c029811e473f2544790ea11d588d4dd" 83 | integrity sha512-tgT/7u+QhV6ge8wFMzaklOY7KqiyitgT1AUHMApau32ZlvTB/+efeCtMk4eXS+uEymYK249JsoiklZN64xt6oQ== 84 | 85 | "@esbuild/linux-riscv64@0.19.10": 86 | version "0.19.10" 87 | resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.19.10.tgz#292b06978375b271bd8bc0a554e0822957508d22" 88 | integrity sha512-0f/spw0PfBMZBNqtKe5FLzBDGo0SKZKvMl5PHYQr3+eiSscfJ96XEknCe+JoOayybWUFQbcJTrk946i3j9uYZA== 89 | 90 | "@esbuild/linux-s390x@0.19.10": 91 | version "0.19.10" 92 | resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.19.10.tgz#d30af63530f8d4fa96930374c9dd0d62bf59e069" 93 | integrity sha512-pZFe0OeskMHzHa9U38g+z8Yx5FNCLFtUnJtQMpwhS+r4S566aK2ci3t4NCP4tjt6d5j5uo4h7tExZMjeKoehAA== 94 | 95 | "@esbuild/linux-x64@0.19.10": 96 | version "0.19.10" 97 | resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.19.10.tgz#898c72eeb74d9f2fb43acf316125b475548b75ce" 98 | integrity sha512-SpYNEqg/6pZYoc+1zLCjVOYvxfZVZj6w0KROZ3Fje/QrM3nfvT2llI+wmKSrWuX6wmZeTapbarvuNNK/qepSgA== 99 | 100 | "@esbuild/netbsd-x64@0.19.10": 101 | version "0.19.10" 102 | resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.19.10.tgz#fd473a5ae261b43eab6dad4dbd5a3155906e6c91" 103 | integrity sha512-ACbZ0vXy9zksNArWlk2c38NdKg25+L9pr/mVaj9SUq6lHZu/35nx2xnQVRGLrC1KKQqJKRIB0q8GspiHI3J80Q== 104 | 105 | "@esbuild/openbsd-x64@0.19.10": 106 | version "0.19.10" 107 | resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.19.10.tgz#96eb8992e526717b5272321eaad3e21f3a608e46" 108 | integrity sha512-PxcgvjdSjtgPMiPQrM3pwSaG4kGphP+bLSb+cihuP0LYdZv1epbAIecHVl5sD3npkfYBZ0ZnOjR878I7MdJDFg== 109 | 110 | "@esbuild/sunos-x64@0.19.10": 111 | version "0.19.10" 112 | resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.19.10.tgz#c16ee1c167f903eaaa6acf7372bee42d5a89c9bc" 113 | integrity sha512-ZkIOtrRL8SEJjr+VHjmW0znkPs+oJXhlJbNwfI37rvgeMtk3sxOQevXPXjmAPZPigVTncvFqLMd+uV0IBSEzqA== 114 | 115 | "@esbuild/win32-arm64@0.19.10": 116 | version "0.19.10" 117 | resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.19.10.tgz#7e417d1971dbc7e469b4eceb6a5d1d667b5e3dcc" 118 | integrity sha512-+Sa4oTDbpBfGpl3Hn3XiUe4f8TU2JF7aX8cOfqFYMMjXp6ma6NJDztl5FDG8Ezx0OjwGikIHw+iA54YLDNNVfw== 119 | 120 | "@esbuild/win32-ia32@0.19.10": 121 | version "0.19.10" 122 | resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.19.10.tgz#2b52dfec6cd061ecb36171c13bae554888b439e5" 123 | integrity sha512-EOGVLK1oWMBXgfttJdPHDTiivYSjX6jDNaATeNOaCOFEVcfMjtbx7WVQwPSE1eIfCp/CaSF2nSrDtzc4I9f8TQ== 124 | 125 | "@esbuild/win32-x64@0.19.10": 126 | version "0.19.10" 127 | resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.19.10.tgz#bd123a74f243d2f3a1f046447bb9b363ee25d072" 128 | integrity sha512-whqLG6Sc70AbU73fFYvuYzaE4MNMBIlR1Y/IrUeOXFrWHxBEjjbZaQ3IXIQS8wJdAzue2GwYZCjOrgrU1oUHoA== 129 | 130 | "@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": 131 | version "4.4.0" 132 | resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" 133 | integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== 134 | dependencies: 135 | eslint-visitor-keys "^3.3.0" 136 | 137 | "@eslint-community/regexpp@^4.6.1": 138 | version "4.10.0" 139 | resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.10.0.tgz#548f6de556857c8bb73bbee70c35dc82a2e74d63" 140 | integrity sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA== 141 | 142 | "@eslint/eslintrc@^2.1.4": 143 | version "2.1.4" 144 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad" 145 | integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ== 146 | dependencies: 147 | ajv "^6.12.4" 148 | debug "^4.3.2" 149 | espree "^9.6.0" 150 | globals "^13.19.0" 151 | ignore "^5.2.0" 152 | import-fresh "^3.2.1" 153 | js-yaml "^4.1.0" 154 | minimatch "^3.1.2" 155 | strip-json-comments "^3.1.1" 156 | 157 | "@eslint/js@8.56.0": 158 | version "8.56.0" 159 | resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.56.0.tgz#ef20350fec605a7f7035a01764731b2de0f3782b" 160 | integrity sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A== 161 | 162 | "@humanwhocodes/config-array@^0.11.13": 163 | version "0.11.13" 164 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.13.tgz#075dc9684f40a531d9b26b0822153c1e832ee297" 165 | integrity sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ== 166 | dependencies: 167 | "@humanwhocodes/object-schema" "^2.0.1" 168 | debug "^4.1.1" 169 | minimatch "^3.0.5" 170 | 171 | "@humanwhocodes/module-importer@^1.0.1": 172 | version "1.0.1" 173 | resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" 174 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 175 | 176 | "@humanwhocodes/object-schema@^2.0.1": 177 | version "2.0.1" 178 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz#e5211452df060fa8522b55c7b3c0c4d1981cb044" 179 | integrity sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw== 180 | 181 | "@jridgewell/sourcemap-codec@^1.4.15": 182 | version "1.4.15" 183 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" 184 | integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== 185 | 186 | "@nodelib/fs.scandir@2.1.5": 187 | version "2.1.5" 188 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 189 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 190 | dependencies: 191 | "@nodelib/fs.stat" "2.0.5" 192 | run-parallel "^1.1.9" 193 | 194 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 195 | version "2.0.5" 196 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 197 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 198 | 199 | "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": 200 | version "1.2.8" 201 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 202 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 203 | dependencies: 204 | "@nodelib/fs.scandir" "2.1.5" 205 | fastq "^1.6.0" 206 | 207 | "@pkgr/utils@^2.4.2": 208 | version "2.4.2" 209 | resolved "https://registry.yarnpkg.com/@pkgr/utils/-/utils-2.4.2.tgz#9e638bbe9a6a6f165580dc943f138fd3309a2cbc" 210 | integrity sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw== 211 | dependencies: 212 | cross-spawn "^7.0.3" 213 | fast-glob "^3.3.0" 214 | is-glob "^4.0.3" 215 | open "^9.1.0" 216 | picocolors "^1.0.0" 217 | tslib "^2.6.0" 218 | 219 | "@rollup/rollup-android-arm-eabi@4.9.1": 220 | version "4.9.1" 221 | resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.9.1.tgz#beaf518ee45a196448e294ad3f823d2d4576cf35" 222 | integrity sha512-6vMdBZqtq1dVQ4CWdhFwhKZL6E4L1dV6jUjuBvsavvNJSppzi6dLBbuV+3+IyUREaj9ZFvQefnQm28v4OCXlig== 223 | 224 | "@rollup/rollup-android-arm64@4.9.1": 225 | version "4.9.1" 226 | resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.9.1.tgz#6f76cfa759c2d0fdb92122ffe28217181a1664eb" 227 | integrity sha512-Jto9Fl3YQ9OLsTDWtLFPtaIMSL2kwGyGoVCmPC8Gxvym9TCZm4Sie+cVeblPO66YZsYH8MhBKDMGZ2NDxuk/XQ== 228 | 229 | "@rollup/rollup-darwin-arm64@4.9.1": 230 | version "4.9.1" 231 | resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.9.1.tgz#9aaefe33a5481d66322d1c62f368171c03eabe2b" 232 | integrity sha512-LtYcLNM+bhsaKAIGwVkh5IOWhaZhjTfNOkGzGqdHvhiCUVuJDalvDxEdSnhFzAn+g23wgsycmZk1vbnaibZwwA== 233 | 234 | "@rollup/rollup-darwin-x64@4.9.1": 235 | version "4.9.1" 236 | resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.9.1.tgz#707dcaadcdc6bd3fd6c69f55d9456cd4446306a3" 237 | integrity sha512-KyP/byeXu9V+etKO6Lw3E4tW4QdcnzDG/ake031mg42lob5tN+5qfr+lkcT/SGZaH2PdW4Z1NX9GHEkZ8xV7og== 238 | 239 | "@rollup/rollup-linux-arm-gnueabihf@4.9.1": 240 | version "4.9.1" 241 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.9.1.tgz#7a4dbbd1dd98731d88a55aefcef0ec4c578fa9c7" 242 | integrity sha512-Yqz/Doumf3QTKplwGNrCHe/B2p9xqDghBZSlAY0/hU6ikuDVQuOUIpDP/YcmoT+447tsZTmirmjgG3znvSCR0Q== 243 | 244 | "@rollup/rollup-linux-arm64-gnu@4.9.1": 245 | version "4.9.1" 246 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.9.1.tgz#967ba8e6f68a5f21bd00cd97773dcdd6107e94ed" 247 | integrity sha512-u3XkZVvxcvlAOlQJ3UsD1rFvLWqu4Ef/Ggl40WAVCuogf4S1nJPHh5RTgqYFpCOvuGJ7H5yGHabjFKEZGExk5Q== 248 | 249 | "@rollup/rollup-linux-arm64-musl@4.9.1": 250 | version "4.9.1" 251 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.9.1.tgz#d3a4e1c9f21eef3b9f4e4989f334a519a1341462" 252 | integrity sha512-0XSYN/rfWShW+i+qjZ0phc6vZ7UWI8XWNz4E/l+6edFt+FxoEghrJHjX1EY/kcUGCnZzYYRCl31SNdfOi450Aw== 253 | 254 | "@rollup/rollup-linux-riscv64-gnu@4.9.1": 255 | version "4.9.1" 256 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.9.1.tgz#415c0533bb752164effd05f5613858e8f6779bc9" 257 | integrity sha512-LmYIO65oZVfFt9t6cpYkbC4d5lKHLYv5B4CSHRpnANq0VZUQXGcCPXHzbCXCz4RQnx7jvlYB1ISVNCE/omz5cw== 258 | 259 | "@rollup/rollup-linux-x64-gnu@4.9.1": 260 | version "4.9.1" 261 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.9.1.tgz#0983385dd753a2e0ecaddea7a81dd37fea5114f5" 262 | integrity sha512-kr8rEPQ6ns/Lmr/hiw8sEVj9aa07gh1/tQF2Y5HrNCCEPiCBGnBUt9tVusrcBBiJfIt1yNaXN6r1CCmpbFEDpg== 263 | 264 | "@rollup/rollup-linux-x64-musl@4.9.1": 265 | version "4.9.1" 266 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.9.1.tgz#eb7494ebc5199cbd2e5c38c2b8acbe2603f35e03" 267 | integrity sha512-t4QSR7gN+OEZLG0MiCgPqMWZGwmeHhsM4AkegJ0Kiy6TnJ9vZ8dEIwHw1LcZKhbHxTY32hp9eVCMdR3/I8MGRw== 268 | 269 | "@rollup/rollup-win32-arm64-msvc@4.9.1": 270 | version "4.9.1" 271 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.9.1.tgz#5bebc66e3a7f82d4b9aa9ff448e7fc13a69656e9" 272 | integrity sha512-7XI4ZCBN34cb+BH557FJPmh0kmNz2c25SCQeT9OiFWEgf8+dL6ZwJ8f9RnUIit+j01u07Yvrsuu1rZGxJCc51g== 273 | 274 | "@rollup/rollup-win32-ia32-msvc@4.9.1": 275 | version "4.9.1" 276 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.9.1.tgz#34156ebf8b4de3b20e6497260fe519a30263f8cf" 277 | integrity sha512-yE5c2j1lSWOH5jp+Q0qNL3Mdhr8WuqCNVjc6BxbVfS5cAS6zRmdiw7ktb8GNpDCEUJphILY6KACoFoRtKoqNQg== 278 | 279 | "@rollup/rollup-win32-x64-msvc@4.9.1": 280 | version "4.9.1" 281 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.9.1.tgz#d146db7a5949e10837b323ce933ed882ac878262" 282 | integrity sha512-PyJsSsafjmIhVgaI1Zdj7m8BB8mMckFah/xbpplObyHfiXzKcI5UOUXRyOdHW7nz4DpMCuzLnF7v5IWHenCwYA== 283 | 284 | "@rushstack/eslint-patch@^1.3.3": 285 | version "1.6.1" 286 | resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.6.1.tgz#9ab8f811930d7af3e3d549183a50884f9eb83f36" 287 | integrity sha512-UY+FGM/2jjMkzQLn8pxcHGMaVLh9aEitG3zY2CiY7XHdLiz3bZOwa6oDxNqEMv7zZkV+cj5DOdz0cQ1BP5Hjgw== 288 | 289 | "@ungap/structured-clone@^1.2.0": 290 | version "1.2.0" 291 | resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" 292 | integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== 293 | 294 | "@vitejs/plugin-vue@^4.5.2": 295 | version "4.5.2" 296 | resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-4.5.2.tgz#1212d81bc83680e14448fefe55abd9fe1ed49ed1" 297 | integrity sha512-UGR3DlzLi/SaVBPX0cnSyE37vqxU3O6chn8l0HJNzQzDia6/Au2A4xKv+iIJW8w2daf80G7TYHhi1pAUjdZ0bQ== 298 | 299 | "@vue/compiler-core@3.3.13": 300 | version "3.3.13" 301 | resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.3.13.tgz#b3d5f8f84caee5de3f31d95cb568d899fd19c599" 302 | integrity sha512-bwi9HShGu7uaZLOErZgsH2+ojsEdsjerbf2cMXPwmvcgZfVPZ2BVZzCVnwZBxTAYd6Mzbmf6izcUNDkWnBBQ6A== 303 | dependencies: 304 | "@babel/parser" "^7.23.5" 305 | "@vue/shared" "3.3.13" 306 | estree-walker "^2.0.2" 307 | source-map-js "^1.0.2" 308 | 309 | "@vue/compiler-dom@3.3.13": 310 | version "3.3.13" 311 | resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.3.13.tgz#d029e222e545e7ab00be35aafd3abed167f962bf" 312 | integrity sha512-EYRDpbLadGtNL0Gph+HoKiYqXLqZ0xSSpR5Dvnu/Ep7ggaCbjRDIus1MMxTS2Qm0koXED4xSlvTZaTnI8cYAsw== 313 | dependencies: 314 | "@vue/compiler-core" "3.3.13" 315 | "@vue/shared" "3.3.13" 316 | 317 | "@vue/compiler-sfc@3.3.13": 318 | version "3.3.13" 319 | resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.3.13.tgz#7b397acefd5c0c3808701d2855be88c4be60155c" 320 | integrity sha512-DQVmHEy/EKIgggvnGRLx21hSqnr1smUS9Aq8tfxiiot8UR0/pXKHN9k78/qQ7etyQTFj5em5nruODON7dBeumw== 321 | dependencies: 322 | "@babel/parser" "^7.23.5" 323 | "@vue/compiler-core" "3.3.13" 324 | "@vue/compiler-dom" "3.3.13" 325 | "@vue/compiler-ssr" "3.3.13" 326 | "@vue/reactivity-transform" "3.3.13" 327 | "@vue/shared" "3.3.13" 328 | estree-walker "^2.0.2" 329 | magic-string "^0.30.5" 330 | postcss "^8.4.32" 331 | source-map-js "^1.0.2" 332 | 333 | "@vue/compiler-ssr@3.3.13": 334 | version "3.3.13" 335 | resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.3.13.tgz#ad8748abff8d738ac9c6a3c47be42020f0fbaa63" 336 | integrity sha512-d/P3bCeUGmkJNS1QUZSAvoCIW4fkOKK3l2deE7zrp0ypJEy+En2AcypIkqvcFQOcw3F0zt2VfMvNsA9JmExTaw== 337 | dependencies: 338 | "@vue/compiler-dom" "3.3.13" 339 | "@vue/shared" "3.3.13" 340 | 341 | "@vue/eslint-config-prettier@^8.0.0": 342 | version "8.0.0" 343 | resolved "https://registry.yarnpkg.com/@vue/eslint-config-prettier/-/eslint-config-prettier-8.0.0.tgz#de5cb77ed483b43683d17a788808a0fa4e7bd07e" 344 | integrity sha512-55dPqtC4PM/yBjhAr+yEw6+7KzzdkBuLmnhBrDfp4I48+wy+Giqqj9yUr5T2uD/BkBROjjmqnLZmXRdOx/VtQg== 345 | dependencies: 346 | eslint-config-prettier "^8.8.0" 347 | eslint-plugin-prettier "^5.0.0" 348 | 349 | "@vue/reactivity-transform@3.3.13": 350 | version "3.3.13" 351 | resolved "https://registry.yarnpkg.com/@vue/reactivity-transform/-/reactivity-transform-3.3.13.tgz#dc8e9be961865dc666e367e1aaaea0716afa5c90" 352 | integrity sha512-oWnydGH0bBauhXvh5KXUy61xr9gKaMbtsMHk40IK9M4gMuKPJ342tKFarY0eQ6jef8906m35q37wwA8DMZOm5Q== 353 | dependencies: 354 | "@babel/parser" "^7.23.5" 355 | "@vue/compiler-core" "3.3.13" 356 | "@vue/shared" "3.3.13" 357 | estree-walker "^2.0.2" 358 | magic-string "^0.30.5" 359 | 360 | "@vue/reactivity@3.3.13": 361 | version "3.3.13" 362 | resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.3.13.tgz#9b1dff3b523a69997b66cba2f86f83839e8285fb" 363 | integrity sha512-fjzCxceMahHhi4AxUBzQqqVhuA21RJ0COaWTbIBl1PruGW1CeY97louZzLi4smpYx+CHfFPPU/CS8NybbGvPKQ== 364 | dependencies: 365 | "@vue/shared" "3.3.13" 366 | 367 | "@vue/runtime-core@3.3.13": 368 | version "3.3.13" 369 | resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.3.13.tgz#e8414218e8c7db94acfcec6fd12044704adda9cf" 370 | integrity sha512-1TzA5TvGuh2zUwMJgdfvrBABWZ7y8kBwBhm7BXk8rvdx2SsgcGfz2ruv2GzuGZNvL1aKnK8CQMV/jFOrxNQUMA== 371 | dependencies: 372 | "@vue/reactivity" "3.3.13" 373 | "@vue/shared" "3.3.13" 374 | 375 | "@vue/runtime-dom@3.3.13": 376 | version "3.3.13" 377 | resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.3.13.tgz#36b42b479d5a394972f305ca8e95c5f648bf55ef" 378 | integrity sha512-JJkpE8R/hJKXqVTgUoODwS5wqKtOsmJPEqmp90PDVGygtJ4C0PtOkcEYXwhiVEmef6xeXcIlrT3Yo5aQ4qkHhQ== 379 | dependencies: 380 | "@vue/runtime-core" "3.3.13" 381 | "@vue/shared" "3.3.13" 382 | csstype "^3.1.3" 383 | 384 | "@vue/server-renderer@3.3.13": 385 | version "3.3.13" 386 | resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.3.13.tgz#fccdd0787798173be8929f40f23161c17b60ed36" 387 | integrity sha512-vSnN+nuf6iSqTL3Qgx/9A+BT+0Zf/VJOgF5uMZrKjYPs38GMYyAU1coDyBNHauehXDaP+zl73VhwWv0vBRBHcg== 388 | dependencies: 389 | "@vue/compiler-ssr" "3.3.13" 390 | "@vue/shared" "3.3.13" 391 | 392 | "@vue/shared@3.3.13": 393 | version "3.3.13" 394 | resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.3.13.tgz#4cb73cda958d77ffd389c8640cf7d93a10ac676f" 395 | integrity sha512-/zYUwiHD8j7gKx2argXEMCUXVST6q/21DFU0sTfNX0URJroCe3b1UF6vLJ3lQDfLNIiiRl2ONp7Nh5UVWS6QnA== 396 | 397 | acorn-jsx@^5.3.2: 398 | version "5.3.2" 399 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 400 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 401 | 402 | acorn@^8.9.0: 403 | version "8.11.2" 404 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.2.tgz#ca0d78b51895be5390a5903c5b3bdcdaf78ae40b" 405 | integrity sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w== 406 | 407 | ajv@^6.12.4: 408 | version "6.12.6" 409 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 410 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 411 | dependencies: 412 | fast-deep-equal "^3.1.1" 413 | fast-json-stable-stringify "^2.0.0" 414 | json-schema-traverse "^0.4.1" 415 | uri-js "^4.2.2" 416 | 417 | ansi-regex@^5.0.1: 418 | version "5.0.1" 419 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 420 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 421 | 422 | ansi-styles@^4.1.0: 423 | version "4.3.0" 424 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 425 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 426 | dependencies: 427 | color-convert "^2.0.1" 428 | 429 | argparse@^2.0.1: 430 | version "2.0.1" 431 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 432 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 433 | 434 | balanced-match@^1.0.0: 435 | version "1.0.2" 436 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 437 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 438 | 439 | big-integer@^1.6.44: 440 | version "1.6.52" 441 | resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.52.tgz#60a887f3047614a8e1bffe5d7173490a97dc8c85" 442 | integrity sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg== 443 | 444 | boolbase@^1.0.0: 445 | version "1.0.0" 446 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 447 | integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== 448 | 449 | bplist-parser@^0.2.0: 450 | version "0.2.0" 451 | resolved "https://registry.yarnpkg.com/bplist-parser/-/bplist-parser-0.2.0.tgz#43a9d183e5bf9d545200ceac3e712f79ebbe8d0e" 452 | integrity sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw== 453 | dependencies: 454 | big-integer "^1.6.44" 455 | 456 | brace-expansion@^1.1.7: 457 | version "1.1.11" 458 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 459 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 460 | dependencies: 461 | balanced-match "^1.0.0" 462 | concat-map "0.0.1" 463 | 464 | braces@^3.0.2: 465 | version "3.0.2" 466 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 467 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 468 | dependencies: 469 | fill-range "^7.0.1" 470 | 471 | bundle-name@^3.0.0: 472 | version "3.0.0" 473 | resolved "https://registry.yarnpkg.com/bundle-name/-/bundle-name-3.0.0.tgz#ba59bcc9ac785fb67ccdbf104a2bf60c099f0e1a" 474 | integrity sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw== 475 | dependencies: 476 | run-applescript "^5.0.0" 477 | 478 | callsites@^3.0.0: 479 | version "3.1.0" 480 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 481 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 482 | 483 | chalk@^4.0.0: 484 | version "4.1.2" 485 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 486 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 487 | dependencies: 488 | ansi-styles "^4.1.0" 489 | supports-color "^7.1.0" 490 | 491 | color-convert@^2.0.1: 492 | version "2.0.1" 493 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 494 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 495 | dependencies: 496 | color-name "~1.1.4" 497 | 498 | color-name@~1.1.4: 499 | version "1.1.4" 500 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 501 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 502 | 503 | concat-map@0.0.1: 504 | version "0.0.1" 505 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 506 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 507 | 508 | cross-spawn@^7.0.2, cross-spawn@^7.0.3: 509 | version "7.0.3" 510 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 511 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 512 | dependencies: 513 | path-key "^3.1.0" 514 | shebang-command "^2.0.0" 515 | which "^2.0.1" 516 | 517 | cssesc@^3.0.0: 518 | version "3.0.0" 519 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" 520 | integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== 521 | 522 | csstype@^3.1.3: 523 | version "3.1.3" 524 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" 525 | integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== 526 | 527 | debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: 528 | version "4.3.4" 529 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 530 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 531 | dependencies: 532 | ms "2.1.2" 533 | 534 | deep-is@^0.1.3: 535 | version "0.1.4" 536 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 537 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 538 | 539 | default-browser-id@^3.0.0: 540 | version "3.0.0" 541 | resolved "https://registry.yarnpkg.com/default-browser-id/-/default-browser-id-3.0.0.tgz#bee7bbbef1f4e75d31f98f4d3f1556a14cea790c" 542 | integrity sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA== 543 | dependencies: 544 | bplist-parser "^0.2.0" 545 | untildify "^4.0.0" 546 | 547 | default-browser@^4.0.0: 548 | version "4.0.0" 549 | resolved "https://registry.yarnpkg.com/default-browser/-/default-browser-4.0.0.tgz#53c9894f8810bf86696de117a6ce9085a3cbc7da" 550 | integrity sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA== 551 | dependencies: 552 | bundle-name "^3.0.0" 553 | default-browser-id "^3.0.0" 554 | execa "^7.1.1" 555 | titleize "^3.0.0" 556 | 557 | define-lazy-prop@^3.0.0: 558 | version "3.0.0" 559 | resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz#dbb19adfb746d7fc6d734a06b72f4a00d021255f" 560 | integrity sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg== 561 | 562 | doctrine@^3.0.0: 563 | version "3.0.0" 564 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 565 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 566 | dependencies: 567 | esutils "^2.0.2" 568 | 569 | esbuild@^0.19.3: 570 | version "0.19.10" 571 | resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.19.10.tgz#55e83e4a6b702e3498b9f872d84bfb4ebcb6d16e" 572 | integrity sha512-S1Y27QGt/snkNYrRcswgRFqZjaTG5a5xM3EQo97uNBnH505pdzSNe/HLBq1v0RO7iK/ngdbhJB6mDAp0OK+iUA== 573 | optionalDependencies: 574 | "@esbuild/aix-ppc64" "0.19.10" 575 | "@esbuild/android-arm" "0.19.10" 576 | "@esbuild/android-arm64" "0.19.10" 577 | "@esbuild/android-x64" "0.19.10" 578 | "@esbuild/darwin-arm64" "0.19.10" 579 | "@esbuild/darwin-x64" "0.19.10" 580 | "@esbuild/freebsd-arm64" "0.19.10" 581 | "@esbuild/freebsd-x64" "0.19.10" 582 | "@esbuild/linux-arm" "0.19.10" 583 | "@esbuild/linux-arm64" "0.19.10" 584 | "@esbuild/linux-ia32" "0.19.10" 585 | "@esbuild/linux-loong64" "0.19.10" 586 | "@esbuild/linux-mips64el" "0.19.10" 587 | "@esbuild/linux-ppc64" "0.19.10" 588 | "@esbuild/linux-riscv64" "0.19.10" 589 | "@esbuild/linux-s390x" "0.19.10" 590 | "@esbuild/linux-x64" "0.19.10" 591 | "@esbuild/netbsd-x64" "0.19.10" 592 | "@esbuild/openbsd-x64" "0.19.10" 593 | "@esbuild/sunos-x64" "0.19.10" 594 | "@esbuild/win32-arm64" "0.19.10" 595 | "@esbuild/win32-ia32" "0.19.10" 596 | "@esbuild/win32-x64" "0.19.10" 597 | 598 | escape-string-regexp@^4.0.0: 599 | version "4.0.0" 600 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 601 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 602 | 603 | eslint-config-prettier@^8.8.0: 604 | version "8.10.0" 605 | resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz#3a06a662130807e2502fc3ff8b4143d8a0658e11" 606 | integrity sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg== 607 | 608 | eslint-plugin-prettier@^5.0.0: 609 | version "5.1.1" 610 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.1.tgz#ab7d9823788b557ff7ccdd50a5849d7760cb8bef" 611 | integrity sha512-WQpV3mSmIobb77s4qiCZu3dBrZZ0rj8ckSfBtRrgNK9Wnh2s3eiaxNTWloz1LJ1WtvqZES/PAI7PLvsrGt/CEA== 612 | dependencies: 613 | prettier-linter-helpers "^1.0.0" 614 | synckit "^0.8.5" 615 | 616 | eslint-plugin-vue@^9.17.0: 617 | version "9.19.2" 618 | resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.19.2.tgz#7ab83a001a1ac8bccae013c5b9cb5d2c644fb376" 619 | integrity sha512-CPDqTOG2K4Ni2o4J5wixkLVNwgctKXFu6oBpVJlpNq7f38lh9I80pRTouZSJ2MAebPJlINU/KTFSXyQfBUlymA== 620 | dependencies: 621 | "@eslint-community/eslint-utils" "^4.4.0" 622 | natural-compare "^1.4.0" 623 | nth-check "^2.1.1" 624 | postcss-selector-parser "^6.0.13" 625 | semver "^7.5.4" 626 | vue-eslint-parser "^9.3.1" 627 | xml-name-validator "^4.0.0" 628 | 629 | eslint-scope@^7.1.1, eslint-scope@^7.2.2: 630 | version "7.2.2" 631 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" 632 | integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== 633 | dependencies: 634 | esrecurse "^4.3.0" 635 | estraverse "^5.2.0" 636 | 637 | eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: 638 | version "3.4.3" 639 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" 640 | integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== 641 | 642 | eslint@^8.49.0: 643 | version "8.56.0" 644 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.56.0.tgz#4957ce8da409dc0809f99ab07a1b94832ab74b15" 645 | integrity sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ== 646 | dependencies: 647 | "@eslint-community/eslint-utils" "^4.2.0" 648 | "@eslint-community/regexpp" "^4.6.1" 649 | "@eslint/eslintrc" "^2.1.4" 650 | "@eslint/js" "8.56.0" 651 | "@humanwhocodes/config-array" "^0.11.13" 652 | "@humanwhocodes/module-importer" "^1.0.1" 653 | "@nodelib/fs.walk" "^1.2.8" 654 | "@ungap/structured-clone" "^1.2.0" 655 | ajv "^6.12.4" 656 | chalk "^4.0.0" 657 | cross-spawn "^7.0.2" 658 | debug "^4.3.2" 659 | doctrine "^3.0.0" 660 | escape-string-regexp "^4.0.0" 661 | eslint-scope "^7.2.2" 662 | eslint-visitor-keys "^3.4.3" 663 | espree "^9.6.1" 664 | esquery "^1.4.2" 665 | esutils "^2.0.2" 666 | fast-deep-equal "^3.1.3" 667 | file-entry-cache "^6.0.1" 668 | find-up "^5.0.0" 669 | glob-parent "^6.0.2" 670 | globals "^13.19.0" 671 | graphemer "^1.4.0" 672 | ignore "^5.2.0" 673 | imurmurhash "^0.1.4" 674 | is-glob "^4.0.0" 675 | is-path-inside "^3.0.3" 676 | js-yaml "^4.1.0" 677 | json-stable-stringify-without-jsonify "^1.0.1" 678 | levn "^0.4.1" 679 | lodash.merge "^4.6.2" 680 | minimatch "^3.1.2" 681 | natural-compare "^1.4.0" 682 | optionator "^0.9.3" 683 | strip-ansi "^6.0.1" 684 | text-table "^0.2.0" 685 | 686 | espree@^9.3.1, espree@^9.6.0, espree@^9.6.1: 687 | version "9.6.1" 688 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" 689 | integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== 690 | dependencies: 691 | acorn "^8.9.0" 692 | acorn-jsx "^5.3.2" 693 | eslint-visitor-keys "^3.4.1" 694 | 695 | esquery@^1.4.0, esquery@^1.4.2: 696 | version "1.5.0" 697 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" 698 | integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== 699 | dependencies: 700 | estraverse "^5.1.0" 701 | 702 | esrecurse@^4.3.0: 703 | version "4.3.0" 704 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 705 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 706 | dependencies: 707 | estraverse "^5.2.0" 708 | 709 | estraverse@^5.1.0, estraverse@^5.2.0: 710 | version "5.3.0" 711 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 712 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 713 | 714 | estree-walker@^2.0.2: 715 | version "2.0.2" 716 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" 717 | integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== 718 | 719 | esutils@^2.0.2: 720 | version "2.0.3" 721 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 722 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 723 | 724 | execa@^5.0.0: 725 | version "5.1.1" 726 | resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" 727 | integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== 728 | dependencies: 729 | cross-spawn "^7.0.3" 730 | get-stream "^6.0.0" 731 | human-signals "^2.1.0" 732 | is-stream "^2.0.0" 733 | merge-stream "^2.0.0" 734 | npm-run-path "^4.0.1" 735 | onetime "^5.1.2" 736 | signal-exit "^3.0.3" 737 | strip-final-newline "^2.0.0" 738 | 739 | execa@^7.1.1: 740 | version "7.2.0" 741 | resolved "https://registry.yarnpkg.com/execa/-/execa-7.2.0.tgz#657e75ba984f42a70f38928cedc87d6f2d4fe4e9" 742 | integrity sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA== 743 | dependencies: 744 | cross-spawn "^7.0.3" 745 | get-stream "^6.0.1" 746 | human-signals "^4.3.0" 747 | is-stream "^3.0.0" 748 | merge-stream "^2.0.0" 749 | npm-run-path "^5.1.0" 750 | onetime "^6.0.0" 751 | signal-exit "^3.0.7" 752 | strip-final-newline "^3.0.0" 753 | 754 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 755 | version "3.1.3" 756 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 757 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 758 | 759 | fast-diff@^1.1.2: 760 | version "1.3.0" 761 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.3.0.tgz#ece407fa550a64d638536cd727e129c61616e0f0" 762 | integrity sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw== 763 | 764 | fast-glob@^3.3.0: 765 | version "3.3.2" 766 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" 767 | integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== 768 | dependencies: 769 | "@nodelib/fs.stat" "^2.0.2" 770 | "@nodelib/fs.walk" "^1.2.3" 771 | glob-parent "^5.1.2" 772 | merge2 "^1.3.0" 773 | micromatch "^4.0.4" 774 | 775 | fast-json-stable-stringify@^2.0.0: 776 | version "2.1.0" 777 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 778 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 779 | 780 | fast-levenshtein@^2.0.6: 781 | version "2.0.6" 782 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 783 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 784 | 785 | fastq@^1.6.0: 786 | version "1.16.0" 787 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.16.0.tgz#83b9a9375692db77a822df081edb6a9cf6839320" 788 | integrity sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA== 789 | dependencies: 790 | reusify "^1.0.4" 791 | 792 | file-entry-cache@^6.0.1: 793 | version "6.0.1" 794 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 795 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 796 | dependencies: 797 | flat-cache "^3.0.4" 798 | 799 | fill-range@^7.0.1: 800 | version "7.0.1" 801 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 802 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 803 | dependencies: 804 | to-regex-range "^5.0.1" 805 | 806 | find-up@^5.0.0: 807 | version "5.0.0" 808 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 809 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 810 | dependencies: 811 | locate-path "^6.0.0" 812 | path-exists "^4.0.0" 813 | 814 | flat-cache@^3.0.4: 815 | version "3.2.0" 816 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz#2c0c2d5040c99b1632771a9d105725c0115363ee" 817 | integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw== 818 | dependencies: 819 | flatted "^3.2.9" 820 | keyv "^4.5.3" 821 | rimraf "^3.0.2" 822 | 823 | flatted@^3.2.9: 824 | version "3.2.9" 825 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.9.tgz#7eb4c67ca1ba34232ca9d2d93e9886e611ad7daf" 826 | integrity sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ== 827 | 828 | fs.realpath@^1.0.0: 829 | version "1.0.0" 830 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 831 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 832 | 833 | fsevents@~2.3.2, fsevents@~2.3.3: 834 | version "2.3.3" 835 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" 836 | integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== 837 | 838 | get-stream@^6.0.0, get-stream@^6.0.1: 839 | version "6.0.1" 840 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" 841 | integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== 842 | 843 | glob-parent@^5.1.2: 844 | version "5.1.2" 845 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 846 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 847 | dependencies: 848 | is-glob "^4.0.1" 849 | 850 | glob-parent@^6.0.2: 851 | version "6.0.2" 852 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 853 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 854 | dependencies: 855 | is-glob "^4.0.3" 856 | 857 | glob@^7.1.3: 858 | version "7.2.3" 859 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 860 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 861 | dependencies: 862 | fs.realpath "^1.0.0" 863 | inflight "^1.0.4" 864 | inherits "2" 865 | minimatch "^3.1.1" 866 | once "^1.3.0" 867 | path-is-absolute "^1.0.0" 868 | 869 | globals@^13.19.0: 870 | version "13.24.0" 871 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz#8432a19d78ce0c1e833949c36adb345400bb1171" 872 | integrity sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ== 873 | dependencies: 874 | type-fest "^0.20.2" 875 | 876 | graphemer@^1.4.0: 877 | version "1.4.0" 878 | resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" 879 | integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== 880 | 881 | has-flag@^4.0.0: 882 | version "4.0.0" 883 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 884 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 885 | 886 | human-signals@^2.1.0: 887 | version "2.1.0" 888 | resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" 889 | integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== 890 | 891 | human-signals@^4.3.0: 892 | version "4.3.1" 893 | resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-4.3.1.tgz#ab7f811e851fca97ffbd2c1fe9a958964de321b2" 894 | integrity sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ== 895 | 896 | ignore@^5.2.0: 897 | version "5.3.0" 898 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.0.tgz#67418ae40d34d6999c95ff56016759c718c82f78" 899 | integrity sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg== 900 | 901 | import-fresh@^3.2.1: 902 | version "3.3.0" 903 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 904 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 905 | dependencies: 906 | parent-module "^1.0.0" 907 | resolve-from "^4.0.0" 908 | 909 | imurmurhash@^0.1.4: 910 | version "0.1.4" 911 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 912 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 913 | 914 | inflight@^1.0.4: 915 | version "1.0.6" 916 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 917 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 918 | dependencies: 919 | once "^1.3.0" 920 | wrappy "1" 921 | 922 | inherits@2: 923 | version "2.0.4" 924 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 925 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 926 | 927 | is-docker@^2.0.0: 928 | version "2.2.1" 929 | resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" 930 | integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== 931 | 932 | is-docker@^3.0.0: 933 | version "3.0.0" 934 | resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-3.0.0.tgz#90093aa3106277d8a77a5910dbae71747e15a200" 935 | integrity sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ== 936 | 937 | is-extglob@^2.1.1: 938 | version "2.1.1" 939 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 940 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 941 | 942 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: 943 | version "4.0.3" 944 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 945 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 946 | dependencies: 947 | is-extglob "^2.1.1" 948 | 949 | is-inside-container@^1.0.0: 950 | version "1.0.0" 951 | resolved "https://registry.yarnpkg.com/is-inside-container/-/is-inside-container-1.0.0.tgz#e81fba699662eb31dbdaf26766a61d4814717ea4" 952 | integrity sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA== 953 | dependencies: 954 | is-docker "^3.0.0" 955 | 956 | is-number@^7.0.0: 957 | version "7.0.0" 958 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 959 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 960 | 961 | is-path-inside@^3.0.3: 962 | version "3.0.3" 963 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" 964 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 965 | 966 | is-stream@^2.0.0: 967 | version "2.0.1" 968 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" 969 | integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== 970 | 971 | is-stream@^3.0.0: 972 | version "3.0.0" 973 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac" 974 | integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== 975 | 976 | is-wsl@^2.2.0: 977 | version "2.2.0" 978 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" 979 | integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== 980 | dependencies: 981 | is-docker "^2.0.0" 982 | 983 | isexe@^2.0.0: 984 | version "2.0.0" 985 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 986 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 987 | 988 | js-yaml@^4.1.0: 989 | version "4.1.0" 990 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 991 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 992 | dependencies: 993 | argparse "^2.0.1" 994 | 995 | json-buffer@3.0.1: 996 | version "3.0.1" 997 | resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" 998 | integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== 999 | 1000 | json-schema-traverse@^0.4.1: 1001 | version "0.4.1" 1002 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1003 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1004 | 1005 | json-stable-stringify-without-jsonify@^1.0.1: 1006 | version "1.0.1" 1007 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1008 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 1009 | 1010 | keyv@^4.5.3: 1011 | version "4.5.4" 1012 | resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" 1013 | integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== 1014 | dependencies: 1015 | json-buffer "3.0.1" 1016 | 1017 | levn@^0.4.1: 1018 | version "0.4.1" 1019 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 1020 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1021 | dependencies: 1022 | prelude-ls "^1.2.1" 1023 | type-check "~0.4.0" 1024 | 1025 | locate-path@^6.0.0: 1026 | version "6.0.0" 1027 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 1028 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1029 | dependencies: 1030 | p-locate "^5.0.0" 1031 | 1032 | lodash.merge@^4.6.2: 1033 | version "4.6.2" 1034 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 1035 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1036 | 1037 | lodash@^4.17.21: 1038 | version "4.17.21" 1039 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 1040 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 1041 | 1042 | lru-cache@^6.0.0: 1043 | version "6.0.0" 1044 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1045 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1046 | dependencies: 1047 | yallist "^4.0.0" 1048 | 1049 | magic-string@^0.30.5: 1050 | version "0.30.5" 1051 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.5.tgz#1994d980bd1c8835dc6e78db7cbd4ae4f24746f9" 1052 | integrity sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA== 1053 | dependencies: 1054 | "@jridgewell/sourcemap-codec" "^1.4.15" 1055 | 1056 | merge-stream@^2.0.0: 1057 | version "2.0.0" 1058 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 1059 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 1060 | 1061 | merge2@^1.3.0: 1062 | version "1.4.1" 1063 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 1064 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1065 | 1066 | micromatch@^4.0.4: 1067 | version "4.0.5" 1068 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" 1069 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 1070 | dependencies: 1071 | braces "^3.0.2" 1072 | picomatch "^2.3.1" 1073 | 1074 | mimic-fn@^2.1.0: 1075 | version "2.1.0" 1076 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 1077 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 1078 | 1079 | mimic-fn@^4.0.0: 1080 | version "4.0.0" 1081 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" 1082 | integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== 1083 | 1084 | minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: 1085 | version "3.1.2" 1086 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1087 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1088 | dependencies: 1089 | brace-expansion "^1.1.7" 1090 | 1091 | ms@2.1.2: 1092 | version "2.1.2" 1093 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1094 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1095 | 1096 | nanoid@^3.3.7: 1097 | version "3.3.7" 1098 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" 1099 | integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== 1100 | 1101 | natural-compare@^1.4.0: 1102 | version "1.4.0" 1103 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1104 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 1105 | 1106 | npm-run-path@^4.0.1: 1107 | version "4.0.1" 1108 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" 1109 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 1110 | dependencies: 1111 | path-key "^3.0.0" 1112 | 1113 | npm-run-path@^5.1.0: 1114 | version "5.2.0" 1115 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.2.0.tgz#224cdd22c755560253dd71b83a1ef2f758b2e955" 1116 | integrity sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg== 1117 | dependencies: 1118 | path-key "^4.0.0" 1119 | 1120 | nth-check@^2.1.1: 1121 | version "2.1.1" 1122 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" 1123 | integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== 1124 | dependencies: 1125 | boolbase "^1.0.0" 1126 | 1127 | once@^1.3.0: 1128 | version "1.4.0" 1129 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1130 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1131 | dependencies: 1132 | wrappy "1" 1133 | 1134 | onetime@^5.1.2: 1135 | version "5.1.2" 1136 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 1137 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 1138 | dependencies: 1139 | mimic-fn "^2.1.0" 1140 | 1141 | onetime@^6.0.0: 1142 | version "6.0.0" 1143 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4" 1144 | integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== 1145 | dependencies: 1146 | mimic-fn "^4.0.0" 1147 | 1148 | open@^9.1.0: 1149 | version "9.1.0" 1150 | resolved "https://registry.yarnpkg.com/open/-/open-9.1.0.tgz#684934359c90ad25742f5a26151970ff8c6c80b6" 1151 | integrity sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg== 1152 | dependencies: 1153 | default-browser "^4.0.0" 1154 | define-lazy-prop "^3.0.0" 1155 | is-inside-container "^1.0.0" 1156 | is-wsl "^2.2.0" 1157 | 1158 | optionator@^0.9.3: 1159 | version "0.9.3" 1160 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" 1161 | integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== 1162 | dependencies: 1163 | "@aashutoshrathi/word-wrap" "^1.2.3" 1164 | deep-is "^0.1.3" 1165 | fast-levenshtein "^2.0.6" 1166 | levn "^0.4.1" 1167 | prelude-ls "^1.2.1" 1168 | type-check "^0.4.0" 1169 | 1170 | p-limit@^3.0.2: 1171 | version "3.1.0" 1172 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 1173 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1174 | dependencies: 1175 | yocto-queue "^0.1.0" 1176 | 1177 | p-locate@^5.0.0: 1178 | version "5.0.0" 1179 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 1180 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 1181 | dependencies: 1182 | p-limit "^3.0.2" 1183 | 1184 | parent-module@^1.0.0: 1185 | version "1.0.1" 1186 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1187 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1188 | dependencies: 1189 | callsites "^3.0.0" 1190 | 1191 | path-exists@^4.0.0: 1192 | version "4.0.0" 1193 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1194 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1195 | 1196 | path-is-absolute@^1.0.0: 1197 | version "1.0.1" 1198 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1199 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 1200 | 1201 | path-key@^3.0.0, path-key@^3.1.0: 1202 | version "3.1.1" 1203 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1204 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1205 | 1206 | path-key@^4.0.0: 1207 | version "4.0.0" 1208 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18" 1209 | integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== 1210 | 1211 | picocolors@^1.0.0: 1212 | version "1.0.0" 1213 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 1214 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 1215 | 1216 | picomatch@^2.3.1: 1217 | version "2.3.1" 1218 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1219 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1220 | 1221 | postcss-selector-parser@^6.0.13: 1222 | version "6.0.13" 1223 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b" 1224 | integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ== 1225 | dependencies: 1226 | cssesc "^3.0.0" 1227 | util-deprecate "^1.0.2" 1228 | 1229 | postcss@^8.4.32: 1230 | version "8.4.32" 1231 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.32.tgz#1dac6ac51ab19adb21b8b34fd2d93a86440ef6c9" 1232 | integrity sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw== 1233 | dependencies: 1234 | nanoid "^3.3.7" 1235 | picocolors "^1.0.0" 1236 | source-map-js "^1.0.2" 1237 | 1238 | prelude-ls@^1.2.1: 1239 | version "1.2.1" 1240 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1241 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1242 | 1243 | prettier-linter-helpers@^1.0.0: 1244 | version "1.0.0" 1245 | resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" 1246 | integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== 1247 | dependencies: 1248 | fast-diff "^1.1.2" 1249 | 1250 | prettier@^3.0.3: 1251 | version "3.1.1" 1252 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.1.1.tgz#6ba9f23165d690b6cbdaa88cb0807278f7019848" 1253 | integrity sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw== 1254 | 1255 | punycode@^2.1.0: 1256 | version "2.3.1" 1257 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" 1258 | integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== 1259 | 1260 | queue-microtask@^1.2.2: 1261 | version "1.2.3" 1262 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 1263 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1264 | 1265 | resolve-from@^4.0.0: 1266 | version "4.0.0" 1267 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1268 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1269 | 1270 | reusify@^1.0.4: 1271 | version "1.0.4" 1272 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 1273 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1274 | 1275 | rimraf@^3.0.2: 1276 | version "3.0.2" 1277 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1278 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1279 | dependencies: 1280 | glob "^7.1.3" 1281 | 1282 | rollup@^4.2.0: 1283 | version "4.9.1" 1284 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.9.1.tgz#351d6c03e4e6bcd7a0339df3618d2aeeb108b507" 1285 | integrity sha512-pgPO9DWzLoW/vIhlSoDByCzcpX92bKEorbgXuZrqxByte3JFk2xSW2JEeAcyLc9Ru9pqcNNW+Ob7ntsk2oT/Xw== 1286 | optionalDependencies: 1287 | "@rollup/rollup-android-arm-eabi" "4.9.1" 1288 | "@rollup/rollup-android-arm64" "4.9.1" 1289 | "@rollup/rollup-darwin-arm64" "4.9.1" 1290 | "@rollup/rollup-darwin-x64" "4.9.1" 1291 | "@rollup/rollup-linux-arm-gnueabihf" "4.9.1" 1292 | "@rollup/rollup-linux-arm64-gnu" "4.9.1" 1293 | "@rollup/rollup-linux-arm64-musl" "4.9.1" 1294 | "@rollup/rollup-linux-riscv64-gnu" "4.9.1" 1295 | "@rollup/rollup-linux-x64-gnu" "4.9.1" 1296 | "@rollup/rollup-linux-x64-musl" "4.9.1" 1297 | "@rollup/rollup-win32-arm64-msvc" "4.9.1" 1298 | "@rollup/rollup-win32-ia32-msvc" "4.9.1" 1299 | "@rollup/rollup-win32-x64-msvc" "4.9.1" 1300 | fsevents "~2.3.2" 1301 | 1302 | run-applescript@^5.0.0: 1303 | version "5.0.0" 1304 | resolved "https://registry.yarnpkg.com/run-applescript/-/run-applescript-5.0.0.tgz#e11e1c932e055d5c6b40d98374e0268d9b11899c" 1305 | integrity sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg== 1306 | dependencies: 1307 | execa "^5.0.0" 1308 | 1309 | run-parallel@^1.1.9: 1310 | version "1.2.0" 1311 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 1312 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 1313 | dependencies: 1314 | queue-microtask "^1.2.2" 1315 | 1316 | semver@^7.3.6, semver@^7.5.4: 1317 | version "7.5.4" 1318 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" 1319 | integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== 1320 | dependencies: 1321 | lru-cache "^6.0.0" 1322 | 1323 | shebang-command@^2.0.0: 1324 | version "2.0.0" 1325 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1326 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1327 | dependencies: 1328 | shebang-regex "^3.0.0" 1329 | 1330 | shebang-regex@^3.0.0: 1331 | version "3.0.0" 1332 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1333 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1334 | 1335 | signal-exit@^3.0.3, signal-exit@^3.0.7: 1336 | version "3.0.7" 1337 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" 1338 | integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== 1339 | 1340 | source-map-js@^1.0.2: 1341 | version "1.0.2" 1342 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" 1343 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 1344 | 1345 | strip-ansi@^6.0.1: 1346 | version "6.0.1" 1347 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 1348 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 1349 | dependencies: 1350 | ansi-regex "^5.0.1" 1351 | 1352 | strip-final-newline@^2.0.0: 1353 | version "2.0.0" 1354 | resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 1355 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 1356 | 1357 | strip-final-newline@^3.0.0: 1358 | version "3.0.0" 1359 | resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd" 1360 | integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== 1361 | 1362 | strip-json-comments@^3.1.1: 1363 | version "3.1.1" 1364 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 1365 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 1366 | 1367 | supports-color@^7.1.0: 1368 | version "7.2.0" 1369 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1370 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1371 | dependencies: 1372 | has-flag "^4.0.0" 1373 | 1374 | synckit@^0.8.5: 1375 | version "0.8.6" 1376 | resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.8.6.tgz#b69b7fbce3917c2673cbdc0d87fb324db4a5b409" 1377 | integrity sha512-laHF2savN6sMeHCjLRkheIU4wo3Zg9Ln5YOjOo7sZ5dVQW8yF5pPE5SIw1dsPhq3TRp1jisKRCdPhfs/1WMqDA== 1378 | dependencies: 1379 | "@pkgr/utils" "^2.4.2" 1380 | tslib "^2.6.2" 1381 | 1382 | text-table@^0.2.0: 1383 | version "0.2.0" 1384 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1385 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 1386 | 1387 | titleize@^3.0.0: 1388 | version "3.0.0" 1389 | resolved "https://registry.yarnpkg.com/titleize/-/titleize-3.0.0.tgz#71c12eb7fdd2558aa8a44b0be83b8a76694acd53" 1390 | integrity sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ== 1391 | 1392 | to-regex-range@^5.0.1: 1393 | version "5.0.1" 1394 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1395 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1396 | dependencies: 1397 | is-number "^7.0.0" 1398 | 1399 | tslib@^2.6.0, tslib@^2.6.2: 1400 | version "2.6.2" 1401 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" 1402 | integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== 1403 | 1404 | type-check@^0.4.0, type-check@~0.4.0: 1405 | version "0.4.0" 1406 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 1407 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 1408 | dependencies: 1409 | prelude-ls "^1.2.1" 1410 | 1411 | type-fest@^0.20.2: 1412 | version "0.20.2" 1413 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 1414 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 1415 | 1416 | untildify@^4.0.0: 1417 | version "4.0.0" 1418 | resolved "https://registry.yarnpkg.com/untildify/-/untildify-4.0.0.tgz#2bc947b953652487e4600949fb091e3ae8cd919b" 1419 | integrity sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw== 1420 | 1421 | uri-js@^4.2.2: 1422 | version "4.4.1" 1423 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 1424 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 1425 | dependencies: 1426 | punycode "^2.1.0" 1427 | 1428 | util-deprecate@^1.0.2: 1429 | version "1.0.2" 1430 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1431 | integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== 1432 | 1433 | vite@^5.0.10: 1434 | version "5.0.10" 1435 | resolved "https://registry.yarnpkg.com/vite/-/vite-5.0.10.tgz#1e13ef5c3cf5aa4eed81f5df6d107b3c3f1f6356" 1436 | integrity sha512-2P8J7WWgmc355HUMlFrwofacvr98DAjoE52BfdbwQtyLH06XKwaL/FMnmKM2crF0iX4MpmMKoDlNCB1ok7zHCw== 1437 | dependencies: 1438 | esbuild "^0.19.3" 1439 | postcss "^8.4.32" 1440 | rollup "^4.2.0" 1441 | optionalDependencies: 1442 | fsevents "~2.3.3" 1443 | 1444 | vue-eslint-parser@^9.3.1: 1445 | version "9.3.2" 1446 | resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.3.2.tgz#6f9638e55703f1c77875a19026347548d93fd499" 1447 | integrity sha512-q7tWyCVaV9f8iQyIA5Mkj/S6AoJ9KBN8IeUSf3XEmBrOtxOZnfTg5s4KClbZBCK3GtnT/+RyCLZyDHuZwTuBjg== 1448 | dependencies: 1449 | debug "^4.3.4" 1450 | eslint-scope "^7.1.1" 1451 | eslint-visitor-keys "^3.3.0" 1452 | espree "^9.3.1" 1453 | esquery "^1.4.0" 1454 | lodash "^4.17.21" 1455 | semver "^7.3.6" 1456 | 1457 | vue@^3.3.11: 1458 | version "3.3.13" 1459 | resolved "https://registry.yarnpkg.com/vue/-/vue-3.3.13.tgz#f03098fa1b4e7cc88c133bef92260b55e3767002" 1460 | integrity sha512-LDnUpQvDgsfc0u/YgtAgTMXJlJQqjkxW1PVcOnJA5cshPleULDjHi7U45pl2VJYazSSvLH8UKcid/kzH8I0a0Q== 1461 | dependencies: 1462 | "@vue/compiler-dom" "3.3.13" 1463 | "@vue/compiler-sfc" "3.3.13" 1464 | "@vue/runtime-dom" "3.3.13" 1465 | "@vue/server-renderer" "3.3.13" 1466 | "@vue/shared" "3.3.13" 1467 | 1468 | which@^2.0.1: 1469 | version "2.0.2" 1470 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1471 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1472 | dependencies: 1473 | isexe "^2.0.0" 1474 | 1475 | wrappy@1: 1476 | version "1.0.2" 1477 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1478 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 1479 | 1480 | xml-name-validator@^4.0.0: 1481 | version "4.0.0" 1482 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835" 1483 | integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== 1484 | 1485 | yallist@^4.0.0: 1486 | version "4.0.0" 1487 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 1488 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 1489 | 1490 | yocto-queue@^0.1.0: 1491 | version "0.1.0" 1492 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 1493 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 1494 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@ashwamegh/vue-link-preview", 3 | "version": "3.3.0", 4 | "type": "module", 5 | "main": "dist/vuelinkpreview.umd.js", 6 | "module": "dist/vuelinkpreview.esm.js", 7 | "unpkg": "dist/vuelinkpreview.min.js", 8 | "files": [ 9 | "dist/*" 10 | ], 11 | 12 | "exports": { 13 | ".": { 14 | "import": "./dist/vuelinkpreview.esm.js", 15 | "require": "./dist/vuelinkpreview.umd.js" 16 | } 17 | }, 18 | "types": "./dist/types/index.d.ts", 19 | "scripts": { 20 | "build": "vite build && vue-tsc --emitDeclarationOnly && mv dist/src dist/types", 21 | "preserve": "vite build", 22 | "serve": "vite preview --port 5050", 23 | "typecheck": "vue-tsc --noEmit", 24 | "preview": "vite preview", 25 | "test": "exit 0" 26 | }, 27 | "devDependencies": { 28 | "@types/node": "^20.10.5", 29 | "vue": "^3.3.11", 30 | "@vitejs/plugin-vue": "^4.5.2", 31 | "typescript": "^5.2.2", 32 | "vite": "^5.0.8", 33 | "vite-plugin-css-injected-by-js": "^3.3.1", 34 | "vue-tsc": "^1.8.26" 35 | }, 36 | "author": "Shashank Shekhar", 37 | "license": "MIT", 38 | "bugs": { 39 | "url": "https://github.com/ashwamegh/vue-link-preview/issues" 40 | }, 41 | "homepage": "https://github.com/ashwamegh/vue-link-preview#readme", 42 | "repository": { 43 | "type": "git", 44 | "url": "git://github.com/ashwamegh/vue-link-preview.git" 45 | }, 46 | "readme": "https://github.com/ashwamegh/vue-link-preview/blob/master/README.md", 47 | "funding": [ 48 | { 49 | "type": "buymeacoffee", 50 | "url": "https://www.buymeacoffee.com/ashwameghwork" 51 | }, 52 | { 53 | "type": "patreon", 54 | "url": "https://patreon.com/ashwamegh" 55 | } 56 | ] 57 | } 58 | -------------------------------------------------------------------------------- /src/VueLinkPreview.vue: -------------------------------------------------------------------------------- 1 | 93 | 94 | 155 | 156 | 254 | -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "baseUrl": "./", 4 | "target": "esnext", 5 | "useDefineForClassFields": true, 6 | "module": "esnext", 7 | "moduleResolution": "node", 8 | "isolatedModules": true, 9 | "strict": true, 10 | "jsx": "preserve", 11 | "sourceMap": true, 12 | "resolveJsonModule": true, 13 | "esModuleInterop": true, 14 | "paths": { 15 | "@/*": ["src/*"] 16 | }, 17 | "lib": ["esnext", "dom", "dom.iterable", "scripthost"], 18 | "skipLibCheck": true, 19 | "outDir": "dist", 20 | "declaration": true 21 | }, 22 | "include": ["vite.config.*", "env.d.ts", "src/**/*", "src/**/*.vue"] 23 | } 24 | -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "module": "ESNext", 5 | "moduleResolution": "Node", 6 | "allowSyntheticDefaultImports": true 7 | }, 8 | "include": ["vite.config.ts"] 9 | } 10 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from "vite"; 2 | import vue from "@vitejs/plugin-vue"; 3 | import path from "path"; 4 | 5 | import cssInjectedByJsPlugin from "vite-plugin-css-injected-by-js"; 6 | 7 | // https://vitejs.dev/config/ 8 | const fileFormats: Record = { 9 | es: 'esm', 10 | iife: 'min', 11 | umd: 'umd', 12 | cjs: 'cjs' 13 | } 14 | export default defineConfig({ 15 | plugins: [vue(), cssInjectedByJsPlugin()], 16 | resolve: { 17 | alias: { 18 | "@/": new URL("./src/", import.meta.url).pathname 19 | } 20 | }, 21 | 22 | build: { 23 | cssCodeSplit: true, 24 | target: "esnext", 25 | lib: { 26 | entry: path.resolve(__dirname, "src/VueLinkPreview.vue"), 27 | name: "VueLinkPreview", 28 | fileName: (format: string) => `vuelinkpreview.${fileFormats[format]}.js`, 29 | formats: ["es", "umd", "iife", "cjs"] 30 | }, 31 | 32 | rollupOptions: { 33 | external: ["vue"], 34 | output: { 35 | globals: { 36 | vue: "Vue" 37 | } 38 | } 39 | } 40 | } 41 | }); 42 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/parser@^7.23.5": 6 | version "7.23.6" 7 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.6.tgz#ba1c9e512bda72a47e285ae42aff9d2a635a9e3b" 8 | integrity sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ== 9 | 10 | "@esbuild/aix-ppc64@0.19.10": 11 | version "0.19.10" 12 | resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.19.10.tgz#fb3922a0183d27446de00cf60d4f7baaadf98d84" 13 | integrity sha512-Q+mk96KJ+FZ30h9fsJl+67IjNJm3x2eX+GBWGmocAKgzp27cowCOOqSdscX80s0SpdFXZnIv/+1xD1EctFx96Q== 14 | 15 | "@esbuild/android-arm64@0.19.10": 16 | version "0.19.10" 17 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.19.10.tgz#ef31015416dd79398082409b77aaaa2ade4d531a" 18 | integrity sha512-1X4CClKhDgC3by7k8aOWZeBXQX8dHT5QAMCAQDArCLaYfkppoARvh0fit3X2Qs+MXDngKcHv6XXyQCpY0hkK1Q== 19 | 20 | "@esbuild/android-arm@0.19.10": 21 | version "0.19.10" 22 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.19.10.tgz#1c23c7e75473aae9fb323be5d9db225142f47f52" 23 | integrity sha512-7W0bK7qfkw1fc2viBfrtAEkDKHatYfHzr/jKAHNr9BvkYDXPcC6bodtm8AyLJNNuqClLNaeTLuwURt4PRT9d7w== 24 | 25 | "@esbuild/android-x64@0.19.10": 26 | version "0.19.10" 27 | resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.19.10.tgz#df6a4e6d6eb8da5595cfce16d4e3f6bc24464707" 28 | integrity sha512-O/nO/g+/7NlitUxETkUv/IvADKuZXyH4BHf/g/7laqKC4i/7whLpB0gvpPc2zpF0q9Q6FXS3TS75QHac9MvVWw== 29 | 30 | "@esbuild/darwin-arm64@0.19.10": 31 | version "0.19.10" 32 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.19.10.tgz#8462a55db07c1b2fad61c8244ce04469ef1043be" 33 | integrity sha512-YSRRs2zOpwypck+6GL3wGXx2gNP7DXzetmo5pHXLrY/VIMsS59yKfjPizQ4lLt5vEI80M41gjm2BxrGZ5U+VMA== 34 | 35 | "@esbuild/darwin-x64@0.19.10": 36 | version "0.19.10" 37 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.19.10.tgz#d1de20bfd41bb75b955ba86a6b1004539e8218c1" 38 | integrity sha512-alfGtT+IEICKtNE54hbvPg13xGBe4GkVxyGWtzr+yHO7HIiRJppPDhOKq3zstTcVf8msXb/t4eavW3jCDpMSmA== 39 | 40 | "@esbuild/freebsd-arm64@0.19.10": 41 | version "0.19.10" 42 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.10.tgz#16904879e34c53a2e039d1284695d2db3e664d57" 43 | integrity sha512-dMtk1wc7FSH8CCkE854GyGuNKCewlh+7heYP/sclpOG6Cectzk14qdUIY5CrKDbkA/OczXq9WesqnPl09mj5dg== 44 | 45 | "@esbuild/freebsd-x64@0.19.10": 46 | version "0.19.10" 47 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.19.10.tgz#8ad9e5ca9786ca3f1ef1411bfd10b08dcd9d4cef" 48 | integrity sha512-G5UPPspryHu1T3uX8WiOEUa6q6OlQh6gNl4CO4Iw5PS+Kg5bVggVFehzXBJY6X6RSOMS8iXDv2330VzaObm4Ag== 49 | 50 | "@esbuild/linux-arm64@0.19.10": 51 | version "0.19.10" 52 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.19.10.tgz#d82cf2c590faece82d28bbf1cfbe36f22ae25bd2" 53 | integrity sha512-QxaouHWZ+2KWEj7cGJmvTIHVALfhpGxo3WLmlYfJ+dA5fJB6lDEIg+oe/0//FuyVHuS3l79/wyBxbHr0NgtxJQ== 54 | 55 | "@esbuild/linux-arm@0.19.10": 56 | version "0.19.10" 57 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.19.10.tgz#477b8e7c7bcd34369717b04dd9ee6972c84f4029" 58 | integrity sha512-j6gUW5aAaPgD416Hk9FHxn27On28H4eVI9rJ4az7oCGTFW48+LcgNDBN+9f8rKZz7EEowo889CPKyeaD0iw9Kg== 59 | 60 | "@esbuild/linux-ia32@0.19.10": 61 | version "0.19.10" 62 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.19.10.tgz#d55ff822cf5b0252a57112f86857ff23be6cab0e" 63 | integrity sha512-4ub1YwXxYjj9h1UIZs2hYbnTZBtenPw5NfXCRgEkGb0b6OJ2gpkMvDqRDYIDRjRdWSe/TBiZltm3Y3Q8SN1xNg== 64 | 65 | "@esbuild/linux-loong64@0.19.10": 66 | version "0.19.10" 67 | resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.19.10.tgz#a9ad057d7e48d6c9f62ff50f6f208e331c4543c7" 68 | integrity sha512-lo3I9k+mbEKoxtoIbM0yC/MZ1i2wM0cIeOejlVdZ3D86LAcFXFRdeuZmh91QJvUTW51bOK5W2BznGNIl4+mDaA== 69 | 70 | "@esbuild/linux-mips64el@0.19.10": 71 | version "0.19.10" 72 | resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.19.10.tgz#b011a96924773d60ebab396fbd7a08de66668179" 73 | integrity sha512-J4gH3zhHNbdZN0Bcr1QUGVNkHTdpijgx5VMxeetSk6ntdt+vR1DqGmHxQYHRmNb77tP6GVvD+K0NyO4xjd7y4A== 74 | 75 | "@esbuild/linux-ppc64@0.19.10": 76 | version "0.19.10" 77 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.19.10.tgz#5d8b59929c029811e473f2544790ea11d588d4dd" 78 | integrity sha512-tgT/7u+QhV6ge8wFMzaklOY7KqiyitgT1AUHMApau32ZlvTB/+efeCtMk4eXS+uEymYK249JsoiklZN64xt6oQ== 79 | 80 | "@esbuild/linux-riscv64@0.19.10": 81 | version "0.19.10" 82 | resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.19.10.tgz#292b06978375b271bd8bc0a554e0822957508d22" 83 | integrity sha512-0f/spw0PfBMZBNqtKe5FLzBDGo0SKZKvMl5PHYQr3+eiSscfJ96XEknCe+JoOayybWUFQbcJTrk946i3j9uYZA== 84 | 85 | "@esbuild/linux-s390x@0.19.10": 86 | version "0.19.10" 87 | resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.19.10.tgz#d30af63530f8d4fa96930374c9dd0d62bf59e069" 88 | integrity sha512-pZFe0OeskMHzHa9U38g+z8Yx5FNCLFtUnJtQMpwhS+r4S566aK2ci3t4NCP4tjt6d5j5uo4h7tExZMjeKoehAA== 89 | 90 | "@esbuild/linux-x64@0.19.10": 91 | version "0.19.10" 92 | resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.19.10.tgz#898c72eeb74d9f2fb43acf316125b475548b75ce" 93 | integrity sha512-SpYNEqg/6pZYoc+1zLCjVOYvxfZVZj6w0KROZ3Fje/QrM3nfvT2llI+wmKSrWuX6wmZeTapbarvuNNK/qepSgA== 94 | 95 | "@esbuild/netbsd-x64@0.19.10": 96 | version "0.19.10" 97 | resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.19.10.tgz#fd473a5ae261b43eab6dad4dbd5a3155906e6c91" 98 | integrity sha512-ACbZ0vXy9zksNArWlk2c38NdKg25+L9pr/mVaj9SUq6lHZu/35nx2xnQVRGLrC1KKQqJKRIB0q8GspiHI3J80Q== 99 | 100 | "@esbuild/openbsd-x64@0.19.10": 101 | version "0.19.10" 102 | resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.19.10.tgz#96eb8992e526717b5272321eaad3e21f3a608e46" 103 | integrity sha512-PxcgvjdSjtgPMiPQrM3pwSaG4kGphP+bLSb+cihuP0LYdZv1epbAIecHVl5sD3npkfYBZ0ZnOjR878I7MdJDFg== 104 | 105 | "@esbuild/sunos-x64@0.19.10": 106 | version "0.19.10" 107 | resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.19.10.tgz#c16ee1c167f903eaaa6acf7372bee42d5a89c9bc" 108 | integrity sha512-ZkIOtrRL8SEJjr+VHjmW0znkPs+oJXhlJbNwfI37rvgeMtk3sxOQevXPXjmAPZPigVTncvFqLMd+uV0IBSEzqA== 109 | 110 | "@esbuild/win32-arm64@0.19.10": 111 | version "0.19.10" 112 | resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.19.10.tgz#7e417d1971dbc7e469b4eceb6a5d1d667b5e3dcc" 113 | integrity sha512-+Sa4oTDbpBfGpl3Hn3XiUe4f8TU2JF7aX8cOfqFYMMjXp6ma6NJDztl5FDG8Ezx0OjwGikIHw+iA54YLDNNVfw== 114 | 115 | "@esbuild/win32-ia32@0.19.10": 116 | version "0.19.10" 117 | resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.19.10.tgz#2b52dfec6cd061ecb36171c13bae554888b439e5" 118 | integrity sha512-EOGVLK1oWMBXgfttJdPHDTiivYSjX6jDNaATeNOaCOFEVcfMjtbx7WVQwPSE1eIfCp/CaSF2nSrDtzc4I9f8TQ== 119 | 120 | "@esbuild/win32-x64@0.19.10": 121 | version "0.19.10" 122 | resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.19.10.tgz#bd123a74f243d2f3a1f046447bb9b363ee25d072" 123 | integrity sha512-whqLG6Sc70AbU73fFYvuYzaE4MNMBIlR1Y/IrUeOXFrWHxBEjjbZaQ3IXIQS8wJdAzue2GwYZCjOrgrU1oUHoA== 124 | 125 | "@jridgewell/sourcemap-codec@^1.4.15": 126 | version "1.4.15" 127 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" 128 | integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== 129 | 130 | "@rollup/rollup-android-arm-eabi@4.9.1": 131 | version "4.9.1" 132 | resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.9.1.tgz#beaf518ee45a196448e294ad3f823d2d4576cf35" 133 | integrity sha512-6vMdBZqtq1dVQ4CWdhFwhKZL6E4L1dV6jUjuBvsavvNJSppzi6dLBbuV+3+IyUREaj9ZFvQefnQm28v4OCXlig== 134 | 135 | "@rollup/rollup-android-arm64@4.9.1": 136 | version "4.9.1" 137 | resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.9.1.tgz#6f76cfa759c2d0fdb92122ffe28217181a1664eb" 138 | integrity sha512-Jto9Fl3YQ9OLsTDWtLFPtaIMSL2kwGyGoVCmPC8Gxvym9TCZm4Sie+cVeblPO66YZsYH8MhBKDMGZ2NDxuk/XQ== 139 | 140 | "@rollup/rollup-darwin-arm64@4.9.1": 141 | version "4.9.1" 142 | resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.9.1.tgz#9aaefe33a5481d66322d1c62f368171c03eabe2b" 143 | integrity sha512-LtYcLNM+bhsaKAIGwVkh5IOWhaZhjTfNOkGzGqdHvhiCUVuJDalvDxEdSnhFzAn+g23wgsycmZk1vbnaibZwwA== 144 | 145 | "@rollup/rollup-darwin-x64@4.9.1": 146 | version "4.9.1" 147 | resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.9.1.tgz#707dcaadcdc6bd3fd6c69f55d9456cd4446306a3" 148 | integrity sha512-KyP/byeXu9V+etKO6Lw3E4tW4QdcnzDG/ake031mg42lob5tN+5qfr+lkcT/SGZaH2PdW4Z1NX9GHEkZ8xV7og== 149 | 150 | "@rollup/rollup-linux-arm-gnueabihf@4.9.1": 151 | version "4.9.1" 152 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.9.1.tgz#7a4dbbd1dd98731d88a55aefcef0ec4c578fa9c7" 153 | integrity sha512-Yqz/Doumf3QTKplwGNrCHe/B2p9xqDghBZSlAY0/hU6ikuDVQuOUIpDP/YcmoT+447tsZTmirmjgG3znvSCR0Q== 154 | 155 | "@rollup/rollup-linux-arm64-gnu@4.9.1": 156 | version "4.9.1" 157 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.9.1.tgz#967ba8e6f68a5f21bd00cd97773dcdd6107e94ed" 158 | integrity sha512-u3XkZVvxcvlAOlQJ3UsD1rFvLWqu4Ef/Ggl40WAVCuogf4S1nJPHh5RTgqYFpCOvuGJ7H5yGHabjFKEZGExk5Q== 159 | 160 | "@rollup/rollup-linux-arm64-musl@4.9.1": 161 | version "4.9.1" 162 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.9.1.tgz#d3a4e1c9f21eef3b9f4e4989f334a519a1341462" 163 | integrity sha512-0XSYN/rfWShW+i+qjZ0phc6vZ7UWI8XWNz4E/l+6edFt+FxoEghrJHjX1EY/kcUGCnZzYYRCl31SNdfOi450Aw== 164 | 165 | "@rollup/rollup-linux-riscv64-gnu@4.9.1": 166 | version "4.9.1" 167 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.9.1.tgz#415c0533bb752164effd05f5613858e8f6779bc9" 168 | integrity sha512-LmYIO65oZVfFt9t6cpYkbC4d5lKHLYv5B4CSHRpnANq0VZUQXGcCPXHzbCXCz4RQnx7jvlYB1ISVNCE/omz5cw== 169 | 170 | "@rollup/rollup-linux-x64-gnu@4.9.1": 171 | version "4.9.1" 172 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.9.1.tgz#0983385dd753a2e0ecaddea7a81dd37fea5114f5" 173 | integrity sha512-kr8rEPQ6ns/Lmr/hiw8sEVj9aa07gh1/tQF2Y5HrNCCEPiCBGnBUt9tVusrcBBiJfIt1yNaXN6r1CCmpbFEDpg== 174 | 175 | "@rollup/rollup-linux-x64-musl@4.9.1": 176 | version "4.9.1" 177 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.9.1.tgz#eb7494ebc5199cbd2e5c38c2b8acbe2603f35e03" 178 | integrity sha512-t4QSR7gN+OEZLG0MiCgPqMWZGwmeHhsM4AkegJ0Kiy6TnJ9vZ8dEIwHw1LcZKhbHxTY32hp9eVCMdR3/I8MGRw== 179 | 180 | "@rollup/rollup-win32-arm64-msvc@4.9.1": 181 | version "4.9.1" 182 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.9.1.tgz#5bebc66e3a7f82d4b9aa9ff448e7fc13a69656e9" 183 | integrity sha512-7XI4ZCBN34cb+BH557FJPmh0kmNz2c25SCQeT9OiFWEgf8+dL6ZwJ8f9RnUIit+j01u07Yvrsuu1rZGxJCc51g== 184 | 185 | "@rollup/rollup-win32-ia32-msvc@4.9.1": 186 | version "4.9.1" 187 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.9.1.tgz#34156ebf8b4de3b20e6497260fe519a30263f8cf" 188 | integrity sha512-yE5c2j1lSWOH5jp+Q0qNL3Mdhr8WuqCNVjc6BxbVfS5cAS6zRmdiw7ktb8GNpDCEUJphILY6KACoFoRtKoqNQg== 189 | 190 | "@rollup/rollup-win32-x64-msvc@4.9.1": 191 | version "4.9.1" 192 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.9.1.tgz#d146db7a5949e10837b323ce933ed882ac878262" 193 | integrity sha512-PyJsSsafjmIhVgaI1Zdj7m8BB8mMckFah/xbpplObyHfiXzKcI5UOUXRyOdHW7nz4DpMCuzLnF7v5IWHenCwYA== 194 | 195 | "@types/node@^20.10.5": 196 | version "20.10.5" 197 | resolved "https://registry.yarnpkg.com/@types/node/-/node-20.10.5.tgz#47ad460b514096b7ed63a1dae26fad0914ed3ab2" 198 | integrity sha512-nNPsNE65wjMxEKI93yOP+NPGGBJz/PoN3kZsVLee0XMiJolxSekEVD8wRwBUBqkwc7UWop0edW50yrCQW4CyRw== 199 | dependencies: 200 | undici-types "~5.26.4" 201 | 202 | "@vitejs/plugin-vue@^4.5.2": 203 | version "4.5.2" 204 | resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-4.5.2.tgz#1212d81bc83680e14448fefe55abd9fe1ed49ed1" 205 | integrity sha512-UGR3DlzLi/SaVBPX0cnSyE37vqxU3O6chn8l0HJNzQzDia6/Au2A4xKv+iIJW8w2daf80G7TYHhi1pAUjdZ0bQ== 206 | 207 | "@volar/language-core@1.11.1", "@volar/language-core@~1.11.1": 208 | version "1.11.1" 209 | resolved "https://registry.yarnpkg.com/@volar/language-core/-/language-core-1.11.1.tgz#ecdf12ea8dc35fb8549e517991abcbf449a5ad4f" 210 | integrity sha512-dOcNn3i9GgZAcJt43wuaEykSluAuOkQgzni1cuxLxTV0nJKanQztp7FxyswdRILaKH+P2XZMPRp2S4MV/pElCw== 211 | dependencies: 212 | "@volar/source-map" "1.11.1" 213 | 214 | "@volar/source-map@1.11.1", "@volar/source-map@~1.11.1": 215 | version "1.11.1" 216 | resolved "https://registry.yarnpkg.com/@volar/source-map/-/source-map-1.11.1.tgz#535b0328d9e2b7a91dff846cab4058e191f4452f" 217 | integrity sha512-hJnOnwZ4+WT5iupLRnuzbULZ42L7BWWPMmruzwtLhJfpDVoZLjNBxHDi2sY2bgZXCKlpU5XcsMFoYrsQmPhfZg== 218 | dependencies: 219 | muggle-string "^0.3.1" 220 | 221 | "@volar/typescript@~1.11.1": 222 | version "1.11.1" 223 | resolved "https://registry.yarnpkg.com/@volar/typescript/-/typescript-1.11.1.tgz#ba86c6f326d88e249c7f5cfe4b765be3946fd627" 224 | integrity sha512-iU+t2mas/4lYierSnoFOeRFQUhAEMgsFuQxoxvwn5EdQopw43j+J27a4lt9LMInx1gLJBC6qL14WYGlgymaSMQ== 225 | dependencies: 226 | "@volar/language-core" "1.11.1" 227 | path-browserify "^1.0.1" 228 | 229 | "@vue/compiler-core@3.3.13": 230 | version "3.3.13" 231 | resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.3.13.tgz#b3d5f8f84caee5de3f31d95cb568d899fd19c599" 232 | integrity sha512-bwi9HShGu7uaZLOErZgsH2+ojsEdsjerbf2cMXPwmvcgZfVPZ2BVZzCVnwZBxTAYd6Mzbmf6izcUNDkWnBBQ6A== 233 | dependencies: 234 | "@babel/parser" "^7.23.5" 235 | "@vue/shared" "3.3.13" 236 | estree-walker "^2.0.2" 237 | source-map-js "^1.0.2" 238 | 239 | "@vue/compiler-dom@3.3.13", "@vue/compiler-dom@^3.3.0": 240 | version "3.3.13" 241 | resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.3.13.tgz#d029e222e545e7ab00be35aafd3abed167f962bf" 242 | integrity sha512-EYRDpbLadGtNL0Gph+HoKiYqXLqZ0xSSpR5Dvnu/Ep7ggaCbjRDIus1MMxTS2Qm0koXED4xSlvTZaTnI8cYAsw== 243 | dependencies: 244 | "@vue/compiler-core" "3.3.13" 245 | "@vue/shared" "3.3.13" 246 | 247 | "@vue/compiler-sfc@3.3.13": 248 | version "3.3.13" 249 | resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.3.13.tgz#7b397acefd5c0c3808701d2855be88c4be60155c" 250 | integrity sha512-DQVmHEy/EKIgggvnGRLx21hSqnr1smUS9Aq8tfxiiot8UR0/pXKHN9k78/qQ7etyQTFj5em5nruODON7dBeumw== 251 | dependencies: 252 | "@babel/parser" "^7.23.5" 253 | "@vue/compiler-core" "3.3.13" 254 | "@vue/compiler-dom" "3.3.13" 255 | "@vue/compiler-ssr" "3.3.13" 256 | "@vue/reactivity-transform" "3.3.13" 257 | "@vue/shared" "3.3.13" 258 | estree-walker "^2.0.2" 259 | magic-string "^0.30.5" 260 | postcss "^8.4.32" 261 | source-map-js "^1.0.2" 262 | 263 | "@vue/compiler-ssr@3.3.13": 264 | version "3.3.13" 265 | resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.3.13.tgz#ad8748abff8d738ac9c6a3c47be42020f0fbaa63" 266 | integrity sha512-d/P3bCeUGmkJNS1QUZSAvoCIW4fkOKK3l2deE7zrp0ypJEy+En2AcypIkqvcFQOcw3F0zt2VfMvNsA9JmExTaw== 267 | dependencies: 268 | "@vue/compiler-dom" "3.3.13" 269 | "@vue/shared" "3.3.13" 270 | 271 | "@vue/language-core@1.8.26": 272 | version "1.8.26" 273 | resolved "https://registry.yarnpkg.com/@vue/language-core/-/language-core-1.8.26.tgz#7edb6b51a6ed57b618928500c3cbda9757a9f5f0" 274 | integrity sha512-9cmza/Y2YTiOnKZ0Mi9zsNn7Irw+aKirP+5LLWVSNaL3fjKJjW1cD3HGBckasY2RuVh4YycvdA9/Q6EBpVd/7Q== 275 | dependencies: 276 | "@volar/language-core" "~1.11.1" 277 | "@volar/source-map" "~1.11.1" 278 | "@vue/compiler-dom" "^3.3.0" 279 | "@vue/shared" "^3.3.0" 280 | computeds "^0.0.1" 281 | minimatch "^9.0.3" 282 | muggle-string "^0.3.1" 283 | path-browserify "^1.0.1" 284 | vue-template-compiler "^2.7.14" 285 | 286 | "@vue/reactivity-transform@3.3.13": 287 | version "3.3.13" 288 | resolved "https://registry.yarnpkg.com/@vue/reactivity-transform/-/reactivity-transform-3.3.13.tgz#dc8e9be961865dc666e367e1aaaea0716afa5c90" 289 | integrity sha512-oWnydGH0bBauhXvh5KXUy61xr9gKaMbtsMHk40IK9M4gMuKPJ342tKFarY0eQ6jef8906m35q37wwA8DMZOm5Q== 290 | dependencies: 291 | "@babel/parser" "^7.23.5" 292 | "@vue/compiler-core" "3.3.13" 293 | "@vue/shared" "3.3.13" 294 | estree-walker "^2.0.2" 295 | magic-string "^0.30.5" 296 | 297 | "@vue/reactivity@3.3.13": 298 | version "3.3.13" 299 | resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.3.13.tgz#9b1dff3b523a69997b66cba2f86f83839e8285fb" 300 | integrity sha512-fjzCxceMahHhi4AxUBzQqqVhuA21RJ0COaWTbIBl1PruGW1CeY97louZzLi4smpYx+CHfFPPU/CS8NybbGvPKQ== 301 | dependencies: 302 | "@vue/shared" "3.3.13" 303 | 304 | "@vue/runtime-core@3.3.13": 305 | version "3.3.13" 306 | resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.3.13.tgz#e8414218e8c7db94acfcec6fd12044704adda9cf" 307 | integrity sha512-1TzA5TvGuh2zUwMJgdfvrBABWZ7y8kBwBhm7BXk8rvdx2SsgcGfz2ruv2GzuGZNvL1aKnK8CQMV/jFOrxNQUMA== 308 | dependencies: 309 | "@vue/reactivity" "3.3.13" 310 | "@vue/shared" "3.3.13" 311 | 312 | "@vue/runtime-dom@3.3.13": 313 | version "3.3.13" 314 | resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.3.13.tgz#36b42b479d5a394972f305ca8e95c5f648bf55ef" 315 | integrity sha512-JJkpE8R/hJKXqVTgUoODwS5wqKtOsmJPEqmp90PDVGygtJ4C0PtOkcEYXwhiVEmef6xeXcIlrT3Yo5aQ4qkHhQ== 316 | dependencies: 317 | "@vue/runtime-core" "3.3.13" 318 | "@vue/shared" "3.3.13" 319 | csstype "^3.1.3" 320 | 321 | "@vue/server-renderer@3.3.13": 322 | version "3.3.13" 323 | resolved "https://registry.yarnpkg.com/@vue/server-renderer/-/server-renderer-3.3.13.tgz#fccdd0787798173be8929f40f23161c17b60ed36" 324 | integrity sha512-vSnN+nuf6iSqTL3Qgx/9A+BT+0Zf/VJOgF5uMZrKjYPs38GMYyAU1coDyBNHauehXDaP+zl73VhwWv0vBRBHcg== 325 | dependencies: 326 | "@vue/compiler-ssr" "3.3.13" 327 | "@vue/shared" "3.3.13" 328 | 329 | "@vue/shared@3.3.13", "@vue/shared@^3.3.0": 330 | version "3.3.13" 331 | resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.3.13.tgz#4cb73cda958d77ffd389c8640cf7d93a10ac676f" 332 | integrity sha512-/zYUwiHD8j7gKx2argXEMCUXVST6q/21DFU0sTfNX0URJroCe3b1UF6vLJ3lQDfLNIiiRl2ONp7Nh5UVWS6QnA== 333 | 334 | balanced-match@^1.0.0: 335 | version "1.0.2" 336 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 337 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 338 | 339 | brace-expansion@^2.0.1: 340 | version "2.0.1" 341 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" 342 | integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== 343 | dependencies: 344 | balanced-match "^1.0.0" 345 | 346 | computeds@^0.0.1: 347 | version "0.0.1" 348 | resolved "https://registry.yarnpkg.com/computeds/-/computeds-0.0.1.tgz#215b08a4ba3e08a11ff6eee5d6d8d7166a97ce2e" 349 | integrity sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q== 350 | 351 | csstype@^3.1.3: 352 | version "3.1.3" 353 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" 354 | integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== 355 | 356 | de-indent@^1.0.2: 357 | version "1.0.2" 358 | resolved "https://registry.yarnpkg.com/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d" 359 | integrity sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg== 360 | 361 | esbuild@^0.19.3: 362 | version "0.19.10" 363 | resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.19.10.tgz#55e83e4a6b702e3498b9f872d84bfb4ebcb6d16e" 364 | integrity sha512-S1Y27QGt/snkNYrRcswgRFqZjaTG5a5xM3EQo97uNBnH505pdzSNe/HLBq1v0RO7iK/ngdbhJB6mDAp0OK+iUA== 365 | optionalDependencies: 366 | "@esbuild/aix-ppc64" "0.19.10" 367 | "@esbuild/android-arm" "0.19.10" 368 | "@esbuild/android-arm64" "0.19.10" 369 | "@esbuild/android-x64" "0.19.10" 370 | "@esbuild/darwin-arm64" "0.19.10" 371 | "@esbuild/darwin-x64" "0.19.10" 372 | "@esbuild/freebsd-arm64" "0.19.10" 373 | "@esbuild/freebsd-x64" "0.19.10" 374 | "@esbuild/linux-arm" "0.19.10" 375 | "@esbuild/linux-arm64" "0.19.10" 376 | "@esbuild/linux-ia32" "0.19.10" 377 | "@esbuild/linux-loong64" "0.19.10" 378 | "@esbuild/linux-mips64el" "0.19.10" 379 | "@esbuild/linux-ppc64" "0.19.10" 380 | "@esbuild/linux-riscv64" "0.19.10" 381 | "@esbuild/linux-s390x" "0.19.10" 382 | "@esbuild/linux-x64" "0.19.10" 383 | "@esbuild/netbsd-x64" "0.19.10" 384 | "@esbuild/openbsd-x64" "0.19.10" 385 | "@esbuild/sunos-x64" "0.19.10" 386 | "@esbuild/win32-arm64" "0.19.10" 387 | "@esbuild/win32-ia32" "0.19.10" 388 | "@esbuild/win32-x64" "0.19.10" 389 | 390 | estree-walker@^2.0.2: 391 | version "2.0.2" 392 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" 393 | integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== 394 | 395 | fsevents@~2.3.2, fsevents@~2.3.3: 396 | version "2.3.3" 397 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" 398 | integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== 399 | 400 | he@^1.2.0: 401 | version "1.2.0" 402 | resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" 403 | integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== 404 | 405 | lru-cache@^6.0.0: 406 | version "6.0.0" 407 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 408 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 409 | dependencies: 410 | yallist "^4.0.0" 411 | 412 | magic-string@^0.30.5: 413 | version "0.30.5" 414 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.5.tgz#1994d980bd1c8835dc6e78db7cbd4ae4f24746f9" 415 | integrity sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA== 416 | dependencies: 417 | "@jridgewell/sourcemap-codec" "^1.4.15" 418 | 419 | minimatch@^9.0.3: 420 | version "9.0.3" 421 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825" 422 | integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== 423 | dependencies: 424 | brace-expansion "^2.0.1" 425 | 426 | muggle-string@^0.3.1: 427 | version "0.3.1" 428 | resolved "https://registry.yarnpkg.com/muggle-string/-/muggle-string-0.3.1.tgz#e524312eb1728c63dd0b2ac49e3282e6ed85963a" 429 | integrity sha512-ckmWDJjphvd/FvZawgygcUeQCxzvohjFO5RxTjj4eq8kw359gFF3E1brjfI+viLMxss5JrHTDRHZvu2/tuy0Qg== 430 | 431 | nanoid@^3.3.7: 432 | version "3.3.7" 433 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" 434 | integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== 435 | 436 | path-browserify@^1.0.1: 437 | version "1.0.1" 438 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" 439 | integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== 440 | 441 | picocolors@^1.0.0: 442 | version "1.0.0" 443 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 444 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 445 | 446 | postcss@^8.4.32: 447 | version "8.4.32" 448 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.32.tgz#1dac6ac51ab19adb21b8b34fd2d93a86440ef6c9" 449 | integrity sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw== 450 | dependencies: 451 | nanoid "^3.3.7" 452 | picocolors "^1.0.0" 453 | source-map-js "^1.0.2" 454 | 455 | rollup@^4.2.0: 456 | version "4.9.1" 457 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.9.1.tgz#351d6c03e4e6bcd7a0339df3618d2aeeb108b507" 458 | integrity sha512-pgPO9DWzLoW/vIhlSoDByCzcpX92bKEorbgXuZrqxByte3JFk2xSW2JEeAcyLc9Ru9pqcNNW+Ob7ntsk2oT/Xw== 459 | optionalDependencies: 460 | "@rollup/rollup-android-arm-eabi" "4.9.1" 461 | "@rollup/rollup-android-arm64" "4.9.1" 462 | "@rollup/rollup-darwin-arm64" "4.9.1" 463 | "@rollup/rollup-darwin-x64" "4.9.1" 464 | "@rollup/rollup-linux-arm-gnueabihf" "4.9.1" 465 | "@rollup/rollup-linux-arm64-gnu" "4.9.1" 466 | "@rollup/rollup-linux-arm64-musl" "4.9.1" 467 | "@rollup/rollup-linux-riscv64-gnu" "4.9.1" 468 | "@rollup/rollup-linux-x64-gnu" "4.9.1" 469 | "@rollup/rollup-linux-x64-musl" "4.9.1" 470 | "@rollup/rollup-win32-arm64-msvc" "4.9.1" 471 | "@rollup/rollup-win32-ia32-msvc" "4.9.1" 472 | "@rollup/rollup-win32-x64-msvc" "4.9.1" 473 | fsevents "~2.3.2" 474 | 475 | semver@^7.5.4: 476 | version "7.5.4" 477 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" 478 | integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== 479 | dependencies: 480 | lru-cache "^6.0.0" 481 | 482 | source-map-js@^1.0.2: 483 | version "1.0.2" 484 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" 485 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 486 | 487 | typescript@^5.2.2: 488 | version "5.3.3" 489 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.3.tgz#b3ce6ba258e72e6305ba66f5c9b452aaee3ffe37" 490 | integrity sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw== 491 | 492 | undici-types@~5.26.4: 493 | version "5.26.5" 494 | resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" 495 | integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== 496 | 497 | vite-plugin-css-injected-by-js@^3.3.1: 498 | version "3.3.1" 499 | resolved "https://registry.yarnpkg.com/vite-plugin-css-injected-by-js/-/vite-plugin-css-injected-by-js-3.3.1.tgz#26b41f108c5554ee728359bdec01c68c93a48547" 500 | integrity sha512-PjM/X45DR3/V1K1fTRs8HtZHEQ55kIfdrn+dzaqNBFrOYO073SeSNCxp4j7gSYhV9NffVHaEnOL4myoko0ePAg== 501 | 502 | vite@^5.0.8: 503 | version "5.0.10" 504 | resolved "https://registry.yarnpkg.com/vite/-/vite-5.0.10.tgz#1e13ef5c3cf5aa4eed81f5df6d107b3c3f1f6356" 505 | integrity sha512-2P8J7WWgmc355HUMlFrwofacvr98DAjoE52BfdbwQtyLH06XKwaL/FMnmKM2crF0iX4MpmMKoDlNCB1ok7zHCw== 506 | dependencies: 507 | esbuild "^0.19.3" 508 | postcss "^8.4.32" 509 | rollup "^4.2.0" 510 | optionalDependencies: 511 | fsevents "~2.3.3" 512 | 513 | vue-template-compiler@^2.7.14: 514 | version "2.7.15" 515 | resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.7.15.tgz#ec88ba8ceafe0f17a528b89c57e01e02da92b0de" 516 | integrity sha512-yQxjxMptBL7UAog00O8sANud99C6wJF+7kgbcwqkvA38vCGF7HWE66w0ZFnS/kX5gSoJr/PQ4/oS3Ne2pW37Og== 517 | dependencies: 518 | de-indent "^1.0.2" 519 | he "^1.2.0" 520 | 521 | vue-tsc@^1.8.26: 522 | version "1.8.26" 523 | resolved "https://registry.yarnpkg.com/vue-tsc/-/vue-tsc-1.8.26.tgz#f66abd1dab4e4593590b2b7d4ede0a696882feec" 524 | integrity sha512-jMEJ4aqU/l1hdgmeExH5h1TFoN+hbho0A2ZAhHy53/947DGm7Qj/bpB85VpECOCwV00h7JYNVnvoD2ceOorB4Q== 525 | dependencies: 526 | "@volar/typescript" "~1.11.1" 527 | "@vue/language-core" "1.8.26" 528 | semver "^7.5.4" 529 | 530 | vue@^3.3.11: 531 | version "3.3.13" 532 | resolved "https://registry.yarnpkg.com/vue/-/vue-3.3.13.tgz#f03098fa1b4e7cc88c133bef92260b55e3767002" 533 | integrity sha512-LDnUpQvDgsfc0u/YgtAgTMXJlJQqjkxW1PVcOnJA5cshPleULDjHi7U45pl2VJYazSSvLH8UKcid/kzH8I0a0Q== 534 | dependencies: 535 | "@vue/compiler-dom" "3.3.13" 536 | "@vue/compiler-sfc" "3.3.13" 537 | "@vue/runtime-dom" "3.3.13" 538 | "@vue/server-renderer" "3.3.13" 539 | "@vue/shared" "3.3.13" 540 | 541 | yallist@^4.0.0: 542 | version "4.0.0" 543 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 544 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 545 | --------------------------------------------------------------------------------