├── .nvmrc ├── .prettierignore ├── src ├── assets │ ├── css │ │ ├── common.scss │ │ └── element-variables.scss │ └── logo.png ├── utils │ ├── requireImg.js │ └── http.js ├── App.vue ├── store │ └── index.js ├── router │ └── index.js ├── main.js └── views │ └── login.vue ├── public └── config.js ├── .gitignore ├── index.html ├── plugin └── zip.js ├── package.json ├── .github └── workflows │ └── docs.yml ├── .prettierrc.js ├── vite.config.js ├── README.md ├── README-EN.md └── pnpm-lock.yaml /.nvmrc: -------------------------------------------------------------------------------- 1 | 24.4.1 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.zip -------------------------------------------------------------------------------- /src/assets/css/common.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/config.js: -------------------------------------------------------------------------------- 1 | // 请求地址 2 | window.BASE_URL = ''; 3 | -------------------------------------------------------------------------------- /src/assets/css/element-variables.scss: -------------------------------------------------------------------------------- 1 | /* 改变主题色变量 */ 2 | $--color-primary: #8956ff; 3 | -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zqy233/vite-vue2-ie-template/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/utils/requireImg.js: -------------------------------------------------------------------------------- 1 | /** vite使用动态图片的方式 */ 2 | export function requireImg(name) { 3 | return new URL(`/src/assets/imgs/${name}`, import.meta.url).href 4 | } 5 | -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 19 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | .DS_Store 12 | dist 13 | dist-ssr 14 | *.local 15 | 16 | /cypress/videos/ 17 | /cypress/screenshots/ 18 | 19 | # Editor directories and files 20 | .vscode 21 | !.vscode/extensions.json 22 | .idea 23 | *.suo 24 | *.ntvs* 25 | *.njsproj 26 | *.sln 27 | *.sw? 28 | *.zip 29 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- 1 | import Vue from "vue" 2 | import Vuex from "vuex" 3 | 4 | Vue.use(Vuex) 5 | 6 | export default new Vuex.Store({ 7 | state: { 8 | // 全局loading动画 9 | loading: false, 10 | // 记录所有请求,用于切换页面时取消 11 | requests: [] 12 | }, 13 | mutations: { 14 | loadStatus(state, boolean) { 15 | state.loading = boolean 16 | }, 17 | addRequest(state, string) { 18 | state.requests.push(string) 19 | } 20 | } 21 | }) 22 | -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue'; 2 | import VueRouter from 'vue-router'; 3 | 4 | Vue.use(VueRouter); 5 | 6 | // fix:重复路径跳转报错 7 | const VueRouterPush = VueRouter.prototype.push; 8 | VueRouter.prototype.push = function push(to) { 9 | return VueRouterPush.call(this, to).catch((err) => err); 10 | }; 11 | 12 | const router = new VueRouter({ 13 | mode: 'hash', 14 | routes: [ 15 | { 16 | path: '/', 17 | redirect: '/login', 18 | }, 19 | { 20 | path: '/login', 21 | name: 'login', 22 | component: () => import('../views/login.vue'), 23 | }, 24 | ], 25 | }); 26 | 27 | export default router; 28 | -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue'; 2 | import App from './App.vue'; 3 | import router from './router'; 4 | import store from './store'; 5 | 6 | // import "echarts" 7 | // import Echarts from "vue-echarts" 8 | // Vue.component("Echarts", Echarts) 9 | 10 | // 封装一个全局请求图片资源的函数 11 | import { requireImg } from '@/utils/requireImg'; 12 | Vue.prototype.requireImg = requireImg; 13 | 14 | import '@/assets/css/common.scss'; 15 | 16 | import Loading from 'element-ui/lib/loading'; 17 | Vue.use(Loading.directive); 18 | 19 | import VXETable from 'vxe-table'; 20 | import 'vxe-table/lib/style.css'; 21 | Vue.use(VXETable); 22 | 23 | new Vue({ 24 | router, 25 | store, 26 | render: (h) => h(App), 27 | }).$mount('#app'); 28 | -------------------------------------------------------------------------------- /plugin/zip.js: -------------------------------------------------------------------------------- 1 | // plugin/zip.js 2 | import { cwd } from 'node:process'; 3 | import path from 'path'; 4 | import compressing from 'compressing'; 5 | 6 | // 默认参数配置 7 | const defaultOption = { 8 | sourceName: 'docs', 9 | type: 'zip', 10 | targetName: 'docs', 11 | }; 12 | 13 | export function compression(options = defaultOption) { 14 | const sourceName = options.sourceName ?? 'docs'; 15 | const type = options.type ?? 'zip'; 16 | const targetName = options.targetName ?? 'docs'; 17 | const targetPath = path.resolve(cwd(), sourceName); 18 | const outputFile = path.resolve(cwd(), `${targetName}.${type}`); 19 | 20 | return { 21 | name: 'compression', 22 | closeBundle() { 23 | console.log(`📦 正在压缩目录: ${targetPath}`); 24 | compressing.zip 25 | .compressDir(targetPath, outputFile) 26 | .then(() => { 27 | console.log(`✅ 压缩完成,输出文件: ${outputFile}`); 28 | }) 29 | .catch((err) => { 30 | console.error(`❌ 压缩失败:`, err); 31 | }); 32 | }, 33 | }; 34 | } 35 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue2-ie-template", 3 | "version": "0.0.2", 4 | "scripts": { 5 | "dev": "npx simple-git-hooks & vite", 6 | "build": "vite build" 7 | }, 8 | "engines": { 9 | "node": ">=22.0.0" 10 | }, 11 | "dependencies": { 12 | "axios": "1.11.0", 13 | "dayjs": "^1.11.13", 14 | "element-ui": "^2.15.14", 15 | "vue": "^2.7.16", 16 | "vue-router": "^3.6.5", 17 | "vuex": "^3.6.2", 18 | "vxe-pc-ui": "3.7.30", 19 | "vxe-table": "^3.16.8", 20 | "xe-utils": "^3.7.8" 21 | }, 22 | "devDependencies": { 23 | "@babel/preset-env": "7.28.0", 24 | "@vitejs/plugin-legacy": "7.1.0", 25 | "@vitejs/plugin-vue2": "^2.3.3", 26 | "compressing": "1.10.3", 27 | "lint-staged": "^16.1.2", 28 | "prettier": "3.6.2", 29 | "simple-git-hooks": "^2.13.0", 30 | "terser": "5.43.1", 31 | "unplugin-auto-import": "19.3.0", 32 | "unplugin-vue-components": "^28.8.0", 33 | "vite": "7.0.6" 34 | }, 35 | "license": "MIT", 36 | "simple-git-hooks": { 37 | "pre-commit": "npx lint-staged" 38 | }, 39 | "packageManager": "pnpm@10.13.1", 40 | "lint-staged": { 41 | "*": [ 42 | "prettier --write --ignore-unknown" 43 | ] 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- 1 | name: Docs 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | paths: 8 | - src/** 9 | workflow_dispatch: 10 | branches: 11 | - main 12 | inputs: 13 | deploy: 14 | description: Deploy ? 15 | required: true 16 | default: false 17 | type: boolean 18 | 19 | jobs: 20 | docs: 21 | name: Docs 22 | runs-on: ubuntu-latest 23 | steps: 24 | - name: Checkout 25 | uses: actions/checkout@v3 26 | 27 | - name: Setup Node.js 28 | uses: actions/setup-node@v3 29 | with: 30 | node-version: 24 31 | 32 | - name: Install pnpm 33 | id: pnpm-install 34 | uses: pnpm/action-setup@v2 35 | with: 36 | version: 10 37 | run_install: false 38 | 39 | - name: Get pnpm store 40 | id: pnpm-store 41 | shell: bash 42 | run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT 43 | 44 | - name: Setup pnpm cache 45 | uses: actions/cache@v3 46 | with: 47 | path: ${{ steps.pnpm-store.outputs.STORE_PATH }} 48 | key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} 49 | restore-keys: ${{ runner.os }}-pnpm-store- 50 | 51 | - name: Install dependencies 52 | run: pnpm i --frozen-lockfile 53 | 54 | - name: Build docs 55 | run: pnpm run build 56 | 57 | - name: Deploy docs 58 | if: ${{ github.event_name == 'push' || inputs.deploy }} 59 | uses: peaceiris/actions-gh-pages@v3 60 | with: 61 | github_token: ${{ secrets.GITHUB_TOKEN }} 62 | publish_dir: docs 63 | -------------------------------------------------------------------------------- /src/utils/http.js: -------------------------------------------------------------------------------- 1 | import axios from 'axios'; 2 | import store from '../store'; 3 | import { ElMessage } from 'element-ui'; 4 | 5 | // 用于计算所有请求次数,等待所有请求结束后再关闭loading动画 6 | let loadingCount = 0; 7 | 8 | const instance = axios.create({ 9 | timeout: window.TIME, // 多长时间请求无果后结束 10 | baseURL: window.BASE_URL, // 接口地址在config.js中定义 11 | }); 12 | 13 | const CancelToken = axios.CancelToken; // 需要通过这个token主动关闭axios请求 14 | instance.interceptors.request.use( 15 | (req) => { 16 | const source = CancelToken.source(); 17 | req.cancelToken = source.token; 18 | store.commit('addRequest', source); 19 | loadingCount++; 20 | store.commit('loadStatus', true); 21 | return req; 22 | }, 23 | (error) => error 24 | ); 25 | instance.interceptors.response.use( 26 | (res) => { 27 | loadingCount--; 28 | if (loadingCount == 0) store.commit('loadStatus', false); 29 | if (res.status == 200) return res; 30 | }, 31 | (err) => { 32 | loadingCount--; 33 | if (loadingCount == 0) store.commit('loadStatus', false); 34 | if ( 35 | err.code === 'ECONNABORTED' && 36 | err.message.indexOf('timeout') !== -1 && 37 | !err.config._retry 38 | ) { 39 | return ElMessage.error('请求数据失败,请稍后再试'); 40 | } 41 | const { response } = err; 42 | errorHandle(response.status, response.data); 43 | return response; 44 | } 45 | ); 46 | const errorHandle = (status, other) => { 47 | switch (status) { 48 | case 400: 49 | ElMessage.error('信息校验失败'); 50 | break; 51 | case 401: 52 | ElMessage.error('认证失败'); 53 | break; 54 | case 403: 55 | ElMessage.error('token校验失败'); 56 | break; 57 | case 404: 58 | ElMessage.error('请求的资源不存在'); 59 | break; 60 | default: 61 | ElMessage.error(other); 62 | break; 63 | } 64 | }; 65 | 66 | export default instance; 67 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | // 指定换行的行长,默认80 3 | printWidth: 80, 4 | 5 | // 指定每个缩进级别的空格数,默认2 6 | tabWidth: 2, 7 | 8 | // 用制表符而不是空格缩进,默认false 9 | useTabs: false, 10 | 11 | // 在语句末尾添加分号,默认true 12 | semi: true, 13 | 14 | // 使用单引号而不是双引号,默认false 15 | singleQuote: true, 16 | 17 | // object对象中key值是否加引号,默认as-needed 18 | // as-needed-仅在需要时在对象属性周围添加引号 19 | // consistent-如果一个对象中至少有一个属性需要引号,所有属性添加引号 20 | // preserve-保留对象属性中用户输入使用的引号 21 | quoteProps: 'as-needed', 22 | 23 | // 在 JSX 中使用单引号而不是双引号,默认false 24 | jsxSingleQuote: false, 25 | 26 | // 在多行逗号分隔的句法结构中尽可能打印尾随逗号,默认es5 27 | // es5-在 ES5 中有效的尾随逗号(对象、数组等),TypeScript 的类型参数中没有尾随逗号 28 | // none-没有尾随逗号 29 | // all-尽可能以逗号结尾(包括函数参数和调用)。要运行以这种方式格式化的 JavaScript 代码需要一个支持 ES2017(Node.js 8+ 或现代浏览器)或下层编译的引擎。这还会在 TypeScript 的类型参数中启用尾随逗号(自 2018 年 1 月发布的 TypeScript 2.7 起支持) 30 | trailingComma: 'es5', 31 | 32 | // 对象字面量中括号之间的空格,默认true 33 | bracketSpacing: true, 34 | 35 | // 将>放在多行 HTML(HTML、JSX、Vue、Angular)元素最后一行的末尾,而不是单独放在下一行(不适用于自关闭元素),默认false 36 | // true: 37 | // 43 | // false: 44 | // 51 | bracketSameLine: true, 52 | 53 | // 在唯一的箭头函数参数周围包含括号,默认always 54 | // always-始终包含括号 55 | // avoid-尽可能省略括号 56 | arrowParens: 'always', 57 | 58 | // Prettier 可以限制自己只格式化在文件顶部包含特殊注释(称为 pragma)的文件。这在逐渐将大型、未格式化的代码库过渡到 Prettier 时非常有用,默认false 59 | requirePragma: false, 60 | 61 | // Prettier可以在文件的顶部插入一个 @format 的特殊注释,以表明该文件已经被Prettier格式化过了。在使用 --require-pragma 参数处理一连串的文件时这个功能将十分有用。如果文件顶部已经有一个doclock,这个选项将新建一行注释,并打上 @format 标记,默认false 62 | insertPragma: false, 63 | 64 | // 超过最大宽度是否换行,默认preserve 65 | // always-如果超过最大宽度换行 66 | // never-不要换行 67 | // preserve-按原样显示 68 | proseWrap: 'preserve', 69 | 70 | // 指定 HTML、Vue、Angular 和 Handlebars 的全局空格敏感度,默认css 71 | // css-遵循CSS属性的默认值 72 | // strict-所有标签周围的空格(或缺少空格)被认为是重要的 73 | // ignore-所有标签周围的空格(或缺少空格)被认为是无关紧要的 74 | htmlWhitespaceSensitivity: 'ignore', 75 | 76 | // vue文件script和style标签中是否缩进,默认false 77 | vueIndentScriptAndStyle: false, 78 | 79 | // 行尾换行符,默认lf 80 | endOfLine: 'lf', 81 | 82 | // 控制 Prettier 是否格式化嵌入在文件中的引用代码,默认auto 83 | // auto–如果 Prettier 可以自动识别,则格式化嵌入代码 84 | // off-从不自动格式化嵌入代码 85 | embeddedLanguageFormatting: 'auto', 86 | 87 | // 在 HTML、Vue 和 JSX 中强制执行每行单个属性,默认false 88 | singleAttributePerLine: true, 89 | }; 90 | -------------------------------------------------------------------------------- /src/views/login.vue: -------------------------------------------------------------------------------- 1 | 44 | 45 | 71 | 72 | 112 | -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import legacy from '@vitejs/plugin-legacy'; 3 | import vue2 from '@vitejs/plugin-vue2'; 4 | import { resolve } from 'path'; 5 | import Components from 'unplugin-vue-components/vite'; 6 | import { ElementUiResolver } from 'unplugin-vue-components/resolvers'; 7 | import AutoImport from 'unplugin-auto-import/vite'; 8 | // 打包后自动压缩生成zip,源码来自rollup-plugin-compression 9 | import { compression } from './plugin/zip.js'; 10 | 11 | export default ({ mode }) => { 12 | console.log(mode === 'development' ? '开发环境 ' + mode : '生产环境 ' + mode); 13 | return defineConfig({ 14 | base: './', // 根路径 15 | // 全局scss变量文件 16 | css: { 17 | preprocessorOptions: { 18 | scss: { 19 | additionalData: `@import "@/assets/css/element-variables.scss";`, 20 | charset: false, 21 | // 解决scss解析element-ui导致开发和生产出现很多废弃警告,通过以下两个配置关闭: 22 | silenceDeprecations: [ 23 | 'slash-div', 24 | 'import', 25 | 'mixed-decls', 26 | 'global-builtin', 27 | ], // 明确指定要“静音”的弃用警告类型 28 | quietDeps: true, // 第三方库的弃用警告,不打印 29 | }, 30 | }, 31 | }, 32 | build: { 33 | // 打包输出文件夹 34 | outDir: 'docs', 35 | sourcemap: true, 36 | }, 37 | plugins: [ 38 | vue2(), 39 | // 自动导入函数 40 | AutoImport({ 41 | imports: [ 42 | 'vue', 43 | 'vue-router', 44 | 'vuex', 45 | // 函数式组件需要手动引入 46 | { 47 | 'element-ui': [ 48 | ['Notification', 'notification'], 49 | ['Message', 'message'], 50 | ['MessageBox', 'messageBox'], 51 | ], 52 | }, 53 | ], 54 | dts: false, 55 | resolvers: [], 56 | }), 57 | //自动按需导入组件 58 | Components({ 59 | // unplugin-vue-components插件,开发环境按需导入会导致页面卡顿 60 | // https://github.com/antfu/unplugin-vue-components/issues/361 61 | // 生产环境再按需导入样式 62 | resolvers: [ 63 | ElementUiResolver({ 64 | importStyle: mode === 'development' ? false : 'sass', 65 | }), 66 | ], 67 | }), 68 | // 插件的作用请看项目readme 69 | { 70 | name: 'import-element-ui-style', 71 | enforce: 'pre', 72 | transform(code, id) { 73 | if (/common.scss$/.test(id)) { 74 | if (mode === 'development') { 75 | return { 76 | code: `${code} 77 | $--font-path: 'element-ui/lib/theme-chalk/fonts'; 78 | @import 'element-ui/packages/theme-chalk/src/index.scss';`, 79 | map: null, 80 | }; 81 | } 82 | } 83 | if (/src\/main.js$/.test(id)) { 84 | if (mode === 'production') { 85 | return { 86 | code: `${code} 87 | import 'element-ui/lib/theme-chalk/message.css'; 88 | import 'element-ui/lib/theme-chalk/notification.css'; 89 | import 'element-ui/lib/theme-chalk/message-box.css';`, 90 | map: null, 91 | }; 92 | } 93 | } 94 | }, 95 | }, 96 | legacy({ 97 | targets: ['ie >= 11'], 98 | additionalLegacyPolyfills: ['regenerator-runtime/runtime'], 99 | }), 100 | mode === 'production' ? compression() : null, 101 | ], 102 | resolve: { 103 | // 路径别名 104 | alias: { 105 | '@': resolve(__dirname, 'src'), 106 | '~@assets': resolve(__dirname, 'src/assets'), 107 | '@utils': resolve(__dirname, 'src/utils'), 108 | }, 109 | }, 110 | server: { 111 | // 设置代理 112 | proxy: { 113 | // "/test": "http://192.168.4.203:8112", 114 | }, 115 | port: 9007, // 端口号 116 | open: true, // 是否自动打开浏览器 117 | }, 118 | }); 119 | }; 120 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [EN](https://github.com/zqy233/vite-vue2-ie-template/blob/main/README-EN.md) | 中文 2 | 3 | # Vite + Vue 2 IE 兼容模板 4 | 5 | > ⚠️ Vue 3 **不支持 IE**。本模板使用 Vue 2 搭配 `@vitejs/plugin-legacy` 插件,在 **生产构建阶段** 兼容 IE11 和 IE10。 6 | > 7 | > 🧪 在线演示地址(支持 IE):[https://zqy233.github.io/vite-vue2-ie-template/#/login](https://zqy233.github.io/vite-vue2-ie-template/#/login) 8 | > ⚠️ 注意:IE 默认以兼容模式(IE7)打开页面,需手动切换为 IE11 或 IE10。 9 | 10 | ### ✅ 环境(建议使用最新版本) 11 | 12 | - Node.js:**v24.4.1** 13 | - pnpm:**v10.13.1** 14 | 15 | ### ⚠️ 重要说明 16 | 17 | #### 1. Vite 不再支持已结束维护的 Node.js 18 18 | 19 | Vite 要求使用 **Node.js 20.19+** 或 **22.12+**。 20 | 已验证 Node.js **v24.5.1** 可正常用于开发和构建。 21 | 22 | #### 2. 开发模式下 IE 白屏是正常现象 23 | 24 | `@vitejs/plugin-legacy` 插件仅在 **生产构建** 中生效,开发模式(`vite dev`)中不支持。 25 | 如需在 IE 中测试,请先执行构建,再在 IE 中打开构建产物。 26 | 27 | #### 3. IE 默认以兼容模式(IE7)打开页面,需手动切换为 IE11 或 IE10 28 | 29 | 建议使用 Microsoft Edge 的 IE 模式进行测试: 30 | 31 | **测试步骤:** 32 | 33 | 1. 执行构建,并使用 **Live Server**(VSCode 插件)打开构建输出目录中html。 34 | 2. 在 **Microsoft Edge** 中打开页面,并通过菜单切换到 IE 模式。 35 | 3. 使用 `IEChooser.exe` 工具选择浏览器标签页并切换 IE 版本: 36 | 37 | `Win + R → 输入 %systemroot%\system32\f12\IEChooser.exe`, 38 | 然后在右上角切换为 IE11/IE10。 39 | 40 | ✅ 已验证:IE11 和 IE10 可正常展示。 41 | ❌ 不支持更低版本(如 IE9 或 IE8)。 42 | 43 | --- 44 | 45 | ## 依赖概览 46 | 47 | 本项目使用与 Vue 2 兼容的最新依赖版本。 48 | 49 | | 依赖包名称 | 版本 | 说明 | 50 | | --------------------------------------------- | ------- | --------------------------------------- | 51 | | `vue` | 2.7.16 | Vue 2 最终版本 | 52 | | `vue-router` | 3.6.5 | Vue 2 对应的最终版本 | 53 | | `vuex` | 3.6.2 | Vue 2 对应的最终版本 | 54 | | `element-ui` | 2.15.14 | Vue 2 专用,Vue 3 请使用 `element-plus` | 55 | | `vxe-table` | 3.x | Vue 2 版本,强大的行内编辑表格 | 56 | | `sass` | 最新 | 已配置vite关闭旧版本 Sass 语法的警告 | 57 | | `@vitejs/plugin-legacy` | — | 为旧浏览器添加 polyfill 和语法降级 | 58 | | `simple-git-hooks`, `prettier`, `lint-staged` | — | 实现提交时自动格式化代码 | 59 | 60 | --- 61 | 62 | ## Vite 插件说明 63 | 64 | - [`unplugin-auto-import`](https://github.com/antfu/unplugin-auto-import):自动引入函数(支持 Vue 2.7 的组合式 API)。 65 | - [`unplugin-vue-components`](https://github.com/antfu/unplugin-vue-components):自动注册 `components` 目录下的 Vue 组件。 66 | - 可通过配置自动引入 **Element UI** 的组件及样式。 67 | 68 | --- 69 | 70 | ## 公共配置说明 71 | 72 | 全局配置(如 API 地址等)建议写在 `public/config.js` 中,避免被打包压缩。 73 | 74 | --- 75 | 76 | ## 🧩 已知问题与解决方案 77 | 78 |
79 | ⚡ unplugin-vue-components 按需导入样式导致vite热更新卡顿 80 | 81 | `unplugin-vue-components`插件,开发环境按需导入样式会导致 vite 热更新卡顿 82 | 83 | > https://github.com/antfu/unplugin-vue-components/issues/361 84 | 85 | **解决方案:** 86 | 开发模式下关闭样式自动引入,仅在生产环境启用: 87 | 88 | ```js 89 | Components({ 90 | resolvers: [ 91 | ElementUiResolver({ 92 | importStyle: mode === 'development' ? false : 'sass', 93 | }), 94 | ], 95 | }), 96 | ``` 97 | 98 | 对于 Element UI 的函数式组件(如 `$message`、`$notify` 等),样式不会自动引入,需在生产环境手动添加: 99 | 100 | ```js 101 | { 102 | name: 'import-element-ui-style', 103 | enforce: 'pre', 104 | transform(code, id) { 105 | if (/src\/main.js$/.test(id) && mode === 'production') { 106 | return { 107 | code: `${code} 108 | import 'element-ui/lib/theme-chalk/message.css'; 109 | import 'element-ui/lib/theme-chalk/notification.css'; 110 | import 'element-ui/lib/theme-chalk/message-box.css';`, 111 | map: null, 112 | } 113 | } 114 | }, 115 | }, 116 | ``` 117 | 118 |
119 | 120 |
121 | 🎨 element-ui 自定义主题色与unplugin-vue-components按需导入样式冲突解决 122 | 123 | element-ui 自定义主题色 https://element.eleme.cn/2.0/#/zh-CN/component/custom-theme 124 | 125 | #### 首先看下不使用`unplugin-vue-components`按需导入样式下怎么自定义主题色 126 | 127 | 创建`common.scss`文件,文件目录`src/assets/css/common.scss`,并在`main.js`中引入 128 | 129 | `common.scss`文件内容 130 | 131 | ```scss 132 | $--color-primary: #8956ff; 133 | $--font-path: 'element-ui/lib/theme-chalk/fonts'; 134 | @import 'element-ui/packages/theme-chalk/src/index.scss'; 135 | ``` 136 | 137 | `main.js`文件内容 138 | 139 | ```js 140 | import Vue from 'vue'; 141 | import Element from 'element-ui'; 142 | import '@/assets/css/common.scss'; 143 | 144 | Vue.use(Element); 145 | ``` 146 | 147 | 无需引入 Element 编译好的 CSS 文件`element-ui/lib/theme-chalk/index.css` 148 | 149 | #### 再看下使用`unplugin-vue-components`按需导入样式下怎么自定义主题色 150 | 151 | `common.scss`生产环境需要去除这两行,因为会与`unplugin-vue-components`按需导入样式冲突,重复导入样式了 152 | 153 | ```scss 154 | $--font-path: 'element-ui/lib/theme-chalk/fonts'; 155 | @import 'element-ui/packages/theme-chalk/src/index.scss'; 156 | ``` 157 | 158 | 新建一个`element-variables.scss`全局 scss 变量文件,将 element-ui 的主题变量如`$--color-primary: #8956ff;`等移动到该文件中,因为`unplugin-vue-components`的原因,需要在`additionalData`全局 scss 变量文件中定义主题变量才能生效 159 | 160 | 注意!这个 scss 变量文件只应该存放一些 scss 变量,如果在这个文件里`$--font-path: 'element-ui/lib/theme-chalk/fonts';@import 'element-ui/packages/theme-chalk/src/index.scss';`会导致每次页面热更新时都会编译所有 element-ui 变量,热更新会卡顿至 3 秒左右 161 | 162 | ```js 163 | css: { 164 | preprocessorOptions: { 165 | scss: { 166 | additionalData: `@import "src/assets/css/element-variables.scss";`, 167 | charset: false, 168 | }, 169 | }, 170 | }, 171 | ``` 172 | 173 | 定义一个 vite 插件,只有开发时才在`common.scss`中加入这两行代码 174 | 175 | ```js 176 | { 177 | name: 'import-element-ui-style', 178 | enforce: 'pre', 179 | transform(code, id) { 180 | if (/common.scss$/.test(id)) { 181 | if (mode === 'development') { 182 | return { 183 | code: `${code} 184 | $--font-path: 'element-ui/lib/theme-chalk/fonts'; 185 | @import 'element-ui/packages/theme-chalk/src/index.scss';`, 186 | map: null, 187 | }; 188 | } 189 | } 190 | ... 191 | }, 192 | }, 193 | ``` 194 | 195 |
196 | -------------------------------------------------------------------------------- /README-EN.md: -------------------------------------------------------------------------------- 1 | # Vite + Vue 2 IE-Compatible Template 2 | 3 | > ⚠️ Vue 3 **does not support IE**. This template uses Vue 2 with the `@vitejs/plugin-legacy` plugin to provide compatibility for IE11 and IE10 **during production builds only**. 4 | > 5 | > 🧪 Live demo (IE supported): [https://zqy233.github.io/vite-vue2-ie-template/#/login](https://zqy233.github.io/vite-vue2-ie-template/#/login) 6 | > ⚠️ Note: IE opens pages in compatibility mode (IE7) by default. You must manually switch to IE11 or IE10. 7 | 8 | ### ✅ Environment (latest versions recommended) 9 | 10 | - Node.js: **v24.4.1** 11 | - pnpm: **v10.13.1** 12 | 13 | ### ⚠️ Important Notes 14 | 15 | #### 1. Vite no longer supports Node.js 18, which has reached end-of-life 16 | 17 | Vite requires **Node.js 20.19+** or **22.12+**. 18 | Node.js **v24.5.1** has been tested and confirmed to work for both development and build. 19 | 20 | #### 2. White screen in IE during development is expected 21 | 22 | The `@vitejs/plugin-legacy` plugin is only effective **in production builds**, and does **not** support development mode (`vite dev`). 23 | To test in IE, please build the project first, then open the output in IE. 24 | 25 | #### 3. IE opens in compatibility mode (IE7) by default; you must manually switch to IE11 or IE10 26 | 27 | It’s recommended to test using Microsoft Edge's IE mode: 28 | 29 | **Testing Steps:** 30 | 31 | 1. Build the project and open the generated HTML with **Live Server** (VSCode extension). 32 | 2. Open the page in **Microsoft Edge**, and switch to IE mode via the menu. 33 | 3. Use the `IEChooser.exe` tool to select a browser tab and switch IE version: 34 | 35 | `Win + R → type %systemroot%\system32\f12\IEChooser.exe`, 36 | then switch to IE11/IE10 from the top-right menu. 37 | 38 | ✅ Verified: IE11 and IE10 display correctly. 39 | ❌ Lower versions (e.g., IE9 or IE8) are not supported. 40 | 41 | --- 42 | 43 | ## Dependency Overview 44 | 45 | This project uses the latest versions compatible with Vue 2. 46 | 47 | | Dependency Name | Version | Notes | 48 | | --------------------------------------------- | ------- | -------------------------------------------------------- | 49 | | `vue` | 2.7.16 | Final Vue 2 release | 50 | | `vue-router` | 3.6.5 | Final version compatible with Vue 2 | 51 | | `vuex` | 3.6.2 | Final version compatible with Vue 2 | 52 | | `element-ui` | 2.15.14 | For Vue 2 only. Use `element-plus` for Vue 3 | 53 | | `vxe-table` | 3.x | Vue 2 version with powerful inline editing | 54 | | `sass` | latest | Configured in vite to silence old syntax warnings | 55 | | `@vitejs/plugin-legacy` | — | Adds polyfills and syntax transforms for legacy browsers | 56 | | `simple-git-hooks`, `prettier`, `lint-staged` | — | Enables auto-formatting on commit | 57 | 58 | --- 59 | 60 | ## Vite Plugin Overview 61 | 62 | - [`unplugin-auto-import`](https://github.com/antfu/unplugin-auto-import): Auto-imports functions (supports Vue 2.7 Composition API). 63 | - [`unplugin-vue-components`](https://github.com/antfu/unplugin-vue-components): Auto-registers components from the `components` directory. 64 | - Can be configured to auto-import **Element UI** components and styles. 65 | 66 | --- 67 | 68 | ## Public Config Instructions 69 | 70 | Global configuration (e.g., API URLs) is recommended to be placed in `public/config.js` to avoid being bundled and minified. 71 | 72 | --- 73 | 74 | ## 🧩 Known Issues & Solutions 75 | 76 |
77 | ⚡ Vite HMR slows down when using style auto-import from unplugin-vue-components 78 | 79 | When using the `unplugin-vue-components` plugin, enabling style auto-import in development mode can slow down Vite HMR significantly. 80 | 81 | > [https://github.com/antfu/unplugin-vue-components/issues/361](https://github.com/antfu/unplugin-vue-components/issues/361) 82 | 83 | **Solution:** 84 | Disable style auto-import in development mode, enable only in production: 85 | 86 | ```js 87 | Components({ 88 | resolvers: [ 89 | ElementUiResolver({ 90 | importStyle: mode === 'development' ? false : 'sass', 91 | }), 92 | ], 93 | }), 94 | ``` 95 | 96 | For Element UI functional components (like `$message`, `$notify`, etc.), styles are not auto-imported and need to be manually added in production: 97 | 98 | ```js 99 | { 100 | name: 'import-element-ui-style', 101 | enforce: 'pre', 102 | transform(code, id) { 103 | if (/src\/main.js$/.test(id) && mode === 'production') { 104 | return { 105 | code: `${code} 106 | import 'element-ui/lib/theme-chalk/message.css'; 107 | import 'element-ui/lib/theme-chalk/notification.css'; 108 | import 'element-ui/lib/theme-chalk/message-box.css';`, 109 | map: null, 110 | } 111 | } 112 | }, 113 | }, 114 | ``` 115 | 116 |
117 | 118 |
119 | 🎨 Resolving conflicts between Element UI custom theme and unplugin-vue-components style import 120 | 121 | Element UI custom theme documentation: [https://element.eleme.cn/2.0/#/zh-CN/component/custom-theme](https://element.eleme.cn/2.0/#/zh-CN/component/custom-theme) 122 | 123 | #### First, without using `unplugin-vue-components` style import 124 | 125 | Create a `common.scss` file under `src/assets/css/common.scss`, and import it in `main.js`. 126 | 127 | `common.scss` content: 128 | 129 | ```scss 130 | $--color-primary: #8956ff; 131 | $--font-path: 'element-ui/lib/theme-chalk/fonts'; 132 | @import 'element-ui/packages/theme-chalk/src/index.scss'; 133 | ``` 134 | 135 | `main.js` content: 136 | 137 | ```js 138 | import Vue from 'vue'; 139 | import Element from 'element-ui'; 140 | import '@/assets/css/common.scss'; 141 | 142 | Vue.use(Element); 143 | ``` 144 | 145 | No need to import precompiled Element UI CSS (`element-ui/lib/theme-chalk/index.css`). 146 | 147 | #### Then, when using `unplugin-vue-components` with style auto-import 148 | 149 | In production, remove these two lines from `common.scss` to avoid conflicts and duplicate imports: 150 | 151 | ```scss 152 | $--font-path: 'element-ui/lib/theme-chalk/fonts'; 153 | @import 'element-ui/packages/theme-chalk/src/index.scss'; 154 | ``` 155 | 156 | Create a new `element-variables.scss` file for global SCSS variables. Move variables like `$--color-primary: #8956ff;` to this file. 157 | Due to `unplugin-vue-components`, these theme variables must be defined in `additionalData` for them to take effect. 158 | 159 | **Important:** This SCSS file should only contain variables. 160 | If you add `$--font-path: ...` or `@import '.../index.scss';`, it will trigger full Element UI recompilation during each hot update and cause \~3s HMR lag. 161 | 162 | ```js 163 | css: { 164 | preprocessorOptions: { 165 | scss: { 166 | additionalData: `@import "src/assets/css/element-variables.scss";`, 167 | charset: false, 168 | }, 169 | }, 170 | }, 171 | ``` 172 | 173 | Define a Vite plugin to inject those two lines into `common.scss` **only in development** mode: 174 | 175 | ```js 176 | { 177 | name: 'import-element-ui-style', 178 | enforce: 'pre', 179 | transform(code, id) { 180 | if (/common.scss$/.test(id)) { 181 | if (mode === 'development') { 182 | return { 183 | code: `${code} 184 | $--font-path: 'element-ui/lib/theme-chalk/fonts'; 185 | @import 'element-ui/packages/theme-chalk/src/index.scss';`, 186 | map: null, 187 | }; 188 | } 189 | } 190 | ... 191 | }, 192 | }, 193 | ``` 194 | 195 |
196 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | .: 9 | dependencies: 10 | axios: 11 | specifier: 1.11.0 12 | version: 1.11.0 13 | dayjs: 14 | specifier: ^1.11.13 15 | version: 1.11.13 16 | element-ui: 17 | specifier: ^2.15.14 18 | version: 2.15.14(vue@2.7.16) 19 | vue: 20 | specifier: ^2.7.16 21 | version: 2.7.16 22 | vue-router: 23 | specifier: ^3.6.5 24 | version: 3.6.5(vue@2.7.16) 25 | vuex: 26 | specifier: ^3.6.2 27 | version: 3.6.2(vue@2.7.16) 28 | vxe-pc-ui: 29 | specifier: 3.7.30 30 | version: 3.7.30(vue@2.7.16) 31 | vxe-table: 32 | specifier: ^3.16.8 33 | version: 3.16.8(vue@2.7.16) 34 | xe-utils: 35 | specifier: ^3.7.8 36 | version: 3.7.8 37 | devDependencies: 38 | '@babel/preset-env': 39 | specifier: 7.28.0 40 | version: 7.28.0(@babel/core@7.28.0) 41 | '@vitejs/plugin-legacy': 42 | specifier: 7.1.0 43 | version: 7.1.0(terser@5.43.1)(vite@7.0.6(sass@1.89.2)(terser@5.43.1)(yaml@2.8.0)) 44 | '@vitejs/plugin-vue2': 45 | specifier: ^2.3.3 46 | version: 2.3.3(vite@7.0.6(sass@1.89.2)(terser@5.43.1)(yaml@2.8.0))(vue@2.7.16) 47 | compressing: 48 | specifier: 1.10.3 49 | version: 1.10.3 50 | lint-staged: 51 | specifier: ^16.1.2 52 | version: 16.1.2 53 | prettier: 54 | specifier: 3.6.2 55 | version: 3.6.2 56 | simple-git-hooks: 57 | specifier: ^2.13.0 58 | version: 2.13.0 59 | terser: 60 | specifier: 5.43.1 61 | version: 5.43.1 62 | unplugin-auto-import: 63 | specifier: 19.3.0 64 | version: 19.3.0 65 | unplugin-vue-components: 66 | specifier: ^28.8.0 67 | version: 28.8.0(@babel/parser@7.28.0)(vue@2.7.16) 68 | vite: 69 | specifier: 7.0.6 70 | version: 7.0.6(sass@1.89.2)(terser@5.43.1)(yaml@2.8.0) 71 | 72 | packages: 73 | '@ampproject/remapping@2.3.0': 74 | resolution: 75 | { 76 | integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==, 77 | } 78 | engines: { node: '>=6.0.0' } 79 | 80 | '@babel/code-frame@7.27.1': 81 | resolution: 82 | { 83 | integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==, 84 | } 85 | engines: { node: '>=6.9.0' } 86 | 87 | '@babel/compat-data@7.28.0': 88 | resolution: 89 | { 90 | integrity: sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==, 91 | } 92 | engines: { node: '>=6.9.0' } 93 | 94 | '@babel/core@7.28.0': 95 | resolution: 96 | { 97 | integrity: sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==, 98 | } 99 | engines: { node: '>=6.9.0' } 100 | 101 | '@babel/generator@7.28.0': 102 | resolution: 103 | { 104 | integrity: sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==, 105 | } 106 | engines: { node: '>=6.9.0' } 107 | 108 | '@babel/helper-annotate-as-pure@7.27.3': 109 | resolution: 110 | { 111 | integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==, 112 | } 113 | engines: { node: '>=6.9.0' } 114 | 115 | '@babel/helper-compilation-targets@7.27.2': 116 | resolution: 117 | { 118 | integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==, 119 | } 120 | engines: { node: '>=6.9.0' } 121 | 122 | '@babel/helper-create-class-features-plugin@7.27.1': 123 | resolution: 124 | { 125 | integrity: sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==, 126 | } 127 | engines: { node: '>=6.9.0' } 128 | peerDependencies: 129 | '@babel/core': ^7.0.0 130 | 131 | '@babel/helper-create-regexp-features-plugin@7.27.1': 132 | resolution: 133 | { 134 | integrity: sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==, 135 | } 136 | engines: { node: '>=6.9.0' } 137 | peerDependencies: 138 | '@babel/core': ^7.0.0 139 | 140 | '@babel/helper-define-polyfill-provider@0.6.5': 141 | resolution: 142 | { 143 | integrity: sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==, 144 | } 145 | peerDependencies: 146 | '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 147 | 148 | '@babel/helper-globals@7.28.0': 149 | resolution: 150 | { 151 | integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==, 152 | } 153 | engines: { node: '>=6.9.0' } 154 | 155 | '@babel/helper-member-expression-to-functions@7.27.1': 156 | resolution: 157 | { 158 | integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==, 159 | } 160 | engines: { node: '>=6.9.0' } 161 | 162 | '@babel/helper-module-imports@7.27.1': 163 | resolution: 164 | { 165 | integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==, 166 | } 167 | engines: { node: '>=6.9.0' } 168 | 169 | '@babel/helper-module-transforms@7.27.3': 170 | resolution: 171 | { 172 | integrity: sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==, 173 | } 174 | engines: { node: '>=6.9.0' } 175 | peerDependencies: 176 | '@babel/core': ^7.0.0 177 | 178 | '@babel/helper-optimise-call-expression@7.27.1': 179 | resolution: 180 | { 181 | integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==, 182 | } 183 | engines: { node: '>=6.9.0' } 184 | 185 | '@babel/helper-plugin-utils@7.27.1': 186 | resolution: 187 | { 188 | integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==, 189 | } 190 | engines: { node: '>=6.9.0' } 191 | 192 | '@babel/helper-remap-async-to-generator@7.27.1': 193 | resolution: 194 | { 195 | integrity: sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==, 196 | } 197 | engines: { node: '>=6.9.0' } 198 | peerDependencies: 199 | '@babel/core': ^7.0.0 200 | 201 | '@babel/helper-replace-supers@7.27.1': 202 | resolution: 203 | { 204 | integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==, 205 | } 206 | engines: { node: '>=6.9.0' } 207 | peerDependencies: 208 | '@babel/core': ^7.0.0 209 | 210 | '@babel/helper-skip-transparent-expression-wrappers@7.27.1': 211 | resolution: 212 | { 213 | integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==, 214 | } 215 | engines: { node: '>=6.9.0' } 216 | 217 | '@babel/helper-string-parser@7.27.1': 218 | resolution: 219 | { 220 | integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==, 221 | } 222 | engines: { node: '>=6.9.0' } 223 | 224 | '@babel/helper-validator-identifier@7.27.1': 225 | resolution: 226 | { 227 | integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==, 228 | } 229 | engines: { node: '>=6.9.0' } 230 | 231 | '@babel/helper-validator-option@7.27.1': 232 | resolution: 233 | { 234 | integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==, 235 | } 236 | engines: { node: '>=6.9.0' } 237 | 238 | '@babel/helper-wrap-function@7.27.1': 239 | resolution: 240 | { 241 | integrity: sha512-NFJK2sHUvrjo8wAU/nQTWU890/zB2jj0qBcCbZbbf+005cAsv6tMjXz31fBign6M5ov1o0Bllu+9nbqkfsjjJQ==, 242 | } 243 | engines: { node: '>=6.9.0' } 244 | 245 | '@babel/helpers@7.28.2': 246 | resolution: 247 | { 248 | integrity: sha512-/V9771t+EgXz62aCcyofnQhGM8DQACbRhvzKFsXKC9QM+5MadF8ZmIm0crDMaz3+o0h0zXfJnd4EhbYbxsrcFw==, 249 | } 250 | engines: { node: '>=6.9.0' } 251 | 252 | '@babel/parser@7.28.0': 253 | resolution: 254 | { 255 | integrity: sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==, 256 | } 257 | engines: { node: '>=6.0.0' } 258 | hasBin: true 259 | 260 | '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1': 261 | resolution: 262 | { 263 | integrity: sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA==, 264 | } 265 | engines: { node: '>=6.9.0' } 266 | peerDependencies: 267 | '@babel/core': ^7.0.0 268 | 269 | '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1': 270 | resolution: 271 | { 272 | integrity: sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==, 273 | } 274 | engines: { node: '>=6.9.0' } 275 | peerDependencies: 276 | '@babel/core': ^7.0.0 277 | 278 | '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1': 279 | resolution: 280 | { 281 | integrity: sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==, 282 | } 283 | engines: { node: '>=6.9.0' } 284 | peerDependencies: 285 | '@babel/core': ^7.0.0 286 | 287 | '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1': 288 | resolution: 289 | { 290 | integrity: sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==, 291 | } 292 | engines: { node: '>=6.9.0' } 293 | peerDependencies: 294 | '@babel/core': ^7.13.0 295 | 296 | '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1': 297 | resolution: 298 | { 299 | integrity: sha512-6BpaYGDavZqkI6yT+KSPdpZFfpnd68UKXbcjI9pJ13pvHhPrCKWOOLp+ysvMeA+DxnhuPpgIaRpxRxo5A9t5jw==, 300 | } 301 | engines: { node: '>=6.9.0' } 302 | peerDependencies: 303 | '@babel/core': ^7.0.0 304 | 305 | '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2': 306 | resolution: 307 | { 308 | integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==, 309 | } 310 | engines: { node: '>=6.9.0' } 311 | peerDependencies: 312 | '@babel/core': ^7.0.0-0 313 | 314 | '@babel/plugin-syntax-import-assertions@7.27.1': 315 | resolution: 316 | { 317 | integrity: sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==, 318 | } 319 | engines: { node: '>=6.9.0' } 320 | peerDependencies: 321 | '@babel/core': ^7.0.0-0 322 | 323 | '@babel/plugin-syntax-import-attributes@7.27.1': 324 | resolution: 325 | { 326 | integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==, 327 | } 328 | engines: { node: '>=6.9.0' } 329 | peerDependencies: 330 | '@babel/core': ^7.0.0-0 331 | 332 | '@babel/plugin-syntax-unicode-sets-regex@7.18.6': 333 | resolution: 334 | { 335 | integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==, 336 | } 337 | engines: { node: '>=6.9.0' } 338 | peerDependencies: 339 | '@babel/core': ^7.0.0 340 | 341 | '@babel/plugin-transform-arrow-functions@7.27.1': 342 | resolution: 343 | { 344 | integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==, 345 | } 346 | engines: { node: '>=6.9.0' } 347 | peerDependencies: 348 | '@babel/core': ^7.0.0-0 349 | 350 | '@babel/plugin-transform-async-generator-functions@7.28.0': 351 | resolution: 352 | { 353 | integrity: sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q==, 354 | } 355 | engines: { node: '>=6.9.0' } 356 | peerDependencies: 357 | '@babel/core': ^7.0.0-0 358 | 359 | '@babel/plugin-transform-async-to-generator@7.27.1': 360 | resolution: 361 | { 362 | integrity: sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==, 363 | } 364 | engines: { node: '>=6.9.0' } 365 | peerDependencies: 366 | '@babel/core': ^7.0.0-0 367 | 368 | '@babel/plugin-transform-block-scoped-functions@7.27.1': 369 | resolution: 370 | { 371 | integrity: sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==, 372 | } 373 | engines: { node: '>=6.9.0' } 374 | peerDependencies: 375 | '@babel/core': ^7.0.0-0 376 | 377 | '@babel/plugin-transform-block-scoping@7.28.0': 378 | resolution: 379 | { 380 | integrity: sha512-gKKnwjpdx5sER/wl0WN0efUBFzF/56YZO0RJrSYP4CljXnP31ByY7fol89AzomdlLNzI36AvOTmYHsnZTCkq8Q==, 381 | } 382 | engines: { node: '>=6.9.0' } 383 | peerDependencies: 384 | '@babel/core': ^7.0.0-0 385 | 386 | '@babel/plugin-transform-class-properties@7.27.1': 387 | resolution: 388 | { 389 | integrity: sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==, 390 | } 391 | engines: { node: '>=6.9.0' } 392 | peerDependencies: 393 | '@babel/core': ^7.0.0-0 394 | 395 | '@babel/plugin-transform-class-static-block@7.27.1': 396 | resolution: 397 | { 398 | integrity: sha512-s734HmYU78MVzZ++joYM+NkJusItbdRcbm+AGRgJCt3iA+yux0QpD9cBVdz3tKyrjVYWRl7j0mHSmv4lhV0aoA==, 399 | } 400 | engines: { node: '>=6.9.0' } 401 | peerDependencies: 402 | '@babel/core': ^7.12.0 403 | 404 | '@babel/plugin-transform-classes@7.28.0': 405 | resolution: 406 | { 407 | integrity: sha512-IjM1IoJNw72AZFlj33Cu8X0q2XK/6AaVC3jQu+cgQ5lThWD5ajnuUAml80dqRmOhmPkTH8uAwnpMu9Rvj0LTRA==, 408 | } 409 | engines: { node: '>=6.9.0' } 410 | peerDependencies: 411 | '@babel/core': ^7.0.0-0 412 | 413 | '@babel/plugin-transform-computed-properties@7.27.1': 414 | resolution: 415 | { 416 | integrity: sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==, 417 | } 418 | engines: { node: '>=6.9.0' } 419 | peerDependencies: 420 | '@babel/core': ^7.0.0-0 421 | 422 | '@babel/plugin-transform-destructuring@7.28.0': 423 | resolution: 424 | { 425 | integrity: sha512-v1nrSMBiKcodhsyJ4Gf+Z0U/yawmJDBOTpEB3mcQY52r9RIyPneGyAS/yM6seP/8I+mWI3elOMtT5dB8GJVs+A==, 426 | } 427 | engines: { node: '>=6.9.0' } 428 | peerDependencies: 429 | '@babel/core': ^7.0.0-0 430 | 431 | '@babel/plugin-transform-dotall-regex@7.27.1': 432 | resolution: 433 | { 434 | integrity: sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==, 435 | } 436 | engines: { node: '>=6.9.0' } 437 | peerDependencies: 438 | '@babel/core': ^7.0.0-0 439 | 440 | '@babel/plugin-transform-duplicate-keys@7.27.1': 441 | resolution: 442 | { 443 | integrity: sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==, 444 | } 445 | engines: { node: '>=6.9.0' } 446 | peerDependencies: 447 | '@babel/core': ^7.0.0-0 448 | 449 | '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1': 450 | resolution: 451 | { 452 | integrity: sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==, 453 | } 454 | engines: { node: '>=6.9.0' } 455 | peerDependencies: 456 | '@babel/core': ^7.0.0 457 | 458 | '@babel/plugin-transform-dynamic-import@7.27.1': 459 | resolution: 460 | { 461 | integrity: sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==, 462 | } 463 | engines: { node: '>=6.9.0' } 464 | peerDependencies: 465 | '@babel/core': ^7.0.0-0 466 | 467 | '@babel/plugin-transform-explicit-resource-management@7.28.0': 468 | resolution: 469 | { 470 | integrity: sha512-K8nhUcn3f6iB+P3gwCv/no7OdzOZQcKchW6N389V6PD8NUWKZHzndOd9sPDVbMoBsbmjMqlB4L9fm+fEFNVlwQ==, 471 | } 472 | engines: { node: '>=6.9.0' } 473 | peerDependencies: 474 | '@babel/core': ^7.0.0-0 475 | 476 | '@babel/plugin-transform-exponentiation-operator@7.27.1': 477 | resolution: 478 | { 479 | integrity: sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==, 480 | } 481 | engines: { node: '>=6.9.0' } 482 | peerDependencies: 483 | '@babel/core': ^7.0.0-0 484 | 485 | '@babel/plugin-transform-export-namespace-from@7.27.1': 486 | resolution: 487 | { 488 | integrity: sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==, 489 | } 490 | engines: { node: '>=6.9.0' } 491 | peerDependencies: 492 | '@babel/core': ^7.0.0-0 493 | 494 | '@babel/plugin-transform-for-of@7.27.1': 495 | resolution: 496 | { 497 | integrity: sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==, 498 | } 499 | engines: { node: '>=6.9.0' } 500 | peerDependencies: 501 | '@babel/core': ^7.0.0-0 502 | 503 | '@babel/plugin-transform-function-name@7.27.1': 504 | resolution: 505 | { 506 | integrity: sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==, 507 | } 508 | engines: { node: '>=6.9.0' } 509 | peerDependencies: 510 | '@babel/core': ^7.0.0-0 511 | 512 | '@babel/plugin-transform-json-strings@7.27.1': 513 | resolution: 514 | { 515 | integrity: sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==, 516 | } 517 | engines: { node: '>=6.9.0' } 518 | peerDependencies: 519 | '@babel/core': ^7.0.0-0 520 | 521 | '@babel/plugin-transform-literals@7.27.1': 522 | resolution: 523 | { 524 | integrity: sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==, 525 | } 526 | engines: { node: '>=6.9.0' } 527 | peerDependencies: 528 | '@babel/core': ^7.0.0-0 529 | 530 | '@babel/plugin-transform-logical-assignment-operators@7.27.1': 531 | resolution: 532 | { 533 | integrity: sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==, 534 | } 535 | engines: { node: '>=6.9.0' } 536 | peerDependencies: 537 | '@babel/core': ^7.0.0-0 538 | 539 | '@babel/plugin-transform-member-expression-literals@7.27.1': 540 | resolution: 541 | { 542 | integrity: sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==, 543 | } 544 | engines: { node: '>=6.9.0' } 545 | peerDependencies: 546 | '@babel/core': ^7.0.0-0 547 | 548 | '@babel/plugin-transform-modules-amd@7.27.1': 549 | resolution: 550 | { 551 | integrity: sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==, 552 | } 553 | engines: { node: '>=6.9.0' } 554 | peerDependencies: 555 | '@babel/core': ^7.0.0-0 556 | 557 | '@babel/plugin-transform-modules-commonjs@7.27.1': 558 | resolution: 559 | { 560 | integrity: sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==, 561 | } 562 | engines: { node: '>=6.9.0' } 563 | peerDependencies: 564 | '@babel/core': ^7.0.0-0 565 | 566 | '@babel/plugin-transform-modules-systemjs@7.27.1': 567 | resolution: 568 | { 569 | integrity: sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA==, 570 | } 571 | engines: { node: '>=6.9.0' } 572 | peerDependencies: 573 | '@babel/core': ^7.0.0-0 574 | 575 | '@babel/plugin-transform-modules-umd@7.27.1': 576 | resolution: 577 | { 578 | integrity: sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==, 579 | } 580 | engines: { node: '>=6.9.0' } 581 | peerDependencies: 582 | '@babel/core': ^7.0.0-0 583 | 584 | '@babel/plugin-transform-named-capturing-groups-regex@7.27.1': 585 | resolution: 586 | { 587 | integrity: sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==, 588 | } 589 | engines: { node: '>=6.9.0' } 590 | peerDependencies: 591 | '@babel/core': ^7.0.0 592 | 593 | '@babel/plugin-transform-new-target@7.27.1': 594 | resolution: 595 | { 596 | integrity: sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==, 597 | } 598 | engines: { node: '>=6.9.0' } 599 | peerDependencies: 600 | '@babel/core': ^7.0.0-0 601 | 602 | '@babel/plugin-transform-nullish-coalescing-operator@7.27.1': 603 | resolution: 604 | { 605 | integrity: sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==, 606 | } 607 | engines: { node: '>=6.9.0' } 608 | peerDependencies: 609 | '@babel/core': ^7.0.0-0 610 | 611 | '@babel/plugin-transform-numeric-separator@7.27.1': 612 | resolution: 613 | { 614 | integrity: sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==, 615 | } 616 | engines: { node: '>=6.9.0' } 617 | peerDependencies: 618 | '@babel/core': ^7.0.0-0 619 | 620 | '@babel/plugin-transform-object-rest-spread@7.28.0': 621 | resolution: 622 | { 623 | integrity: sha512-9VNGikXxzu5eCiQjdE4IZn8sb9q7Xsk5EXLDBKUYg1e/Tve8/05+KJEtcxGxAgCY5t/BpKQM+JEL/yT4tvgiUA==, 624 | } 625 | engines: { node: '>=6.9.0' } 626 | peerDependencies: 627 | '@babel/core': ^7.0.0-0 628 | 629 | '@babel/plugin-transform-object-super@7.27.1': 630 | resolution: 631 | { 632 | integrity: sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==, 633 | } 634 | engines: { node: '>=6.9.0' } 635 | peerDependencies: 636 | '@babel/core': ^7.0.0-0 637 | 638 | '@babel/plugin-transform-optional-catch-binding@7.27.1': 639 | resolution: 640 | { 641 | integrity: sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==, 642 | } 643 | engines: { node: '>=6.9.0' } 644 | peerDependencies: 645 | '@babel/core': ^7.0.0-0 646 | 647 | '@babel/plugin-transform-optional-chaining@7.27.1': 648 | resolution: 649 | { 650 | integrity: sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==, 651 | } 652 | engines: { node: '>=6.9.0' } 653 | peerDependencies: 654 | '@babel/core': ^7.0.0-0 655 | 656 | '@babel/plugin-transform-parameters@7.27.7': 657 | resolution: 658 | { 659 | integrity: sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==, 660 | } 661 | engines: { node: '>=6.9.0' } 662 | peerDependencies: 663 | '@babel/core': ^7.0.0-0 664 | 665 | '@babel/plugin-transform-private-methods@7.27.1': 666 | resolution: 667 | { 668 | integrity: sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==, 669 | } 670 | engines: { node: '>=6.9.0' } 671 | peerDependencies: 672 | '@babel/core': ^7.0.0-0 673 | 674 | '@babel/plugin-transform-private-property-in-object@7.27.1': 675 | resolution: 676 | { 677 | integrity: sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==, 678 | } 679 | engines: { node: '>=6.9.0' } 680 | peerDependencies: 681 | '@babel/core': ^7.0.0-0 682 | 683 | '@babel/plugin-transform-property-literals@7.27.1': 684 | resolution: 685 | { 686 | integrity: sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==, 687 | } 688 | engines: { node: '>=6.9.0' } 689 | peerDependencies: 690 | '@babel/core': ^7.0.0-0 691 | 692 | '@babel/plugin-transform-regenerator@7.28.1': 693 | resolution: 694 | { 695 | integrity: sha512-P0QiV/taaa3kXpLY+sXla5zec4E+4t4Aqc9ggHlfZ7a2cp8/x/Gv08jfwEtn9gnnYIMvHx6aoOZ8XJL8eU71Dg==, 696 | } 697 | engines: { node: '>=6.9.0' } 698 | peerDependencies: 699 | '@babel/core': ^7.0.0-0 700 | 701 | '@babel/plugin-transform-regexp-modifiers@7.27.1': 702 | resolution: 703 | { 704 | integrity: sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==, 705 | } 706 | engines: { node: '>=6.9.0' } 707 | peerDependencies: 708 | '@babel/core': ^7.0.0 709 | 710 | '@babel/plugin-transform-reserved-words@7.27.1': 711 | resolution: 712 | { 713 | integrity: sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==, 714 | } 715 | engines: { node: '>=6.9.0' } 716 | peerDependencies: 717 | '@babel/core': ^7.0.0-0 718 | 719 | '@babel/plugin-transform-shorthand-properties@7.27.1': 720 | resolution: 721 | { 722 | integrity: sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==, 723 | } 724 | engines: { node: '>=6.9.0' } 725 | peerDependencies: 726 | '@babel/core': ^7.0.0-0 727 | 728 | '@babel/plugin-transform-spread@7.27.1': 729 | resolution: 730 | { 731 | integrity: sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==, 732 | } 733 | engines: { node: '>=6.9.0' } 734 | peerDependencies: 735 | '@babel/core': ^7.0.0-0 736 | 737 | '@babel/plugin-transform-sticky-regex@7.27.1': 738 | resolution: 739 | { 740 | integrity: sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==, 741 | } 742 | engines: { node: '>=6.9.0' } 743 | peerDependencies: 744 | '@babel/core': ^7.0.0-0 745 | 746 | '@babel/plugin-transform-template-literals@7.27.1': 747 | resolution: 748 | { 749 | integrity: sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==, 750 | } 751 | engines: { node: '>=6.9.0' } 752 | peerDependencies: 753 | '@babel/core': ^7.0.0-0 754 | 755 | '@babel/plugin-transform-typeof-symbol@7.27.1': 756 | resolution: 757 | { 758 | integrity: sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==, 759 | } 760 | engines: { node: '>=6.9.0' } 761 | peerDependencies: 762 | '@babel/core': ^7.0.0-0 763 | 764 | '@babel/plugin-transform-unicode-escapes@7.27.1': 765 | resolution: 766 | { 767 | integrity: sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==, 768 | } 769 | engines: { node: '>=6.9.0' } 770 | peerDependencies: 771 | '@babel/core': ^7.0.0-0 772 | 773 | '@babel/plugin-transform-unicode-property-regex@7.27.1': 774 | resolution: 775 | { 776 | integrity: sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==, 777 | } 778 | engines: { node: '>=6.9.0' } 779 | peerDependencies: 780 | '@babel/core': ^7.0.0-0 781 | 782 | '@babel/plugin-transform-unicode-regex@7.27.1': 783 | resolution: 784 | { 785 | integrity: sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==, 786 | } 787 | engines: { node: '>=6.9.0' } 788 | peerDependencies: 789 | '@babel/core': ^7.0.0-0 790 | 791 | '@babel/plugin-transform-unicode-sets-regex@7.27.1': 792 | resolution: 793 | { 794 | integrity: sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==, 795 | } 796 | engines: { node: '>=6.9.0' } 797 | peerDependencies: 798 | '@babel/core': ^7.0.0 799 | 800 | '@babel/preset-env@7.28.0': 801 | resolution: 802 | { 803 | integrity: sha512-VmaxeGOwuDqzLl5JUkIRM1X2Qu2uKGxHEQWh+cvvbl7JuJRgKGJSfsEF/bUaxFhJl/XAyxBe7q7qSuTbKFuCyg==, 804 | } 805 | engines: { node: '>=6.9.0' } 806 | peerDependencies: 807 | '@babel/core': ^7.0.0-0 808 | 809 | '@babel/preset-modules@0.1.6-no-external-plugins': 810 | resolution: 811 | { 812 | integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==, 813 | } 814 | peerDependencies: 815 | '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 816 | 817 | '@babel/template@7.27.2': 818 | resolution: 819 | { 820 | integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==, 821 | } 822 | engines: { node: '>=6.9.0' } 823 | 824 | '@babel/traverse@7.28.0': 825 | resolution: 826 | { 827 | integrity: sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==, 828 | } 829 | engines: { node: '>=6.9.0' } 830 | 831 | '@babel/types@7.28.2': 832 | resolution: 833 | { 834 | integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==, 835 | } 836 | engines: { node: '>=6.9.0' } 837 | 838 | '@eggjs/yauzl@2.11.0': 839 | resolution: 840 | { 841 | integrity: sha512-Jq+k2fCZJ3i3HShb0nxLUiAgq5pwo8JTT1TrH22JoehZQ0Nm2dvByGIja1NYfNyuE4Tx5/Dns5nVsBN/mlC8yg==, 842 | } 843 | 844 | '@esbuild/aix-ppc64@0.25.8': 845 | resolution: 846 | { 847 | integrity: sha512-urAvrUedIqEiFR3FYSLTWQgLu5tb+m0qZw0NBEasUeo6wuqatkMDaRT+1uABiGXEu5vqgPd7FGE1BhsAIy9QVA==, 848 | } 849 | engines: { node: '>=18' } 850 | cpu: [ppc64] 851 | os: [aix] 852 | 853 | '@esbuild/android-arm64@0.25.8': 854 | resolution: 855 | { 856 | integrity: sha512-OD3p7LYzWpLhZEyATcTSJ67qB5D+20vbtr6vHlHWSQYhKtzUYrETuWThmzFpZtFsBIxRvhO07+UgVA9m0i/O1w==, 857 | } 858 | engines: { node: '>=18' } 859 | cpu: [arm64] 860 | os: [android] 861 | 862 | '@esbuild/android-arm@0.25.8': 863 | resolution: 864 | { 865 | integrity: sha512-RONsAvGCz5oWyePVnLdZY/HHwA++nxYWIX1atInlaW6SEkwq6XkP3+cb825EUcRs5Vss/lGh/2YxAb5xqc07Uw==, 866 | } 867 | engines: { node: '>=18' } 868 | cpu: [arm] 869 | os: [android] 870 | 871 | '@esbuild/android-x64@0.25.8': 872 | resolution: 873 | { 874 | integrity: sha512-yJAVPklM5+4+9dTeKwHOaA+LQkmrKFX96BM0A/2zQrbS6ENCmxc4OVoBs5dPkCCak2roAD+jKCdnmOqKszPkjA==, 875 | } 876 | engines: { node: '>=18' } 877 | cpu: [x64] 878 | os: [android] 879 | 880 | '@esbuild/darwin-arm64@0.25.8': 881 | resolution: 882 | { 883 | integrity: sha512-Jw0mxgIaYX6R8ODrdkLLPwBqHTtYHJSmzzd+QeytSugzQ0Vg4c5rDky5VgkoowbZQahCbsv1rT1KW72MPIkevw==, 884 | } 885 | engines: { node: '>=18' } 886 | cpu: [arm64] 887 | os: [darwin] 888 | 889 | '@esbuild/darwin-x64@0.25.8': 890 | resolution: 891 | { 892 | integrity: sha512-Vh2gLxxHnuoQ+GjPNvDSDRpoBCUzY4Pu0kBqMBDlK4fuWbKgGtmDIeEC081xi26PPjn+1tct+Bh8FjyLlw1Zlg==, 893 | } 894 | engines: { node: '>=18' } 895 | cpu: [x64] 896 | os: [darwin] 897 | 898 | '@esbuild/freebsd-arm64@0.25.8': 899 | resolution: 900 | { 901 | integrity: sha512-YPJ7hDQ9DnNe5vxOm6jaie9QsTwcKedPvizTVlqWG9GBSq+BuyWEDazlGaDTC5NGU4QJd666V0yqCBL2oWKPfA==, 902 | } 903 | engines: { node: '>=18' } 904 | cpu: [arm64] 905 | os: [freebsd] 906 | 907 | '@esbuild/freebsd-x64@0.25.8': 908 | resolution: 909 | { 910 | integrity: sha512-MmaEXxQRdXNFsRN/KcIimLnSJrk2r5H8v+WVafRWz5xdSVmWLoITZQXcgehI2ZE6gioE6HirAEToM/RvFBeuhw==, 911 | } 912 | engines: { node: '>=18' } 913 | cpu: [x64] 914 | os: [freebsd] 915 | 916 | '@esbuild/linux-arm64@0.25.8': 917 | resolution: 918 | { 919 | integrity: sha512-WIgg00ARWv/uYLU7lsuDK00d/hHSfES5BzdWAdAig1ioV5kaFNrtK8EqGcUBJhYqotlUByUKz5Qo6u8tt7iD/w==, 920 | } 921 | engines: { node: '>=18' } 922 | cpu: [arm64] 923 | os: [linux] 924 | 925 | '@esbuild/linux-arm@0.25.8': 926 | resolution: 927 | { 928 | integrity: sha512-FuzEP9BixzZohl1kLf76KEVOsxtIBFwCaLupVuk4eFVnOZfU+Wsn+x5Ryam7nILV2pkq2TqQM9EZPsOBuMC+kg==, 929 | } 930 | engines: { node: '>=18' } 931 | cpu: [arm] 932 | os: [linux] 933 | 934 | '@esbuild/linux-ia32@0.25.8': 935 | resolution: 936 | { 937 | integrity: sha512-A1D9YzRX1i+1AJZuFFUMP1E9fMaYY+GnSQil9Tlw05utlE86EKTUA7RjwHDkEitmLYiFsRd9HwKBPEftNdBfjg==, 938 | } 939 | engines: { node: '>=18' } 940 | cpu: [ia32] 941 | os: [linux] 942 | 943 | '@esbuild/linux-loong64@0.25.8': 944 | resolution: 945 | { 946 | integrity: sha512-O7k1J/dwHkY1RMVvglFHl1HzutGEFFZ3kNiDMSOyUrB7WcoHGf96Sh+64nTRT26l3GMbCW01Ekh/ThKM5iI7hQ==, 947 | } 948 | engines: { node: '>=18' } 949 | cpu: [loong64] 950 | os: [linux] 951 | 952 | '@esbuild/linux-mips64el@0.25.8': 953 | resolution: 954 | { 955 | integrity: sha512-uv+dqfRazte3BzfMp8PAQXmdGHQt2oC/y2ovwpTteqrMx2lwaksiFZ/bdkXJC19ttTvNXBuWH53zy/aTj1FgGw==, 956 | } 957 | engines: { node: '>=18' } 958 | cpu: [mips64el] 959 | os: [linux] 960 | 961 | '@esbuild/linux-ppc64@0.25.8': 962 | resolution: 963 | { 964 | integrity: sha512-GyG0KcMi1GBavP5JgAkkstMGyMholMDybAf8wF5A70CALlDM2p/f7YFE7H92eDeH/VBtFJA5MT4nRPDGg4JuzQ==, 965 | } 966 | engines: { node: '>=18' } 967 | cpu: [ppc64] 968 | os: [linux] 969 | 970 | '@esbuild/linux-riscv64@0.25.8': 971 | resolution: 972 | { 973 | integrity: sha512-rAqDYFv3yzMrq7GIcen3XP7TUEG/4LK86LUPMIz6RT8A6pRIDn0sDcvjudVZBiiTcZCY9y2SgYX2lgK3AF+1eg==, 974 | } 975 | engines: { node: '>=18' } 976 | cpu: [riscv64] 977 | os: [linux] 978 | 979 | '@esbuild/linux-s390x@0.25.8': 980 | resolution: 981 | { 982 | integrity: sha512-Xutvh6VjlbcHpsIIbwY8GVRbwoviWT19tFhgdA7DlenLGC/mbc3lBoVb7jxj9Z+eyGqvcnSyIltYUrkKzWqSvg==, 983 | } 984 | engines: { node: '>=18' } 985 | cpu: [s390x] 986 | os: [linux] 987 | 988 | '@esbuild/linux-x64@0.25.8': 989 | resolution: 990 | { 991 | integrity: sha512-ASFQhgY4ElXh3nDcOMTkQero4b1lgubskNlhIfJrsH5OKZXDpUAKBlNS0Kx81jwOBp+HCeZqmoJuihTv57/jvQ==, 992 | } 993 | engines: { node: '>=18' } 994 | cpu: [x64] 995 | os: [linux] 996 | 997 | '@esbuild/netbsd-arm64@0.25.8': 998 | resolution: 999 | { 1000 | integrity: sha512-d1KfruIeohqAi6SA+gENMuObDbEjn22olAR7egqnkCD9DGBG0wsEARotkLgXDu6c4ncgWTZJtN5vcgxzWRMzcw==, 1001 | } 1002 | engines: { node: '>=18' } 1003 | cpu: [arm64] 1004 | os: [netbsd] 1005 | 1006 | '@esbuild/netbsd-x64@0.25.8': 1007 | resolution: 1008 | { 1009 | integrity: sha512-nVDCkrvx2ua+XQNyfrujIG38+YGyuy2Ru9kKVNyh5jAys6n+l44tTtToqHjino2My8VAY6Lw9H7RI73XFi66Cg==, 1010 | } 1011 | engines: { node: '>=18' } 1012 | cpu: [x64] 1013 | os: [netbsd] 1014 | 1015 | '@esbuild/openbsd-arm64@0.25.8': 1016 | resolution: 1017 | { 1018 | integrity: sha512-j8HgrDuSJFAujkivSMSfPQSAa5Fxbvk4rgNAS5i3K+r8s1X0p1uOO2Hl2xNsGFppOeHOLAVgYwDVlmxhq5h+SQ==, 1019 | } 1020 | engines: { node: '>=18' } 1021 | cpu: [arm64] 1022 | os: [openbsd] 1023 | 1024 | '@esbuild/openbsd-x64@0.25.8': 1025 | resolution: 1026 | { 1027 | integrity: sha512-1h8MUAwa0VhNCDp6Af0HToI2TJFAn1uqT9Al6DJVzdIBAd21m/G0Yfc77KDM3uF3T/YaOgQq3qTJHPbTOInaIQ==, 1028 | } 1029 | engines: { node: '>=18' } 1030 | cpu: [x64] 1031 | os: [openbsd] 1032 | 1033 | '@esbuild/openharmony-arm64@0.25.8': 1034 | resolution: 1035 | { 1036 | integrity: sha512-r2nVa5SIK9tSWd0kJd9HCffnDHKchTGikb//9c7HX+r+wHYCpQrSgxhlY6KWV1nFo1l4KFbsMlHk+L6fekLsUg==, 1037 | } 1038 | engines: { node: '>=18' } 1039 | cpu: [arm64] 1040 | os: [openharmony] 1041 | 1042 | '@esbuild/sunos-x64@0.25.8': 1043 | resolution: 1044 | { 1045 | integrity: sha512-zUlaP2S12YhQ2UzUfcCuMDHQFJyKABkAjvO5YSndMiIkMimPmxA+BYSBikWgsRpvyxuRnow4nS5NPnf9fpv41w==, 1046 | } 1047 | engines: { node: '>=18' } 1048 | cpu: [x64] 1049 | os: [sunos] 1050 | 1051 | '@esbuild/win32-arm64@0.25.8': 1052 | resolution: 1053 | { 1054 | integrity: sha512-YEGFFWESlPva8hGL+zvj2z/SaK+pH0SwOM0Nc/d+rVnW7GSTFlLBGzZkuSU9kFIGIo8q9X3ucpZhu8PDN5A2sQ==, 1055 | } 1056 | engines: { node: '>=18' } 1057 | cpu: [arm64] 1058 | os: [win32] 1059 | 1060 | '@esbuild/win32-ia32@0.25.8': 1061 | resolution: 1062 | { 1063 | integrity: sha512-hiGgGC6KZ5LZz58OL/+qVVoZiuZlUYlYHNAmczOm7bs2oE1XriPFi5ZHHrS8ACpV5EjySrnoCKmcbQMN+ojnHg==, 1064 | } 1065 | engines: { node: '>=18' } 1066 | cpu: [ia32] 1067 | os: [win32] 1068 | 1069 | '@esbuild/win32-x64@0.25.8': 1070 | resolution: 1071 | { 1072 | integrity: sha512-cn3Yr7+OaaZq1c+2pe+8yxC8E144SReCQjN6/2ynubzYjvyqZjTXfQJpAcQpsdJq3My7XADANiYGHoFC69pLQw==, 1073 | } 1074 | engines: { node: '>=18' } 1075 | cpu: [x64] 1076 | os: [win32] 1077 | 1078 | '@jridgewell/gen-mapping@0.3.12': 1079 | resolution: 1080 | { 1081 | integrity: sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==, 1082 | } 1083 | 1084 | '@jridgewell/resolve-uri@3.1.2': 1085 | resolution: 1086 | { 1087 | integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==, 1088 | } 1089 | engines: { node: '>=6.0.0' } 1090 | 1091 | '@jridgewell/source-map@0.3.10': 1092 | resolution: 1093 | { 1094 | integrity: sha512-0pPkgz9dY+bijgistcTTJ5mR+ocqRXLuhXHYdzoMmmoJ2C9S46RCm2GMUbatPEUK9Yjy26IrAy8D/M00lLkv+Q==, 1095 | } 1096 | 1097 | '@jridgewell/sourcemap-codec@1.5.4': 1098 | resolution: 1099 | { 1100 | integrity: sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==, 1101 | } 1102 | 1103 | '@jridgewell/trace-mapping@0.3.29': 1104 | resolution: 1105 | { 1106 | integrity: sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==, 1107 | } 1108 | 1109 | '@parcel/watcher-android-arm64@2.5.1': 1110 | resolution: 1111 | { 1112 | integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==, 1113 | } 1114 | engines: { node: '>= 10.0.0' } 1115 | cpu: [arm64] 1116 | os: [android] 1117 | 1118 | '@parcel/watcher-darwin-arm64@2.5.1': 1119 | resolution: 1120 | { 1121 | integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==, 1122 | } 1123 | engines: { node: '>= 10.0.0' } 1124 | cpu: [arm64] 1125 | os: [darwin] 1126 | 1127 | '@parcel/watcher-darwin-x64@2.5.1': 1128 | resolution: 1129 | { 1130 | integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==, 1131 | } 1132 | engines: { node: '>= 10.0.0' } 1133 | cpu: [x64] 1134 | os: [darwin] 1135 | 1136 | '@parcel/watcher-freebsd-x64@2.5.1': 1137 | resolution: 1138 | { 1139 | integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==, 1140 | } 1141 | engines: { node: '>= 10.0.0' } 1142 | cpu: [x64] 1143 | os: [freebsd] 1144 | 1145 | '@parcel/watcher-linux-arm-glibc@2.5.1': 1146 | resolution: 1147 | { 1148 | integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==, 1149 | } 1150 | engines: { node: '>= 10.0.0' } 1151 | cpu: [arm] 1152 | os: [linux] 1153 | libc: [glibc] 1154 | 1155 | '@parcel/watcher-linux-arm-musl@2.5.1': 1156 | resolution: 1157 | { 1158 | integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==, 1159 | } 1160 | engines: { node: '>= 10.0.0' } 1161 | cpu: [arm] 1162 | os: [linux] 1163 | libc: [musl] 1164 | 1165 | '@parcel/watcher-linux-arm64-glibc@2.5.1': 1166 | resolution: 1167 | { 1168 | integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==, 1169 | } 1170 | engines: { node: '>= 10.0.0' } 1171 | cpu: [arm64] 1172 | os: [linux] 1173 | libc: [glibc] 1174 | 1175 | '@parcel/watcher-linux-arm64-musl@2.5.1': 1176 | resolution: 1177 | { 1178 | integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==, 1179 | } 1180 | engines: { node: '>= 10.0.0' } 1181 | cpu: [arm64] 1182 | os: [linux] 1183 | libc: [musl] 1184 | 1185 | '@parcel/watcher-linux-x64-glibc@2.5.1': 1186 | resolution: 1187 | { 1188 | integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==, 1189 | } 1190 | engines: { node: '>= 10.0.0' } 1191 | cpu: [x64] 1192 | os: [linux] 1193 | libc: [glibc] 1194 | 1195 | '@parcel/watcher-linux-x64-musl@2.5.1': 1196 | resolution: 1197 | { 1198 | integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==, 1199 | } 1200 | engines: { node: '>= 10.0.0' } 1201 | cpu: [x64] 1202 | os: [linux] 1203 | libc: [musl] 1204 | 1205 | '@parcel/watcher-win32-arm64@2.5.1': 1206 | resolution: 1207 | { 1208 | integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==, 1209 | } 1210 | engines: { node: '>= 10.0.0' } 1211 | cpu: [arm64] 1212 | os: [win32] 1213 | 1214 | '@parcel/watcher-win32-ia32@2.5.1': 1215 | resolution: 1216 | { 1217 | integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==, 1218 | } 1219 | engines: { node: '>= 10.0.0' } 1220 | cpu: [ia32] 1221 | os: [win32] 1222 | 1223 | '@parcel/watcher-win32-x64@2.5.1': 1224 | resolution: 1225 | { 1226 | integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==, 1227 | } 1228 | engines: { node: '>= 10.0.0' } 1229 | cpu: [x64] 1230 | os: [win32] 1231 | 1232 | '@parcel/watcher@2.5.1': 1233 | resolution: 1234 | { 1235 | integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==, 1236 | } 1237 | engines: { node: '>= 10.0.0' } 1238 | 1239 | '@rollup/rollup-android-arm-eabi@4.46.1': 1240 | resolution: 1241 | { 1242 | integrity: sha512-oENme6QxtLCqjChRUUo3S6X8hjCXnWmJWnedD7VbGML5GUtaOtAyx+fEEXnBXVf0CBZApMQU0Idwi0FmyxzQhw==, 1243 | } 1244 | cpu: [arm] 1245 | os: [android] 1246 | 1247 | '@rollup/rollup-android-arm64@4.46.1': 1248 | resolution: 1249 | { 1250 | integrity: sha512-OikvNT3qYTl9+4qQ9Bpn6+XHM+ogtFadRLuT2EXiFQMiNkXFLQfNVppi5o28wvYdHL2s3fM0D/MZJ8UkNFZWsw==, 1251 | } 1252 | cpu: [arm64] 1253 | os: [android] 1254 | 1255 | '@rollup/rollup-darwin-arm64@4.46.1': 1256 | resolution: 1257 | { 1258 | integrity: sha512-EFYNNGij2WllnzljQDQnlFTXzSJw87cpAs4TVBAWLdkvic5Uh5tISrIL6NRcxoh/b2EFBG/TK8hgRrGx94zD4A==, 1259 | } 1260 | cpu: [arm64] 1261 | os: [darwin] 1262 | 1263 | '@rollup/rollup-darwin-x64@4.46.1': 1264 | resolution: 1265 | { 1266 | integrity: sha512-ZaNH06O1KeTug9WI2+GRBE5Ujt9kZw4a1+OIwnBHal92I8PxSsl5KpsrPvthRynkhMck4XPdvY0z26Cym/b7oA==, 1267 | } 1268 | cpu: [x64] 1269 | os: [darwin] 1270 | 1271 | '@rollup/rollup-freebsd-arm64@4.46.1': 1272 | resolution: 1273 | { 1274 | integrity: sha512-n4SLVebZP8uUlJ2r04+g2U/xFeiQlw09Me5UFqny8HGbARl503LNH5CqFTb5U5jNxTouhRjai6qPT0CR5c/Iig==, 1275 | } 1276 | cpu: [arm64] 1277 | os: [freebsd] 1278 | 1279 | '@rollup/rollup-freebsd-x64@4.46.1': 1280 | resolution: 1281 | { 1282 | integrity: sha512-8vu9c02F16heTqpvo3yeiu7Vi1REDEC/yES/dIfq3tSXe6mLndiwvYr3AAvd1tMNUqE9yeGYa5w7PRbI5QUV+w==, 1283 | } 1284 | cpu: [x64] 1285 | os: [freebsd] 1286 | 1287 | '@rollup/rollup-linux-arm-gnueabihf@4.46.1': 1288 | resolution: 1289 | { 1290 | integrity: sha512-K4ncpWl7sQuyp6rWiGUvb6Q18ba8mzM0rjWJ5JgYKlIXAau1db7hZnR0ldJvqKWWJDxqzSLwGUhA4jp+KqgDtQ==, 1291 | } 1292 | cpu: [arm] 1293 | os: [linux] 1294 | libc: [glibc] 1295 | 1296 | '@rollup/rollup-linux-arm-musleabihf@4.46.1': 1297 | resolution: 1298 | { 1299 | integrity: sha512-YykPnXsjUjmXE6j6k2QBBGAn1YsJUix7pYaPLK3RVE0bQL2jfdbfykPxfF8AgBlqtYbfEnYHmLXNa6QETjdOjQ==, 1300 | } 1301 | cpu: [arm] 1302 | os: [linux] 1303 | libc: [musl] 1304 | 1305 | '@rollup/rollup-linux-arm64-gnu@4.46.1': 1306 | resolution: 1307 | { 1308 | integrity: sha512-kKvqBGbZ8i9pCGW3a1FH3HNIVg49dXXTsChGFsHGXQaVJPLA4f/O+XmTxfklhccxdF5FefUn2hvkoGJH0ScWOA==, 1309 | } 1310 | cpu: [arm64] 1311 | os: [linux] 1312 | libc: [glibc] 1313 | 1314 | '@rollup/rollup-linux-arm64-musl@4.46.1': 1315 | resolution: 1316 | { 1317 | integrity: sha512-zzX5nTw1N1plmqC9RGC9vZHFuiM7ZP7oSWQGqpbmfjK7p947D518cVK1/MQudsBdcD84t6k70WNczJOct6+hdg==, 1318 | } 1319 | cpu: [arm64] 1320 | os: [linux] 1321 | libc: [musl] 1322 | 1323 | '@rollup/rollup-linux-loongarch64-gnu@4.46.1': 1324 | resolution: 1325 | { 1326 | integrity: sha512-O8CwgSBo6ewPpktFfSDgB6SJN9XDcPSvuwxfejiddbIC/hn9Tg6Ai0f0eYDf3XvB/+PIWzOQL+7+TZoB8p9Yuw==, 1327 | } 1328 | cpu: [loong64] 1329 | os: [linux] 1330 | libc: [glibc] 1331 | 1332 | '@rollup/rollup-linux-ppc64-gnu@4.46.1': 1333 | resolution: 1334 | { 1335 | integrity: sha512-JnCfFVEKeq6G3h3z8e60kAp8Rd7QVnWCtPm7cxx+5OtP80g/3nmPtfdCXbVl063e3KsRnGSKDHUQMydmzc/wBA==, 1336 | } 1337 | cpu: [ppc64] 1338 | os: [linux] 1339 | libc: [glibc] 1340 | 1341 | '@rollup/rollup-linux-riscv64-gnu@4.46.1': 1342 | resolution: 1343 | { 1344 | integrity: sha512-dVxuDqS237eQXkbYzQQfdf/njgeNw6LZuVyEdUaWwRpKHhsLI+y4H/NJV8xJGU19vnOJCVwaBFgr936FHOnJsQ==, 1345 | } 1346 | cpu: [riscv64] 1347 | os: [linux] 1348 | libc: [glibc] 1349 | 1350 | '@rollup/rollup-linux-riscv64-musl@4.46.1': 1351 | resolution: 1352 | { 1353 | integrity: sha512-CvvgNl2hrZrTR9jXK1ye0Go0HQRT6ohQdDfWR47/KFKiLd5oN5T14jRdUVGF4tnsN8y9oSfMOqH6RuHh+ck8+w==, 1354 | } 1355 | cpu: [riscv64] 1356 | os: [linux] 1357 | libc: [musl] 1358 | 1359 | '@rollup/rollup-linux-s390x-gnu@4.46.1': 1360 | resolution: 1361 | { 1362 | integrity: sha512-x7ANt2VOg2565oGHJ6rIuuAon+A8sfe1IeUx25IKqi49OjSr/K3awoNqr9gCwGEJo9OuXlOn+H2p1VJKx1psxA==, 1363 | } 1364 | cpu: [s390x] 1365 | os: [linux] 1366 | libc: [glibc] 1367 | 1368 | '@rollup/rollup-linux-x64-gnu@4.46.1': 1369 | resolution: 1370 | { 1371 | integrity: sha512-9OADZYryz/7E8/qt0vnaHQgmia2Y0wrjSSn1V/uL+zw/i7NUhxbX4cHXdEQ7dnJgzYDS81d8+tf6nbIdRFZQoQ==, 1372 | } 1373 | cpu: [x64] 1374 | os: [linux] 1375 | libc: [glibc] 1376 | 1377 | '@rollup/rollup-linux-x64-musl@4.46.1': 1378 | resolution: 1379 | { 1380 | integrity: sha512-NuvSCbXEKY+NGWHyivzbjSVJi68Xfq1VnIvGmsuXs6TCtveeoDRKutI5vf2ntmNnVq64Q4zInet0UDQ+yMB6tA==, 1381 | } 1382 | cpu: [x64] 1383 | os: [linux] 1384 | libc: [musl] 1385 | 1386 | '@rollup/rollup-win32-arm64-msvc@4.46.1': 1387 | resolution: 1388 | { 1389 | integrity: sha512-mWz+6FSRb82xuUMMV1X3NGiaPFqbLN9aIueHleTZCc46cJvwTlvIh7reQLk4p97dv0nddyewBhwzryBHH7wtPw==, 1390 | } 1391 | cpu: [arm64] 1392 | os: [win32] 1393 | 1394 | '@rollup/rollup-win32-ia32-msvc@4.46.1': 1395 | resolution: 1396 | { 1397 | integrity: sha512-7Thzy9TMXDw9AU4f4vsLNBxh7/VOKuXi73VH3d/kHGr0tZ3x/ewgL9uC7ojUKmH1/zvmZe2tLapYcZllk3SO8Q==, 1398 | } 1399 | cpu: [ia32] 1400 | os: [win32] 1401 | 1402 | '@rollup/rollup-win32-x64-msvc@4.46.1': 1403 | resolution: 1404 | { 1405 | integrity: sha512-7GVB4luhFmGUNXXJhH2jJwZCFB3pIOixv2E3s17GQHBFUOQaISlt7aGcQgqvCaDSxTZJUzlK/QJ1FN8S94MrzQ==, 1406 | } 1407 | cpu: [x64] 1408 | os: [win32] 1409 | 1410 | '@types/estree@1.0.8': 1411 | resolution: 1412 | { 1413 | integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==, 1414 | } 1415 | 1416 | '@vitejs/plugin-legacy@7.1.0': 1417 | resolution: 1418 | { 1419 | integrity: sha512-dzpcfN7gWWgzUwSxv7/ntUTEvoA8BYQWsdrawZFfwDSbitsEOXj8oSLn7I8QHJ8ijDukmCxsuUcib42EyTEVMw==, 1420 | } 1421 | engines: { node: ^20.19.0 || >=22.12.0 } 1422 | peerDependencies: 1423 | terser: ^5.16.0 1424 | vite: ^7.0.0 1425 | 1426 | '@vitejs/plugin-vue2@2.3.3': 1427 | resolution: 1428 | { 1429 | integrity: sha512-qexY6+bbwY8h0AZerzUuGywNTi0cLOkbiSbggr0R3WEW95iB2hblQFyv4MAkkc2vm4gZN1cO5kzT1Kp6xlVzZw==, 1430 | } 1431 | engines: { node: ^14.18.0 || >= 16.0.0 } 1432 | peerDependencies: 1433 | vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 1434 | vue: ^2.7.0-0 1435 | 1436 | '@vue/compiler-sfc@2.7.16': 1437 | resolution: 1438 | { 1439 | integrity: sha512-KWhJ9k5nXuNtygPU7+t1rX6baZeqOYLEforUPjgNDBnLicfHCoi48H87Q8XyLZOrNNsmhuwKqtpDQWjEFe6Ekg==, 1440 | } 1441 | 1442 | '@vxe-ui/core@3.2.8': 1443 | resolution: 1444 | { 1445 | integrity: sha512-Bgy4kOSkkAJFoeat5MTbQJA8FeZKeErbtv8oBXvbTjZwjnGkJjjGZh0xBn7qNQIiPuHdzZmIlmR/UbPBe8KOBQ==, 1446 | } 1447 | peerDependencies: 1448 | vue: ^2.6.0 1449 | 1450 | acorn@8.15.0: 1451 | resolution: 1452 | { 1453 | integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==, 1454 | } 1455 | engines: { node: '>=0.4.0' } 1456 | hasBin: true 1457 | 1458 | ansi-escapes@7.0.0: 1459 | resolution: 1460 | { 1461 | integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==, 1462 | } 1463 | engines: { node: '>=18' } 1464 | 1465 | ansi-regex@6.1.0: 1466 | resolution: 1467 | { 1468 | integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==, 1469 | } 1470 | engines: { node: '>=12' } 1471 | 1472 | ansi-styles@6.2.1: 1473 | resolution: 1474 | { 1475 | integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==, 1476 | } 1477 | engines: { node: '>=12' } 1478 | 1479 | anymatch@3.1.3: 1480 | resolution: 1481 | { 1482 | integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==, 1483 | } 1484 | engines: { node: '>= 8' } 1485 | 1486 | async-validator@1.8.5: 1487 | resolution: 1488 | { 1489 | integrity: sha512-tXBM+1m056MAX0E8TL2iCjg8WvSyXu0Zc8LNtYqrVeyoL3+esHRZ4SieE9fKQyyU09uONjnMEjrNBMqT0mbvmA==, 1490 | } 1491 | 1492 | asynckit@0.4.0: 1493 | resolution: 1494 | { 1495 | integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==, 1496 | } 1497 | 1498 | available-typed-arrays@1.0.7: 1499 | resolution: 1500 | { 1501 | integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==, 1502 | } 1503 | engines: { node: '>= 0.4' } 1504 | 1505 | axios@1.11.0: 1506 | resolution: 1507 | { 1508 | integrity: sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==, 1509 | } 1510 | 1511 | babel-helper-vue-jsx-merge-props@2.0.3: 1512 | resolution: 1513 | { 1514 | integrity: sha512-gsLiKK7Qrb7zYJNgiXKpXblxbV5ffSwR0f5whkPAaBAR4fhi6bwRZxX9wBlIc5M/v8CCkXUbXZL4N/nSE97cqg==, 1515 | } 1516 | 1517 | babel-plugin-polyfill-corejs2@0.4.14: 1518 | resolution: 1519 | { 1520 | integrity: sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==, 1521 | } 1522 | peerDependencies: 1523 | '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 1524 | 1525 | babel-plugin-polyfill-corejs3@0.13.0: 1526 | resolution: 1527 | { 1528 | integrity: sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==, 1529 | } 1530 | peerDependencies: 1531 | '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 1532 | 1533 | babel-plugin-polyfill-regenerator@0.6.5: 1534 | resolution: 1535 | { 1536 | integrity: sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==, 1537 | } 1538 | peerDependencies: 1539 | '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 1540 | 1541 | babel-runtime@6.26.0: 1542 | resolution: 1543 | { 1544 | integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==, 1545 | } 1546 | 1547 | binary-extensions@2.3.0: 1548 | resolution: 1549 | { 1550 | integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==, 1551 | } 1552 | engines: { node: '>=8' } 1553 | 1554 | bl@1.2.3: 1555 | resolution: 1556 | { 1557 | integrity: sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==, 1558 | } 1559 | 1560 | braces@3.0.3: 1561 | resolution: 1562 | { 1563 | integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==, 1564 | } 1565 | engines: { node: '>=8' } 1566 | 1567 | browserslist-to-esbuild@2.1.1: 1568 | resolution: 1569 | { 1570 | integrity: sha512-KN+mty6C3e9AN8Z5dI1xeN15ExcRNeISoC3g7V0Kax/MMF9MSoYA2G7lkTTcVUFntiEjkpI0HNgqJC1NjdyNUw==, 1571 | } 1572 | engines: { node: '>=18' } 1573 | hasBin: true 1574 | peerDependencies: 1575 | browserslist: '*' 1576 | 1577 | browserslist@4.25.1: 1578 | resolution: 1579 | { 1580 | integrity: sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==, 1581 | } 1582 | engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } 1583 | hasBin: true 1584 | 1585 | buffer-alloc-unsafe@1.1.0: 1586 | resolution: 1587 | { 1588 | integrity: sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==, 1589 | } 1590 | 1591 | buffer-alloc@1.2.0: 1592 | resolution: 1593 | { 1594 | integrity: sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==, 1595 | } 1596 | 1597 | buffer-crc32@0.2.13: 1598 | resolution: 1599 | { 1600 | integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==, 1601 | } 1602 | 1603 | buffer-fill@1.0.0: 1604 | resolution: 1605 | { 1606 | integrity: sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==, 1607 | } 1608 | 1609 | buffer-from@1.1.2: 1610 | resolution: 1611 | { 1612 | integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==, 1613 | } 1614 | 1615 | call-bind-apply-helpers@1.0.2: 1616 | resolution: 1617 | { 1618 | integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==, 1619 | } 1620 | engines: { node: '>= 0.4' } 1621 | 1622 | call-bind@1.0.8: 1623 | resolution: 1624 | { 1625 | integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==, 1626 | } 1627 | engines: { node: '>= 0.4' } 1628 | 1629 | call-bound@1.0.4: 1630 | resolution: 1631 | { 1632 | integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==, 1633 | } 1634 | engines: { node: '>= 0.4' } 1635 | 1636 | caniuse-lite@1.0.30001727: 1637 | resolution: 1638 | { 1639 | integrity: sha512-pB68nIHmbN6L/4C6MH1DokyR3bYqFwjaSs/sWDHGj4CTcFtQUQMuJftVwWkXq7mNWOybD3KhUv3oWHoGxgP14Q==, 1640 | } 1641 | 1642 | chalk@5.4.1: 1643 | resolution: 1644 | { 1645 | integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==, 1646 | } 1647 | engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 } 1648 | 1649 | chokidar@3.6.0: 1650 | resolution: 1651 | { 1652 | integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==, 1653 | } 1654 | engines: { node: '>= 8.10.0' } 1655 | 1656 | chokidar@4.0.3: 1657 | resolution: 1658 | { 1659 | integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==, 1660 | } 1661 | engines: { node: '>= 14.16.0' } 1662 | 1663 | cli-cursor@5.0.0: 1664 | resolution: 1665 | { 1666 | integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==, 1667 | } 1668 | engines: { node: '>=18' } 1669 | 1670 | cli-truncate@4.0.0: 1671 | resolution: 1672 | { 1673 | integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==, 1674 | } 1675 | engines: { node: '>=18' } 1676 | 1677 | colorette@2.0.20: 1678 | resolution: 1679 | { 1680 | integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==, 1681 | } 1682 | 1683 | combined-stream@1.0.8: 1684 | resolution: 1685 | { 1686 | integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==, 1687 | } 1688 | engines: { node: '>= 0.8' } 1689 | 1690 | commander@14.0.0: 1691 | resolution: 1692 | { 1693 | integrity: sha512-2uM9rYjPvyq39NwLRqaiLtWHyDC1FvryJDa2ATTVims5YAS4PupsEQsDvP14FqhFr0P49CYDugi59xaxJlTXRA==, 1694 | } 1695 | engines: { node: '>=20' } 1696 | 1697 | commander@2.20.3: 1698 | resolution: 1699 | { 1700 | integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==, 1701 | } 1702 | 1703 | compressing@1.10.3: 1704 | resolution: 1705 | { 1706 | integrity: sha512-F3RxWLU4UNfNYFVNwCK58HwQnv/5drvUW176FC//3i0pwpdahoZxMM7dkxWuA2MEafqfwDc+iudk70Sx/VMUIw==, 1707 | } 1708 | engines: { node: '>= 4.0.0' } 1709 | 1710 | confbox@0.1.8: 1711 | resolution: 1712 | { 1713 | integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==, 1714 | } 1715 | 1716 | confbox@0.2.2: 1717 | resolution: 1718 | { 1719 | integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==, 1720 | } 1721 | 1722 | convert-source-map@2.0.0: 1723 | resolution: 1724 | { 1725 | integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, 1726 | } 1727 | 1728 | core-js-compat@3.44.0: 1729 | resolution: 1730 | { 1731 | integrity: sha512-JepmAj2zfl6ogy34qfWtcE7nHKAJnKsQFRn++scjVS2bZFllwptzw61BZcZFYBPpUznLfAvh0LGhxKppk04ClA==, 1732 | } 1733 | 1734 | core-js@2.6.12: 1735 | resolution: 1736 | { 1737 | integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==, 1738 | } 1739 | deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. 1740 | 1741 | core-js@3.44.0: 1742 | resolution: 1743 | { 1744 | integrity: sha512-aFCtd4l6GvAXwVEh3XbbVqJGHDJt0OZRa+5ePGx3LLwi12WfexqQxcsohb2wgsa/92xtl19Hd66G/L+TaAxDMw==, 1745 | } 1746 | 1747 | core-util-is@1.0.3: 1748 | resolution: 1749 | { 1750 | integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==, 1751 | } 1752 | 1753 | csstype@3.1.3: 1754 | resolution: 1755 | { 1756 | integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==, 1757 | } 1758 | 1759 | dayjs@1.11.13: 1760 | resolution: 1761 | { 1762 | integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==, 1763 | } 1764 | 1765 | debug@4.4.1: 1766 | resolution: 1767 | { 1768 | integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==, 1769 | } 1770 | engines: { node: '>=6.0' } 1771 | peerDependencies: 1772 | supports-color: '*' 1773 | peerDependenciesMeta: 1774 | supports-color: 1775 | optional: true 1776 | 1777 | deepmerge@1.5.2: 1778 | resolution: 1779 | { 1780 | integrity: sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ==, 1781 | } 1782 | engines: { node: '>=0.10.0' } 1783 | 1784 | define-data-property@1.1.4: 1785 | resolution: 1786 | { 1787 | integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==, 1788 | } 1789 | engines: { node: '>= 0.4' } 1790 | 1791 | delayed-stream@1.0.0: 1792 | resolution: 1793 | { 1794 | integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==, 1795 | } 1796 | engines: { node: '>=0.4.0' } 1797 | 1798 | detect-libc@1.0.3: 1799 | resolution: 1800 | { 1801 | integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==, 1802 | } 1803 | engines: { node: '>=0.10' } 1804 | hasBin: true 1805 | 1806 | dom-zindex@1.0.6: 1807 | resolution: 1808 | { 1809 | integrity: sha512-FKWIhiU96bi3xpP9ewRMgANsoVmMUBnMnmpCT6dPMZOunVYJQmJhSRruoI0XSPoHeIif3kyEuiHbFrOJwEJaEA==, 1810 | } 1811 | 1812 | dunder-proto@1.0.1: 1813 | resolution: 1814 | { 1815 | integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==, 1816 | } 1817 | engines: { node: '>= 0.4' } 1818 | 1819 | electron-to-chromium@1.5.192: 1820 | resolution: 1821 | { 1822 | integrity: sha512-rP8Ez0w7UNw/9j5eSXCe10o1g/8B1P5SM90PCCMVkIRQn2R0LEHWz4Eh9RnxkniuDe1W0cTSOB3MLlkTGDcuCg==, 1823 | } 1824 | 1825 | element-ui@2.15.14: 1826 | resolution: 1827 | { 1828 | integrity: sha512-2v9fHL0ZGINotOlRIAJD5YuVB8V7WKxrE9Qy7dXhRipa035+kF7WuU/z+tEmLVPBcJ0zt8mOu1DKpWcVzBK8IA==, 1829 | } 1830 | peerDependencies: 1831 | vue: ^2.5.17 1832 | 1833 | emoji-regex@10.4.0: 1834 | resolution: 1835 | { 1836 | integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==, 1837 | } 1838 | 1839 | end-of-stream@1.4.5: 1840 | resolution: 1841 | { 1842 | integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==, 1843 | } 1844 | 1845 | environment@1.1.0: 1846 | resolution: 1847 | { 1848 | integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==, 1849 | } 1850 | engines: { node: '>=18' } 1851 | 1852 | es-define-property@1.0.1: 1853 | resolution: 1854 | { 1855 | integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==, 1856 | } 1857 | engines: { node: '>= 0.4' } 1858 | 1859 | es-errors@1.3.0: 1860 | resolution: 1861 | { 1862 | integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==, 1863 | } 1864 | engines: { node: '>= 0.4' } 1865 | 1866 | es-object-atoms@1.1.1: 1867 | resolution: 1868 | { 1869 | integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==, 1870 | } 1871 | engines: { node: '>= 0.4' } 1872 | 1873 | es-set-tostringtag@2.1.0: 1874 | resolution: 1875 | { 1876 | integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==, 1877 | } 1878 | engines: { node: '>= 0.4' } 1879 | 1880 | esbuild@0.25.8: 1881 | resolution: 1882 | { 1883 | integrity: sha512-vVC0USHGtMi8+R4Kz8rt6JhEWLxsv9Rnu/lGYbPR8u47B+DCBksq9JarW0zOO7bs37hyOK1l2/oqtbciutL5+Q==, 1884 | } 1885 | engines: { node: '>=18' } 1886 | hasBin: true 1887 | 1888 | escalade@3.2.0: 1889 | resolution: 1890 | { 1891 | integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==, 1892 | } 1893 | engines: { node: '>=6' } 1894 | 1895 | escape-string-regexp@5.0.0: 1896 | resolution: 1897 | { 1898 | integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==, 1899 | } 1900 | engines: { node: '>=12' } 1901 | 1902 | estree-walker@3.0.3: 1903 | resolution: 1904 | { 1905 | integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==, 1906 | } 1907 | 1908 | esutils@2.0.3: 1909 | resolution: 1910 | { 1911 | integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, 1912 | } 1913 | engines: { node: '>=0.10.0' } 1914 | 1915 | eventemitter3@5.0.1: 1916 | resolution: 1917 | { 1918 | integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==, 1919 | } 1920 | 1921 | exsolve@1.0.7: 1922 | resolution: 1923 | { 1924 | integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==, 1925 | } 1926 | 1927 | fd-slicer2@1.2.0: 1928 | resolution: 1929 | { 1930 | integrity: sha512-3lBUNUckhMZduCc4g+Pw4Ve16LD9vpX9b8qUkkKq2mgDRLYWzblszZH2luADnJqjJe+cypngjCuKRm/IW12rRw==, 1931 | } 1932 | 1933 | fdir@6.4.6: 1934 | resolution: 1935 | { 1936 | integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==, 1937 | } 1938 | peerDependencies: 1939 | picomatch: ^3 || ^4 1940 | peerDependenciesMeta: 1941 | picomatch: 1942 | optional: true 1943 | 1944 | fill-range@7.1.1: 1945 | resolution: 1946 | { 1947 | integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==, 1948 | } 1949 | engines: { node: '>=8' } 1950 | 1951 | flushwritable@1.0.0: 1952 | resolution: 1953 | { 1954 | integrity: sha512-3VELfuWCLVzt5d2Gblk8qcqFro6nuwvxwMzHaENVDHI7rxcBRtMCwTk/E9FXcgh+82DSpavPNDueA9+RxXJoFg==, 1955 | } 1956 | 1957 | follow-redirects@1.15.9: 1958 | resolution: 1959 | { 1960 | integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==, 1961 | } 1962 | engines: { node: '>=4.0' } 1963 | peerDependencies: 1964 | debug: '*' 1965 | peerDependenciesMeta: 1966 | debug: 1967 | optional: true 1968 | 1969 | for-each@0.3.5: 1970 | resolution: 1971 | { 1972 | integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==, 1973 | } 1974 | engines: { node: '>= 0.4' } 1975 | 1976 | form-data@4.0.4: 1977 | resolution: 1978 | { 1979 | integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==, 1980 | } 1981 | engines: { node: '>= 6' } 1982 | 1983 | fs-constants@1.0.0: 1984 | resolution: 1985 | { 1986 | integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==, 1987 | } 1988 | 1989 | fsevents@2.3.3: 1990 | resolution: 1991 | { 1992 | integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, 1993 | } 1994 | engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } 1995 | os: [darwin] 1996 | 1997 | function-bind@1.1.2: 1998 | resolution: 1999 | { 2000 | integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==, 2001 | } 2002 | 2003 | gensync@1.0.0-beta.2: 2004 | resolution: 2005 | { 2006 | integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, 2007 | } 2008 | engines: { node: '>=6.9.0' } 2009 | 2010 | get-east-asian-width@1.3.0: 2011 | resolution: 2012 | { 2013 | integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==, 2014 | } 2015 | engines: { node: '>=18' } 2016 | 2017 | get-intrinsic@1.3.0: 2018 | resolution: 2019 | { 2020 | integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==, 2021 | } 2022 | engines: { node: '>= 0.4' } 2023 | 2024 | get-proto@1.0.1: 2025 | resolution: 2026 | { 2027 | integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==, 2028 | } 2029 | engines: { node: '>= 0.4' } 2030 | 2031 | get-ready@1.0.0: 2032 | resolution: 2033 | { 2034 | integrity: sha512-mFXCZPJIlcYcth+N8267+mghfYN9h3EhsDa6JSnbA3Wrhh/XFpuowviFcsDeYZtKspQyWyJqfs4O6P8CHeTwzw==, 2035 | } 2036 | 2037 | glob-parent@5.1.2: 2038 | resolution: 2039 | { 2040 | integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, 2041 | } 2042 | engines: { node: '>= 6' } 2043 | 2044 | gopd@1.2.0: 2045 | resolution: 2046 | { 2047 | integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==, 2048 | } 2049 | engines: { node: '>= 0.4' } 2050 | 2051 | has-property-descriptors@1.0.2: 2052 | resolution: 2053 | { 2054 | integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==, 2055 | } 2056 | 2057 | has-symbols@1.1.0: 2058 | resolution: 2059 | { 2060 | integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==, 2061 | } 2062 | engines: { node: '>= 0.4' } 2063 | 2064 | has-tostringtag@1.0.2: 2065 | resolution: 2066 | { 2067 | integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==, 2068 | } 2069 | engines: { node: '>= 0.4' } 2070 | 2071 | hasown@2.0.2: 2072 | resolution: 2073 | { 2074 | integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==, 2075 | } 2076 | engines: { node: '>= 0.4' } 2077 | 2078 | iconv-lite@0.5.2: 2079 | resolution: 2080 | { 2081 | integrity: sha512-kERHXvpSaB4aU3eANwidg79K8FlrN77m8G9V+0vOR3HYaRifrlwMEpT7ZBJqLSEIHnEgJTHcWK82wwLwwKwtag==, 2082 | } 2083 | engines: { node: '>=0.10.0' } 2084 | 2085 | immutable@5.1.3: 2086 | resolution: 2087 | { 2088 | integrity: sha512-+chQdDfvscSF1SJqv2gn4SRO2ZyS3xL3r7IW/wWEEzrzLisnOlKiQu5ytC/BVNcS15C39WT2Hg/bjKjDMcu+zg==, 2089 | } 2090 | 2091 | inherits@2.0.4: 2092 | resolution: 2093 | { 2094 | integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, 2095 | } 2096 | 2097 | is-binary-path@2.1.0: 2098 | resolution: 2099 | { 2100 | integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==, 2101 | } 2102 | engines: { node: '>=8' } 2103 | 2104 | is-callable@1.2.7: 2105 | resolution: 2106 | { 2107 | integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, 2108 | } 2109 | engines: { node: '>= 0.4' } 2110 | 2111 | is-core-module@2.16.1: 2112 | resolution: 2113 | { 2114 | integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==, 2115 | } 2116 | engines: { node: '>= 0.4' } 2117 | 2118 | is-extglob@2.1.1: 2119 | resolution: 2120 | { 2121 | integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, 2122 | } 2123 | engines: { node: '>=0.10.0' } 2124 | 2125 | is-fullwidth-code-point@4.0.0: 2126 | resolution: 2127 | { 2128 | integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==, 2129 | } 2130 | engines: { node: '>=12' } 2131 | 2132 | is-fullwidth-code-point@5.0.0: 2133 | resolution: 2134 | { 2135 | integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==, 2136 | } 2137 | engines: { node: '>=18' } 2138 | 2139 | is-glob@4.0.3: 2140 | resolution: 2141 | { 2142 | integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, 2143 | } 2144 | engines: { node: '>=0.10.0' } 2145 | 2146 | is-number@7.0.0: 2147 | resolution: 2148 | { 2149 | integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, 2150 | } 2151 | engines: { node: '>=0.12.0' } 2152 | 2153 | is-typed-array@1.1.15: 2154 | resolution: 2155 | { 2156 | integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==, 2157 | } 2158 | engines: { node: '>= 0.4' } 2159 | 2160 | isarray@1.0.0: 2161 | resolution: 2162 | { 2163 | integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==, 2164 | } 2165 | 2166 | isarray@2.0.5: 2167 | resolution: 2168 | { 2169 | integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, 2170 | } 2171 | 2172 | js-tokens@4.0.0: 2173 | resolution: 2174 | { 2175 | integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, 2176 | } 2177 | 2178 | js-tokens@9.0.1: 2179 | resolution: 2180 | { 2181 | integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==, 2182 | } 2183 | 2184 | jsesc@3.0.2: 2185 | resolution: 2186 | { 2187 | integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==, 2188 | } 2189 | engines: { node: '>=6' } 2190 | hasBin: true 2191 | 2192 | jsesc@3.1.0: 2193 | resolution: 2194 | { 2195 | integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==, 2196 | } 2197 | engines: { node: '>=6' } 2198 | hasBin: true 2199 | 2200 | json5@2.2.3: 2201 | resolution: 2202 | { 2203 | integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, 2204 | } 2205 | engines: { node: '>=6' } 2206 | hasBin: true 2207 | 2208 | lilconfig@3.1.3: 2209 | resolution: 2210 | { 2211 | integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==, 2212 | } 2213 | engines: { node: '>=14' } 2214 | 2215 | lint-staged@16.1.2: 2216 | resolution: 2217 | { 2218 | integrity: sha512-sQKw2Si2g9KUZNY3XNvRuDq4UJqpHwF0/FQzZR2M7I5MvtpWvibikCjUVJzZdGE0ByurEl3KQNvsGetd1ty1/Q==, 2219 | } 2220 | engines: { node: '>=20.17' } 2221 | hasBin: true 2222 | 2223 | listr2@8.3.3: 2224 | resolution: 2225 | { 2226 | integrity: sha512-LWzX2KsqcB1wqQ4AHgYb4RsDXauQiqhjLk+6hjbaeHG4zpjjVAB6wC/gz6X0l+Du1cN3pUB5ZlrvTbhGSNnUQQ==, 2227 | } 2228 | engines: { node: '>=18.0.0' } 2229 | 2230 | local-pkg@1.1.1: 2231 | resolution: 2232 | { 2233 | integrity: sha512-WunYko2W1NcdfAFpuLUoucsgULmgDBRkdxHxWQ7mK0cQqwPiy8E1enjuRBrhLtZkB5iScJ1XIPdhVEFK8aOLSg==, 2234 | } 2235 | engines: { node: '>=14' } 2236 | 2237 | lodash.debounce@4.0.8: 2238 | resolution: 2239 | { 2240 | integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==, 2241 | } 2242 | 2243 | log-update@6.1.0: 2244 | resolution: 2245 | { 2246 | integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==, 2247 | } 2248 | engines: { node: '>=18' } 2249 | 2250 | lru-cache@5.1.1: 2251 | resolution: 2252 | { 2253 | integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, 2254 | } 2255 | 2256 | magic-string@0.30.17: 2257 | resolution: 2258 | { 2259 | integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==, 2260 | } 2261 | 2262 | math-intrinsics@1.1.0: 2263 | resolution: 2264 | { 2265 | integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==, 2266 | } 2267 | engines: { node: '>= 0.4' } 2268 | 2269 | meow@13.2.0: 2270 | resolution: 2271 | { 2272 | integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==, 2273 | } 2274 | engines: { node: '>=18' } 2275 | 2276 | micromatch@4.0.8: 2277 | resolution: 2278 | { 2279 | integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==, 2280 | } 2281 | engines: { node: '>=8.6' } 2282 | 2283 | mime-db@1.52.0: 2284 | resolution: 2285 | { 2286 | integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, 2287 | } 2288 | engines: { node: '>= 0.6' } 2289 | 2290 | mime-types@2.1.35: 2291 | resolution: 2292 | { 2293 | integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==, 2294 | } 2295 | engines: { node: '>= 0.6' } 2296 | 2297 | mimic-function@5.0.1: 2298 | resolution: 2299 | { 2300 | integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==, 2301 | } 2302 | engines: { node: '>=18' } 2303 | 2304 | minimist@1.2.8: 2305 | resolution: 2306 | { 2307 | integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, 2308 | } 2309 | 2310 | mkdirp@0.5.6: 2311 | resolution: 2312 | { 2313 | integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==, 2314 | } 2315 | hasBin: true 2316 | 2317 | mlly@1.7.4: 2318 | resolution: 2319 | { 2320 | integrity: sha512-qmdSIPC4bDJXgZTCR7XosJiNKySV7O215tsPtDN9iEO/7q/76b/ijtgRu/+epFXSJhijtTCCGp3DWS549P3xKw==, 2321 | } 2322 | 2323 | ms@2.1.3: 2324 | resolution: 2325 | { 2326 | integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, 2327 | } 2328 | 2329 | nano-spawn@1.0.2: 2330 | resolution: 2331 | { 2332 | integrity: sha512-21t+ozMQDAL/UGgQVBbZ/xXvNO10++ZPuTmKRO8k9V3AClVRht49ahtDjfY8l1q6nSHOrE5ASfthzH3ol6R/hg==, 2333 | } 2334 | engines: { node: '>=20.17' } 2335 | 2336 | nanoid@3.3.11: 2337 | resolution: 2338 | { 2339 | integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==, 2340 | } 2341 | engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } 2342 | hasBin: true 2343 | 2344 | node-addon-api@7.1.1: 2345 | resolution: 2346 | { 2347 | integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==, 2348 | } 2349 | 2350 | node-releases@2.0.19: 2351 | resolution: 2352 | { 2353 | integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==, 2354 | } 2355 | 2356 | normalize-path@3.0.0: 2357 | resolution: 2358 | { 2359 | integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, 2360 | } 2361 | engines: { node: '>=0.10.0' } 2362 | 2363 | normalize-wheel@1.0.1: 2364 | resolution: 2365 | { 2366 | integrity: sha512-1OnlAPZ3zgrk8B91HyRj+eVv+kS5u+Z0SCsak6Xil/kmgEia50ga7zfkumayonZrImffAxPU/5WcyGhzetHNPA==, 2367 | } 2368 | 2369 | once@1.4.0: 2370 | resolution: 2371 | { 2372 | integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, 2373 | } 2374 | 2375 | onetime@7.0.0: 2376 | resolution: 2377 | { 2378 | integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==, 2379 | } 2380 | engines: { node: '>=18' } 2381 | 2382 | path-parse@1.0.7: 2383 | resolution: 2384 | { 2385 | integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, 2386 | } 2387 | 2388 | pathe@2.0.3: 2389 | resolution: 2390 | { 2391 | integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==, 2392 | } 2393 | 2394 | pend@1.2.0: 2395 | resolution: 2396 | { 2397 | integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==, 2398 | } 2399 | 2400 | picocolors@1.1.1: 2401 | resolution: 2402 | { 2403 | integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==, 2404 | } 2405 | 2406 | picomatch@2.3.1: 2407 | resolution: 2408 | { 2409 | integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, 2410 | } 2411 | engines: { node: '>=8.6' } 2412 | 2413 | picomatch@4.0.3: 2414 | resolution: 2415 | { 2416 | integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==, 2417 | } 2418 | engines: { node: '>=12' } 2419 | 2420 | pidtree@0.6.0: 2421 | resolution: 2422 | { 2423 | integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==, 2424 | } 2425 | engines: { node: '>=0.10' } 2426 | hasBin: true 2427 | 2428 | pkg-types@1.3.1: 2429 | resolution: 2430 | { 2431 | integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==, 2432 | } 2433 | 2434 | pkg-types@2.2.0: 2435 | resolution: 2436 | { 2437 | integrity: sha512-2SM/GZGAEkPp3KWORxQZns4M+WSeXbC2HEvmOIJe3Cmiv6ieAJvdVhDldtHqM5J1Y7MrR1XhkBT/rMlhh9FdqQ==, 2438 | } 2439 | 2440 | possible-typed-array-names@1.1.0: 2441 | resolution: 2442 | { 2443 | integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==, 2444 | } 2445 | engines: { node: '>= 0.4' } 2446 | 2447 | postcss@8.5.6: 2448 | resolution: 2449 | { 2450 | integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==, 2451 | } 2452 | engines: { node: ^10 || ^12 || >=14 } 2453 | 2454 | prettier@2.8.8: 2455 | resolution: 2456 | { 2457 | integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==, 2458 | } 2459 | engines: { node: '>=10.13.0' } 2460 | hasBin: true 2461 | 2462 | prettier@3.6.2: 2463 | resolution: 2464 | { 2465 | integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==, 2466 | } 2467 | engines: { node: '>=14' } 2468 | hasBin: true 2469 | 2470 | process-nextick-args@2.0.1: 2471 | resolution: 2472 | { 2473 | integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==, 2474 | } 2475 | 2476 | proxy-from-env@1.1.0: 2477 | resolution: 2478 | { 2479 | integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==, 2480 | } 2481 | 2482 | pump@3.0.3: 2483 | resolution: 2484 | { 2485 | integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==, 2486 | } 2487 | 2488 | quansync@0.2.10: 2489 | resolution: 2490 | { 2491 | integrity: sha512-t41VRkMYbkHyCYmOvx/6URnN80H7k4X0lLdBMGsz+maAwrJQYB1djpV6vHrQIBE0WBSGqhtEHrK9U3DWWH8v7A==, 2492 | } 2493 | 2494 | readable-stream@2.3.8: 2495 | resolution: 2496 | { 2497 | integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==, 2498 | } 2499 | 2500 | readdirp@3.6.0: 2501 | resolution: 2502 | { 2503 | integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==, 2504 | } 2505 | engines: { node: '>=8.10.0' } 2506 | 2507 | readdirp@4.1.2: 2508 | resolution: 2509 | { 2510 | integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==, 2511 | } 2512 | engines: { node: '>= 14.18.0' } 2513 | 2514 | regenerate-unicode-properties@10.2.0: 2515 | resolution: 2516 | { 2517 | integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==, 2518 | } 2519 | engines: { node: '>=4' } 2520 | 2521 | regenerate@1.4.2: 2522 | resolution: 2523 | { 2524 | integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==, 2525 | } 2526 | 2527 | regenerator-runtime@0.11.1: 2528 | resolution: 2529 | { 2530 | integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==, 2531 | } 2532 | 2533 | regenerator-runtime@0.14.1: 2534 | resolution: 2535 | { 2536 | integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==, 2537 | } 2538 | 2539 | regexpu-core@6.2.0: 2540 | resolution: 2541 | { 2542 | integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==, 2543 | } 2544 | engines: { node: '>=4' } 2545 | 2546 | regjsgen@0.8.0: 2547 | resolution: 2548 | { 2549 | integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==, 2550 | } 2551 | 2552 | regjsparser@0.12.0: 2553 | resolution: 2554 | { 2555 | integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==, 2556 | } 2557 | hasBin: true 2558 | 2559 | resize-observer-polyfill@1.5.1: 2560 | resolution: 2561 | { 2562 | integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==, 2563 | } 2564 | 2565 | resolve@1.22.10: 2566 | resolution: 2567 | { 2568 | integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==, 2569 | } 2570 | engines: { node: '>= 0.4' } 2571 | hasBin: true 2572 | 2573 | restore-cursor@5.1.0: 2574 | resolution: 2575 | { 2576 | integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==, 2577 | } 2578 | engines: { node: '>=18' } 2579 | 2580 | rfdc@1.4.1: 2581 | resolution: 2582 | { 2583 | integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==, 2584 | } 2585 | 2586 | rollup@4.46.1: 2587 | resolution: 2588 | { 2589 | integrity: sha512-33xGNBsDJAkzt0PvninskHlWnTIPgDtTwhg0U38CUoNP/7H6wI2Cz6dUeoNPbjdTdsYTGuiFFASuUOWovH0SyQ==, 2590 | } 2591 | engines: { node: '>=18.0.0', npm: '>=8.0.0' } 2592 | hasBin: true 2593 | 2594 | safe-buffer@5.1.2: 2595 | resolution: 2596 | { 2597 | integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==, 2598 | } 2599 | 2600 | safe-buffer@5.2.1: 2601 | resolution: 2602 | { 2603 | integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, 2604 | } 2605 | 2606 | safer-buffer@2.1.2: 2607 | resolution: 2608 | { 2609 | integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, 2610 | } 2611 | 2612 | sass@1.89.2: 2613 | resolution: 2614 | { 2615 | integrity: sha512-xCmtksBKd/jdJ9Bt9p7nPKiuqrlBMBuuGkQlkhZjjQk3Ty48lv93k5Dq6OPkKt4XwxDJ7tvlfrTa1MPA9bf+QA==, 2616 | } 2617 | engines: { node: '>=14.0.0' } 2618 | hasBin: true 2619 | 2620 | scule@1.3.0: 2621 | resolution: 2622 | { 2623 | integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==, 2624 | } 2625 | 2626 | semver@6.3.1: 2627 | resolution: 2628 | { 2629 | integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, 2630 | } 2631 | hasBin: true 2632 | 2633 | set-function-length@1.2.2: 2634 | resolution: 2635 | { 2636 | integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==, 2637 | } 2638 | engines: { node: '>= 0.4' } 2639 | 2640 | signal-exit@4.1.0: 2641 | resolution: 2642 | { 2643 | integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==, 2644 | } 2645 | engines: { node: '>=14' } 2646 | 2647 | simple-git-hooks@2.13.0: 2648 | resolution: 2649 | { 2650 | integrity: sha512-N+goiLxlkHJlyaYEglFypzVNMaNplPAk5syu0+OPp/Bk6dwVoXF6FfOw2vO0Dp+JHsBaI+w6cm8TnFl2Hw6tDA==, 2651 | } 2652 | hasBin: true 2653 | 2654 | slice-ansi@5.0.0: 2655 | resolution: 2656 | { 2657 | integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==, 2658 | } 2659 | engines: { node: '>=12' } 2660 | 2661 | slice-ansi@7.1.0: 2662 | resolution: 2663 | { 2664 | integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==, 2665 | } 2666 | engines: { node: '>=18' } 2667 | 2668 | source-map-js@1.2.1: 2669 | resolution: 2670 | { 2671 | integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==, 2672 | } 2673 | engines: { node: '>=0.10.0' } 2674 | 2675 | source-map-support@0.5.21: 2676 | resolution: 2677 | { 2678 | integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==, 2679 | } 2680 | 2681 | source-map@0.6.1: 2682 | resolution: 2683 | { 2684 | integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==, 2685 | } 2686 | engines: { node: '>=0.10.0' } 2687 | 2688 | streamifier@0.1.1: 2689 | resolution: 2690 | { 2691 | integrity: sha512-zDgl+muIlWzXNsXeyUfOk9dChMjlpkq0DRsxujtYPgyJ676yQ8jEm6zzaaWHFDg5BNcLuif0eD2MTyJdZqXpdg==, 2692 | } 2693 | engines: { node: '>=0.10' } 2694 | 2695 | string-argv@0.3.2: 2696 | resolution: 2697 | { 2698 | integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==, 2699 | } 2700 | engines: { node: '>=0.6.19' } 2701 | 2702 | string-width@7.2.0: 2703 | resolution: 2704 | { 2705 | integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==, 2706 | } 2707 | engines: { node: '>=18' } 2708 | 2709 | string_decoder@1.1.1: 2710 | resolution: 2711 | { 2712 | integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==, 2713 | } 2714 | 2715 | strip-ansi@7.1.0: 2716 | resolution: 2717 | { 2718 | integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==, 2719 | } 2720 | engines: { node: '>=12' } 2721 | 2722 | strip-literal@3.0.0: 2723 | resolution: 2724 | { 2725 | integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==, 2726 | } 2727 | 2728 | supports-preserve-symlinks-flag@1.0.0: 2729 | resolution: 2730 | { 2731 | integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, 2732 | } 2733 | engines: { node: '>= 0.4' } 2734 | 2735 | systemjs@6.15.1: 2736 | resolution: 2737 | { 2738 | integrity: sha512-Nk8c4lXvMB98MtbmjX7JwJRgJOL8fluecYCfCeYBznwmpOs8Bf15hLM6z4z71EDAhQVrQrI+wt1aLWSXZq+hXA==, 2739 | } 2740 | 2741 | tar-stream@1.6.2: 2742 | resolution: 2743 | { 2744 | integrity: sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==, 2745 | } 2746 | engines: { node: '>= 0.8.0' } 2747 | 2748 | terser@5.43.1: 2749 | resolution: 2750 | { 2751 | integrity: sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==, 2752 | } 2753 | engines: { node: '>=10' } 2754 | hasBin: true 2755 | 2756 | throttle-debounce@1.1.0: 2757 | resolution: 2758 | { 2759 | integrity: sha512-XH8UiPCQcWNuk2LYePibW/4qL97+ZQ1AN3FNXwZRBNPPowo/NRU5fAlDCSNBJIYCKbioZfuYtMhG4quqoJhVzg==, 2760 | } 2761 | engines: { node: '>=4' } 2762 | 2763 | tinyglobby@0.2.14: 2764 | resolution: 2765 | { 2766 | integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==, 2767 | } 2768 | engines: { node: '>=12.0.0' } 2769 | 2770 | to-buffer@1.2.1: 2771 | resolution: 2772 | { 2773 | integrity: sha512-tB82LpAIWjhLYbqjx3X4zEeHN6M8CiuOEy2JY8SEQVdYRe3CCHOFaqrBW1doLDrfpWhplcW7BL+bO3/6S3pcDQ==, 2774 | } 2775 | engines: { node: '>= 0.4' } 2776 | 2777 | to-regex-range@5.0.1: 2778 | resolution: 2779 | { 2780 | integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, 2781 | } 2782 | engines: { node: '>=8.0' } 2783 | 2784 | typed-array-buffer@1.0.3: 2785 | resolution: 2786 | { 2787 | integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==, 2788 | } 2789 | engines: { node: '>= 0.4' } 2790 | 2791 | ufo@1.6.1: 2792 | resolution: 2793 | { 2794 | integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==, 2795 | } 2796 | 2797 | unicode-canonical-property-names-ecmascript@2.0.1: 2798 | resolution: 2799 | { 2800 | integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==, 2801 | } 2802 | engines: { node: '>=4' } 2803 | 2804 | unicode-match-property-ecmascript@2.0.0: 2805 | resolution: 2806 | { 2807 | integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==, 2808 | } 2809 | engines: { node: '>=4' } 2810 | 2811 | unicode-match-property-value-ecmascript@2.2.0: 2812 | resolution: 2813 | { 2814 | integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==, 2815 | } 2816 | engines: { node: '>=4' } 2817 | 2818 | unicode-property-aliases-ecmascript@2.1.0: 2819 | resolution: 2820 | { 2821 | integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==, 2822 | } 2823 | engines: { node: '>=4' } 2824 | 2825 | unimport@4.2.0: 2826 | resolution: 2827 | { 2828 | integrity: sha512-mYVtA0nmzrysnYnyb3ALMbByJ+Maosee2+WyE0puXl+Xm2bUwPorPaaeZt0ETfuroPOtG8jj1g/qeFZ6buFnag==, 2829 | } 2830 | engines: { node: '>=18.12.0' } 2831 | 2832 | unplugin-auto-import@19.3.0: 2833 | resolution: 2834 | { 2835 | integrity: sha512-iIi0u4Gq2uGkAOGqlPJOAMI8vocvjh1clGTfSK4SOrJKrt+tirrixo/FjgBwXQNNdS7ofcr7OxzmOb/RjWxeEQ==, 2836 | } 2837 | engines: { node: '>=14' } 2838 | peerDependencies: 2839 | '@nuxt/kit': ^3.2.2 2840 | '@vueuse/core': '*' 2841 | peerDependenciesMeta: 2842 | '@nuxt/kit': 2843 | optional: true 2844 | '@vueuse/core': 2845 | optional: true 2846 | 2847 | unplugin-utils@0.2.4: 2848 | resolution: 2849 | { 2850 | integrity: sha512-8U/MtpkPkkk3Atewj1+RcKIjb5WBimZ/WSLhhR3w6SsIj8XJuKTacSP8g+2JhfSGw0Cb125Y+2zA/IzJZDVbhA==, 2851 | } 2852 | engines: { node: '>=18.12.0' } 2853 | 2854 | unplugin-vue-components@28.8.0: 2855 | resolution: 2856 | { 2857 | integrity: sha512-2Q6ZongpoQzuXDK0ZsVzMoshH0MWZQ1pzVL538G7oIDKRTVzHjppBDS8aB99SADGHN3lpGU7frraCG6yWNoL5Q==, 2858 | } 2859 | engines: { node: '>=14' } 2860 | peerDependencies: 2861 | '@babel/parser': ^7.15.8 2862 | '@nuxt/kit': ^3.2.2 || ^4.0.0 2863 | vue: 2 || 3 2864 | peerDependenciesMeta: 2865 | '@babel/parser': 2866 | optional: true 2867 | '@nuxt/kit': 2868 | optional: true 2869 | 2870 | unplugin@2.3.5: 2871 | resolution: 2872 | { 2873 | integrity: sha512-RyWSb5AHmGtjjNQ6gIlA67sHOsWpsbWpwDokLwTcejVdOjEkJZh7QKu14J00gDDVSh8kGH4KYC/TNBceXFZhtw==, 2874 | } 2875 | engines: { node: '>=18.12.0' } 2876 | 2877 | update-browserslist-db@1.1.3: 2878 | resolution: 2879 | { 2880 | integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==, 2881 | } 2882 | hasBin: true 2883 | peerDependencies: 2884 | browserslist: '>= 4.21.0' 2885 | 2886 | util-deprecate@1.0.2: 2887 | resolution: 2888 | { 2889 | integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, 2890 | } 2891 | 2892 | vite@7.0.6: 2893 | resolution: 2894 | { 2895 | integrity: sha512-MHFiOENNBd+Bd9uvc8GEsIzdkn1JxMmEeYX35tI3fv0sJBUTfW5tQsoaOwuY4KhBI09A3dUJ/DXf2yxPVPUceg==, 2896 | } 2897 | engines: { node: ^20.19.0 || >=22.12.0 } 2898 | hasBin: true 2899 | peerDependencies: 2900 | '@types/node': ^20.19.0 || >=22.12.0 2901 | jiti: '>=1.21.0' 2902 | less: ^4.0.0 2903 | lightningcss: ^1.21.0 2904 | sass: ^1.70.0 2905 | sass-embedded: ^1.70.0 2906 | stylus: '>=0.54.8' 2907 | sugarss: ^5.0.0 2908 | terser: ^5.16.0 2909 | tsx: ^4.8.1 2910 | yaml: ^2.4.2 2911 | peerDependenciesMeta: 2912 | '@types/node': 2913 | optional: true 2914 | jiti: 2915 | optional: true 2916 | less: 2917 | optional: true 2918 | lightningcss: 2919 | optional: true 2920 | sass: 2921 | optional: true 2922 | sass-embedded: 2923 | optional: true 2924 | stylus: 2925 | optional: true 2926 | sugarss: 2927 | optional: true 2928 | terser: 2929 | optional: true 2930 | tsx: 2931 | optional: true 2932 | yaml: 2933 | optional: true 2934 | 2935 | vue-router@3.6.5: 2936 | resolution: 2937 | { 2938 | integrity: sha512-VYXZQLtjuvKxxcshuRAwjHnciqZVoXAjTjcqBTz4rKc8qih9g9pI3hbDjmqXaHdgL3v8pV6P8Z335XvHzESxLQ==, 2939 | } 2940 | peerDependencies: 2941 | vue: ^2 2942 | 2943 | vue@2.7.16: 2944 | resolution: 2945 | { 2946 | integrity: sha512-4gCtFXaAA3zYZdTp5s4Hl2sozuySsgz4jy1EnpBHNfpMa9dK1ZCG7viqBPCwXtmgc8nHqUsAu3G4gtmXkkY3Sw==, 2947 | } 2948 | deprecated: Vue 2 has reached EOL and is no longer actively maintained. See https://v2.vuejs.org/eol/ for more details. 2949 | 2950 | vuex@3.6.2: 2951 | resolution: 2952 | { 2953 | integrity: sha512-ETW44IqCgBpVomy520DT5jf8n0zoCac+sxWnn+hMe/CzaSejb/eVw2YToiXYX+Ex/AuHHia28vWTq4goAexFbw==, 2954 | } 2955 | peerDependencies: 2956 | vue: ^2.0.0 2957 | 2958 | vxe-pc-ui@3.7.30: 2959 | resolution: 2960 | { 2961 | integrity: sha512-M4DEvgHxO7obY7HsnoNiFgUMWj4kuvTuu4/WQjRz7Pfq67fG3f0XhNc3oaOqdC0fzvJzVPZQxSz8ymH2HE7ujw==, 2962 | } 2963 | 2964 | vxe-table@3.16.8: 2965 | resolution: 2966 | { 2967 | integrity: sha512-tL3cnm5qP9YyvE98fs9f5ojFK6d70gqcWwipjA9af55cK0Q+Yp/H0enOaJgjH+MiYZKKklQW1ed9Pw/HNS3azA==, 2968 | } 2969 | 2970 | webpack-virtual-modules@0.6.2: 2971 | resolution: 2972 | { 2973 | integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==, 2974 | } 2975 | 2976 | which-typed-array@1.1.19: 2977 | resolution: 2978 | { 2979 | integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==, 2980 | } 2981 | engines: { node: '>= 0.4' } 2982 | 2983 | wrap-ansi@9.0.0: 2984 | resolution: 2985 | { 2986 | integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==, 2987 | } 2988 | engines: { node: '>=18' } 2989 | 2990 | wrappy@1.0.2: 2991 | resolution: 2992 | { 2993 | integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, 2994 | } 2995 | 2996 | xe-utils@3.7.8: 2997 | resolution: 2998 | { 2999 | integrity: sha512-V/k6B/ASYir6yLYhp62DnM17po9u1N9mou/rn4if5WoFCsAO49JpCiVpkDpwCv4zxGfWmhWgzmz4FytWF+pDVw==, 3000 | } 3001 | 3002 | xtend@4.0.2: 3003 | resolution: 3004 | { 3005 | integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==, 3006 | } 3007 | engines: { node: '>=0.4' } 3008 | 3009 | yallist@3.1.1: 3010 | resolution: 3011 | { 3012 | integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, 3013 | } 3014 | 3015 | yaml@2.8.0: 3016 | resolution: 3017 | { 3018 | integrity: sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==, 3019 | } 3020 | engines: { node: '>= 14.6' } 3021 | hasBin: true 3022 | 3023 | yazl@2.5.1: 3024 | resolution: 3025 | { 3026 | integrity: sha512-phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw==, 3027 | } 3028 | 3029 | snapshots: 3030 | '@ampproject/remapping@2.3.0': 3031 | dependencies: 3032 | '@jridgewell/gen-mapping': 0.3.12 3033 | '@jridgewell/trace-mapping': 0.3.29 3034 | 3035 | '@babel/code-frame@7.27.1': 3036 | dependencies: 3037 | '@babel/helper-validator-identifier': 7.27.1 3038 | js-tokens: 4.0.0 3039 | picocolors: 1.1.1 3040 | 3041 | '@babel/compat-data@7.28.0': {} 3042 | 3043 | '@babel/core@7.28.0': 3044 | dependencies: 3045 | '@ampproject/remapping': 2.3.0 3046 | '@babel/code-frame': 7.27.1 3047 | '@babel/generator': 7.28.0 3048 | '@babel/helper-compilation-targets': 7.27.2 3049 | '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0) 3050 | '@babel/helpers': 7.28.2 3051 | '@babel/parser': 7.28.0 3052 | '@babel/template': 7.27.2 3053 | '@babel/traverse': 7.28.0 3054 | '@babel/types': 7.28.2 3055 | convert-source-map: 2.0.0 3056 | debug: 4.4.1 3057 | gensync: 1.0.0-beta.2 3058 | json5: 2.2.3 3059 | semver: 6.3.1 3060 | transitivePeerDependencies: 3061 | - supports-color 3062 | 3063 | '@babel/generator@7.28.0': 3064 | dependencies: 3065 | '@babel/parser': 7.28.0 3066 | '@babel/types': 7.28.2 3067 | '@jridgewell/gen-mapping': 0.3.12 3068 | '@jridgewell/trace-mapping': 0.3.29 3069 | jsesc: 3.1.0 3070 | 3071 | '@babel/helper-annotate-as-pure@7.27.3': 3072 | dependencies: 3073 | '@babel/types': 7.28.2 3074 | 3075 | '@babel/helper-compilation-targets@7.27.2': 3076 | dependencies: 3077 | '@babel/compat-data': 7.28.0 3078 | '@babel/helper-validator-option': 7.27.1 3079 | browserslist: 4.25.1 3080 | lru-cache: 5.1.1 3081 | semver: 6.3.1 3082 | 3083 | '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.28.0)': 3084 | dependencies: 3085 | '@babel/core': 7.28.0 3086 | '@babel/helper-annotate-as-pure': 7.27.3 3087 | '@babel/helper-member-expression-to-functions': 7.27.1 3088 | '@babel/helper-optimise-call-expression': 7.27.1 3089 | '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.0) 3090 | '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 3091 | '@babel/traverse': 7.28.0 3092 | semver: 6.3.1 3093 | transitivePeerDependencies: 3094 | - supports-color 3095 | 3096 | '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.28.0)': 3097 | dependencies: 3098 | '@babel/core': 7.28.0 3099 | '@babel/helper-annotate-as-pure': 7.27.3 3100 | regexpu-core: 6.2.0 3101 | semver: 6.3.1 3102 | 3103 | '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.0)': 3104 | dependencies: 3105 | '@babel/core': 7.28.0 3106 | '@babel/helper-compilation-targets': 7.27.2 3107 | '@babel/helper-plugin-utils': 7.27.1 3108 | debug: 4.4.1 3109 | lodash.debounce: 4.0.8 3110 | resolve: 1.22.10 3111 | transitivePeerDependencies: 3112 | - supports-color 3113 | 3114 | '@babel/helper-globals@7.28.0': {} 3115 | 3116 | '@babel/helper-member-expression-to-functions@7.27.1': 3117 | dependencies: 3118 | '@babel/traverse': 7.28.0 3119 | '@babel/types': 7.28.2 3120 | transitivePeerDependencies: 3121 | - supports-color 3122 | 3123 | '@babel/helper-module-imports@7.27.1': 3124 | dependencies: 3125 | '@babel/traverse': 7.28.0 3126 | '@babel/types': 7.28.2 3127 | transitivePeerDependencies: 3128 | - supports-color 3129 | 3130 | '@babel/helper-module-transforms@7.27.3(@babel/core@7.28.0)': 3131 | dependencies: 3132 | '@babel/core': 7.28.0 3133 | '@babel/helper-module-imports': 7.27.1 3134 | '@babel/helper-validator-identifier': 7.27.1 3135 | '@babel/traverse': 7.28.0 3136 | transitivePeerDependencies: 3137 | - supports-color 3138 | 3139 | '@babel/helper-optimise-call-expression@7.27.1': 3140 | dependencies: 3141 | '@babel/types': 7.28.2 3142 | 3143 | '@babel/helper-plugin-utils@7.27.1': {} 3144 | 3145 | '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.0)': 3146 | dependencies: 3147 | '@babel/core': 7.28.0 3148 | '@babel/helper-annotate-as-pure': 7.27.3 3149 | '@babel/helper-wrap-function': 7.27.1 3150 | '@babel/traverse': 7.28.0 3151 | transitivePeerDependencies: 3152 | - supports-color 3153 | 3154 | '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.0)': 3155 | dependencies: 3156 | '@babel/core': 7.28.0 3157 | '@babel/helper-member-expression-to-functions': 7.27.1 3158 | '@babel/helper-optimise-call-expression': 7.27.1 3159 | '@babel/traverse': 7.28.0 3160 | transitivePeerDependencies: 3161 | - supports-color 3162 | 3163 | '@babel/helper-skip-transparent-expression-wrappers@7.27.1': 3164 | dependencies: 3165 | '@babel/traverse': 7.28.0 3166 | '@babel/types': 7.28.2 3167 | transitivePeerDependencies: 3168 | - supports-color 3169 | 3170 | '@babel/helper-string-parser@7.27.1': {} 3171 | 3172 | '@babel/helper-validator-identifier@7.27.1': {} 3173 | 3174 | '@babel/helper-validator-option@7.27.1': {} 3175 | 3176 | '@babel/helper-wrap-function@7.27.1': 3177 | dependencies: 3178 | '@babel/template': 7.27.2 3179 | '@babel/traverse': 7.28.0 3180 | '@babel/types': 7.28.2 3181 | transitivePeerDependencies: 3182 | - supports-color 3183 | 3184 | '@babel/helpers@7.28.2': 3185 | dependencies: 3186 | '@babel/template': 7.27.2 3187 | '@babel/types': 7.28.2 3188 | 3189 | '@babel/parser@7.28.0': 3190 | dependencies: 3191 | '@babel/types': 7.28.2 3192 | 3193 | '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.28.0)': 3194 | dependencies: 3195 | '@babel/core': 7.28.0 3196 | '@babel/helper-plugin-utils': 7.27.1 3197 | '@babel/traverse': 7.28.0 3198 | transitivePeerDependencies: 3199 | - supports-color 3200 | 3201 | '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.28.0)': 3202 | dependencies: 3203 | '@babel/core': 7.28.0 3204 | '@babel/helper-plugin-utils': 7.27.1 3205 | 3206 | '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.28.0)': 3207 | dependencies: 3208 | '@babel/core': 7.28.0 3209 | '@babel/helper-plugin-utils': 7.27.1 3210 | 3211 | '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.28.0)': 3212 | dependencies: 3213 | '@babel/core': 7.28.0 3214 | '@babel/helper-plugin-utils': 7.27.1 3215 | '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 3216 | '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.0) 3217 | transitivePeerDependencies: 3218 | - supports-color 3219 | 3220 | '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1(@babel/core@7.28.0)': 3221 | dependencies: 3222 | '@babel/core': 7.28.0 3223 | '@babel/helper-plugin-utils': 7.27.1 3224 | '@babel/traverse': 7.28.0 3225 | transitivePeerDependencies: 3226 | - supports-color 3227 | 3228 | '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.0)': 3229 | dependencies: 3230 | '@babel/core': 7.28.0 3231 | 3232 | '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.28.0)': 3233 | dependencies: 3234 | '@babel/core': 7.28.0 3235 | '@babel/helper-plugin-utils': 7.27.1 3236 | 3237 | '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.0)': 3238 | dependencies: 3239 | '@babel/core': 7.28.0 3240 | '@babel/helper-plugin-utils': 7.27.1 3241 | 3242 | '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.28.0)': 3243 | dependencies: 3244 | '@babel/core': 7.28.0 3245 | '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0) 3246 | '@babel/helper-plugin-utils': 7.27.1 3247 | 3248 | '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.0)': 3249 | dependencies: 3250 | '@babel/core': 7.28.0 3251 | '@babel/helper-plugin-utils': 7.27.1 3252 | 3253 | '@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.28.0)': 3254 | dependencies: 3255 | '@babel/core': 7.28.0 3256 | '@babel/helper-plugin-utils': 7.27.1 3257 | '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.0) 3258 | '@babel/traverse': 7.28.0 3259 | transitivePeerDependencies: 3260 | - supports-color 3261 | 3262 | '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.0)': 3263 | dependencies: 3264 | '@babel/core': 7.28.0 3265 | '@babel/helper-module-imports': 7.27.1 3266 | '@babel/helper-plugin-utils': 7.27.1 3267 | '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.0) 3268 | transitivePeerDependencies: 3269 | - supports-color 3270 | 3271 | '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.28.0)': 3272 | dependencies: 3273 | '@babel/core': 7.28.0 3274 | '@babel/helper-plugin-utils': 7.27.1 3275 | 3276 | '@babel/plugin-transform-block-scoping@7.28.0(@babel/core@7.28.0)': 3277 | dependencies: 3278 | '@babel/core': 7.28.0 3279 | '@babel/helper-plugin-utils': 7.27.1 3280 | 3281 | '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.0)': 3282 | dependencies: 3283 | '@babel/core': 7.28.0 3284 | '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0) 3285 | '@babel/helper-plugin-utils': 7.27.1 3286 | transitivePeerDependencies: 3287 | - supports-color 3288 | 3289 | '@babel/plugin-transform-class-static-block@7.27.1(@babel/core@7.28.0)': 3290 | dependencies: 3291 | '@babel/core': 7.28.0 3292 | '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0) 3293 | '@babel/helper-plugin-utils': 7.27.1 3294 | transitivePeerDependencies: 3295 | - supports-color 3296 | 3297 | '@babel/plugin-transform-classes@7.28.0(@babel/core@7.28.0)': 3298 | dependencies: 3299 | '@babel/core': 7.28.0 3300 | '@babel/helper-annotate-as-pure': 7.27.3 3301 | '@babel/helper-compilation-targets': 7.27.2 3302 | '@babel/helper-globals': 7.28.0 3303 | '@babel/helper-plugin-utils': 7.27.1 3304 | '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.0) 3305 | '@babel/traverse': 7.28.0 3306 | transitivePeerDependencies: 3307 | - supports-color 3308 | 3309 | '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.0)': 3310 | dependencies: 3311 | '@babel/core': 7.28.0 3312 | '@babel/helper-plugin-utils': 7.27.1 3313 | '@babel/template': 7.27.2 3314 | 3315 | '@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.28.0)': 3316 | dependencies: 3317 | '@babel/core': 7.28.0 3318 | '@babel/helper-plugin-utils': 7.27.1 3319 | '@babel/traverse': 7.28.0 3320 | transitivePeerDependencies: 3321 | - supports-color 3322 | 3323 | '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.28.0)': 3324 | dependencies: 3325 | '@babel/core': 7.28.0 3326 | '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0) 3327 | '@babel/helper-plugin-utils': 7.27.1 3328 | 3329 | '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.28.0)': 3330 | dependencies: 3331 | '@babel/core': 7.28.0 3332 | '@babel/helper-plugin-utils': 7.27.1 3333 | 3334 | '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.28.0)': 3335 | dependencies: 3336 | '@babel/core': 7.28.0 3337 | '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0) 3338 | '@babel/helper-plugin-utils': 7.27.1 3339 | 3340 | '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.28.0)': 3341 | dependencies: 3342 | '@babel/core': 7.28.0 3343 | '@babel/helper-plugin-utils': 7.27.1 3344 | 3345 | '@babel/plugin-transform-explicit-resource-management@7.28.0(@babel/core@7.28.0)': 3346 | dependencies: 3347 | '@babel/core': 7.28.0 3348 | '@babel/helper-plugin-utils': 7.27.1 3349 | '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.0) 3350 | transitivePeerDependencies: 3351 | - supports-color 3352 | 3353 | '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.28.0)': 3354 | dependencies: 3355 | '@babel/core': 7.28.0 3356 | '@babel/helper-plugin-utils': 7.27.1 3357 | 3358 | '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.0)': 3359 | dependencies: 3360 | '@babel/core': 7.28.0 3361 | '@babel/helper-plugin-utils': 7.27.1 3362 | 3363 | '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.0)': 3364 | dependencies: 3365 | '@babel/core': 7.28.0 3366 | '@babel/helper-plugin-utils': 7.27.1 3367 | '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 3368 | transitivePeerDependencies: 3369 | - supports-color 3370 | 3371 | '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.28.0)': 3372 | dependencies: 3373 | '@babel/core': 7.28.0 3374 | '@babel/helper-compilation-targets': 7.27.2 3375 | '@babel/helper-plugin-utils': 7.27.1 3376 | '@babel/traverse': 7.28.0 3377 | transitivePeerDependencies: 3378 | - supports-color 3379 | 3380 | '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.28.0)': 3381 | dependencies: 3382 | '@babel/core': 7.28.0 3383 | '@babel/helper-plugin-utils': 7.27.1 3384 | 3385 | '@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.0)': 3386 | dependencies: 3387 | '@babel/core': 7.28.0 3388 | '@babel/helper-plugin-utils': 7.27.1 3389 | 3390 | '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.28.0)': 3391 | dependencies: 3392 | '@babel/core': 7.28.0 3393 | '@babel/helper-plugin-utils': 7.27.1 3394 | 3395 | '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.28.0)': 3396 | dependencies: 3397 | '@babel/core': 7.28.0 3398 | '@babel/helper-plugin-utils': 7.27.1 3399 | 3400 | '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.28.0)': 3401 | dependencies: 3402 | '@babel/core': 7.28.0 3403 | '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0) 3404 | '@babel/helper-plugin-utils': 7.27.1 3405 | transitivePeerDependencies: 3406 | - supports-color 3407 | 3408 | '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.0)': 3409 | dependencies: 3410 | '@babel/core': 7.28.0 3411 | '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0) 3412 | '@babel/helper-plugin-utils': 7.27.1 3413 | transitivePeerDependencies: 3414 | - supports-color 3415 | 3416 | '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.28.0)': 3417 | dependencies: 3418 | '@babel/core': 7.28.0 3419 | '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0) 3420 | '@babel/helper-plugin-utils': 7.27.1 3421 | '@babel/helper-validator-identifier': 7.27.1 3422 | '@babel/traverse': 7.28.0 3423 | transitivePeerDependencies: 3424 | - supports-color 3425 | 3426 | '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.28.0)': 3427 | dependencies: 3428 | '@babel/core': 7.28.0 3429 | '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0) 3430 | '@babel/helper-plugin-utils': 7.27.1 3431 | transitivePeerDependencies: 3432 | - supports-color 3433 | 3434 | '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.0)': 3435 | dependencies: 3436 | '@babel/core': 7.28.0 3437 | '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0) 3438 | '@babel/helper-plugin-utils': 7.27.1 3439 | 3440 | '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.0)': 3441 | dependencies: 3442 | '@babel/core': 7.28.0 3443 | '@babel/helper-plugin-utils': 7.27.1 3444 | 3445 | '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.0)': 3446 | dependencies: 3447 | '@babel/core': 7.28.0 3448 | '@babel/helper-plugin-utils': 7.27.1 3449 | 3450 | '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.28.0)': 3451 | dependencies: 3452 | '@babel/core': 7.28.0 3453 | '@babel/helper-plugin-utils': 7.27.1 3454 | 3455 | '@babel/plugin-transform-object-rest-spread@7.28.0(@babel/core@7.28.0)': 3456 | dependencies: 3457 | '@babel/core': 7.28.0 3458 | '@babel/helper-compilation-targets': 7.27.2 3459 | '@babel/helper-plugin-utils': 7.27.1 3460 | '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.0) 3461 | '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.0) 3462 | '@babel/traverse': 7.28.0 3463 | transitivePeerDependencies: 3464 | - supports-color 3465 | 3466 | '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.28.0)': 3467 | dependencies: 3468 | '@babel/core': 7.28.0 3469 | '@babel/helper-plugin-utils': 7.27.1 3470 | '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.0) 3471 | transitivePeerDependencies: 3472 | - supports-color 3473 | 3474 | '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.28.0)': 3475 | dependencies: 3476 | '@babel/core': 7.28.0 3477 | '@babel/helper-plugin-utils': 7.27.1 3478 | 3479 | '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.28.0)': 3480 | dependencies: 3481 | '@babel/core': 7.28.0 3482 | '@babel/helper-plugin-utils': 7.27.1 3483 | '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 3484 | transitivePeerDependencies: 3485 | - supports-color 3486 | 3487 | '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.28.0)': 3488 | dependencies: 3489 | '@babel/core': 7.28.0 3490 | '@babel/helper-plugin-utils': 7.27.1 3491 | 3492 | '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.0)': 3493 | dependencies: 3494 | '@babel/core': 7.28.0 3495 | '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0) 3496 | '@babel/helper-plugin-utils': 7.27.1 3497 | transitivePeerDependencies: 3498 | - supports-color 3499 | 3500 | '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.28.0)': 3501 | dependencies: 3502 | '@babel/core': 7.28.0 3503 | '@babel/helper-annotate-as-pure': 7.27.3 3504 | '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0) 3505 | '@babel/helper-plugin-utils': 7.27.1 3506 | transitivePeerDependencies: 3507 | - supports-color 3508 | 3509 | '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.28.0)': 3510 | dependencies: 3511 | '@babel/core': 7.28.0 3512 | '@babel/helper-plugin-utils': 7.27.1 3513 | 3514 | '@babel/plugin-transform-regenerator@7.28.1(@babel/core@7.28.0)': 3515 | dependencies: 3516 | '@babel/core': 7.28.0 3517 | '@babel/helper-plugin-utils': 7.27.1 3518 | 3519 | '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.28.0)': 3520 | dependencies: 3521 | '@babel/core': 7.28.0 3522 | '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0) 3523 | '@babel/helper-plugin-utils': 7.27.1 3524 | 3525 | '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.0)': 3526 | dependencies: 3527 | '@babel/core': 7.28.0 3528 | '@babel/helper-plugin-utils': 7.27.1 3529 | 3530 | '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.0)': 3531 | dependencies: 3532 | '@babel/core': 7.28.0 3533 | '@babel/helper-plugin-utils': 7.27.1 3534 | 3535 | '@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.0)': 3536 | dependencies: 3537 | '@babel/core': 7.28.0 3538 | '@babel/helper-plugin-utils': 7.27.1 3539 | '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 3540 | transitivePeerDependencies: 3541 | - supports-color 3542 | 3543 | '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.0)': 3544 | dependencies: 3545 | '@babel/core': 7.28.0 3546 | '@babel/helper-plugin-utils': 7.27.1 3547 | 3548 | '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.0)': 3549 | dependencies: 3550 | '@babel/core': 7.28.0 3551 | '@babel/helper-plugin-utils': 7.27.1 3552 | 3553 | '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.28.0)': 3554 | dependencies: 3555 | '@babel/core': 7.28.0 3556 | '@babel/helper-plugin-utils': 7.27.1 3557 | 3558 | '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.28.0)': 3559 | dependencies: 3560 | '@babel/core': 7.28.0 3561 | '@babel/helper-plugin-utils': 7.27.1 3562 | 3563 | '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.28.0)': 3564 | dependencies: 3565 | '@babel/core': 7.28.0 3566 | '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0) 3567 | '@babel/helper-plugin-utils': 7.27.1 3568 | 3569 | '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.0)': 3570 | dependencies: 3571 | '@babel/core': 7.28.0 3572 | '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0) 3573 | '@babel/helper-plugin-utils': 7.27.1 3574 | 3575 | '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.28.0)': 3576 | dependencies: 3577 | '@babel/core': 7.28.0 3578 | '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0) 3579 | '@babel/helper-plugin-utils': 7.27.1 3580 | 3581 | '@babel/preset-env@7.28.0(@babel/core@7.28.0)': 3582 | dependencies: 3583 | '@babel/compat-data': 7.28.0 3584 | '@babel/core': 7.28.0 3585 | '@babel/helper-compilation-targets': 7.27.2 3586 | '@babel/helper-plugin-utils': 7.27.1 3587 | '@babel/helper-validator-option': 7.27.1 3588 | '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.28.0) 3589 | '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.28.0) 3590 | '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.28.0) 3591 | '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.28.0) 3592 | '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.27.1(@babel/core@7.28.0) 3593 | '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.0) 3594 | '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.28.0) 3595 | '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.0) 3596 | '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.28.0) 3597 | '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.0) 3598 | '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.0) 3599 | '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.0) 3600 | '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.28.0) 3601 | '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.28.0) 3602 | '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.0) 3603 | '@babel/plugin-transform-class-static-block': 7.27.1(@babel/core@7.28.0) 3604 | '@babel/plugin-transform-classes': 7.28.0(@babel/core@7.28.0) 3605 | '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.0) 3606 | '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.0) 3607 | '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.28.0) 3608 | '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.28.0) 3609 | '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.0) 3610 | '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.28.0) 3611 | '@babel/plugin-transform-explicit-resource-management': 7.28.0(@babel/core@7.28.0) 3612 | '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.28.0) 3613 | '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.28.0) 3614 | '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.0) 3615 | '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.0) 3616 | '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.28.0) 3617 | '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.0) 3618 | '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.28.0) 3619 | '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.28.0) 3620 | '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.28.0) 3621 | '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.0) 3622 | '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.28.0) 3623 | '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.28.0) 3624 | '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.0) 3625 | '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.28.0) 3626 | '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.0) 3627 | '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.28.0) 3628 | '@babel/plugin-transform-object-rest-spread': 7.28.0(@babel/core@7.28.0) 3629 | '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.28.0) 3630 | '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.28.0) 3631 | '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.0) 3632 | '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.0) 3633 | '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.0) 3634 | '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.0) 3635 | '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.28.0) 3636 | '@babel/plugin-transform-regenerator': 7.28.1(@babel/core@7.28.0) 3637 | '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.28.0) 3638 | '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.28.0) 3639 | '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.0) 3640 | '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.0) 3641 | '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.0) 3642 | '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.0) 3643 | '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.28.0) 3644 | '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.28.0) 3645 | '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.28.0) 3646 | '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.0) 3647 | '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.28.0) 3648 | '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.28.0) 3649 | babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.0) 3650 | babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.0) 3651 | babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.0) 3652 | core-js-compat: 3.44.0 3653 | semver: 6.3.1 3654 | transitivePeerDependencies: 3655 | - supports-color 3656 | 3657 | '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.0)': 3658 | dependencies: 3659 | '@babel/core': 7.28.0 3660 | '@babel/helper-plugin-utils': 7.27.1 3661 | '@babel/types': 7.28.2 3662 | esutils: 2.0.3 3663 | 3664 | '@babel/template@7.27.2': 3665 | dependencies: 3666 | '@babel/code-frame': 7.27.1 3667 | '@babel/parser': 7.28.0 3668 | '@babel/types': 7.28.2 3669 | 3670 | '@babel/traverse@7.28.0': 3671 | dependencies: 3672 | '@babel/code-frame': 7.27.1 3673 | '@babel/generator': 7.28.0 3674 | '@babel/helper-globals': 7.28.0 3675 | '@babel/parser': 7.28.0 3676 | '@babel/template': 7.27.2 3677 | '@babel/types': 7.28.2 3678 | debug: 4.4.1 3679 | transitivePeerDependencies: 3680 | - supports-color 3681 | 3682 | '@babel/types@7.28.2': 3683 | dependencies: 3684 | '@babel/helper-string-parser': 7.27.1 3685 | '@babel/helper-validator-identifier': 7.27.1 3686 | 3687 | '@eggjs/yauzl@2.11.0': 3688 | dependencies: 3689 | buffer-crc32: 0.2.13 3690 | fd-slicer2: 1.2.0 3691 | 3692 | '@esbuild/aix-ppc64@0.25.8': 3693 | optional: true 3694 | 3695 | '@esbuild/android-arm64@0.25.8': 3696 | optional: true 3697 | 3698 | '@esbuild/android-arm@0.25.8': 3699 | optional: true 3700 | 3701 | '@esbuild/android-x64@0.25.8': 3702 | optional: true 3703 | 3704 | '@esbuild/darwin-arm64@0.25.8': 3705 | optional: true 3706 | 3707 | '@esbuild/darwin-x64@0.25.8': 3708 | optional: true 3709 | 3710 | '@esbuild/freebsd-arm64@0.25.8': 3711 | optional: true 3712 | 3713 | '@esbuild/freebsd-x64@0.25.8': 3714 | optional: true 3715 | 3716 | '@esbuild/linux-arm64@0.25.8': 3717 | optional: true 3718 | 3719 | '@esbuild/linux-arm@0.25.8': 3720 | optional: true 3721 | 3722 | '@esbuild/linux-ia32@0.25.8': 3723 | optional: true 3724 | 3725 | '@esbuild/linux-loong64@0.25.8': 3726 | optional: true 3727 | 3728 | '@esbuild/linux-mips64el@0.25.8': 3729 | optional: true 3730 | 3731 | '@esbuild/linux-ppc64@0.25.8': 3732 | optional: true 3733 | 3734 | '@esbuild/linux-riscv64@0.25.8': 3735 | optional: true 3736 | 3737 | '@esbuild/linux-s390x@0.25.8': 3738 | optional: true 3739 | 3740 | '@esbuild/linux-x64@0.25.8': 3741 | optional: true 3742 | 3743 | '@esbuild/netbsd-arm64@0.25.8': 3744 | optional: true 3745 | 3746 | '@esbuild/netbsd-x64@0.25.8': 3747 | optional: true 3748 | 3749 | '@esbuild/openbsd-arm64@0.25.8': 3750 | optional: true 3751 | 3752 | '@esbuild/openbsd-x64@0.25.8': 3753 | optional: true 3754 | 3755 | '@esbuild/openharmony-arm64@0.25.8': 3756 | optional: true 3757 | 3758 | '@esbuild/sunos-x64@0.25.8': 3759 | optional: true 3760 | 3761 | '@esbuild/win32-arm64@0.25.8': 3762 | optional: true 3763 | 3764 | '@esbuild/win32-ia32@0.25.8': 3765 | optional: true 3766 | 3767 | '@esbuild/win32-x64@0.25.8': 3768 | optional: true 3769 | 3770 | '@jridgewell/gen-mapping@0.3.12': 3771 | dependencies: 3772 | '@jridgewell/sourcemap-codec': 1.5.4 3773 | '@jridgewell/trace-mapping': 0.3.29 3774 | 3775 | '@jridgewell/resolve-uri@3.1.2': {} 3776 | 3777 | '@jridgewell/source-map@0.3.10': 3778 | dependencies: 3779 | '@jridgewell/gen-mapping': 0.3.12 3780 | '@jridgewell/trace-mapping': 0.3.29 3781 | 3782 | '@jridgewell/sourcemap-codec@1.5.4': {} 3783 | 3784 | '@jridgewell/trace-mapping@0.3.29': 3785 | dependencies: 3786 | '@jridgewell/resolve-uri': 3.1.2 3787 | '@jridgewell/sourcemap-codec': 1.5.4 3788 | 3789 | '@parcel/watcher-android-arm64@2.5.1': 3790 | optional: true 3791 | 3792 | '@parcel/watcher-darwin-arm64@2.5.1': 3793 | optional: true 3794 | 3795 | '@parcel/watcher-darwin-x64@2.5.1': 3796 | optional: true 3797 | 3798 | '@parcel/watcher-freebsd-x64@2.5.1': 3799 | optional: true 3800 | 3801 | '@parcel/watcher-linux-arm-glibc@2.5.1': 3802 | optional: true 3803 | 3804 | '@parcel/watcher-linux-arm-musl@2.5.1': 3805 | optional: true 3806 | 3807 | '@parcel/watcher-linux-arm64-glibc@2.5.1': 3808 | optional: true 3809 | 3810 | '@parcel/watcher-linux-arm64-musl@2.5.1': 3811 | optional: true 3812 | 3813 | '@parcel/watcher-linux-x64-glibc@2.5.1': 3814 | optional: true 3815 | 3816 | '@parcel/watcher-linux-x64-musl@2.5.1': 3817 | optional: true 3818 | 3819 | '@parcel/watcher-win32-arm64@2.5.1': 3820 | optional: true 3821 | 3822 | '@parcel/watcher-win32-ia32@2.5.1': 3823 | optional: true 3824 | 3825 | '@parcel/watcher-win32-x64@2.5.1': 3826 | optional: true 3827 | 3828 | '@parcel/watcher@2.5.1': 3829 | dependencies: 3830 | detect-libc: 1.0.3 3831 | is-glob: 4.0.3 3832 | micromatch: 4.0.8 3833 | node-addon-api: 7.1.1 3834 | optionalDependencies: 3835 | '@parcel/watcher-android-arm64': 2.5.1 3836 | '@parcel/watcher-darwin-arm64': 2.5.1 3837 | '@parcel/watcher-darwin-x64': 2.5.1 3838 | '@parcel/watcher-freebsd-x64': 2.5.1 3839 | '@parcel/watcher-linux-arm-glibc': 2.5.1 3840 | '@parcel/watcher-linux-arm-musl': 2.5.1 3841 | '@parcel/watcher-linux-arm64-glibc': 2.5.1 3842 | '@parcel/watcher-linux-arm64-musl': 2.5.1 3843 | '@parcel/watcher-linux-x64-glibc': 2.5.1 3844 | '@parcel/watcher-linux-x64-musl': 2.5.1 3845 | '@parcel/watcher-win32-arm64': 2.5.1 3846 | '@parcel/watcher-win32-ia32': 2.5.1 3847 | '@parcel/watcher-win32-x64': 2.5.1 3848 | optional: true 3849 | 3850 | '@rollup/rollup-android-arm-eabi@4.46.1': 3851 | optional: true 3852 | 3853 | '@rollup/rollup-android-arm64@4.46.1': 3854 | optional: true 3855 | 3856 | '@rollup/rollup-darwin-arm64@4.46.1': 3857 | optional: true 3858 | 3859 | '@rollup/rollup-darwin-x64@4.46.1': 3860 | optional: true 3861 | 3862 | '@rollup/rollup-freebsd-arm64@4.46.1': 3863 | optional: true 3864 | 3865 | '@rollup/rollup-freebsd-x64@4.46.1': 3866 | optional: true 3867 | 3868 | '@rollup/rollup-linux-arm-gnueabihf@4.46.1': 3869 | optional: true 3870 | 3871 | '@rollup/rollup-linux-arm-musleabihf@4.46.1': 3872 | optional: true 3873 | 3874 | '@rollup/rollup-linux-arm64-gnu@4.46.1': 3875 | optional: true 3876 | 3877 | '@rollup/rollup-linux-arm64-musl@4.46.1': 3878 | optional: true 3879 | 3880 | '@rollup/rollup-linux-loongarch64-gnu@4.46.1': 3881 | optional: true 3882 | 3883 | '@rollup/rollup-linux-ppc64-gnu@4.46.1': 3884 | optional: true 3885 | 3886 | '@rollup/rollup-linux-riscv64-gnu@4.46.1': 3887 | optional: true 3888 | 3889 | '@rollup/rollup-linux-riscv64-musl@4.46.1': 3890 | optional: true 3891 | 3892 | '@rollup/rollup-linux-s390x-gnu@4.46.1': 3893 | optional: true 3894 | 3895 | '@rollup/rollup-linux-x64-gnu@4.46.1': 3896 | optional: true 3897 | 3898 | '@rollup/rollup-linux-x64-musl@4.46.1': 3899 | optional: true 3900 | 3901 | '@rollup/rollup-win32-arm64-msvc@4.46.1': 3902 | optional: true 3903 | 3904 | '@rollup/rollup-win32-ia32-msvc@4.46.1': 3905 | optional: true 3906 | 3907 | '@rollup/rollup-win32-x64-msvc@4.46.1': 3908 | optional: true 3909 | 3910 | '@types/estree@1.0.8': {} 3911 | 3912 | '@vitejs/plugin-legacy@7.1.0(terser@5.43.1)(vite@7.0.6(sass@1.89.2)(terser@5.43.1)(yaml@2.8.0))': 3913 | dependencies: 3914 | '@babel/core': 7.28.0 3915 | '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.28.0) 3916 | '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.28.0) 3917 | '@babel/preset-env': 7.28.0(@babel/core@7.28.0) 3918 | babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.0) 3919 | babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.0) 3920 | browserslist: 4.25.1 3921 | browserslist-to-esbuild: 2.1.1(browserslist@4.25.1) 3922 | core-js: 3.44.0 3923 | magic-string: 0.30.17 3924 | regenerator-runtime: 0.14.1 3925 | systemjs: 6.15.1 3926 | terser: 5.43.1 3927 | vite: 7.0.6(sass@1.89.2)(terser@5.43.1)(yaml@2.8.0) 3928 | transitivePeerDependencies: 3929 | - supports-color 3930 | 3931 | '@vitejs/plugin-vue2@2.3.3(vite@7.0.6(sass@1.89.2)(terser@5.43.1)(yaml@2.8.0))(vue@2.7.16)': 3932 | dependencies: 3933 | vite: 7.0.6(sass@1.89.2)(terser@5.43.1)(yaml@2.8.0) 3934 | vue: 2.7.16 3935 | 3936 | '@vue/compiler-sfc@2.7.16': 3937 | dependencies: 3938 | '@babel/parser': 7.28.0 3939 | postcss: 8.5.6 3940 | source-map: 0.6.1 3941 | optionalDependencies: 3942 | prettier: 2.8.8 3943 | 3944 | '@vxe-ui/core@3.2.8(vue@2.7.16)': 3945 | dependencies: 3946 | dom-zindex: 1.0.6 3947 | vue: 2.7.16 3948 | xe-utils: 3.7.8 3949 | 3950 | acorn@8.15.0: {} 3951 | 3952 | ansi-escapes@7.0.0: 3953 | dependencies: 3954 | environment: 1.1.0 3955 | 3956 | ansi-regex@6.1.0: {} 3957 | 3958 | ansi-styles@6.2.1: {} 3959 | 3960 | anymatch@3.1.3: 3961 | dependencies: 3962 | normalize-path: 3.0.0 3963 | picomatch: 2.3.1 3964 | 3965 | async-validator@1.8.5: 3966 | dependencies: 3967 | babel-runtime: 6.26.0 3968 | 3969 | asynckit@0.4.0: {} 3970 | 3971 | available-typed-arrays@1.0.7: 3972 | dependencies: 3973 | possible-typed-array-names: 1.1.0 3974 | 3975 | axios@1.11.0: 3976 | dependencies: 3977 | follow-redirects: 1.15.9 3978 | form-data: 4.0.4 3979 | proxy-from-env: 1.1.0 3980 | transitivePeerDependencies: 3981 | - debug 3982 | 3983 | babel-helper-vue-jsx-merge-props@2.0.3: {} 3984 | 3985 | babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.28.0): 3986 | dependencies: 3987 | '@babel/compat-data': 7.28.0 3988 | '@babel/core': 7.28.0 3989 | '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.0) 3990 | semver: 6.3.1 3991 | transitivePeerDependencies: 3992 | - supports-color 3993 | 3994 | babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.28.0): 3995 | dependencies: 3996 | '@babel/core': 7.28.0 3997 | '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.0) 3998 | core-js-compat: 3.44.0 3999 | transitivePeerDependencies: 4000 | - supports-color 4001 | 4002 | babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.28.0): 4003 | dependencies: 4004 | '@babel/core': 7.28.0 4005 | '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.0) 4006 | transitivePeerDependencies: 4007 | - supports-color 4008 | 4009 | babel-runtime@6.26.0: 4010 | dependencies: 4011 | core-js: 2.6.12 4012 | regenerator-runtime: 0.11.1 4013 | 4014 | binary-extensions@2.3.0: {} 4015 | 4016 | bl@1.2.3: 4017 | dependencies: 4018 | readable-stream: 2.3.8 4019 | safe-buffer: 5.2.1 4020 | 4021 | braces@3.0.3: 4022 | dependencies: 4023 | fill-range: 7.1.1 4024 | 4025 | browserslist-to-esbuild@2.1.1(browserslist@4.25.1): 4026 | dependencies: 4027 | browserslist: 4.25.1 4028 | meow: 13.2.0 4029 | 4030 | browserslist@4.25.1: 4031 | dependencies: 4032 | caniuse-lite: 1.0.30001727 4033 | electron-to-chromium: 1.5.192 4034 | node-releases: 2.0.19 4035 | update-browserslist-db: 1.1.3(browserslist@4.25.1) 4036 | 4037 | buffer-alloc-unsafe@1.1.0: {} 4038 | 4039 | buffer-alloc@1.2.0: 4040 | dependencies: 4041 | buffer-alloc-unsafe: 1.1.0 4042 | buffer-fill: 1.0.0 4043 | 4044 | buffer-crc32@0.2.13: {} 4045 | 4046 | buffer-fill@1.0.0: {} 4047 | 4048 | buffer-from@1.1.2: {} 4049 | 4050 | call-bind-apply-helpers@1.0.2: 4051 | dependencies: 4052 | es-errors: 1.3.0 4053 | function-bind: 1.1.2 4054 | 4055 | call-bind@1.0.8: 4056 | dependencies: 4057 | call-bind-apply-helpers: 1.0.2 4058 | es-define-property: 1.0.1 4059 | get-intrinsic: 1.3.0 4060 | set-function-length: 1.2.2 4061 | 4062 | call-bound@1.0.4: 4063 | dependencies: 4064 | call-bind-apply-helpers: 1.0.2 4065 | get-intrinsic: 1.3.0 4066 | 4067 | caniuse-lite@1.0.30001727: {} 4068 | 4069 | chalk@5.4.1: {} 4070 | 4071 | chokidar@3.6.0: 4072 | dependencies: 4073 | anymatch: 3.1.3 4074 | braces: 3.0.3 4075 | glob-parent: 5.1.2 4076 | is-binary-path: 2.1.0 4077 | is-glob: 4.0.3 4078 | normalize-path: 3.0.0 4079 | readdirp: 3.6.0 4080 | optionalDependencies: 4081 | fsevents: 2.3.3 4082 | 4083 | chokidar@4.0.3: 4084 | dependencies: 4085 | readdirp: 4.1.2 4086 | optional: true 4087 | 4088 | cli-cursor@5.0.0: 4089 | dependencies: 4090 | restore-cursor: 5.1.0 4091 | 4092 | cli-truncate@4.0.0: 4093 | dependencies: 4094 | slice-ansi: 5.0.0 4095 | string-width: 7.2.0 4096 | 4097 | colorette@2.0.20: {} 4098 | 4099 | combined-stream@1.0.8: 4100 | dependencies: 4101 | delayed-stream: 1.0.0 4102 | 4103 | commander@14.0.0: {} 4104 | 4105 | commander@2.20.3: {} 4106 | 4107 | compressing@1.10.3: 4108 | dependencies: 4109 | '@eggjs/yauzl': 2.11.0 4110 | flushwritable: 1.0.0 4111 | get-ready: 1.0.0 4112 | iconv-lite: 0.5.2 4113 | mkdirp: 0.5.6 4114 | pump: 3.0.3 4115 | streamifier: 0.1.1 4116 | tar-stream: 1.6.2 4117 | yazl: 2.5.1 4118 | 4119 | confbox@0.1.8: {} 4120 | 4121 | confbox@0.2.2: {} 4122 | 4123 | convert-source-map@2.0.0: {} 4124 | 4125 | core-js-compat@3.44.0: 4126 | dependencies: 4127 | browserslist: 4.25.1 4128 | 4129 | core-js@2.6.12: {} 4130 | 4131 | core-js@3.44.0: {} 4132 | 4133 | core-util-is@1.0.3: {} 4134 | 4135 | csstype@3.1.3: {} 4136 | 4137 | dayjs@1.11.13: {} 4138 | 4139 | debug@4.4.1: 4140 | dependencies: 4141 | ms: 2.1.3 4142 | 4143 | deepmerge@1.5.2: {} 4144 | 4145 | define-data-property@1.1.4: 4146 | dependencies: 4147 | es-define-property: 1.0.1 4148 | es-errors: 1.3.0 4149 | gopd: 1.2.0 4150 | 4151 | delayed-stream@1.0.0: {} 4152 | 4153 | detect-libc@1.0.3: 4154 | optional: true 4155 | 4156 | dom-zindex@1.0.6: {} 4157 | 4158 | dunder-proto@1.0.1: 4159 | dependencies: 4160 | call-bind-apply-helpers: 1.0.2 4161 | es-errors: 1.3.0 4162 | gopd: 1.2.0 4163 | 4164 | electron-to-chromium@1.5.192: {} 4165 | 4166 | element-ui@2.15.14(vue@2.7.16): 4167 | dependencies: 4168 | async-validator: 1.8.5 4169 | babel-helper-vue-jsx-merge-props: 2.0.3 4170 | deepmerge: 1.5.2 4171 | normalize-wheel: 1.0.1 4172 | resize-observer-polyfill: 1.5.1 4173 | throttle-debounce: 1.1.0 4174 | vue: 2.7.16 4175 | 4176 | emoji-regex@10.4.0: {} 4177 | 4178 | end-of-stream@1.4.5: 4179 | dependencies: 4180 | once: 1.4.0 4181 | 4182 | environment@1.1.0: {} 4183 | 4184 | es-define-property@1.0.1: {} 4185 | 4186 | es-errors@1.3.0: {} 4187 | 4188 | es-object-atoms@1.1.1: 4189 | dependencies: 4190 | es-errors: 1.3.0 4191 | 4192 | es-set-tostringtag@2.1.0: 4193 | dependencies: 4194 | es-errors: 1.3.0 4195 | get-intrinsic: 1.3.0 4196 | has-tostringtag: 1.0.2 4197 | hasown: 2.0.2 4198 | 4199 | esbuild@0.25.8: 4200 | optionalDependencies: 4201 | '@esbuild/aix-ppc64': 0.25.8 4202 | '@esbuild/android-arm': 0.25.8 4203 | '@esbuild/android-arm64': 0.25.8 4204 | '@esbuild/android-x64': 0.25.8 4205 | '@esbuild/darwin-arm64': 0.25.8 4206 | '@esbuild/darwin-x64': 0.25.8 4207 | '@esbuild/freebsd-arm64': 0.25.8 4208 | '@esbuild/freebsd-x64': 0.25.8 4209 | '@esbuild/linux-arm': 0.25.8 4210 | '@esbuild/linux-arm64': 0.25.8 4211 | '@esbuild/linux-ia32': 0.25.8 4212 | '@esbuild/linux-loong64': 0.25.8 4213 | '@esbuild/linux-mips64el': 0.25.8 4214 | '@esbuild/linux-ppc64': 0.25.8 4215 | '@esbuild/linux-riscv64': 0.25.8 4216 | '@esbuild/linux-s390x': 0.25.8 4217 | '@esbuild/linux-x64': 0.25.8 4218 | '@esbuild/netbsd-arm64': 0.25.8 4219 | '@esbuild/netbsd-x64': 0.25.8 4220 | '@esbuild/openbsd-arm64': 0.25.8 4221 | '@esbuild/openbsd-x64': 0.25.8 4222 | '@esbuild/openharmony-arm64': 0.25.8 4223 | '@esbuild/sunos-x64': 0.25.8 4224 | '@esbuild/win32-arm64': 0.25.8 4225 | '@esbuild/win32-ia32': 0.25.8 4226 | '@esbuild/win32-x64': 0.25.8 4227 | 4228 | escalade@3.2.0: {} 4229 | 4230 | escape-string-regexp@5.0.0: {} 4231 | 4232 | estree-walker@3.0.3: 4233 | dependencies: 4234 | '@types/estree': 1.0.8 4235 | 4236 | esutils@2.0.3: {} 4237 | 4238 | eventemitter3@5.0.1: {} 4239 | 4240 | exsolve@1.0.7: {} 4241 | 4242 | fd-slicer2@1.2.0: 4243 | dependencies: 4244 | pend: 1.2.0 4245 | 4246 | fdir@6.4.6(picomatch@4.0.3): 4247 | optionalDependencies: 4248 | picomatch: 4.0.3 4249 | 4250 | fill-range@7.1.1: 4251 | dependencies: 4252 | to-regex-range: 5.0.1 4253 | 4254 | flushwritable@1.0.0: {} 4255 | 4256 | follow-redirects@1.15.9: {} 4257 | 4258 | for-each@0.3.5: 4259 | dependencies: 4260 | is-callable: 1.2.7 4261 | 4262 | form-data@4.0.4: 4263 | dependencies: 4264 | asynckit: 0.4.0 4265 | combined-stream: 1.0.8 4266 | es-set-tostringtag: 2.1.0 4267 | hasown: 2.0.2 4268 | mime-types: 2.1.35 4269 | 4270 | fs-constants@1.0.0: {} 4271 | 4272 | fsevents@2.3.3: 4273 | optional: true 4274 | 4275 | function-bind@1.1.2: {} 4276 | 4277 | gensync@1.0.0-beta.2: {} 4278 | 4279 | get-east-asian-width@1.3.0: {} 4280 | 4281 | get-intrinsic@1.3.0: 4282 | dependencies: 4283 | call-bind-apply-helpers: 1.0.2 4284 | es-define-property: 1.0.1 4285 | es-errors: 1.3.0 4286 | es-object-atoms: 1.1.1 4287 | function-bind: 1.1.2 4288 | get-proto: 1.0.1 4289 | gopd: 1.2.0 4290 | has-symbols: 1.1.0 4291 | hasown: 2.0.2 4292 | math-intrinsics: 1.1.0 4293 | 4294 | get-proto@1.0.1: 4295 | dependencies: 4296 | dunder-proto: 1.0.1 4297 | es-object-atoms: 1.1.1 4298 | 4299 | get-ready@1.0.0: {} 4300 | 4301 | glob-parent@5.1.2: 4302 | dependencies: 4303 | is-glob: 4.0.3 4304 | 4305 | gopd@1.2.0: {} 4306 | 4307 | has-property-descriptors@1.0.2: 4308 | dependencies: 4309 | es-define-property: 1.0.1 4310 | 4311 | has-symbols@1.1.0: {} 4312 | 4313 | has-tostringtag@1.0.2: 4314 | dependencies: 4315 | has-symbols: 1.1.0 4316 | 4317 | hasown@2.0.2: 4318 | dependencies: 4319 | function-bind: 1.1.2 4320 | 4321 | iconv-lite@0.5.2: 4322 | dependencies: 4323 | safer-buffer: 2.1.2 4324 | 4325 | immutable@5.1.3: 4326 | optional: true 4327 | 4328 | inherits@2.0.4: {} 4329 | 4330 | is-binary-path@2.1.0: 4331 | dependencies: 4332 | binary-extensions: 2.3.0 4333 | 4334 | is-callable@1.2.7: {} 4335 | 4336 | is-core-module@2.16.1: 4337 | dependencies: 4338 | hasown: 2.0.2 4339 | 4340 | is-extglob@2.1.1: {} 4341 | 4342 | is-fullwidth-code-point@4.0.0: {} 4343 | 4344 | is-fullwidth-code-point@5.0.0: 4345 | dependencies: 4346 | get-east-asian-width: 1.3.0 4347 | 4348 | is-glob@4.0.3: 4349 | dependencies: 4350 | is-extglob: 2.1.1 4351 | 4352 | is-number@7.0.0: {} 4353 | 4354 | is-typed-array@1.1.15: 4355 | dependencies: 4356 | which-typed-array: 1.1.19 4357 | 4358 | isarray@1.0.0: {} 4359 | 4360 | isarray@2.0.5: {} 4361 | 4362 | js-tokens@4.0.0: {} 4363 | 4364 | js-tokens@9.0.1: {} 4365 | 4366 | jsesc@3.0.2: {} 4367 | 4368 | jsesc@3.1.0: {} 4369 | 4370 | json5@2.2.3: {} 4371 | 4372 | lilconfig@3.1.3: {} 4373 | 4374 | lint-staged@16.1.2: 4375 | dependencies: 4376 | chalk: 5.4.1 4377 | commander: 14.0.0 4378 | debug: 4.4.1 4379 | lilconfig: 3.1.3 4380 | listr2: 8.3.3 4381 | micromatch: 4.0.8 4382 | nano-spawn: 1.0.2 4383 | pidtree: 0.6.0 4384 | string-argv: 0.3.2 4385 | yaml: 2.8.0 4386 | transitivePeerDependencies: 4387 | - supports-color 4388 | 4389 | listr2@8.3.3: 4390 | dependencies: 4391 | cli-truncate: 4.0.0 4392 | colorette: 2.0.20 4393 | eventemitter3: 5.0.1 4394 | log-update: 6.1.0 4395 | rfdc: 1.4.1 4396 | wrap-ansi: 9.0.0 4397 | 4398 | local-pkg@1.1.1: 4399 | dependencies: 4400 | mlly: 1.7.4 4401 | pkg-types: 2.2.0 4402 | quansync: 0.2.10 4403 | 4404 | lodash.debounce@4.0.8: {} 4405 | 4406 | log-update@6.1.0: 4407 | dependencies: 4408 | ansi-escapes: 7.0.0 4409 | cli-cursor: 5.0.0 4410 | slice-ansi: 7.1.0 4411 | strip-ansi: 7.1.0 4412 | wrap-ansi: 9.0.0 4413 | 4414 | lru-cache@5.1.1: 4415 | dependencies: 4416 | yallist: 3.1.1 4417 | 4418 | magic-string@0.30.17: 4419 | dependencies: 4420 | '@jridgewell/sourcemap-codec': 1.5.4 4421 | 4422 | math-intrinsics@1.1.0: {} 4423 | 4424 | meow@13.2.0: {} 4425 | 4426 | micromatch@4.0.8: 4427 | dependencies: 4428 | braces: 3.0.3 4429 | picomatch: 2.3.1 4430 | 4431 | mime-db@1.52.0: {} 4432 | 4433 | mime-types@2.1.35: 4434 | dependencies: 4435 | mime-db: 1.52.0 4436 | 4437 | mimic-function@5.0.1: {} 4438 | 4439 | minimist@1.2.8: {} 4440 | 4441 | mkdirp@0.5.6: 4442 | dependencies: 4443 | minimist: 1.2.8 4444 | 4445 | mlly@1.7.4: 4446 | dependencies: 4447 | acorn: 8.15.0 4448 | pathe: 2.0.3 4449 | pkg-types: 1.3.1 4450 | ufo: 1.6.1 4451 | 4452 | ms@2.1.3: {} 4453 | 4454 | nano-spawn@1.0.2: {} 4455 | 4456 | nanoid@3.3.11: {} 4457 | 4458 | node-addon-api@7.1.1: 4459 | optional: true 4460 | 4461 | node-releases@2.0.19: {} 4462 | 4463 | normalize-path@3.0.0: {} 4464 | 4465 | normalize-wheel@1.0.1: {} 4466 | 4467 | once@1.4.0: 4468 | dependencies: 4469 | wrappy: 1.0.2 4470 | 4471 | onetime@7.0.0: 4472 | dependencies: 4473 | mimic-function: 5.0.1 4474 | 4475 | path-parse@1.0.7: {} 4476 | 4477 | pathe@2.0.3: {} 4478 | 4479 | pend@1.2.0: {} 4480 | 4481 | picocolors@1.1.1: {} 4482 | 4483 | picomatch@2.3.1: {} 4484 | 4485 | picomatch@4.0.3: {} 4486 | 4487 | pidtree@0.6.0: {} 4488 | 4489 | pkg-types@1.3.1: 4490 | dependencies: 4491 | confbox: 0.1.8 4492 | mlly: 1.7.4 4493 | pathe: 2.0.3 4494 | 4495 | pkg-types@2.2.0: 4496 | dependencies: 4497 | confbox: 0.2.2 4498 | exsolve: 1.0.7 4499 | pathe: 2.0.3 4500 | 4501 | possible-typed-array-names@1.1.0: {} 4502 | 4503 | postcss@8.5.6: 4504 | dependencies: 4505 | nanoid: 3.3.11 4506 | picocolors: 1.1.1 4507 | source-map-js: 1.2.1 4508 | 4509 | prettier@2.8.8: 4510 | optional: true 4511 | 4512 | prettier@3.6.2: {} 4513 | 4514 | process-nextick-args@2.0.1: {} 4515 | 4516 | proxy-from-env@1.1.0: {} 4517 | 4518 | pump@3.0.3: 4519 | dependencies: 4520 | end-of-stream: 1.4.5 4521 | once: 1.4.0 4522 | 4523 | quansync@0.2.10: {} 4524 | 4525 | readable-stream@2.3.8: 4526 | dependencies: 4527 | core-util-is: 1.0.3 4528 | inherits: 2.0.4 4529 | isarray: 1.0.0 4530 | process-nextick-args: 2.0.1 4531 | safe-buffer: 5.1.2 4532 | string_decoder: 1.1.1 4533 | util-deprecate: 1.0.2 4534 | 4535 | readdirp@3.6.0: 4536 | dependencies: 4537 | picomatch: 2.3.1 4538 | 4539 | readdirp@4.1.2: 4540 | optional: true 4541 | 4542 | regenerate-unicode-properties@10.2.0: 4543 | dependencies: 4544 | regenerate: 1.4.2 4545 | 4546 | regenerate@1.4.2: {} 4547 | 4548 | regenerator-runtime@0.11.1: {} 4549 | 4550 | regenerator-runtime@0.14.1: {} 4551 | 4552 | regexpu-core@6.2.0: 4553 | dependencies: 4554 | regenerate: 1.4.2 4555 | regenerate-unicode-properties: 10.2.0 4556 | regjsgen: 0.8.0 4557 | regjsparser: 0.12.0 4558 | unicode-match-property-ecmascript: 2.0.0 4559 | unicode-match-property-value-ecmascript: 2.2.0 4560 | 4561 | regjsgen@0.8.0: {} 4562 | 4563 | regjsparser@0.12.0: 4564 | dependencies: 4565 | jsesc: 3.0.2 4566 | 4567 | resize-observer-polyfill@1.5.1: {} 4568 | 4569 | resolve@1.22.10: 4570 | dependencies: 4571 | is-core-module: 2.16.1 4572 | path-parse: 1.0.7 4573 | supports-preserve-symlinks-flag: 1.0.0 4574 | 4575 | restore-cursor@5.1.0: 4576 | dependencies: 4577 | onetime: 7.0.0 4578 | signal-exit: 4.1.0 4579 | 4580 | rfdc@1.4.1: {} 4581 | 4582 | rollup@4.46.1: 4583 | dependencies: 4584 | '@types/estree': 1.0.8 4585 | optionalDependencies: 4586 | '@rollup/rollup-android-arm-eabi': 4.46.1 4587 | '@rollup/rollup-android-arm64': 4.46.1 4588 | '@rollup/rollup-darwin-arm64': 4.46.1 4589 | '@rollup/rollup-darwin-x64': 4.46.1 4590 | '@rollup/rollup-freebsd-arm64': 4.46.1 4591 | '@rollup/rollup-freebsd-x64': 4.46.1 4592 | '@rollup/rollup-linux-arm-gnueabihf': 4.46.1 4593 | '@rollup/rollup-linux-arm-musleabihf': 4.46.1 4594 | '@rollup/rollup-linux-arm64-gnu': 4.46.1 4595 | '@rollup/rollup-linux-arm64-musl': 4.46.1 4596 | '@rollup/rollup-linux-loongarch64-gnu': 4.46.1 4597 | '@rollup/rollup-linux-ppc64-gnu': 4.46.1 4598 | '@rollup/rollup-linux-riscv64-gnu': 4.46.1 4599 | '@rollup/rollup-linux-riscv64-musl': 4.46.1 4600 | '@rollup/rollup-linux-s390x-gnu': 4.46.1 4601 | '@rollup/rollup-linux-x64-gnu': 4.46.1 4602 | '@rollup/rollup-linux-x64-musl': 4.46.1 4603 | '@rollup/rollup-win32-arm64-msvc': 4.46.1 4604 | '@rollup/rollup-win32-ia32-msvc': 4.46.1 4605 | '@rollup/rollup-win32-x64-msvc': 4.46.1 4606 | fsevents: 2.3.3 4607 | 4608 | safe-buffer@5.1.2: {} 4609 | 4610 | safe-buffer@5.2.1: {} 4611 | 4612 | safer-buffer@2.1.2: {} 4613 | 4614 | sass@1.89.2: 4615 | dependencies: 4616 | chokidar: 4.0.3 4617 | immutable: 5.1.3 4618 | source-map-js: 1.2.1 4619 | optionalDependencies: 4620 | '@parcel/watcher': 2.5.1 4621 | optional: true 4622 | 4623 | scule@1.3.0: {} 4624 | 4625 | semver@6.3.1: {} 4626 | 4627 | set-function-length@1.2.2: 4628 | dependencies: 4629 | define-data-property: 1.1.4 4630 | es-errors: 1.3.0 4631 | function-bind: 1.1.2 4632 | get-intrinsic: 1.3.0 4633 | gopd: 1.2.0 4634 | has-property-descriptors: 1.0.2 4635 | 4636 | signal-exit@4.1.0: {} 4637 | 4638 | simple-git-hooks@2.13.0: {} 4639 | 4640 | slice-ansi@5.0.0: 4641 | dependencies: 4642 | ansi-styles: 6.2.1 4643 | is-fullwidth-code-point: 4.0.0 4644 | 4645 | slice-ansi@7.1.0: 4646 | dependencies: 4647 | ansi-styles: 6.2.1 4648 | is-fullwidth-code-point: 5.0.0 4649 | 4650 | source-map-js@1.2.1: {} 4651 | 4652 | source-map-support@0.5.21: 4653 | dependencies: 4654 | buffer-from: 1.1.2 4655 | source-map: 0.6.1 4656 | 4657 | source-map@0.6.1: {} 4658 | 4659 | streamifier@0.1.1: {} 4660 | 4661 | string-argv@0.3.2: {} 4662 | 4663 | string-width@7.2.0: 4664 | dependencies: 4665 | emoji-regex: 10.4.0 4666 | get-east-asian-width: 1.3.0 4667 | strip-ansi: 7.1.0 4668 | 4669 | string_decoder@1.1.1: 4670 | dependencies: 4671 | safe-buffer: 5.1.2 4672 | 4673 | strip-ansi@7.1.0: 4674 | dependencies: 4675 | ansi-regex: 6.1.0 4676 | 4677 | strip-literal@3.0.0: 4678 | dependencies: 4679 | js-tokens: 9.0.1 4680 | 4681 | supports-preserve-symlinks-flag@1.0.0: {} 4682 | 4683 | systemjs@6.15.1: {} 4684 | 4685 | tar-stream@1.6.2: 4686 | dependencies: 4687 | bl: 1.2.3 4688 | buffer-alloc: 1.2.0 4689 | end-of-stream: 1.4.5 4690 | fs-constants: 1.0.0 4691 | readable-stream: 2.3.8 4692 | to-buffer: 1.2.1 4693 | xtend: 4.0.2 4694 | 4695 | terser@5.43.1: 4696 | dependencies: 4697 | '@jridgewell/source-map': 0.3.10 4698 | acorn: 8.15.0 4699 | commander: 2.20.3 4700 | source-map-support: 0.5.21 4701 | 4702 | throttle-debounce@1.1.0: {} 4703 | 4704 | tinyglobby@0.2.14: 4705 | dependencies: 4706 | fdir: 6.4.6(picomatch@4.0.3) 4707 | picomatch: 4.0.3 4708 | 4709 | to-buffer@1.2.1: 4710 | dependencies: 4711 | isarray: 2.0.5 4712 | safe-buffer: 5.2.1 4713 | typed-array-buffer: 1.0.3 4714 | 4715 | to-regex-range@5.0.1: 4716 | dependencies: 4717 | is-number: 7.0.0 4718 | 4719 | typed-array-buffer@1.0.3: 4720 | dependencies: 4721 | call-bound: 1.0.4 4722 | es-errors: 1.3.0 4723 | is-typed-array: 1.1.15 4724 | 4725 | ufo@1.6.1: {} 4726 | 4727 | unicode-canonical-property-names-ecmascript@2.0.1: {} 4728 | 4729 | unicode-match-property-ecmascript@2.0.0: 4730 | dependencies: 4731 | unicode-canonical-property-names-ecmascript: 2.0.1 4732 | unicode-property-aliases-ecmascript: 2.1.0 4733 | 4734 | unicode-match-property-value-ecmascript@2.2.0: {} 4735 | 4736 | unicode-property-aliases-ecmascript@2.1.0: {} 4737 | 4738 | unimport@4.2.0: 4739 | dependencies: 4740 | acorn: 8.15.0 4741 | escape-string-regexp: 5.0.0 4742 | estree-walker: 3.0.3 4743 | local-pkg: 1.1.1 4744 | magic-string: 0.30.17 4745 | mlly: 1.7.4 4746 | pathe: 2.0.3 4747 | picomatch: 4.0.3 4748 | pkg-types: 2.2.0 4749 | scule: 1.3.0 4750 | strip-literal: 3.0.0 4751 | tinyglobby: 0.2.14 4752 | unplugin: 2.3.5 4753 | unplugin-utils: 0.2.4 4754 | 4755 | unplugin-auto-import@19.3.0: 4756 | dependencies: 4757 | local-pkg: 1.1.1 4758 | magic-string: 0.30.17 4759 | picomatch: 4.0.3 4760 | unimport: 4.2.0 4761 | unplugin: 2.3.5 4762 | unplugin-utils: 0.2.4 4763 | 4764 | unplugin-utils@0.2.4: 4765 | dependencies: 4766 | pathe: 2.0.3 4767 | picomatch: 4.0.3 4768 | 4769 | unplugin-vue-components@28.8.0(@babel/parser@7.28.0)(vue@2.7.16): 4770 | dependencies: 4771 | chokidar: 3.6.0 4772 | debug: 4.4.1 4773 | local-pkg: 1.1.1 4774 | magic-string: 0.30.17 4775 | mlly: 1.7.4 4776 | tinyglobby: 0.2.14 4777 | unplugin: 2.3.5 4778 | unplugin-utils: 0.2.4 4779 | vue: 2.7.16 4780 | optionalDependencies: 4781 | '@babel/parser': 7.28.0 4782 | transitivePeerDependencies: 4783 | - supports-color 4784 | 4785 | unplugin@2.3.5: 4786 | dependencies: 4787 | acorn: 8.15.0 4788 | picomatch: 4.0.3 4789 | webpack-virtual-modules: 0.6.2 4790 | 4791 | update-browserslist-db@1.1.3(browserslist@4.25.1): 4792 | dependencies: 4793 | browserslist: 4.25.1 4794 | escalade: 3.2.0 4795 | picocolors: 1.1.1 4796 | 4797 | util-deprecate@1.0.2: {} 4798 | 4799 | vite@7.0.6(sass@1.89.2)(terser@5.43.1)(yaml@2.8.0): 4800 | dependencies: 4801 | esbuild: 0.25.8 4802 | fdir: 6.4.6(picomatch@4.0.3) 4803 | picomatch: 4.0.3 4804 | postcss: 8.5.6 4805 | rollup: 4.46.1 4806 | tinyglobby: 0.2.14 4807 | optionalDependencies: 4808 | fsevents: 2.3.3 4809 | sass: 1.89.2 4810 | terser: 5.43.1 4811 | yaml: 2.8.0 4812 | 4813 | vue-router@3.6.5(vue@2.7.16): 4814 | dependencies: 4815 | vue: 2.7.16 4816 | 4817 | vue@2.7.16: 4818 | dependencies: 4819 | '@vue/compiler-sfc': 2.7.16 4820 | csstype: 3.1.3 4821 | 4822 | vuex@3.6.2(vue@2.7.16): 4823 | dependencies: 4824 | vue: 2.7.16 4825 | 4826 | vxe-pc-ui@3.7.30(vue@2.7.16): 4827 | dependencies: 4828 | '@vxe-ui/core': 3.2.8(vue@2.7.16) 4829 | transitivePeerDependencies: 4830 | - vue 4831 | 4832 | vxe-table@3.16.8(vue@2.7.16): 4833 | dependencies: 4834 | vxe-pc-ui: 3.7.30(vue@2.7.16) 4835 | transitivePeerDependencies: 4836 | - vue 4837 | 4838 | webpack-virtual-modules@0.6.2: {} 4839 | 4840 | which-typed-array@1.1.19: 4841 | dependencies: 4842 | available-typed-arrays: 1.0.7 4843 | call-bind: 1.0.8 4844 | call-bound: 1.0.4 4845 | for-each: 0.3.5 4846 | get-proto: 1.0.1 4847 | gopd: 1.2.0 4848 | has-tostringtag: 1.0.2 4849 | 4850 | wrap-ansi@9.0.0: 4851 | dependencies: 4852 | ansi-styles: 6.2.1 4853 | string-width: 7.2.0 4854 | strip-ansi: 7.1.0 4855 | 4856 | wrappy@1.0.2: {} 4857 | 4858 | xe-utils@3.7.8: {} 4859 | 4860 | xtend@4.0.2: {} 4861 | 4862 | yallist@3.1.1: {} 4863 | 4864 | yaml@2.8.0: {} 4865 | 4866 | yazl@2.5.1: 4867 | dependencies: 4868 | buffer-crc32: 0.2.13 4869 | --------------------------------------------------------------------------------