├── .firebaserc
├── .github
└── workflows
│ ├── firebase-hosting-merge.yml
│ └── firebase-hosting-pull-request.yml
├── .gitignore
├── CHANGELOG.md
├── LICENSE
├── README.md
├── demo
├── index.html
├── public
│ └── vue.svg
├── src
│ ├── App.config.js
│ ├── App.vue
│ └── main.js
└── vite.config.js
├── firebase.json
├── package-lock.json
├── package.json
├── src
├── VLibras.vue
├── index.js
└── plugin.js
├── vite.config.js
└── yarn.lock
/.firebaserc:
--------------------------------------------------------------------------------
1 | {
2 | "projects": {
3 | "default": "vue-vlibras"
4 | }
5 | }
6 |
--------------------------------------------------------------------------------
/.github/workflows/firebase-hosting-merge.yml:
--------------------------------------------------------------------------------
1 | # This file was auto-generated by the Firebase CLI
2 | # https://github.com/firebase/firebase-tools
3 |
4 | name: Deploy to Firebase Hosting on merge
5 | on:
6 | push:
7 | branches:
8 | - main
9 | jobs:
10 | build_and_deploy:
11 | runs-on: ubuntu-latest
12 | steps:
13 | - uses: actions/checkout@v4
14 | - run: npm ci && npm run demo:build
15 | - uses: FirebaseExtended/action-hosting-deploy@v0
16 | with:
17 | repoToken: ${{ secrets.GITHUB_TOKEN }}
18 | firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_VUE_VLIBRAS }}
19 | channelId: live
20 | projectId: vue-vlibras
21 |
--------------------------------------------------------------------------------
/.github/workflows/firebase-hosting-pull-request.yml:
--------------------------------------------------------------------------------
1 | # This file was auto-generated by the Firebase CLI
2 | # https://github.com/firebase/firebase-tools
3 |
4 | name: Deploy to Firebase Hosting on PR
5 | on: pull_request
6 | permissions:
7 | checks: write
8 | contents: read
9 | pull-requests: write
10 | jobs:
11 | build_and_preview:
12 | if: ${{ github.event.pull_request.head.repo.full_name == github.repository }}
13 | runs-on: ubuntu-latest
14 | steps:
15 | - uses: actions/checkout@v4
16 | - run: npm ci && npm run demo:build
17 | - uses: FirebaseExtended/action-hosting-deploy@v0
18 | with:
19 | repoToken: ${{ secrets.GITHUB_TOKEN }}
20 | firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_VUE_VLIBRAS }}
21 | projectId: vue-vlibras
22 |
--------------------------------------------------------------------------------
/.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 | dist
12 | dist-ssr
13 | *.local
14 |
15 | # Editor directories and files
16 | .vscode/*
17 | !.vscode/extensions.json
18 | .idea
19 | .DS_Store
20 | *.suo
21 | *.ntvs*
22 | *.njsproj
23 | *.sln
24 | *.sw?
25 |
--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # Changelog
2 |
3 | All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4 |
5 | ### [1.0.6](https://github.com/vue-a11y/vue-vlibras/compare/v1.0.5...v1.0.6) (2024-10-24)
6 |
7 | ### [1.0.4](https://github.com/vue-a11y/vue-vlibras/compare/v1.0.3...v1.0.4) (2023-03-17)
8 |
9 | ### [1.0.3](https://github.com/vue-a11y/vue-vlibras/compare/v1.0.2...v1.0.3) (2023-03-17)
10 |
11 | ### [1.0.2](https://github.com/vue-a11y/vue-vlibras/compare/v1.0.1...v1.0.2) (2023-03-17)
12 |
13 | ### [1.0.1](https://github.com/vue-a11y/vue-vlibras/compare/v0.1.0...v1.0.1) (2023-03-17)
14 |
15 |
16 | ### Bug Fixes
17 |
18 | * Change from master to main in package.json ([a9f18e5](https://github.com/vue-a11y/vue-vlibras/commit/a9f18e5732cde4c42c9fc02618988e61332c1e82))
19 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2020 Vue A11y
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 all
13 | 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 THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # vlibras
2 |
3 | Componente Vue.js que ajuda você a implementar o VLibras no seu site.
4 |
5 | Demo: [https://vue-vlibras.web.app](https://vue-vlibras.web.app)
6 |
7 | Esse componente segue os padrões fornecidos na [documentação do VLibras](https://www.vlibras.gov.br/doc/widget/index.html).
8 |
9 | > Os surdos enfrentam bastante dificuldade para ler, escrever e se comunicar na língua oral do seu país. Dessa forma, para tentar reduzir esses problemas, o objetivo da ferramenta computacional de código aberto, denominada VLibras Widget, consiste em traduzir conteúdos do Português Brasileiro para a Língua Brasileira de Sinais (LIBRAS), tornando websites acessíveis a pessoas surdas. -- [Visão geral VLibras](https://www.vlibras.gov.br/doc/widget/introduction/overview.html)
10 |
11 | ## Instalação
12 |
13 | ```shell
14 | npm install -S @vue-a11y/vlibras@next
15 | # or
16 | yarn add @vue-a11y/vlibras@next
17 | ```
18 |
19 | ```js
20 | import { createApp } from 'vue'
21 | import App from './App.vue'
22 | import VLibras from '@vue-a11y/vlibras'
23 |
24 | createApp(App)
25 | .use(VLibras)
26 | .mount('#app')
27 | ```
28 |
29 | ## Como usar
30 | No seu `App.vue`
31 |
32 | ```vue
33 |
34 |
39 |
40 | ```
41 |
42 | ### Props
43 |
44 | O componente `VLibras` suporta as seguintes props para personalização:
45 |
46 | - **src**: URL do script do VLibras. Padrão: `https://vlibras.gov.br/app/vlibras-plugin.js`
47 | - **urlWidget**: URL base do widget VLibras. Padrão: `https://vlibras.gov.br/app`
48 | - **position**: Define a posição do widget na tela. Valores suportados:
49 | - `'left'`, `'right'`, `'bottom'`, `'top'`, `'bottom-left'`, `'top-left'`, `'bottom-right'`, `'top-right'`
50 | - Padrão: `'bottom-right'`
51 | - **avatar**: Escolha do avatar a ser exibido no widget. Valores suportados:
52 | - `'icaro'`, `'hosana'`, `'guga'`, `'random'`
53 | - Padrão: `'random'`
54 | - **opacity**: Define a opacidade do widget. Valores entre 0 (totalmente transparente) e 1 (totalmente opaco).
55 | - Padrão: `1.0`
56 |
57 | ### Suporte para Vue 2
58 |
59 | Se você está utilizando Vue 2 em seus projetos, também pode integrar facilmente o VLibras! A versão específica para Vue 2 do componente está disponível [aqui](https://github.com/vue-a11y/vue-vlibras/tree/vue-2), mantendo a mesma funcionalidade e acessibilidade que a versão para Vue 3.
60 |
61 | Confira o repositório no GitHub para mais detalhes e instruções sobre como integrar o VLibras no seu projeto Vue 2!
62 |
63 | ## Contribuindo
64 |
65 | - De erros de digitação na documentação à codificação de novos recursos;
66 | - Verifique os issues em aberto ou abra um novo issue para iniciar uma discussão sobre sua ideia de recurso ou o bug que você encontrou;
67 | - Dê um fork no repositório, faça as alterações e envie um PR;
68 |
69 | Nos siga no Twitter [@vue_a11y](https://twitter.com/vue_a11y)
70 |
71 | **Obrigado por usar e fazer a web mais acessível!**
--------------------------------------------------------------------------------
/demo/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | vue-vlibras
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/demo/public/vue.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/demo/src/App.config.js:
--------------------------------------------------------------------------------
1 | import pkg from '../../package.json';
2 | const appVersion = pkg.version;
3 | const vueVersion = pkg.dependencies.vue.replace('^', '');
4 |
5 | export const configApp = {
6 | name: '@vue-a11y/vlibras',
7 | npm: 'https://www.npmjs.com/package/@vue-a11y/vlibras',
8 | github: 'https://github.com/vue-a11y/vue-vlibras',
9 | author: 'Vue a11y',
10 | appVersion,
11 | vueVersion,
12 | stepsInstall: [
13 | {
14 | name: 'Install',
15 | language: 'bash',
16 | content: 'npm install vue-a11y/vlibras',
17 | },
18 | {
19 | name: 'Import in app',
20 | language: 'tsx',
21 | content: `import { createApp } from 'vue'
22 | import App from './App.vue'
23 | import VLibras from '@vue-a11y/vlibras'
24 |
25 | createApp(App)
26 | .use(VLibras)
27 | .mount('#app')`,
28 | },
29 | {
30 | name: 'Usage component',
31 | language: 'tsx',
32 | content: ` `,
33 | },
34 | ],
35 | }
--------------------------------------------------------------------------------
/demo/src/App.vue:
--------------------------------------------------------------------------------
1 |
5 |
6 |
7 |
8 |
9 |
10 | Widget Position
11 | You can set the widget's position using the position
prop. For example:
12 | {{ ` ` }}
13 |
14 |
15 | Available Position Types
16 | The position options that can be used are:
17 |
18 | left
19 | right
20 | top
21 | bottom
22 | bottom-left
23 | top-left
24 | bottom-right
25 | top-right
26 |
27 |
28 | Avatar
29 | You can select the widget's avatar using the avatar
prop. Example:
30 | {{ ` ` }}
31 |
32 |
33 | Available Avatar Options
34 |
35 | icaro
36 | hosana
37 | guga
38 | random
39 |
40 |
41 | Opacity
42 | To adjust the widget's opacity, use the opacity
prop:
43 | {{ ` ` }}
44 |
45 |
46 |
47 |
48 |
49 |
50 |
81 |
--------------------------------------------------------------------------------
/demo/src/main.js:
--------------------------------------------------------------------------------
1 | import { createApp } from 'vue'
2 | import App from './App.vue'
3 | import VLibras from '../../src'
4 |
5 | createApp(App)
6 | .use(VLibras)
7 | .mount('#app')
8 |
--------------------------------------------------------------------------------
/demo/vite.config.js:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'vite'
2 | import vue from '@vitejs/plugin-vue'
3 | import AutoImport from 'unplugin-auto-import/vite'
4 |
5 | // https://vitejs.dev/config/
6 | export default defineConfig({
7 | plugins: [
8 | vue(),
9 | AutoImport({
10 | imports: ['vue']
11 | }),
12 | ]
13 | })
14 |
--------------------------------------------------------------------------------
/firebase.json:
--------------------------------------------------------------------------------
1 | {
2 | "hosting": {
3 | "public": "demo/dist",
4 | "ignore": [
5 | "firebase.json",
6 | "**/.*",
7 | "**/node_modules/**"
8 | ],
9 | "rewrites": [
10 | {
11 | "source": "**",
12 | "destination": "/index.html"
13 | }
14 | ]
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "@vue-a11y/vlibras",
3 | "version": "1.0.6",
4 | "type": "module",
5 | "files": [
6 | "dist"
7 | ],
8 | "main": "./dist/vue-vlibras.umd.cjs",
9 | "module": "./dist/vue-vlibras.js",
10 | "exports": {
11 | ".": {
12 | "import": "./dist/vue-vlibras.js",
13 | "require": "./dist/vue-vlibras.umd.cjs"
14 | }
15 | },
16 | "repository": {
17 | "type": "git",
18 | "url": "git+https://github.com/vue-a11y/vue-vlibras.git"
19 | },
20 | "bugs": {
21 | "url": "https://github.com/vue-a11y/vue-vlibras/issues"
22 | },
23 | "homepage": "https://vue-vlibras.web.app",
24 | "keywords": [
25 | "vue",
26 | "vlibras",
27 | "accessibility",
28 | "a11y"
29 | ],
30 | "scripts": {
31 | "dev": "vite",
32 | "build": "vite build",
33 | "demo:dev": "cd demo && vite",
34 | "demo:build": "cd demo && vite build",
35 | "demo:publish": "surge ./demo/dist https://vue3-vlibras.surge.sh/",
36 | "release": "standard-version",
37 | "project:publish": "git push --tags origin next && yarn build && npm publish --access public --tag next"
38 | },
39 | "dependencies": {
40 | "nucleus-vue": "^0.0.14",
41 | "standard-version": "^9.5.0",
42 | "vue": "^3.5.13"
43 | },
44 | "devDependencies": {
45 | "@vitejs/plugin-vue": "^5.2.1",
46 | "unplugin-auto-import": "^0.18.6",
47 | "vite": "^5.4.14"
48 | }
49 | }
50 |
--------------------------------------------------------------------------------
/src/VLibras.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
9 |
10 |
11 |
74 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | import VLibras from './plugin'
2 |
3 | export default VLibras
4 |
5 | export { default as VLibrasComponent } from './VLibras.vue'
6 |
--------------------------------------------------------------------------------
/src/plugin.js:
--------------------------------------------------------------------------------
1 | import VLibras from './VLibras.vue'
2 |
3 | export default function install (app) {
4 | app.component('VLibras', VLibras)
5 | }
--------------------------------------------------------------------------------
/vite.config.js:
--------------------------------------------------------------------------------
1 | // vite.config.js
2 | import { resolve } from 'path'
3 | import { defineConfig } from 'vite'
4 | import vue from '@vitejs/plugin-vue'
5 | import AutoImport from 'unplugin-auto-import/vite'
6 |
7 | export default defineConfig({
8 | plugins: [
9 | vue({ isProduction: true }),
10 | AutoImport({
11 | imports: ['vue']
12 | }),
13 | ],
14 | build: {
15 | lib: {
16 | entry: resolve(__dirname, 'src'),
17 | name: 'VLibras',
18 | fileName: 'vue-vlibras'
19 | },
20 | rollupOptions: {
21 | external: ['vue'],
22 | output: {
23 | exports: 'named',
24 | globals: {
25 | vue: 'Vue'
26 | }
27 | }
28 | }
29 | }
30 | })
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@antfu/utils@^0.7.10":
6 | version "0.7.10"
7 | resolved "https://registry.npmjs.org/@antfu/utils/-/utils-0.7.10.tgz"
8 | integrity sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==
9 |
10 | "@babel/code-frame@^7.0.0":
11 | version "7.18.6"
12 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz"
13 | integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==
14 | dependencies:
15 | "@babel/highlight" "^7.18.6"
16 |
17 | "@babel/helper-string-parser@^7.25.9":
18 | version "7.25.9"
19 | resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz"
20 | integrity sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==
21 |
22 | "@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.25.9":
23 | version "7.25.9"
24 | resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz"
25 | integrity sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==
26 |
27 | "@babel/highlight@^7.18.6":
28 | version "7.18.6"
29 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz"
30 | integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==
31 | dependencies:
32 | "@babel/helper-validator-identifier" "^7.18.6"
33 | chalk "^2.0.0"
34 | js-tokens "^4.0.0"
35 |
36 | "@babel/parser@^7.25.3":
37 | version "7.26.2"
38 | resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.26.2.tgz"
39 | integrity sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==
40 | dependencies:
41 | "@babel/types" "^7.26.0"
42 |
43 | "@babel/types@^7.26.0":
44 | version "7.26.0"
45 | resolved "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz"
46 | integrity sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==
47 | dependencies:
48 | "@babel/helper-string-parser" "^7.25.9"
49 | "@babel/helper-validator-identifier" "^7.25.9"
50 |
51 | "@esbuild/win32-x64@0.21.5":
52 | version "0.21.5"
53 | resolved "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz"
54 | integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==
55 |
56 | "@hutson/parse-repository-url@^3.0.0":
57 | version "3.0.2"
58 | resolved "https://registry.npmjs.org/@hutson/parse-repository-url/-/parse-repository-url-3.0.2.tgz"
59 | integrity sha512-H9XAx3hc0BQHY6l+IFSWHDySypcXsvsuLhgYLUGywmJ5pswRVQJUHpOsobnLYp2ZUaUlKiKDrgWWhosOwAEM8Q==
60 |
61 | "@jridgewell/sourcemap-codec@^1.5.0":
62 | version "1.5.0"
63 | resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz"
64 | integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==
65 |
66 | "@nodelib/fs.scandir@2.1.5":
67 | version "2.1.5"
68 | resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
69 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
70 | dependencies:
71 | "@nodelib/fs.stat" "2.0.5"
72 | run-parallel "^1.1.9"
73 |
74 | "@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5":
75 | version "2.0.5"
76 | resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
77 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
78 |
79 | "@nodelib/fs.walk@^1.2.3":
80 | version "1.2.8"
81 | resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
82 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
83 | dependencies:
84 | "@nodelib/fs.scandir" "2.1.5"
85 | fastq "^1.6.0"
86 |
87 | "@rollup/pluginutils@^5.1.3":
88 | version "5.1.3"
89 | resolved "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.3.tgz"
90 | integrity sha512-Pnsb6f32CD2W3uCaLZIzDmeFyQ2b8UWMFI7xtwUezpcGBDVDW6y9XgAWIlARiGAo6eNF5FK5aQTr0LFyNyqq5A==
91 | dependencies:
92 | "@types/estree" "^1.0.0"
93 | estree-walker "^2.0.2"
94 | picomatch "^4.0.2"
95 |
96 | "@rollup/rollup-win32-x64-msvc@4.24.0":
97 | version "4.24.0"
98 | resolved "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.24.0.tgz"
99 | integrity sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw==
100 |
101 | "@types/estree@^1.0.0", "@types/estree@1.0.6":
102 | version "1.0.6"
103 | resolved "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz"
104 | integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==
105 |
106 | "@types/minimist@^1.2.0":
107 | version "1.2.2"
108 | resolved "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz"
109 | integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==
110 |
111 | "@types/normalize-package-data@^2.4.0":
112 | version "2.4.1"
113 | resolved "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz"
114 | integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==
115 |
116 | "@vitejs/plugin-vue@^5.2.0":
117 | version "5.2.0"
118 | resolved "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.2.0.tgz"
119 | integrity sha512-7n7KdUEtx/7Yl7I/WVAMZ1bEb0eVvXF3ummWTeLcs/9gvo9pJhuLdouSXGjdZ/MKD1acf1I272+X0RMua4/R3g==
120 |
121 | "@vue/compiler-core@3.5.13":
122 | version "3.5.13"
123 | resolved "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.13.tgz"
124 | integrity sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==
125 | dependencies:
126 | "@babel/parser" "^7.25.3"
127 | "@vue/shared" "3.5.13"
128 | entities "^4.5.0"
129 | estree-walker "^2.0.2"
130 | source-map-js "^1.2.0"
131 |
132 | "@vue/compiler-dom@3.5.13":
133 | version "3.5.13"
134 | resolved "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.13.tgz"
135 | integrity sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==
136 | dependencies:
137 | "@vue/compiler-core" "3.5.13"
138 | "@vue/shared" "3.5.13"
139 |
140 | "@vue/compiler-sfc@3.5.13":
141 | version "3.5.13"
142 | resolved "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.13.tgz"
143 | integrity sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==
144 | dependencies:
145 | "@babel/parser" "^7.25.3"
146 | "@vue/compiler-core" "3.5.13"
147 | "@vue/compiler-dom" "3.5.13"
148 | "@vue/compiler-ssr" "3.5.13"
149 | "@vue/shared" "3.5.13"
150 | estree-walker "^2.0.2"
151 | magic-string "^0.30.11"
152 | postcss "^8.4.48"
153 | source-map-js "^1.2.0"
154 |
155 | "@vue/compiler-ssr@3.5.13":
156 | version "3.5.13"
157 | resolved "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.13.tgz"
158 | integrity sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==
159 | dependencies:
160 | "@vue/compiler-dom" "3.5.13"
161 | "@vue/shared" "3.5.13"
162 |
163 | "@vue/reactivity@3.5.13":
164 | version "3.5.13"
165 | resolved "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.13.tgz"
166 | integrity sha512-NaCwtw8o48B9I6L1zl2p41OHo/2Z4wqYGGIK1Khu5T7yxrn+ATOixn/Udn2m+6kZKB/J7cuT9DbWWhRxqixACg==
167 | dependencies:
168 | "@vue/shared" "3.5.13"
169 |
170 | "@vue/runtime-core@3.5.13":
171 | version "3.5.13"
172 | resolved "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.13.tgz"
173 | integrity sha512-Fj4YRQ3Az0WTZw1sFe+QDb0aXCerigEpw418pw1HBUKFtnQHWzwojaukAs2X/c9DQz4MQ4bsXTGlcpGxU/RCIw==
174 | dependencies:
175 | "@vue/reactivity" "3.5.13"
176 | "@vue/shared" "3.5.13"
177 |
178 | "@vue/runtime-dom@3.5.13":
179 | version "3.5.13"
180 | resolved "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.13.tgz"
181 | integrity sha512-dLaj94s93NYLqjLiyFzVs9X6dWhTdAlEAciC3Moq7gzAc13VJUdCnjjRurNM6uTLFATRHexHCTu/Xp3eW6yoog==
182 | dependencies:
183 | "@vue/reactivity" "3.5.13"
184 | "@vue/runtime-core" "3.5.13"
185 | "@vue/shared" "3.5.13"
186 | csstype "^3.1.3"
187 |
188 | "@vue/server-renderer@3.5.13":
189 | version "3.5.13"
190 | resolved "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.13.tgz"
191 | integrity sha512-wAi4IRJV/2SAW3htkTlB+dHeRmpTiVIK1OGLWV1yeStVSebSQQOwGwIq0D3ZIoBj2C2qpgz5+vX9iEBkTdk5YA==
192 | dependencies:
193 | "@vue/compiler-ssr" "3.5.13"
194 | "@vue/shared" "3.5.13"
195 |
196 | "@vue/shared@3.5.13":
197 | version "3.5.13"
198 | resolved "https://registry.npmjs.org/@vue/shared/-/shared-3.5.13.tgz"
199 | integrity sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==
200 |
201 | acorn@^8.14.0:
202 | version "8.14.0"
203 | resolved "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz"
204 | integrity sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==
205 |
206 | add-stream@^1.0.0:
207 | version "1.0.0"
208 | resolved "https://registry.npmjs.org/add-stream/-/add-stream-1.0.0.tgz"
209 | integrity sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==
210 |
211 | ansi-regex@^5.0.1:
212 | version "5.0.1"
213 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"
214 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
215 |
216 | ansi-styles@^3.2.1:
217 | version "3.2.1"
218 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
219 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
220 | dependencies:
221 | color-convert "^1.9.0"
222 |
223 | ansi-styles@^4.0.0:
224 | version "4.3.0"
225 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
226 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
227 | dependencies:
228 | color-convert "^2.0.1"
229 |
230 | array-ify@^1.0.0:
231 | version "1.0.0"
232 | resolved "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz"
233 | integrity sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==
234 |
235 | arrify@^1.0.1:
236 | version "1.0.1"
237 | resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz"
238 | integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==
239 |
240 | balanced-match@^1.0.0:
241 | version "1.0.2"
242 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"
243 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
244 |
245 | brace-expansion@^1.1.7:
246 | version "1.1.11"
247 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"
248 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
249 | dependencies:
250 | balanced-match "^1.0.0"
251 | concat-map "0.0.1"
252 |
253 | brace-expansion@^2.0.1:
254 | version "2.0.1"
255 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz"
256 | integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==
257 | dependencies:
258 | balanced-match "^1.0.0"
259 |
260 | braces@^3.0.3:
261 | version "3.0.3"
262 | resolved "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz"
263 | integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==
264 | dependencies:
265 | fill-range "^7.1.1"
266 |
267 | buffer-from@^1.0.0:
268 | version "1.1.2"
269 | resolved "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz"
270 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
271 |
272 | camelcase-keys@^6.2.2:
273 | version "6.2.2"
274 | resolved "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz"
275 | integrity sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==
276 | dependencies:
277 | camelcase "^5.3.1"
278 | map-obj "^4.0.0"
279 | quick-lru "^4.0.1"
280 |
281 | camelcase@^5.3.1:
282 | version "5.3.1"
283 | resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"
284 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
285 |
286 | chalk@^2.0.0, chalk@^2.4.2:
287 | version "2.4.2"
288 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
289 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
290 | dependencies:
291 | ansi-styles "^3.2.1"
292 | escape-string-regexp "^1.0.5"
293 | supports-color "^5.3.0"
294 |
295 | cliui@^7.0.2:
296 | version "7.0.4"
297 | resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz"
298 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==
299 | dependencies:
300 | string-width "^4.2.0"
301 | strip-ansi "^6.0.0"
302 | wrap-ansi "^7.0.0"
303 |
304 | color-convert@^1.9.0:
305 | version "1.9.3"
306 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"
307 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
308 | dependencies:
309 | color-name "1.1.3"
310 |
311 | color-convert@^2.0.1:
312 | version "2.0.1"
313 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"
314 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
315 | dependencies:
316 | color-name "~1.1.4"
317 |
318 | color-name@~1.1.4:
319 | version "1.1.4"
320 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
321 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
322 |
323 | color-name@1.1.3:
324 | version "1.1.3"
325 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
326 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
327 |
328 | compare-func@^2.0.0:
329 | version "2.0.0"
330 | resolved "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz"
331 | integrity sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==
332 | dependencies:
333 | array-ify "^1.0.0"
334 | dot-prop "^5.1.0"
335 |
336 | concat-map@0.0.1:
337 | version "0.0.1"
338 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
339 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
340 |
341 | concat-stream@^2.0.0:
342 | version "2.0.0"
343 | resolved "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz"
344 | integrity sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==
345 | dependencies:
346 | buffer-from "^1.0.0"
347 | inherits "^2.0.3"
348 | readable-stream "^3.0.2"
349 | typedarray "^0.0.6"
350 |
351 | confbox@^0.1.8:
352 | version "0.1.8"
353 | resolved "https://registry.npmjs.org/confbox/-/confbox-0.1.8.tgz"
354 | integrity sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==
355 |
356 | conventional-changelog-angular@^5.0.12:
357 | version "5.0.13"
358 | resolved "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz"
359 | integrity sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==
360 | dependencies:
361 | compare-func "^2.0.0"
362 | q "^1.5.1"
363 |
364 | conventional-changelog-atom@^2.0.8:
365 | version "2.0.8"
366 | resolved "https://registry.npmjs.org/conventional-changelog-atom/-/conventional-changelog-atom-2.0.8.tgz"
367 | integrity sha512-xo6v46icsFTK3bb7dY/8m2qvc8sZemRgdqLb/bjpBsH2UyOS8rKNTgcb5025Hri6IpANPApbXMg15QLb1LJpBw==
368 | dependencies:
369 | q "^1.5.1"
370 |
371 | conventional-changelog-codemirror@^2.0.8:
372 | version "2.0.8"
373 | resolved "https://registry.npmjs.org/conventional-changelog-codemirror/-/conventional-changelog-codemirror-2.0.8.tgz"
374 | integrity sha512-z5DAsn3uj1Vfp7po3gpt2Boc+Bdwmw2++ZHa5Ak9k0UKsYAO5mH1UBTN0qSCuJZREIhX6WU4E1p3IW2oRCNzQw==
375 | dependencies:
376 | q "^1.5.1"
377 |
378 | conventional-changelog-config-spec@2.1.0:
379 | version "2.1.0"
380 | resolved "https://registry.npmjs.org/conventional-changelog-config-spec/-/conventional-changelog-config-spec-2.1.0.tgz"
381 | integrity sha512-IpVePh16EbbB02V+UA+HQnnPIohgXvJRxHcS5+Uwk4AT5LjzCZJm5sp/yqs5C6KZJ1jMsV4paEV13BN1pvDuxQ==
382 |
383 | conventional-changelog-conventionalcommits@^4.5.0, conventional-changelog-conventionalcommits@4.6.3:
384 | version "4.6.3"
385 | resolved "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.6.3.tgz"
386 | integrity sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==
387 | dependencies:
388 | compare-func "^2.0.0"
389 | lodash "^4.17.15"
390 | q "^1.5.1"
391 |
392 | conventional-changelog-core@^4.2.1:
393 | version "4.2.4"
394 | resolved "https://registry.npmjs.org/conventional-changelog-core/-/conventional-changelog-core-4.2.4.tgz"
395 | integrity sha512-gDVS+zVJHE2v4SLc6B0sLsPiloR0ygU7HaDW14aNJE1v4SlqJPILPl/aJC7YdtRE4CybBf8gDwObBvKha8Xlyg==
396 | dependencies:
397 | add-stream "^1.0.0"
398 | conventional-changelog-writer "^5.0.0"
399 | conventional-commits-parser "^3.2.0"
400 | dateformat "^3.0.0"
401 | get-pkg-repo "^4.0.0"
402 | git-raw-commits "^2.0.8"
403 | git-remote-origin-url "^2.0.0"
404 | git-semver-tags "^4.1.1"
405 | lodash "^4.17.15"
406 | normalize-package-data "^3.0.0"
407 | q "^1.5.1"
408 | read-pkg "^3.0.0"
409 | read-pkg-up "^3.0.0"
410 | through2 "^4.0.0"
411 |
412 | conventional-changelog-ember@^2.0.9:
413 | version "2.0.9"
414 | resolved "https://registry.npmjs.org/conventional-changelog-ember/-/conventional-changelog-ember-2.0.9.tgz"
415 | integrity sha512-ulzIReoZEvZCBDhcNYfDIsLTHzYHc7awh+eI44ZtV5cx6LVxLlVtEmcO+2/kGIHGtw+qVabJYjdI5cJOQgXh1A==
416 | dependencies:
417 | q "^1.5.1"
418 |
419 | conventional-changelog-eslint@^3.0.9:
420 | version "3.0.9"
421 | resolved "https://registry.npmjs.org/conventional-changelog-eslint/-/conventional-changelog-eslint-3.0.9.tgz"
422 | integrity sha512-6NpUCMgU8qmWmyAMSZO5NrRd7rTgErjrm4VASam2u5jrZS0n38V7Y9CzTtLT2qwz5xEChDR4BduoWIr8TfwvXA==
423 | dependencies:
424 | q "^1.5.1"
425 |
426 | conventional-changelog-express@^2.0.6:
427 | version "2.0.6"
428 | resolved "https://registry.npmjs.org/conventional-changelog-express/-/conventional-changelog-express-2.0.6.tgz"
429 | integrity sha512-SDez2f3iVJw6V563O3pRtNwXtQaSmEfTCaTBPCqn0oG0mfkq0rX4hHBq5P7De2MncoRixrALj3u3oQsNK+Q0pQ==
430 | dependencies:
431 | q "^1.5.1"
432 |
433 | conventional-changelog-jquery@^3.0.11:
434 | version "3.0.11"
435 | resolved "https://registry.npmjs.org/conventional-changelog-jquery/-/conventional-changelog-jquery-3.0.11.tgz"
436 | integrity sha512-x8AWz5/Td55F7+o/9LQ6cQIPwrCjfJQ5Zmfqi8thwUEKHstEn4kTIofXub7plf1xvFA2TqhZlq7fy5OmV6BOMw==
437 | dependencies:
438 | q "^1.5.1"
439 |
440 | conventional-changelog-jshint@^2.0.9:
441 | version "2.0.9"
442 | resolved "https://registry.npmjs.org/conventional-changelog-jshint/-/conventional-changelog-jshint-2.0.9.tgz"
443 | integrity sha512-wMLdaIzq6TNnMHMy31hql02OEQ8nCQfExw1SE0hYL5KvU+JCTuPaDO+7JiogGT2gJAxiUGATdtYYfh+nT+6riA==
444 | dependencies:
445 | compare-func "^2.0.0"
446 | q "^1.5.1"
447 |
448 | conventional-changelog-preset-loader@^2.3.4:
449 | version "2.3.4"
450 | resolved "https://registry.npmjs.org/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-2.3.4.tgz"
451 | integrity sha512-GEKRWkrSAZeTq5+YjUZOYxdHq+ci4dNwHvpaBC3+ENalzFWuCWa9EZXSuZBpkr72sMdKB+1fyDV4takK1Lf58g==
452 |
453 | conventional-changelog-writer@^5.0.0:
454 | version "5.0.1"
455 | resolved "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz"
456 | integrity sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==
457 | dependencies:
458 | conventional-commits-filter "^2.0.7"
459 | dateformat "^3.0.0"
460 | handlebars "^4.7.7"
461 | json-stringify-safe "^5.0.1"
462 | lodash "^4.17.15"
463 | meow "^8.0.0"
464 | semver "^6.0.0"
465 | split "^1.0.0"
466 | through2 "^4.0.0"
467 |
468 | conventional-changelog@3.1.25:
469 | version "3.1.25"
470 | resolved "https://registry.npmjs.org/conventional-changelog/-/conventional-changelog-3.1.25.tgz"
471 | integrity sha512-ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ==
472 | dependencies:
473 | conventional-changelog-angular "^5.0.12"
474 | conventional-changelog-atom "^2.0.8"
475 | conventional-changelog-codemirror "^2.0.8"
476 | conventional-changelog-conventionalcommits "^4.5.0"
477 | conventional-changelog-core "^4.2.1"
478 | conventional-changelog-ember "^2.0.9"
479 | conventional-changelog-eslint "^3.0.9"
480 | conventional-changelog-express "^2.0.6"
481 | conventional-changelog-jquery "^3.0.11"
482 | conventional-changelog-jshint "^2.0.9"
483 | conventional-changelog-preset-loader "^2.3.4"
484 |
485 | conventional-commits-filter@^2.0.7:
486 | version "2.0.7"
487 | resolved "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz"
488 | integrity sha512-ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==
489 | dependencies:
490 | lodash.ismatch "^4.4.0"
491 | modify-values "^1.0.0"
492 |
493 | conventional-commits-parser@^3.2.0:
494 | version "3.2.4"
495 | resolved "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.4.tgz"
496 | integrity sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==
497 | dependencies:
498 | is-text-path "^1.0.1"
499 | JSONStream "^1.0.4"
500 | lodash "^4.17.15"
501 | meow "^8.0.0"
502 | split2 "^3.0.0"
503 | through2 "^4.0.0"
504 |
505 | conventional-recommended-bump@6.1.0:
506 | version "6.1.0"
507 | resolved "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-6.1.0.tgz"
508 | integrity sha512-uiApbSiNGM/kkdL9GTOLAqC4hbptObFo4wW2QRyHsKciGAfQuLU1ShZ1BIVI/+K2BE/W1AWYQMCXAsv4dyKPaw==
509 | dependencies:
510 | concat-stream "^2.0.0"
511 | conventional-changelog-preset-loader "^2.3.4"
512 | conventional-commits-filter "^2.0.7"
513 | conventional-commits-parser "^3.2.0"
514 | git-raw-commits "^2.0.8"
515 | git-semver-tags "^4.1.1"
516 | meow "^8.0.0"
517 | q "^1.5.1"
518 |
519 | core-util-is@~1.0.0:
520 | version "1.0.3"
521 | resolved "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz"
522 | integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==
523 |
524 | csstype@^3.1.3:
525 | version "3.1.3"
526 | resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz"
527 | integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==
528 |
529 | dargs@^7.0.0:
530 | version "7.0.0"
531 | resolved "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz"
532 | integrity sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==
533 |
534 | dateformat@^3.0.0:
535 | version "3.0.3"
536 | resolved "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz"
537 | integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==
538 |
539 | decamelize-keys@^1.1.0:
540 | version "1.1.1"
541 | resolved "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz"
542 | integrity sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==
543 | dependencies:
544 | decamelize "^1.1.0"
545 | map-obj "^1.0.0"
546 |
547 | decamelize@^1.1.0:
548 | version "1.2.0"
549 | resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"
550 | integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==
551 |
552 | detect-indent@^6.0.0:
553 | version "6.1.0"
554 | resolved "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz"
555 | integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==
556 |
557 | detect-newline@^3.1.0:
558 | version "3.1.0"
559 | resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz"
560 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==
561 |
562 | dot-prop@^5.1.0:
563 | version "5.3.0"
564 | resolved "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz"
565 | integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==
566 | dependencies:
567 | is-obj "^2.0.0"
568 |
569 | dotgitignore@^2.1.0:
570 | version "2.1.0"
571 | resolved "https://registry.npmjs.org/dotgitignore/-/dotgitignore-2.1.0.tgz"
572 | integrity sha512-sCm11ak2oY6DglEPpCB8TixLjWAxd3kJTs6UIcSasNYxXdFPV+YKlye92c8H4kKFqV5qYMIh7d+cYecEg0dIkA==
573 | dependencies:
574 | find-up "^3.0.0"
575 | minimatch "^3.0.4"
576 |
577 | emoji-regex@^8.0.0:
578 | version "8.0.0"
579 | resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"
580 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
581 |
582 | entities@^4.5.0:
583 | version "4.5.0"
584 | resolved "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz"
585 | integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==
586 |
587 | error-ex@^1.3.1:
588 | version "1.3.2"
589 | resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz"
590 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
591 | dependencies:
592 | is-arrayish "^0.2.1"
593 |
594 | esbuild@^0.21.3:
595 | version "0.21.5"
596 | resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz"
597 | integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==
598 | optionalDependencies:
599 | "@esbuild/aix-ppc64" "0.21.5"
600 | "@esbuild/android-arm" "0.21.5"
601 | "@esbuild/android-arm64" "0.21.5"
602 | "@esbuild/android-x64" "0.21.5"
603 | "@esbuild/darwin-arm64" "0.21.5"
604 | "@esbuild/darwin-x64" "0.21.5"
605 | "@esbuild/freebsd-arm64" "0.21.5"
606 | "@esbuild/freebsd-x64" "0.21.5"
607 | "@esbuild/linux-arm" "0.21.5"
608 | "@esbuild/linux-arm64" "0.21.5"
609 | "@esbuild/linux-ia32" "0.21.5"
610 | "@esbuild/linux-loong64" "0.21.5"
611 | "@esbuild/linux-mips64el" "0.21.5"
612 | "@esbuild/linux-ppc64" "0.21.5"
613 | "@esbuild/linux-riscv64" "0.21.5"
614 | "@esbuild/linux-s390x" "0.21.5"
615 | "@esbuild/linux-x64" "0.21.5"
616 | "@esbuild/netbsd-x64" "0.21.5"
617 | "@esbuild/openbsd-x64" "0.21.5"
618 | "@esbuild/sunos-x64" "0.21.5"
619 | "@esbuild/win32-arm64" "0.21.5"
620 | "@esbuild/win32-ia32" "0.21.5"
621 | "@esbuild/win32-x64" "0.21.5"
622 |
623 | escalade@^3.1.1:
624 | version "3.1.1"
625 | resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz"
626 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
627 |
628 | escape-string-regexp@^1.0.5:
629 | version "1.0.5"
630 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"
631 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
632 |
633 | escape-string-regexp@^5.0.0:
634 | version "5.0.0"
635 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz"
636 | integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==
637 |
638 | estree-walker@^2.0.2:
639 | version "2.0.2"
640 | resolved "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz"
641 | integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==
642 |
643 | estree-walker@^3.0.3:
644 | version "3.0.3"
645 | resolved "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz"
646 | integrity sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==
647 | dependencies:
648 | "@types/estree" "^1.0.0"
649 |
650 | fast-glob@^3.3.2:
651 | version "3.3.2"
652 | resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz"
653 | integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==
654 | dependencies:
655 | "@nodelib/fs.stat" "^2.0.2"
656 | "@nodelib/fs.walk" "^1.2.3"
657 | glob-parent "^5.1.2"
658 | merge2 "^1.3.0"
659 | micromatch "^4.0.4"
660 |
661 | fastq@^1.6.0:
662 | version "1.17.1"
663 | resolved "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz"
664 | integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==
665 | dependencies:
666 | reusify "^1.0.4"
667 |
668 | figures@^3.1.0:
669 | version "3.2.0"
670 | resolved "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz"
671 | integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==
672 | dependencies:
673 | escape-string-regexp "^1.0.5"
674 |
675 | fill-range@^7.1.1:
676 | version "7.1.1"
677 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz"
678 | integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==
679 | dependencies:
680 | to-regex-range "^5.0.1"
681 |
682 | find-up@^2.0.0:
683 | version "2.1.0"
684 | resolved "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz"
685 | integrity sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==
686 | dependencies:
687 | locate-path "^2.0.0"
688 |
689 | find-up@^3.0.0:
690 | version "3.0.0"
691 | resolved "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz"
692 | integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==
693 | dependencies:
694 | locate-path "^3.0.0"
695 |
696 | find-up@^4.1.0:
697 | version "4.1.0"
698 | resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz"
699 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
700 | dependencies:
701 | locate-path "^5.0.0"
702 | path-exists "^4.0.0"
703 |
704 | find-up@^5.0.0:
705 | version "5.0.0"
706 | resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz"
707 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==
708 | dependencies:
709 | locate-path "^6.0.0"
710 | path-exists "^4.0.0"
711 |
712 | function-bind@^1.1.1:
713 | version "1.1.1"
714 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"
715 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
716 |
717 | get-caller-file@^2.0.5:
718 | version "2.0.5"
719 | resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz"
720 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
721 |
722 | get-pkg-repo@^4.0.0:
723 | version "4.2.1"
724 | resolved "https://registry.npmjs.org/get-pkg-repo/-/get-pkg-repo-4.2.1.tgz"
725 | integrity sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==
726 | dependencies:
727 | "@hutson/parse-repository-url" "^3.0.0"
728 | hosted-git-info "^4.0.0"
729 | through2 "^2.0.0"
730 | yargs "^16.2.0"
731 |
732 | git-raw-commits@^2.0.8:
733 | version "2.0.11"
734 | resolved "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.11.tgz"
735 | integrity sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==
736 | dependencies:
737 | dargs "^7.0.0"
738 | lodash "^4.17.15"
739 | meow "^8.0.0"
740 | split2 "^3.0.0"
741 | through2 "^4.0.0"
742 |
743 | git-remote-origin-url@^2.0.0:
744 | version "2.0.0"
745 | resolved "https://registry.npmjs.org/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz"
746 | integrity sha512-eU+GGrZgccNJcsDH5LkXR3PB9M958hxc7sbA8DFJjrv9j4L2P/eZfKhM+QD6wyzpiv+b1BpK0XrYCxkovtjSLw==
747 | dependencies:
748 | gitconfiglocal "^1.0.0"
749 | pify "^2.3.0"
750 |
751 | git-semver-tags@^4.0.0, git-semver-tags@^4.1.1:
752 | version "4.1.1"
753 | resolved "https://registry.npmjs.org/git-semver-tags/-/git-semver-tags-4.1.1.tgz"
754 | integrity sha512-OWyMt5zBe7xFs8vglMmhM9lRQzCWL3WjHtxNNfJTMngGym7pC1kh8sP6jevfydJ6LP3ZvGxfb6ABYgPUM0mtsA==
755 | dependencies:
756 | meow "^8.0.0"
757 | semver "^6.0.0"
758 |
759 | gitconfiglocal@^1.0.0:
760 | version "1.0.0"
761 | resolved "https://registry.npmjs.org/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz"
762 | integrity sha512-spLUXeTAVHxDtKsJc8FkFVgFtMdEN9qPGpL23VfSHx4fP4+Ds097IXLvymbnDH8FnmxX5Nr9bPw3A+AQ6mWEaQ==
763 | dependencies:
764 | ini "^1.3.2"
765 |
766 | glob-parent@^5.1.2:
767 | version "5.1.2"
768 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"
769 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
770 | dependencies:
771 | is-glob "^4.0.1"
772 |
773 | graceful-fs@^4.1.2:
774 | version "4.2.11"
775 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz"
776 | integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
777 |
778 | handlebars@^4.7.7:
779 | version "4.7.7"
780 | resolved "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz"
781 | integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==
782 | dependencies:
783 | minimist "^1.2.5"
784 | neo-async "^2.6.0"
785 | source-map "^0.6.1"
786 | wordwrap "^1.0.0"
787 | optionalDependencies:
788 | uglify-js "^3.1.4"
789 |
790 | hard-rejection@^2.1.0:
791 | version "2.1.0"
792 | resolved "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz"
793 | integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==
794 |
795 | has-flag@^3.0.0:
796 | version "3.0.0"
797 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"
798 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
799 |
800 | has@^1.0.3:
801 | version "1.0.3"
802 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz"
803 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
804 | dependencies:
805 | function-bind "^1.1.1"
806 |
807 | hosted-git-info@^2.1.4:
808 | version "2.8.9"
809 | resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz"
810 | integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==
811 |
812 | hosted-git-info@^4.0.0, hosted-git-info@^4.0.1:
813 | version "4.1.0"
814 | resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz"
815 | integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==
816 | dependencies:
817 | lru-cache "^6.0.0"
818 |
819 | indent-string@^4.0.0:
820 | version "4.0.0"
821 | resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz"
822 | integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
823 |
824 | inherits@^2.0.3, inherits@~2.0.3:
825 | version "2.0.4"
826 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
827 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
828 |
829 | ini@^1.3.2:
830 | version "1.3.8"
831 | resolved "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz"
832 | integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
833 |
834 | is-arrayish@^0.2.1:
835 | version "0.2.1"
836 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"
837 | integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
838 |
839 | is-core-module@^2.5.0, is-core-module@^2.9.0:
840 | version "2.11.0"
841 | resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz"
842 | integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==
843 | dependencies:
844 | has "^1.0.3"
845 |
846 | is-extglob@^2.1.1:
847 | version "2.1.1"
848 | resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"
849 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
850 |
851 | is-fullwidth-code-point@^3.0.0:
852 | version "3.0.0"
853 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"
854 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
855 |
856 | is-glob@^4.0.1:
857 | version "4.0.3"
858 | resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz"
859 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
860 | dependencies:
861 | is-extglob "^2.1.1"
862 |
863 | is-number@^7.0.0:
864 | version "7.0.0"
865 | resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz"
866 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
867 |
868 | is-obj@^2.0.0:
869 | version "2.0.0"
870 | resolved "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz"
871 | integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==
872 |
873 | is-plain-obj@^1.1.0:
874 | version "1.1.0"
875 | resolved "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz"
876 | integrity sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==
877 |
878 | is-text-path@^1.0.1:
879 | version "1.0.1"
880 | resolved "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz"
881 | integrity sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==
882 | dependencies:
883 | text-extensions "^1.0.0"
884 |
885 | isarray@~1.0.0:
886 | version "1.0.0"
887 | resolved "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"
888 | integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==
889 |
890 | js-tokens@^4.0.0:
891 | version "4.0.0"
892 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz"
893 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
894 |
895 | js-tokens@^9.0.0:
896 | version "9.0.0"
897 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-9.0.0.tgz"
898 | integrity sha512-WriZw1luRMlmV3LGJaR6QOJjWwgLUTf89OwT2lUOyjX2dJGBwgmIkbcz+7WFZjrZM635JOIR517++e/67CP9dQ==
899 |
900 | json-parse-better-errors@^1.0.1:
901 | version "1.0.2"
902 | resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz"
903 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==
904 |
905 | json-parse-even-better-errors@^2.3.0:
906 | version "2.3.1"
907 | resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz"
908 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
909 |
910 | json-stringify-safe@^5.0.1:
911 | version "5.0.1"
912 | resolved "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"
913 | integrity sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==
914 |
915 | jsonparse@^1.2.0:
916 | version "1.3.1"
917 | resolved "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz"
918 | integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==
919 |
920 | JSONStream@^1.0.4:
921 | version "1.3.5"
922 | resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz"
923 | integrity sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==
924 | dependencies:
925 | jsonparse "^1.2.0"
926 | through ">=2.2.7 <3"
927 |
928 | kind-of@^6.0.3:
929 | version "6.0.3"
930 | resolved "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz"
931 | integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
932 |
933 | lines-and-columns@^1.1.6:
934 | version "1.2.4"
935 | resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz"
936 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
937 |
938 | load-json-file@^4.0.0:
939 | version "4.0.0"
940 | resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz"
941 | integrity sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==
942 | dependencies:
943 | graceful-fs "^4.1.2"
944 | parse-json "^4.0.0"
945 | pify "^3.0.0"
946 | strip-bom "^3.0.0"
947 |
948 | local-pkg@^0.5.0:
949 | version "0.5.0"
950 | resolved "https://registry.npmjs.org/local-pkg/-/local-pkg-0.5.0.tgz"
951 | integrity sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==
952 | dependencies:
953 | mlly "^1.4.2"
954 | pkg-types "^1.0.3"
955 |
956 | locate-path@^2.0.0:
957 | version "2.0.0"
958 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz"
959 | integrity sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==
960 | dependencies:
961 | p-locate "^2.0.0"
962 | path-exists "^3.0.0"
963 |
964 | locate-path@^3.0.0:
965 | version "3.0.0"
966 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz"
967 | integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==
968 | dependencies:
969 | p-locate "^3.0.0"
970 | path-exists "^3.0.0"
971 |
972 | locate-path@^5.0.0:
973 | version "5.0.0"
974 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz"
975 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
976 | dependencies:
977 | p-locate "^4.1.0"
978 |
979 | locate-path@^6.0.0:
980 | version "6.0.0"
981 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz"
982 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==
983 | dependencies:
984 | p-locate "^5.0.0"
985 |
986 | lodash.ismatch@^4.4.0:
987 | version "4.4.0"
988 | resolved "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz"
989 | integrity sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==
990 |
991 | lodash@^4.17.15:
992 | version "4.17.21"
993 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"
994 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
995 |
996 | lru-cache@^6.0.0:
997 | version "6.0.0"
998 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz"
999 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
1000 | dependencies:
1001 | yallist "^4.0.0"
1002 |
1003 | magic-string@^0.30.11, magic-string@^0.30.12:
1004 | version "0.30.12"
1005 | resolved "https://registry.npmjs.org/magic-string/-/magic-string-0.30.12.tgz"
1006 | integrity sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==
1007 | dependencies:
1008 | "@jridgewell/sourcemap-codec" "^1.5.0"
1009 |
1010 | map-obj@^1.0.0:
1011 | version "1.0.1"
1012 | resolved "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz"
1013 | integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==
1014 |
1015 | map-obj@^4.0.0:
1016 | version "4.3.0"
1017 | resolved "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz"
1018 | integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==
1019 |
1020 | meow@^8.0.0:
1021 | version "8.1.2"
1022 | resolved "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz"
1023 | integrity sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==
1024 | dependencies:
1025 | "@types/minimist" "^1.2.0"
1026 | camelcase-keys "^6.2.2"
1027 | decamelize-keys "^1.1.0"
1028 | hard-rejection "^2.1.0"
1029 | minimist-options "4.1.0"
1030 | normalize-package-data "^3.0.0"
1031 | read-pkg-up "^7.0.1"
1032 | redent "^3.0.0"
1033 | trim-newlines "^3.0.0"
1034 | type-fest "^0.18.0"
1035 | yargs-parser "^20.2.3"
1036 |
1037 | merge2@^1.3.0:
1038 | version "1.4.1"
1039 | resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz"
1040 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
1041 |
1042 | micromatch@^4.0.4:
1043 | version "4.0.8"
1044 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz"
1045 | integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==
1046 | dependencies:
1047 | braces "^3.0.3"
1048 | picomatch "^2.3.1"
1049 |
1050 | min-indent@^1.0.0:
1051 | version "1.0.1"
1052 | resolved "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz"
1053 | integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==
1054 |
1055 | minimatch@^3.0.4:
1056 | version "3.1.2"
1057 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz"
1058 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
1059 | dependencies:
1060 | brace-expansion "^1.1.7"
1061 |
1062 | minimatch@^9.0.5:
1063 | version "9.0.5"
1064 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz"
1065 | integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==
1066 | dependencies:
1067 | brace-expansion "^2.0.1"
1068 |
1069 | minimist-options@4.1.0:
1070 | version "4.1.0"
1071 | resolved "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz"
1072 | integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==
1073 | dependencies:
1074 | arrify "^1.0.1"
1075 | is-plain-obj "^1.1.0"
1076 | kind-of "^6.0.3"
1077 |
1078 | minimist@^1.2.5:
1079 | version "1.2.8"
1080 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz"
1081 | integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
1082 |
1083 | mlly@^1.4.2, mlly@^1.7.2, mlly@^1.7.3:
1084 | version "1.7.3"
1085 | resolved "https://registry.npmjs.org/mlly/-/mlly-1.7.3.tgz"
1086 | integrity sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==
1087 | dependencies:
1088 | acorn "^8.14.0"
1089 | pathe "^1.1.2"
1090 | pkg-types "^1.2.1"
1091 | ufo "^1.5.4"
1092 |
1093 | modify-values@^1.0.0:
1094 | version "1.0.1"
1095 | resolved "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz"
1096 | integrity sha512-xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw==
1097 |
1098 | nanoid@^3.3.7:
1099 | version "3.3.7"
1100 | resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz"
1101 | integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==
1102 |
1103 | neo-async@^2.6.0:
1104 | version "2.6.2"
1105 | resolved "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz"
1106 | integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
1107 |
1108 | normalize-package-data@^2.3.2:
1109 | version "2.5.0"
1110 | resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz"
1111 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
1112 | dependencies:
1113 | hosted-git-info "^2.1.4"
1114 | resolve "^1.10.0"
1115 | semver "2 || 3 || 4 || 5"
1116 | validate-npm-package-license "^3.0.1"
1117 |
1118 | normalize-package-data@^2.5.0:
1119 | version "2.5.0"
1120 | resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz"
1121 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==
1122 | dependencies:
1123 | hosted-git-info "^2.1.4"
1124 | resolve "^1.10.0"
1125 | semver "2 || 3 || 4 || 5"
1126 | validate-npm-package-license "^3.0.1"
1127 |
1128 | normalize-package-data@^3.0.0:
1129 | version "3.0.3"
1130 | resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz"
1131 | integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==
1132 | dependencies:
1133 | hosted-git-info "^4.0.1"
1134 | is-core-module "^2.5.0"
1135 | semver "^7.3.4"
1136 | validate-npm-package-license "^3.0.1"
1137 |
1138 | nucleus-vue@^0.0.14:
1139 | version "0.0.14"
1140 | resolved "https://registry.npmjs.org/nucleus-vue/-/nucleus-vue-0.0.14.tgz"
1141 | integrity sha512-5BKa7eEx5mbm8dOS7m6h/fULvdqKClQn1FHWc0aqQHP1+vn6OgUtPS1raihZiJuusvN8b5rzBRto9KKVvx6uig==
1142 |
1143 | p-limit@^1.1.0:
1144 | version "1.3.0"
1145 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz"
1146 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
1147 | dependencies:
1148 | p-try "^1.0.0"
1149 |
1150 | p-limit@^2.0.0:
1151 | version "2.3.0"
1152 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz"
1153 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
1154 | dependencies:
1155 | p-try "^2.0.0"
1156 |
1157 | p-limit@^2.2.0:
1158 | version "2.3.0"
1159 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz"
1160 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
1161 | dependencies:
1162 | p-try "^2.0.0"
1163 |
1164 | p-limit@^3.0.2:
1165 | version "3.1.0"
1166 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz"
1167 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
1168 | dependencies:
1169 | yocto-queue "^0.1.0"
1170 |
1171 | p-locate@^2.0.0:
1172 | version "2.0.0"
1173 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz"
1174 | integrity sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==
1175 | dependencies:
1176 | p-limit "^1.1.0"
1177 |
1178 | p-locate@^3.0.0:
1179 | version "3.0.0"
1180 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz"
1181 | integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==
1182 | dependencies:
1183 | p-limit "^2.0.0"
1184 |
1185 | p-locate@^4.1.0:
1186 | version "4.1.0"
1187 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz"
1188 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
1189 | dependencies:
1190 | p-limit "^2.2.0"
1191 |
1192 | p-locate@^5.0.0:
1193 | version "5.0.0"
1194 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz"
1195 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==
1196 | dependencies:
1197 | p-limit "^3.0.2"
1198 |
1199 | p-try@^1.0.0:
1200 | version "1.0.0"
1201 | resolved "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz"
1202 | integrity sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==
1203 |
1204 | p-try@^2.0.0:
1205 | version "2.2.0"
1206 | resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"
1207 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
1208 |
1209 | parse-json@^4.0.0:
1210 | version "4.0.0"
1211 | resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz"
1212 | integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==
1213 | dependencies:
1214 | error-ex "^1.3.1"
1215 | json-parse-better-errors "^1.0.1"
1216 |
1217 | parse-json@^5.0.0:
1218 | version "5.2.0"
1219 | resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz"
1220 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
1221 | dependencies:
1222 | "@babel/code-frame" "^7.0.0"
1223 | error-ex "^1.3.1"
1224 | json-parse-even-better-errors "^2.3.0"
1225 | lines-and-columns "^1.1.6"
1226 |
1227 | path-exists@^3.0.0:
1228 | version "3.0.0"
1229 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz"
1230 | integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==
1231 |
1232 | path-exists@^4.0.0:
1233 | version "4.0.0"
1234 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"
1235 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
1236 |
1237 | path-parse@^1.0.7:
1238 | version "1.0.7"
1239 | resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz"
1240 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
1241 |
1242 | path-type@^3.0.0:
1243 | version "3.0.0"
1244 | resolved "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz"
1245 | integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==
1246 | dependencies:
1247 | pify "^3.0.0"
1248 |
1249 | pathe@^1.1.2:
1250 | version "1.1.2"
1251 | resolved "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz"
1252 | integrity sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==
1253 |
1254 | picocolors@^1.1.1:
1255 | version "1.1.1"
1256 | resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz"
1257 | integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==
1258 |
1259 | picomatch@^2.3.1:
1260 | version "2.3.1"
1261 | resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz"
1262 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
1263 |
1264 | picomatch@^4.0.2:
1265 | version "4.0.2"
1266 | resolved "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz"
1267 | integrity sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==
1268 |
1269 | pify@^2.3.0:
1270 | version "2.3.0"
1271 | resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz"
1272 | integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==
1273 |
1274 | pify@^3.0.0:
1275 | version "3.0.0"
1276 | resolved "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz"
1277 | integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==
1278 |
1279 | pkg-types@^1.0.3, pkg-types@^1.2.1:
1280 | version "1.2.1"
1281 | resolved "https://registry.npmjs.org/pkg-types/-/pkg-types-1.2.1.tgz"
1282 | integrity sha512-sQoqa8alT3nHjGuTjuKgOnvjo4cljkufdtLMnO2LBP/wRwuDlo1tkaEdMxCRhyGRPacv/ztlZgDPm2b7FAmEvw==
1283 | dependencies:
1284 | confbox "^0.1.8"
1285 | mlly "^1.7.2"
1286 | pathe "^1.1.2"
1287 |
1288 | postcss@^8.4.43, postcss@^8.4.48:
1289 | version "8.4.49"
1290 | resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz"
1291 | integrity sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==
1292 | dependencies:
1293 | nanoid "^3.3.7"
1294 | picocolors "^1.1.1"
1295 | source-map-js "^1.2.1"
1296 |
1297 | process-nextick-args@~2.0.0:
1298 | version "2.0.1"
1299 | resolved "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"
1300 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
1301 |
1302 | q@^1.5.1:
1303 | version "1.5.1"
1304 | resolved "https://registry.npmjs.org/q/-/q-1.5.1.tgz"
1305 | integrity sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==
1306 |
1307 | queue-microtask@^1.2.2:
1308 | version "1.2.3"
1309 | resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz"
1310 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
1311 |
1312 | quick-lru@^4.0.1:
1313 | version "4.0.1"
1314 | resolved "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz"
1315 | integrity sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==
1316 |
1317 | read-pkg-up@^3.0.0:
1318 | version "3.0.0"
1319 | resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz"
1320 | integrity sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==
1321 | dependencies:
1322 | find-up "^2.0.0"
1323 | read-pkg "^3.0.0"
1324 |
1325 | read-pkg-up@^7.0.1:
1326 | version "7.0.1"
1327 | resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz"
1328 | integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==
1329 | dependencies:
1330 | find-up "^4.1.0"
1331 | read-pkg "^5.2.0"
1332 | type-fest "^0.8.1"
1333 |
1334 | read-pkg@^3.0.0:
1335 | version "3.0.0"
1336 | resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz"
1337 | integrity sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==
1338 | dependencies:
1339 | load-json-file "^4.0.0"
1340 | normalize-package-data "^2.3.2"
1341 | path-type "^3.0.0"
1342 |
1343 | read-pkg@^5.2.0:
1344 | version "5.2.0"
1345 | resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz"
1346 | integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==
1347 | dependencies:
1348 | "@types/normalize-package-data" "^2.4.0"
1349 | normalize-package-data "^2.5.0"
1350 | parse-json "^5.0.0"
1351 | type-fest "^0.6.0"
1352 |
1353 | readable-stream@^3.0.0, readable-stream@^3.0.2, readable-stream@3:
1354 | version "3.6.2"
1355 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz"
1356 | integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==
1357 | dependencies:
1358 | inherits "^2.0.3"
1359 | string_decoder "^1.1.1"
1360 | util-deprecate "^1.0.1"
1361 |
1362 | readable-stream@~2.3.6:
1363 | version "2.3.8"
1364 | resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz"
1365 | integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==
1366 | dependencies:
1367 | core-util-is "~1.0.0"
1368 | inherits "~2.0.3"
1369 | isarray "~1.0.0"
1370 | process-nextick-args "~2.0.0"
1371 | safe-buffer "~5.1.1"
1372 | string_decoder "~1.1.1"
1373 | util-deprecate "~1.0.1"
1374 |
1375 | redent@^3.0.0:
1376 | version "3.0.0"
1377 | resolved "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz"
1378 | integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==
1379 | dependencies:
1380 | indent-string "^4.0.0"
1381 | strip-indent "^3.0.0"
1382 |
1383 | require-directory@^2.1.1:
1384 | version "2.1.1"
1385 | resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz"
1386 | integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==
1387 |
1388 | resolve@^1.10.0:
1389 | version "1.22.1"
1390 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz"
1391 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==
1392 | dependencies:
1393 | is-core-module "^2.9.0"
1394 | path-parse "^1.0.7"
1395 | supports-preserve-symlinks-flag "^1.0.0"
1396 |
1397 | reusify@^1.0.4:
1398 | version "1.0.4"
1399 | resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz"
1400 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
1401 |
1402 | rollup@^1.20.0||^2.0.0||^3.0.0||^4.0.0, rollup@^4.20.0:
1403 | version "4.24.0"
1404 | resolved "https://registry.npmjs.org/rollup/-/rollup-4.24.0.tgz"
1405 | integrity sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg==
1406 | dependencies:
1407 | "@types/estree" "1.0.6"
1408 | optionalDependencies:
1409 | "@rollup/rollup-android-arm-eabi" "4.24.0"
1410 | "@rollup/rollup-android-arm64" "4.24.0"
1411 | "@rollup/rollup-darwin-arm64" "4.24.0"
1412 | "@rollup/rollup-darwin-x64" "4.24.0"
1413 | "@rollup/rollup-linux-arm-gnueabihf" "4.24.0"
1414 | "@rollup/rollup-linux-arm-musleabihf" "4.24.0"
1415 | "@rollup/rollup-linux-arm64-gnu" "4.24.0"
1416 | "@rollup/rollup-linux-arm64-musl" "4.24.0"
1417 | "@rollup/rollup-linux-powerpc64le-gnu" "4.24.0"
1418 | "@rollup/rollup-linux-riscv64-gnu" "4.24.0"
1419 | "@rollup/rollup-linux-s390x-gnu" "4.24.0"
1420 | "@rollup/rollup-linux-x64-gnu" "4.24.0"
1421 | "@rollup/rollup-linux-x64-musl" "4.24.0"
1422 | "@rollup/rollup-win32-arm64-msvc" "4.24.0"
1423 | "@rollup/rollup-win32-ia32-msvc" "4.24.0"
1424 | "@rollup/rollup-win32-x64-msvc" "4.24.0"
1425 | fsevents "~2.3.2"
1426 |
1427 | run-parallel@^1.1.9:
1428 | version "1.2.0"
1429 | resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz"
1430 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
1431 | dependencies:
1432 | queue-microtask "^1.2.2"
1433 |
1434 | safe-buffer@~5.1.0, safe-buffer@~5.1.1:
1435 | version "5.1.2"
1436 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"
1437 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
1438 |
1439 | safe-buffer@~5.2.0:
1440 | version "5.2.1"
1441 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"
1442 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
1443 |
1444 | scule@^1.3.0:
1445 | version "1.3.0"
1446 | resolved "https://registry.npmjs.org/scule/-/scule-1.3.0.tgz"
1447 | integrity sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==
1448 |
1449 | semver@^6.0.0:
1450 | version "6.3.0"
1451 | resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"
1452 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
1453 |
1454 | semver@^7.1.1, semver@^7.3.4:
1455 | version "7.3.8"
1456 | resolved "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz"
1457 | integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==
1458 | dependencies:
1459 | lru-cache "^6.0.0"
1460 |
1461 | "semver@2 || 3 || 4 || 5":
1462 | version "5.7.1"
1463 | resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz"
1464 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
1465 |
1466 | source-map-js@^1.2.0, source-map-js@^1.2.1:
1467 | version "1.2.1"
1468 | resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz"
1469 | integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==
1470 |
1471 | source-map@^0.6.1:
1472 | version "0.6.1"
1473 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"
1474 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
1475 |
1476 | spdx-correct@^3.0.0:
1477 | version "3.2.0"
1478 | resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz"
1479 | integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==
1480 | dependencies:
1481 | spdx-expression-parse "^3.0.0"
1482 | spdx-license-ids "^3.0.0"
1483 |
1484 | spdx-exceptions@^2.1.0:
1485 | version "2.3.0"
1486 | resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz"
1487 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==
1488 |
1489 | spdx-expression-parse@^3.0.0:
1490 | version "3.0.1"
1491 | resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz"
1492 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==
1493 | dependencies:
1494 | spdx-exceptions "^2.1.0"
1495 | spdx-license-ids "^3.0.0"
1496 |
1497 | spdx-license-ids@^3.0.0:
1498 | version "3.0.13"
1499 | resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz"
1500 | integrity sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==
1501 |
1502 | split@^1.0.0:
1503 | version "1.0.1"
1504 | resolved "https://registry.npmjs.org/split/-/split-1.0.1.tgz"
1505 | integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==
1506 | dependencies:
1507 | through "2"
1508 |
1509 | split2@^3.0.0:
1510 | version "3.2.2"
1511 | resolved "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz"
1512 | integrity sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==
1513 | dependencies:
1514 | readable-stream "^3.0.0"
1515 |
1516 | standard-version@^9.5.0:
1517 | version "9.5.0"
1518 | resolved "https://registry.npmjs.org/standard-version/-/standard-version-9.5.0.tgz"
1519 | integrity sha512-3zWJ/mmZQsOaO+fOlsa0+QK90pwhNd042qEcw6hKFNoLFs7peGyvPffpEBbK/DSGPbyOvli0mUIFv5A4qTjh2Q==
1520 | dependencies:
1521 | chalk "^2.4.2"
1522 | conventional-changelog "3.1.25"
1523 | conventional-changelog-config-spec "2.1.0"
1524 | conventional-changelog-conventionalcommits "4.6.3"
1525 | conventional-recommended-bump "6.1.0"
1526 | detect-indent "^6.0.0"
1527 | detect-newline "^3.1.0"
1528 | dotgitignore "^2.1.0"
1529 | figures "^3.1.0"
1530 | find-up "^5.0.0"
1531 | git-semver-tags "^4.0.0"
1532 | semver "^7.1.1"
1533 | stringify-package "^1.0.1"
1534 | yargs "^16.0.0"
1535 |
1536 | string_decoder@^1.1.1:
1537 | version "1.3.0"
1538 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"
1539 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
1540 | dependencies:
1541 | safe-buffer "~5.2.0"
1542 |
1543 | string_decoder@~1.1.1:
1544 | version "1.1.1"
1545 | resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"
1546 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
1547 | dependencies:
1548 | safe-buffer "~5.1.0"
1549 |
1550 | string-width@^4.1.0, string-width@^4.2.0:
1551 | version "4.2.3"
1552 | resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"
1553 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
1554 | dependencies:
1555 | emoji-regex "^8.0.0"
1556 | is-fullwidth-code-point "^3.0.0"
1557 | strip-ansi "^6.0.1"
1558 |
1559 | stringify-package@^1.0.1:
1560 | version "1.0.1"
1561 | resolved "https://registry.npmjs.org/stringify-package/-/stringify-package-1.0.1.tgz"
1562 | integrity sha512-sa4DUQsYciMP1xhKWGuFM04fB0LG/9DlluZoSVywUMRNvzid6XucHK0/90xGxRoHrAaROrcHK1aPKaijCtSrhg==
1563 |
1564 | strip-ansi@^6.0.0, strip-ansi@^6.0.1:
1565 | version "6.0.1"
1566 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"
1567 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
1568 | dependencies:
1569 | ansi-regex "^5.0.1"
1570 |
1571 | strip-bom@^3.0.0:
1572 | version "3.0.0"
1573 | resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz"
1574 | integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==
1575 |
1576 | strip-indent@^3.0.0:
1577 | version "3.0.0"
1578 | resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz"
1579 | integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==
1580 | dependencies:
1581 | min-indent "^1.0.0"
1582 |
1583 | strip-literal@^2.1.0:
1584 | version "2.1.0"
1585 | resolved "https://registry.npmjs.org/strip-literal/-/strip-literal-2.1.0.tgz"
1586 | integrity sha512-Op+UycaUt/8FbN/Z2TWPBLge3jWrP3xj10f3fnYxf052bKuS3EKs1ZQcVGjnEMdsNVAM+plXRdmjrZ/KgG3Skw==
1587 | dependencies:
1588 | js-tokens "^9.0.0"
1589 |
1590 | supports-color@^5.3.0:
1591 | version "5.5.0"
1592 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"
1593 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
1594 | dependencies:
1595 | has-flag "^3.0.0"
1596 |
1597 | supports-preserve-symlinks-flag@^1.0.0:
1598 | version "1.0.0"
1599 | resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"
1600 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
1601 |
1602 | text-extensions@^1.0.0:
1603 | version "1.9.0"
1604 | resolved "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz"
1605 | integrity sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==
1606 |
1607 | "through@>=2.2.7 <3", through@2:
1608 | version "2.3.8"
1609 | resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz"
1610 | integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==
1611 |
1612 | through2@^2.0.0:
1613 | version "2.0.5"
1614 | resolved "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz"
1615 | integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==
1616 | dependencies:
1617 | readable-stream "~2.3.6"
1618 | xtend "~4.0.1"
1619 |
1620 | through2@^4.0.0:
1621 | version "4.0.2"
1622 | resolved "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz"
1623 | integrity sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==
1624 | dependencies:
1625 | readable-stream "3"
1626 |
1627 | to-regex-range@^5.0.1:
1628 | version "5.0.1"
1629 | resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz"
1630 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
1631 | dependencies:
1632 | is-number "^7.0.0"
1633 |
1634 | trim-newlines@^3.0.0:
1635 | version "3.0.1"
1636 | resolved "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz"
1637 | integrity sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==
1638 |
1639 | type-fest@^0.18.0:
1640 | version "0.18.1"
1641 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz"
1642 | integrity sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==
1643 |
1644 | type-fest@^0.6.0:
1645 | version "0.6.0"
1646 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz"
1647 | integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==
1648 |
1649 | type-fest@^0.8.1:
1650 | version "0.8.1"
1651 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz"
1652 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==
1653 |
1654 | typedarray@^0.0.6:
1655 | version "0.0.6"
1656 | resolved "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz"
1657 | integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==
1658 |
1659 | ufo@^1.5.4:
1660 | version "1.5.4"
1661 | resolved "https://registry.npmjs.org/ufo/-/ufo-1.5.4.tgz"
1662 | integrity sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==
1663 |
1664 | uglify-js@^3.1.4:
1665 | version "3.17.4"
1666 | resolved "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz"
1667 | integrity sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==
1668 |
1669 | unimport@^3.13.2:
1670 | version "3.13.2"
1671 | resolved "https://registry.npmjs.org/unimport/-/unimport-3.13.2.tgz"
1672 | integrity sha512-VKAepeIb6BWLtBl4tmyHY1/7rJgz3ynmZrWf8cU1a+v5Uv/k1gyyAEeGBnYcrwy8bxG5sflxEx4a9VQUqOVHUA==
1673 | dependencies:
1674 | "@rollup/pluginutils" "^5.1.3"
1675 | acorn "^8.14.0"
1676 | escape-string-regexp "^5.0.0"
1677 | estree-walker "^3.0.3"
1678 | fast-glob "^3.3.2"
1679 | local-pkg "^0.5.0"
1680 | magic-string "^0.30.12"
1681 | mlly "^1.7.3"
1682 | pathe "^1.1.2"
1683 | pkg-types "^1.2.1"
1684 | scule "^1.3.0"
1685 | strip-literal "^2.1.0"
1686 | unplugin "^1.15.0"
1687 |
1688 | unplugin-auto-import@^0.18.4:
1689 | version "0.18.4"
1690 | resolved "https://registry.npmjs.org/unplugin-auto-import/-/unplugin-auto-import-0.18.4.tgz"
1691 | integrity sha512-I+QAZPQn5lfH3HYa6HTgpcz30XGY0H1g6QenEB+sgBjgfvgJ33UI907dlNkgOSm/CFHZyNmTKVHf+O2qTnfNKw==
1692 | dependencies:
1693 | "@antfu/utils" "^0.7.10"
1694 | "@rollup/pluginutils" "^5.1.3"
1695 | fast-glob "^3.3.2"
1696 | local-pkg "^0.5.0"
1697 | magic-string "^0.30.12"
1698 | minimatch "^9.0.5"
1699 | unimport "^3.13.2"
1700 | unplugin "^1.15.0"
1701 |
1702 | unplugin@^1.15.0:
1703 | version "1.16.0"
1704 | resolved "https://registry.npmjs.org/unplugin/-/unplugin-1.16.0.tgz"
1705 | integrity sha512-5liCNPuJW8dqh3+DM6uNM2EI3MLLpCKp/KY+9pB5M2S2SR2qvvDHhKgBOaTWEbZTAws3CXfB0rKTIolWKL05VQ==
1706 | dependencies:
1707 | acorn "^8.14.0"
1708 | webpack-virtual-modules "^0.6.2"
1709 |
1710 | util-deprecate@^1.0.1, util-deprecate@~1.0.1:
1711 | version "1.0.2"
1712 | resolved "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"
1713 | integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
1714 |
1715 | validate-npm-package-license@^3.0.1:
1716 | version "3.0.4"
1717 | resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz"
1718 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==
1719 | dependencies:
1720 | spdx-correct "^3.0.0"
1721 | spdx-expression-parse "^3.0.0"
1722 |
1723 | vite@^5.0.0, vite@^5.4.11:
1724 | version "5.4.11"
1725 | resolved "https://registry.npmjs.org/vite/-/vite-5.4.11.tgz"
1726 | integrity sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==
1727 | dependencies:
1728 | esbuild "^0.21.3"
1729 | postcss "^8.4.43"
1730 | rollup "^4.20.0"
1731 | optionalDependencies:
1732 | fsevents "~2.3.3"
1733 |
1734 | vue@^3.2.25, vue@^3.4.38, vue@^3.5.13, vue@3.5.13:
1735 | version "3.5.13"
1736 | resolved "https://registry.npmjs.org/vue/-/vue-3.5.13.tgz"
1737 | integrity sha512-wmeiSMxkZCSc+PM2w2VRsOYAZC8GdipNFRTsLSfodVqI9mbejKeXEGr8SckuLnrQPGe3oJN5c3K0vpoU9q/wCQ==
1738 | dependencies:
1739 | "@vue/compiler-dom" "3.5.13"
1740 | "@vue/compiler-sfc" "3.5.13"
1741 | "@vue/runtime-dom" "3.5.13"
1742 | "@vue/server-renderer" "3.5.13"
1743 | "@vue/shared" "3.5.13"
1744 |
1745 | webpack-virtual-modules@^0.6.2:
1746 | version "0.6.2"
1747 | resolved "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz"
1748 | integrity sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==
1749 |
1750 | wordwrap@^1.0.0:
1751 | version "1.0.0"
1752 | resolved "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz"
1753 | integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==
1754 |
1755 | wrap-ansi@^7.0.0:
1756 | version "7.0.0"
1757 | resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz"
1758 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
1759 | dependencies:
1760 | ansi-styles "^4.0.0"
1761 | string-width "^4.1.0"
1762 | strip-ansi "^6.0.0"
1763 |
1764 | xtend@~4.0.1:
1765 | version "4.0.2"
1766 | resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"
1767 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
1768 |
1769 | y18n@^5.0.5:
1770 | version "5.0.8"
1771 | resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz"
1772 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
1773 |
1774 | yallist@^4.0.0:
1775 | version "4.0.0"
1776 | resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz"
1777 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
1778 |
1779 | yargs-parser@^20.2.2, yargs-parser@^20.2.3:
1780 | version "20.2.9"
1781 | resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz"
1782 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
1783 |
1784 | yargs@^16.0.0, yargs@^16.2.0:
1785 | version "16.2.0"
1786 | resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz"
1787 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==
1788 | dependencies:
1789 | cliui "^7.0.2"
1790 | escalade "^3.1.1"
1791 | get-caller-file "^2.0.5"
1792 | require-directory "^2.1.1"
1793 | string-width "^4.2.0"
1794 | y18n "^5.0.5"
1795 | yargs-parser "^20.2.2"
1796 |
1797 | yocto-queue@^0.1.0:
1798 | version "0.1.0"
1799 | resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz"
1800 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
1801 |
--------------------------------------------------------------------------------