diff --git a/.commitlintrc.js b/.commitlintrc.js new file mode 100644 index 0000000..7c2e327 --- /dev/null +++ b/.commitlintrc.js @@ -0,0 +1,71 @@ +// @ts-check +/** @type {import('cz-git').UserConfig} */ +module.exports = { + extends: ['@commitlint/config-conventional'], + rules: { + 'body-leading-blank': [2, 'always'], + 'footer-leading-blank': [1, 'always'], + 'header-max-length': [2, 'always', 108], + 'subject-empty': [2, 'never'], + 'type-empty': [2, 'never'], + 'subject-case': [0], + 'type-enum': [ + 2, + 'always', + [ + 'feat', + 'fix', + 'perf', + 'style', + 'docs', + 'test', + 'refactor', + 'build', + 'ci', + 'chore', + 'revert', + 'wip', + 'workflow', + 'types', + 'release' + ] + ] + }, + prompt: { + // 中英文对照版 + // messages: { + // type: '选择你要提交的类型 :', + // scope: '选择一个提交范围 (可选):', + // customScope: '请输入自定义的提交范围 :', + // subject: '填写简短精炼的变更描述 :\n', + // body: '填写更加详细的变更描述 (可选)。使用 "|" 换行 :\n', + // breaking: '列举非兼容性重大的变更 (可选)。使用 "|" 换行 :\n', + // footerPrefixsSelect: '选择关联issue前缀 (可选):', + // customFooterPrefixs: '输入自定义issue前缀 :', + // footer: '列举关联issue (可选) 例如: #31, #I3244 :\n', + // confirmCommit: '是否提交或修改commit ?' + // }, + // types: [ + // { value: 'feat', name: 'feat: 新增功能' }, + // { value: 'fix', name: 'fix: 修复缺陷' }, + // { value: 'docs', name: 'docs: 文档变更' }, + // { value: 'style', name: 'style: 代码格式' }, + // { value: 'refactor', name: 'refactor: 代码重构' }, + // { value: 'perf', name: 'perf: 性能优化' }, + // { value: 'test', name: 'test: 添加疏漏测试或已有测试改动' }, + // { + // value: 'build', + // name: 'build: 构建流程、外部依赖变更 (如升级 npm 包、修改打包配置等)' + // }, + // { value: 'ci', name: 'ci: 修改 CI 配置、脚本' }, + // { value: 'revert', name: 'revert: 回滚 commit' }, + // { + // value: 'chore', + // name: 'chore: 对构建过程或辅助工具和库的更改 (不影响源文件、测试用例)' + // }, + // { value: 'wip', name: 'wip: 正在开发中' }, + // { value: 'workflow', name: 'workflow: 工作流程改进' }, + // { value: 'types', name: 'types: 类型定义文件修改' } + // ] + } +} diff --git a/.env.development b/.env.development new file mode 100644 index 0000000..2f109a8 --- /dev/null +++ b/.env.development @@ -0,0 +1,4 @@ + +VITE_BASE_URL=http://dev.ccwin-in.com:25102/api/admin-api +#VITE_BASE_URL=http://dev.ccwin-in.com:25203/api/admin-api +VITE_BASE_URL_IMAGE=http://localhost:12080/admin-api \ No newline at end of file diff --git a/.env.production b/.env.production new file mode 100644 index 0000000..c4663c1 --- /dev/null +++ b/.env.production @@ -0,0 +1,4 @@ +# VITE_BASE_URL=http://dev.ccwin-in.com:23111/app +# VITE_BASE_URL_IMAGE=http://dev.ccwin-in.com:23111 +VITE_BASE_URL=https://tmsapp.hongxianggroup.com.cn +VITE_BASE_URL_IMAGE=https://tmsapp.hongxianggroup.com.cn \ No newline at end of file diff --git a/.env.test b/.env.test new file mode 100644 index 0000000..9d265b1 --- /dev/null +++ b/.env.test @@ -0,0 +1,2 @@ +VITE_BASE_URL=http://dev.ccwin-in.com:25203/api/admin-api +VITE_BASE_URL_IMAGE=http://dev.ccwin-in.com:25203/api/admin-api \ No newline at end of file diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..516b6f0 --- /dev/null +++ b/.eslintignore @@ -0,0 +1,2 @@ +dist +*.nvue \ No newline at end of file diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..8dcaad3 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,49 @@ +{ + "parser": "vue-eslint-parser", + "env": { + "browser": true, + "commonjs": true, + "es2021": true + }, + "parserOptions": { + "ecmaVersion": 2021, + "parser": "@typescript-eslint/parser", + "sourceType": "module", + "ecmaFeatures": { + "jsx": true + } + }, + "extends": [ + "airbnb-base", + "eslint:recommended", + "plugin:prettier/recommended", + "plugin:vue/vue3-essential", + "plugin:@typescript-eslint/recommended" + ], + "plugins": ["vue", "@typescript-eslint", "todo-ddl"], + "rules": { + "@typescript-eslint/ban-types": "off", + "@typescript-eslint/no-explicit-any": "off", + "@typescript-eslint/explicit-module-boundary-types": "off", + "import/extensions": "off", + "quotes": ["warn", "single"], + "semi": ["warn", "never"], + "import/no-unresolved": "off", + "todo-ddl/diy": "warn", + "import/prefer-default-export": "off", + "no-param-reassign": "warn", + "import/no-extraneous-dependencies": "off", + "max-len": "warn", + "no-restricted-syntax": "off", + "no-bitwise": "off", + "camelcase": "off", + "no-case-declarations": "off", + "@typescript-eslint/no-namespace": "off", + "no-undef": "off", + "no-promise-executor-return": "off", + "vue/multi-word-component-names": "off", + "@typescript-eslint/no-non-null-assertion": "off", + "@typescript-eslint/ban-ts-comment": "off", + "linebreak-style": "off" + } +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..482ead4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,31 @@ +.DS_Store +node_modules/ +unpackage/ +dist/ +wxcomponents + +# local env files +.env.local +.env.*.local + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Editor directories and files +.project +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw* +.hbuilderx + +.gitee +.github + +package-lock.json +yarn.lock \ No newline at end of file diff --git a/.prettierrc.js b/.prettierrc.js new file mode 100644 index 0000000..2a1f249 --- /dev/null +++ b/.prettierrc.js @@ -0,0 +1,9 @@ +module.exports = { + printWidth: 700, // 一行的字符数,如果超过会进行换行,默认为80 + tabWidth: 2, // 一个 tab 代表几个空格数,默认为 2 个 + useTabs: false, //是否使用 tab 进行缩进,默认为false,表示用空格进行缩减 + singleQuote: true, // 字符串是否使用单引号,默认为 false,使用双引号 + semi: false, // 行尾是否使用分号,默认为true + trailingComma: 'none', // 是否使用尾逗号 + bracketSpacing: true // 对象大括号直接是否有空格,默认为 true,效果:{ a: 1 } +} diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..063a445 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +# 设置基础镜像 +FROM win-nginx + +WORKDIR /opt/eam-pda +COPY nginx.conf /usr/local/nginx/conf/nginx.conf +# 将dist/build/h5/文件中的内容复制到 /opt/eam-pda 这个目录下面 +COPY dist/build/h5/ /opt/eam-pda diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..529534e --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 sugar + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..deeba2d --- /dev/null +++ b/README.md @@ -0,0 +1,260 @@ +# uni-vue3-ts-template +uni-app Vue3 + TypeScript + Vite + Pinia + Unocss 模板项目 + +支持小程序,H5,App + +![图片](https://img.cdn.sugarat.top/mdImg/MTY1MzIxODc4OTk1OQ==653218789959) + +![Unocss](https://fastly.jsdelivr.net/gh/MellowCo/image-host/2022/202211121156442.png) + +| H5 | 微信小程序 | App(iOS) | App(Android) | +| :-------------------------------------------------------------------------: | :-------------------------------------------------------------------------: | :-------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------: | +| ![图片](https://img.cdn.sugarat.top/mdImg/MTY1MzE5Mzc4MzUyMQ==653193783521) | ![图片](https://img.cdn.sugarat.top/mdImg/MTY1MzE5Mzc1Mzk1MQ==653193753951) | ![图片](https://img.cdn.sugarat.top/mdImg/MTY1MzIxMDc2NTcwNg==653210765706) | | + +其它模板 +* Vue3的uni-app 纯js模板:[uni-app-template](https://github.com/ATQQ/uni-app-template) +* Vue3的Web应用模板:[vite-vue3-template](https://github.com/ATQQ/vite-vue3-template) + +## Env Suggest +**Node >= 14.19** + +**pnpm 7** + +**Registry taobao - https://registry.npmmirror.com/** + +## Use This Template +```sh +npx degit atqq/uni-vue3-ts-template#main my-uni-vue3-ts-vite-project +``` +## Feature +### Prod +* [x] [Vue3](https://vuejs.org/) +* [x] [Pinia](https://pinia.vuejs.org/) - replace vuex +* [x] [Axios](https://github.com/axios/axios) +* UI/组件库 + * [x] [uView](https://vkuviewdoc.fsq.pub/) - vk-uview-ui + * [ ] [uni-ui](https://github.com/dcloudio/uni-ui) - 待接入 +### Dev +* [x] [Vite](https://github.com/vitejs/vite) +* [x] [TypeScript](https://github.com/microsoft/TypeScript/#readme) +* [x] [Sass](https://github.com/sass/sass) +* [x] [Less](https://github.com/less/less.js) +* [x] [Eslint](https://eslint.org/) +* [x] [Prettier](https://prettier.io/) +* [x] [Vitest](https://vitest.dev/) - replace jest +* [x] [unocss](https://github.com/unocss/unocss) - 即时按需原子 css 引擎 +* [x] GitHooks [simple-git-hooks](https://github.com/toplenboren/simple-git-hooks#readme) +* ~~LintStaged~~ +* ~~StyleLint~~ + +## 使用 +### 安装依赖 +**建议使用pnpm,依赖安装速度更快** +```sh +npm i -g pnpm +``` + +```sh +pnpm install +``` + +**MAC M1(ARM芯片),其它操作系统无需关注**,正常运行需要手动安装 `esbuild-darwin-64`即可 +```sh +pnpm add esbuild-darwin-64@0.15.13 -D +``` + +## 本地启动 +### 微信小程序 +```sh +# 构建出产物 +pnpm dev:mp-weixin +``` + +> **Q1:** 如果dev的时候发现报错,可以尝试删除`node_modules`之后再在命令行中运行`pnpm install --shamefully-hoist`重新安装依赖再`pnpm dev:mp-weixin` +> +> [详细参考文档](https://pnpm.io/zh/faq#%E8%A7%A3%E5%86%B3%E6%96%B9%E6%A1%883) + +> **Q2:** 如果运行白屏,有报错信息 “app.js错误ReferenceError: regeneratorRuntime is not defined” +> +> 参考[解决方案](https://blog.csdn.net/FUFCY/article/details/125160828) 给微信小程序IDE开启**增强编译选项** + +然后将编译结果`dist/dev/mp-weixin`导入微信开发者工具即可运行 + +
+点击查看 导入详细步骤 + +![图片](https://img.cdn.sugarat.top/mdImg/MTYzNzQxNjc3MjA4Mw==637416772083) + +![图片](https://img.cdn.sugarat.top/mdImg/MTYzNzQxNjg4MTUwNA==637416881504) + +![图片](https://img.cdn.sugarat.top/mdImg/MTYzNzQxNjY3OTY0NQ==637416679645) + +
+ +### H5 +```sh +# CSR +pnpm dev:h5 +# SSR +pnpm dev:h5:ssr +``` + +根据提示,打开对应地址即可访问 + +![图片](https://img.cdn.sugarat.top/mdImg/MTY1MzIxMTE0MDEzMg==653211140132) + +### App +>**Q1:** 如启动到App侧有报错? +>请更新至最新的HBuilderX-Alpha客户端 +#### 安装一些必要工具 +需要使用 `uni-app` 官方提供的 [HBuilderX](https://www.dcloud.io/hbuilderx.html) 启动项目 + +**Android模拟器在MacOSX、Windows上都可以安装;iOS模拟器只能在MacOSX上安装。** + +先安装相关模拟器,[详细参考文档](https://hx.dcloud.net.cn/Tutorial/App/installSimulator) +* 安卓:[夜神模拟器](https://www.yeshen.com/blog/) +* iOS:Mac上安装Xcode + +准备就绪后,使用 HBuilderX 打开项目 +#### iOS模拟器运行 +通过顶部菜单栏,找到运行入口 + +![图片](https://img.cdn.sugarat.top/mdImg/MTY1MzIxMjk1MTgzNw==653212951837) + +选择一个目标设备,点击启动即可 + +![图片](https://img.cdn.sugarat.top/mdImg/MTY1MzIxMjk3NDM0NQ==653212974345) + +#### Android模拟器运行 +这里以[夜神模拟器](https://www.yeshen.com/blog/)为例 + +
+点击查看 详细步骤 + +先通过 HBuilderX 修改模拟器端口为 `62001` + +![图片](https://img.cdn.sugarat.top/mdImg/MTY1MzIxNDAzMjIwNg==653214032206) + +打开夜神模拟器 + +![图片](https://img.cdn.sugarat.top/mdImg/MTY1MzIxNDA5OTYxNg==653214099616) + +选择运行到 Android 基座 + +![图片](https://img.cdn.sugarat.top/mdImg/MTY1MzIxNDEzMzI0OA==653214133248) + +选择已经打开的模拟器,点击运行即可 +![图片](https://img.cdn.sugarat.top/mdImg/MTY1MzIxNDIxNjczNw==653214216737) + +![图片](https://img.cdn.sugarat.top/mdImg/MTY1MzIxMzkyOTQxNg==653213929416) + +
+ + +## 打包构建 +### 微信小程序 +``` +pnpm build:mp-weixin +``` +### H5 +```sh +# CSR +pnpm build:h5 +# SSR +pnpm build:h5:ssr +``` + +### App +基于 `HBuilderX` 参考[官方文档](https://hx.dcloud.net.cn/Tutorial/App/SafePack)进行进一步的操作 + +其它更多运行脚本 查看 [package.json](./package.json)中的scripts + +## css预处理 + +### 已配置`scss`和`less`全局变量 +```typescript +// vite.config.ts +export default defineConfig({ + // ...... + css: { + preprocessorOptions: { + scss: { + additionalData: '@import "@/static/styles/variables.scss";' + }, + less: { + additionalData: '@import "@/static/styles/variables.less";' + } + } + } +}) +``` + + + +`additionalData`的值是文件的路径,可以按照自己业务需求去修改,**如果项目样式变量分的比较细,可以使用一个样式文件引入多个变量样式文件,然后在这里引入入口文件** + + + +## 别名配置 + +如果我们想要在`import`的时候 src 的路径简写成`@`,下面的就是配置 vite 的别名,[属性类型请查看vite文档](https://vitejs.cn/config/#resolve-alias) + +- `@` 代替 `./src` +- `@components`代替`./src/components` + +```typescript +// vite.config.ts +export default defineConfig({ + // ...... + resolve: { + alias: { + '@': path.resolve(__dirname, './src'), + '@components': path.resolve(__dirname, './src/components') + } + } +}) +``` + +例子: + +```diff +// pages/index/index.vue +- import Hello from '../../components/hello/index.vue' ++ import Hello from '@/components/hello/index.vue' +// 或者 ++ import Hello from '@components/hello/index.vue' +``` + + + +### ts + +如果是使用ts开发,这样还不够,ts不会识别路径的别名,显示找不到模块的报错,这个时候需要修改 `tsconfig.json` 文件,纠正下路径才可以。 + + + +```diff +// tsconfig.json +{ + // ...... + "compilerOptions": { + // ...... ++ "baseUrl": "./", ++ "paths": { ++ "@/*": ["src/*"], ++ "@components/*": ["src/components/*"] + } + }, +} + +``` + +添加 `baseUrl` 和 `paths` 参数,就可以完美解决编辑器的报错提示了! + +## 原子化css +* [unocss](https://github.com/unocss/unocss) - 即时按需原子 css 引擎 +* [unocss-preset-weapp](https://github.com/MellowCo/unocss-preset-weapp) - 兼容小程序 unocss 预设 + +> 支持小程序,h5,app + +![](https://fastly.jsdelivr.net/gh/MellowCo/image-host/2022/202211121156442.png) diff --git a/index.html b/index.html new file mode 100644 index 0000000..2b9bfe5 --- /dev/null +++ b/index.html @@ -0,0 +1,25 @@ + + + + + + + + + + + + +
+ +
+ + + + \ No newline at end of file diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..736b346 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,53 @@ +user root; +worker_processes 2; + +events { + worker_connections 1024; +} + +http { + include mime.types; + charset utf-8,gbk; + default_type application/octet-stream; + log_format main '$remote_addr - $remote_user [$time_local] "$request" ' + '$status $body_bytes_sent "$http_referer" ' + '"$http_user_agent" "$http_x_forwarded_for" "$request_time $upstream_response_time"'; + + proxy_cache_path /opt/nginx_cache/ levels=1:2 keys_zone=my_zone:10m inactive=300s max_size=5g; + access_log logs/access.log main; + sendfile on; + #tcp_nopush on; + keepalive_timeout 600s; + client_max_body_size 200m; + gzip on; + gzip_min_length 10k; + gzip_comp_level 9; + gzip_buffers 4 16k; + gzip_types text/plain application/javascript text/css application/xml text/javascript image/jpeg image/gif image/png; + gzip_vary on; + gzip_disable "MSIE [1-6]\."; + upstream eam { + server localhost:25210 weight=10 max_fails=3 fail_timeout=10s; + } + server { + listen 25203; + server_name_in_redirect off; + server_name dev.ccwin-in.com; + location /api/ { + proxy_pass http://eam/; + proxy_next_upstream http_500 http_502 http_503 http_504 error timeout invalid_header; + proxy_set_header X-Forwared-For $proxy_add_x_forwarded_for; + proxy_set_header Host $http_host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $http_x_forwarded_for; + } + location / { + proxy_cache my_zone; + proxy_cache_valid 200 304 12h; + proxy_cache_key $host$uri$is_args$args; + try_files $uri $uri/ /index.html; + root /opt/eam-pda; + index index.html index.htm; + } + } +} \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..9bb9a76 --- /dev/null +++ b/package.json @@ -0,0 +1,80 @@ +{ + "name": "闻荫APP", + "version": "1.0.0", + "private": true, + "scripts": { + "dev": "uni", + "dev:mp-weixin": "uni -p mp-weixin", + "dev:app": "uni -p app", + "dev:custom": "uni -p", + "test": "uni build --mode test", + "test:mp-weixin": "uni build -p mp-weixin", + "test:app": "uni build -p app", + "test:custom": "uni build -p", + "prod": "uni build --mode production", + "prod:mp-weixin": "uni build -p mp-weixin --mode production", + "prod:app": "uni build -p app --mode production", + "prod:custom": "uni build -p --mode production" + }, + "dependencies": { + "@dcloudio/uni-app": "3.0.0-alpha-3060920221114001", + "@dcloudio/uni-app-plus": "3.0.0-alpha-3060920221114001", + "@dcloudio/uni-components": "3.0.0-alpha-3060920221114001", + "@dcloudio/uni-h5": "3.0.0-alpha-3060920221114001", + "@dcloudio/uni-mp-alipay": "3.0.0-alpha-3060920221114001", + "@dcloudio/uni-mp-baidu": "3.0.0-alpha-3060920221114001", + "@dcloudio/uni-mp-kuaishou": "3.0.0-alpha-3060920221114001", + "@dcloudio/uni-mp-lark": "3.0.0-alpha-3060920221114001", + "@dcloudio/uni-mp-qq": "3.0.0-alpha-3060920221114001", + "@dcloudio/uni-mp-toutiao": "3.0.0-alpha-3060920221114001", + "@dcloudio/uni-mp-weixin": "3.0.0-alpha-3060920221114001", + "@dcloudio/uni-quickapp-webview": "3.0.0-alpha-3060920221114001", + "axios": "^0.27.2", + "cz-git": "^1.4.1", + "decimal.js": "^10.4.3", + "or": "^0.2.0", + "pinia": "^2.0.35", + "vk-uview-ui": "^1.3.7", + "vue": "^3.2.41", + "vue-demi": "latest", + "vue-i18n": "^9.1.9", + "vuex": "^4.0.2" + }, + "devDependencies": { + "@commitlint/cli": "^17.4.2", + "@commitlint/config-conventional": "^17.4.2", + "@dcloudio/types": "^3.0.16", + "@dcloudio/uni-automator": "3.0.0-alpha-3060920221114001", + "@dcloudio/uni-cli-shared": "3.0.0-alpha-3060920221114001", + "@dcloudio/uni-stacktracey": "3.0.0-alpha-3060920221114001", + "@dcloudio/vite-plugin-uni": "3.0.0-alpha-3060920221114001", + "@types/node": "^17.0.45", + "@typescript-eslint/eslint-plugin": "^5.30.3", + "@typescript-eslint/parser": "^5.30.3", + "@vitejs/plugin-vue": "^2.3.3", + "@vitest/ui": "^0.10.5", + "c8": "^7.11.3", + "czg": "^1.4.1", + "eslint": "^8.19.0", + "eslint-config-airbnb-base": "^15.0.0", + "eslint-config-prettier": "^8.5.0", + "eslint-plugin-import": "^2.26.0", + "eslint-plugin-prettier": "^4.2.1", + "eslint-plugin-todo-ddl": "^1.1.1", + "eslint-plugin-vue": "^9.1.1", + "jsdom": "^24.0.0", + "less": "^4.1.3", + "prettier": "^2.7.1", + "sass": "^1.53.0", + "simple-git-hooks": "^2.8.1", + "typescript": "^4.7.4", + "unocss": "^0.46.4", + "unocss-preset-weapp": "^0.2.1", + "vite": "^3.1.8", + "vite-plugin-eslint": "^1.6.1", + "vitest": "^0.16.0" + }, + "simple-git-hooks": { + "commit-msg": "npx --no-install commitlint --edit \"$1\"" + } +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 0000000..01cf256 --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,6260 @@ +lockfileVersion: '6.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +dependencies: + '@dcloudio/uni-app': + specifier: 3.0.0-alpha-3060920221114001 + version: 3.0.0-alpha-3060920221114001(@dcloudio/types@3.0.19)(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-app-plus': + specifier: 3.0.0-alpha-3060920221114001 + version: 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vite@3.2.3)(vue@3.2.45) + '@dcloudio/uni-components': + specifier: 3.0.0-alpha-3060920221114001 + version: 3.0.0-alpha-3060920221114001 + '@dcloudio/uni-h5': + specifier: 3.0.0-alpha-3060920221114001 + version: 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-alipay': + specifier: 3.0.0-alpha-3060920221114001 + version: 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-baidu': + specifier: 3.0.0-alpha-3060920221114001 + version: 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-kuaishou': + specifier: 3.0.0-alpha-3060920221114001 + version: 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-lark': + specifier: 3.0.0-alpha-3060920221114001 + version: 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-qq': + specifier: 3.0.0-alpha-3060920221114001 + version: 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-toutiao': + specifier: 3.0.0-alpha-3060920221114001 + version: 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-weixin': + specifier: 3.0.0-alpha-3060920221114001 + version: 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-quickapp-webview': + specifier: 3.0.0-alpha-3060920221114001 + version: 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + axios: + specifier: ^0.27.2 + version: 0.27.2 + cz-git: + specifier: ^1.4.1 + version: 1.4.1 + decimal.js: + specifier: ^10.4.3 + version: 10.4.3 + or: + specifier: ^0.2.0 + version: 0.2.0 + pinia: + specifier: ^2.0.35 + version: 2.0.35(typescript@4.7.4)(vue@3.2.45) + vk-uview-ui: + specifier: ^1.3.7 + version: 1.3.7 + vue: + specifier: ^3.2.41 + version: 3.2.45 + vue-demi: + specifier: latest + version: 0.14.7(vue@3.2.45) + vue-i18n: + specifier: ^9.1.9 + version: 9.1.10(vue@3.2.45) + vuex: + specifier: ^4.0.2 + version: 4.0.2(vue@3.2.45) + +devDependencies: + '@commitlint/cli': + specifier: ^17.4.2 + version: 17.4.2 + '@commitlint/config-conventional': + specifier: ^17.4.2 + version: 17.4.2 + '@dcloudio/types': + specifier: ^3.0.16 + version: 3.0.19 + '@dcloudio/uni-automator': + specifier: 3.0.0-alpha-3060920221114001 + version: 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-cli-shared': + specifier: 3.0.0-alpha-3060920221114001 + version: 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-stacktracey': + specifier: 3.0.0-alpha-3060920221114001 + version: 3.0.0-alpha-3060920221114001 + '@dcloudio/vite-plugin-uni': + specifier: 3.0.0-alpha-3060920221114001 + version: 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vite@3.2.3)(vue@3.2.45) + '@types/node': + specifier: ^17.0.45 + version: 17.0.45 + '@typescript-eslint/eslint-plugin': + specifier: ^5.30.3 + version: 5.30.3(@typescript-eslint/parser@5.30.3)(eslint@8.19.0)(typescript@4.7.4) + '@typescript-eslint/parser': + specifier: ^5.30.3 + version: 5.30.3(eslint@8.19.0)(typescript@4.7.4) + '@vitejs/plugin-vue': + specifier: ^2.3.3 + version: 2.3.3(vite@3.2.3)(vue@3.2.45) + '@vitest/ui': + specifier: ^0.10.5 + version: 0.10.5 + c8: + specifier: ^7.11.3 + version: 7.11.3 + czg: + specifier: ^1.4.1 + version: 1.4.1 + eslint: + specifier: ^8.19.0 + version: 8.19.0 + eslint-config-airbnb-base: + specifier: ^15.0.0 + version: 15.0.0(eslint-plugin-import@2.26.0)(eslint@8.19.0) + eslint-config-prettier: + specifier: ^8.5.0 + version: 8.5.0(eslint@8.19.0) + eslint-plugin-import: + specifier: ^2.26.0 + version: 2.26.0(@typescript-eslint/parser@5.30.3)(eslint@8.19.0) + eslint-plugin-prettier: + specifier: ^4.2.1 + version: 4.2.1(eslint-config-prettier@8.5.0)(eslint@8.19.0)(prettier@2.7.1) + eslint-plugin-todo-ddl: + specifier: ^1.1.1 + version: 1.1.1 + eslint-plugin-vue: + specifier: ^9.1.1 + version: 9.1.1(eslint@8.19.0) + jsdom: + specifier: ^24.0.0 + version: 24.0.0 + less: + specifier: ^4.1.3 + version: 4.1.3 + prettier: + specifier: ^2.7.1 + version: 2.7.1 + sass: + specifier: ^1.53.0 + version: 1.53.0 + simple-git-hooks: + specifier: ^2.8.1 + version: 2.8.1 + typescript: + specifier: ^4.7.4 + version: 4.7.4 + unocss: + specifier: ^0.46.4 + version: 0.46.4(vite@3.2.3) + unocss-preset-weapp: + specifier: ^0.2.1 + version: 0.2.1 + vite: + specifier: ^3.1.8 + version: 3.2.3(@types/node@17.0.45)(less@4.1.3)(sass@1.53.0)(terser@5.15.1) + vite-plugin-eslint: + specifier: ^1.6.1 + version: 1.6.1(eslint@8.19.0)(vite@3.2.3) + vitest: + specifier: ^0.16.0 + version: 0.16.0(@vitest/ui@0.10.5)(c8@7.11.3)(jsdom@24.0.0)(less@4.1.3)(sass@1.53.0) + +packages: + + /@ampproject/remapping@2.2.0: + resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/gen-mapping': 0.1.1 + '@jridgewell/trace-mapping': 0.3.14 + + /@antfu/install-pkg@0.1.1: + resolution: {integrity: sha512-LyB/8+bSfa0DFGC06zpCEfs89/XoWZwws5ygEa5D+Xsm3OfI+aXQ86VgVG7Acyef+rSZ5HE7J8rrxzrQeM3PjQ==} + dependencies: + execa: 5.1.1 + find-up: 5.0.0 + dev: true + + /@antfu/utils@0.5.2: + resolution: {integrity: sha512-CQkeV+oJxUazwjlHD0/3ZD08QWKuGQkhnrKo3e6ly5pd48VUpXbb77q0xMU4+vc2CkJnDS02Eq/M9ugyX20XZA==} + dev: true + + /@babel/code-frame@7.18.6: + resolution: {integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.18.6 + + /@babel/compat-data@7.20.1: + resolution: {integrity: sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==} + engines: {node: '>=6.9.0'} + + /@babel/core@7.20.2: + resolution: {integrity: sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==} + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.2.0 + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.20.4 + '@babel/helper-compilation-targets': 7.20.0(@babel/core@7.20.2) + '@babel/helper-module-transforms': 7.20.2 + '@babel/helpers': 7.20.1 + '@babel/parser': 7.20.3 + '@babel/template': 7.18.10 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.2 + convert-source-map: 1.8.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + + /@babel/generator@7.20.4: + resolution: {integrity: sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.2 + '@jridgewell/gen-mapping': 0.3.2 + jsesc: 2.5.2 + + /@babel/helper-annotate-as-pure@7.18.6: + resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.2 + dev: true + + /@babel/helper-compilation-targets@7.20.0(@babel/core@7.20.2): + resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.20.1 + '@babel/core': 7.20.2 + '@babel/helper-validator-option': 7.18.6 + browserslist: 4.21.4 + semver: 6.3.0 + + /@babel/helper-create-class-features-plugin@7.20.2(@babel/core@7.20.2): + resolution: {integrity: sha512-k22GoYRAHPYr9I+Gvy2ZQlAe5mGy8BqWst2wRt8cwIufWTxrsVshhIBvYNqC80N0GSFWTsqRVexOtfzlgOEDvA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-member-expression-to-functions': 7.18.9 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/helper-replace-supers': 7.19.1 + '@babel/helper-split-export-declaration': 7.18.6 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-environment-visitor@7.18.9: + resolution: {integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==} + engines: {node: '>=6.9.0'} + + /@babel/helper-function-name@7.19.0: + resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.18.10 + '@babel/types': 7.20.2 + + /@babel/helper-hoist-variables@7.18.6: + resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.2 + + /@babel/helper-member-expression-to-functions@7.18.9: + resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.2 + dev: true + + /@babel/helper-module-imports@7.18.6: + resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.2 + + /@babel/helper-module-transforms@7.20.2: + resolution: {integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-simple-access': 7.20.2 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/helper-validator-identifier': 7.19.1 + '@babel/template': 7.18.10 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.2 + transitivePeerDependencies: + - supports-color + + /@babel/helper-optimise-call-expression@7.18.6: + resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.2 + dev: true + + /@babel/helper-plugin-utils@7.20.2: + resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-replace-supers@7.19.1: + resolution: {integrity: sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-member-expression-to-functions': 7.18.9 + '@babel/helper-optimise-call-expression': 7.18.6 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-simple-access@7.20.2: + resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.2 + + /@babel/helper-split-export-declaration@7.18.6: + resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.20.2 + + /@babel/helper-string-parser@7.19.4: + resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} + engines: {node: '>=6.9.0'} + + /@babel/helper-validator-identifier@7.19.1: + resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} + engines: {node: '>=6.9.0'} + + /@babel/helper-validator-option@7.18.6: + resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==} + engines: {node: '>=6.9.0'} + + /@babel/helpers@7.20.1: + resolution: {integrity: sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.18.10 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.2 + transitivePeerDependencies: + - supports-color + + /@babel/highlight@7.18.6: + resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.19.1 + chalk: 2.4.2 + js-tokens: 4.0.0 + + /@babel/parser@7.20.3: + resolution: {integrity: sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.20.2 + + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.20.2): + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.20.2): + resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.20.2): + resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-typescript@7.20.2(@babel/core@7.20.2): + resolution: {integrity: sha512-jvS+ngBfrnTUBfOQq8NfGnSbF9BrqlR6hjJ2yVxMkmO5nL/cdifNbI30EfjRlN4g5wYWNnMPyj5Sa6R1pbLeag==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.2 + '@babel/helper-create-class-features-plugin': 7.20.2(@babel/core@7.20.2) + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.20.2) + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/standalone@7.20.4: + resolution: {integrity: sha512-27bv4h47jbaFZ7+e7gT1VEo9PNL1ynxqUX6/BERLz1qxm/5gzpbcHX+47VnSeYHyEyGZkRznpSOd8zPBhiz6tw==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/template@7.18.10: + resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/parser': 7.20.3 + '@babel/types': 7.20.2 + + /@babel/traverse@7.20.1: + resolution: {integrity: sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.20.4 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/parser': 7.20.3 + '@babel/types': 7.20.2 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + /@babel/types@7.20.2: + resolution: {integrity: sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.19.4 + '@babel/helper-validator-identifier': 7.19.1 + to-fast-properties: 2.0.0 + + /@bcoe/v8-coverage@0.2.3: + resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + dev: true + + /@commitlint/cli@17.4.2: + resolution: {integrity: sha512-0rPGJ2O1owhpxMIXL9YJ2CgPkdrFLKZElIZHXDN8L8+qWK1DGH7Q7IelBT1pchXTYTuDlqkOTdh//aTvT3bSUA==} + engines: {node: '>=v14'} + hasBin: true + dependencies: + '@commitlint/format': 17.4.0 + '@commitlint/lint': 17.4.2 + '@commitlint/load': 17.4.2 + '@commitlint/read': 17.4.2 + '@commitlint/types': 17.4.0 + execa: 5.1.1 + lodash.isfunction: 3.0.9 + resolve-from: 5.0.0 + resolve-global: 1.0.0 + yargs: 17.6.2 + transitivePeerDependencies: + - '@swc/core' + - '@swc/wasm' + dev: true + + /@commitlint/config-conventional@17.4.2: + resolution: {integrity: sha512-JVo1moSj5eDMoql159q8zKCU8lkOhQ+b23Vl3LVVrS6PXDLQIELnJ34ChQmFVbBdSSRNAbbXnRDhosFU+wnuHw==} + engines: {node: '>=v14'} + dependencies: + conventional-changelog-conventionalcommits: 5.0.0 + dev: true + + /@commitlint/config-validator@17.4.0: + resolution: {integrity: sha512-Sa/+8KNpDXz4zT4bVbz2fpFjvgkPO6u2V2fP4TKgt6FjmOw2z3eEX859vtfeaTav/ukBw0/0jr+5ZTZp9zCBhA==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/types': 17.4.0 + ajv: 8.12.0 + dev: true + + /@commitlint/ensure@17.4.0: + resolution: {integrity: sha512-7oAxt25je0jeQ/E0O/M8L3ADb1Cvweu/5lc/kYF8g/kXatI0wxGE5La52onnAUAWeWlsuvBNar15WcrmDmr5Mw==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/types': 17.4.0 + lodash.camelcase: 4.3.0 + lodash.kebabcase: 4.1.1 + lodash.snakecase: 4.1.1 + lodash.startcase: 4.4.0 + lodash.upperfirst: 4.3.1 + dev: true + + /@commitlint/execute-rule@17.4.0: + resolution: {integrity: sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA==} + engines: {node: '>=v14'} + dev: true + + /@commitlint/format@17.4.0: + resolution: {integrity: sha512-Z2bWAU5+f1YZh9W76c84J8iLIWIvvm+mzqogTz0Nsc1x6EHW0Z2gI38g5HAjB0r0I3ZjR15IDEJKhsxyblcyhA==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/types': 17.4.0 + chalk: 4.1.2 + dev: true + + /@commitlint/is-ignored@17.4.2: + resolution: {integrity: sha512-1b2Y2qJ6n7bHG9K6h8S4lBGUl6kc7mMhJN9gy1SQfUZqe92ToDjUTtgNWb6LbzR1X8Cq4SEus4VU8Z/riEa94Q==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/types': 17.4.0 + semver: 7.3.8 + dev: true + + /@commitlint/lint@17.4.2: + resolution: {integrity: sha512-HcymabrdBhsDMNzIv146+ZPNBPBK5gMNsVH+el2lCagnYgCi/4ixrHooeVyS64Fgce2K26+MC7OQ4vVH8wQWVw==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/is-ignored': 17.4.2 + '@commitlint/parse': 17.4.2 + '@commitlint/rules': 17.4.2 + '@commitlint/types': 17.4.0 + dev: true + + /@commitlint/load@17.4.2: + resolution: {integrity: sha512-Si++F85rJ9t4hw6JcOw1i2h0fdpdFQt0YKwjuK4bk9KhFjyFkRxvR3SB2dPaMs+EwWlDrDBGL+ygip1QD6gmPw==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/config-validator': 17.4.0 + '@commitlint/execute-rule': 17.4.0 + '@commitlint/resolve-extends': 17.4.0 + '@commitlint/types': 17.4.0 + '@types/node': 17.0.45 + chalk: 4.1.2 + cosmiconfig: 8.0.0 + cosmiconfig-typescript-loader: 4.3.0(@types/node@17.0.45)(cosmiconfig@8.0.0)(ts-node@10.9.1)(typescript@4.7.4) + lodash.isplainobject: 4.0.6 + lodash.merge: 4.6.2 + lodash.uniq: 4.5.0 + resolve-from: 5.0.0 + ts-node: 10.9.1(@types/node@17.0.45)(typescript@4.7.4) + typescript: 4.7.4 + transitivePeerDependencies: + - '@swc/core' + - '@swc/wasm' + dev: true + + /@commitlint/message@17.4.2: + resolution: {integrity: sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q==} + engines: {node: '>=v14'} + dev: true + + /@commitlint/parse@17.4.2: + resolution: {integrity: sha512-DK4EwqhxfXpyCA+UH8TBRIAXAfmmX4q9QRBz/2h9F9sI91yt6mltTrL6TKURMcjUVmgaB80wgS9QybNIyVBIJA==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/types': 17.4.0 + conventional-changelog-angular: 5.0.13 + conventional-commits-parser: 3.2.4 + dev: true + + /@commitlint/read@17.4.2: + resolution: {integrity: sha512-hasYOdbhEg+W4hi0InmXHxtD/1favB4WdwyFxs1eOy/DvMw6+2IZBmATgGOlqhahsypk4kChhxjAFJAZ2F+JBg==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/top-level': 17.4.0 + '@commitlint/types': 17.4.0 + fs-extra: 11.1.0 + git-raw-commits: 2.0.11 + minimist: 1.2.6 + dev: true + + /@commitlint/resolve-extends@17.4.0: + resolution: {integrity: sha512-3JsmwkrCzoK8sO22AzLBvNEvC1Pmdn/65RKXzEtQMy6oYMl0Snrq97a5bQQEFETF0VsvbtUuKttLqqgn99OXRQ==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/config-validator': 17.4.0 + '@commitlint/types': 17.4.0 + import-fresh: 3.3.0 + lodash.mergewith: 4.6.2 + resolve-from: 5.0.0 + resolve-global: 1.0.0 + dev: true + + /@commitlint/rules@17.4.2: + resolution: {integrity: sha512-OGrPsMb9Fx3/bZ64/EzJehY9YDSGWzp81Pj+zJiY+r/NSgJI3nUYdlS37jykNIugzazdEXfMtQ10kmA+Kx2pZQ==} + engines: {node: '>=v14'} + dependencies: + '@commitlint/ensure': 17.4.0 + '@commitlint/message': 17.4.2 + '@commitlint/to-lines': 17.4.0 + '@commitlint/types': 17.4.0 + execa: 5.1.1 + dev: true + + /@commitlint/to-lines@17.4.0: + resolution: {integrity: sha512-LcIy/6ZZolsfwDUWfN1mJ+co09soSuNASfKEU5sCmgFCvX5iHwRYLiIuoqXzOVDYOy7E7IcHilr/KS0e5T+0Hg==} + engines: {node: '>=v14'} + dev: true + + /@commitlint/top-level@17.4.0: + resolution: {integrity: sha512-/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g==} + engines: {node: '>=v14'} + dependencies: + find-up: 5.0.0 + dev: true + + /@commitlint/types@17.4.0: + resolution: {integrity: sha512-2NjAnq5IcxY9kXtUeO2Ac0aPpvkuOmwbH/BxIm36XXK5LtWFObWJWjXOA+kcaABMrthjWu6la+FUpyYFMHRvbA==} + engines: {node: '>=v14'} + dependencies: + chalk: 4.1.2 + dev: true + + /@cspotcode/source-map-support@0.8.1: + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} + dependencies: + '@jridgewell/trace-mapping': 0.3.9 + + /@dcloudio/types@3.0.19: + resolution: {integrity: sha512-j5mmKskyAxGa3yD5s+M03mRJu6IjxesHJMsXLB3p4jhd2K8D1aqHB3XDrhwPRauOTrKkQSGF14bp8oQsS2t4tA==} + + /@dcloudio/uni-app-plus@3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vite@3.2.3)(vue@3.2.45): + resolution: {integrity: sha512-uunh7tYGbA/kE5zAlqTpw547KDLXG0h3+73WdAdQ3++PdIWljlSLZ+yhkmQl+eVBpQB134tBYGZphhu3f+dbVg==} + dependencies: + '@dcloudio/uni-app-vite': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vite@3.2.3)(vue@3.2.45) + '@dcloudio/uni-app-vue': 3.0.0-alpha-3060920221114001 + transitivePeerDependencies: + - postcss + - supports-color + - ts-node + - vite + - vue + dev: false + + /@dcloudio/uni-app-vite@3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vite@3.2.3)(vue@3.2.45): + resolution: {integrity: sha512-lDuGUCiLSPpCxsCG4BWzPPl666ALrxdNaK6EWpKDLuK1+augx+1QalpV+xSptSSc+n/oUMAD2qkedsiUUvL+Lg==} + dependencies: + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-i18n': 3.0.0-alpha-3060920221114001 + '@dcloudio/uni-nvue-styler': 3.0.0-alpha-3060920221114001 + '@dcloudio/uni-shared': 3.0.0-alpha-3060920221114001 + '@rollup/pluginutils': 4.2.1 + '@vitejs/plugin-vue': 3.2.0(vite@3.2.3)(vue@3.2.45) + '@vue/compiler-dom': 3.2.41 + '@vue/compiler-sfc': 3.2.41 + debug: 4.3.4 + fs-extra: 10.1.0 + picocolors: 1.0.0 + rollup: 2.79.1 + transitivePeerDependencies: + - postcss + - supports-color + - ts-node + - vite + - vue + dev: false + + /@dcloudio/uni-app-vue@3.0.0-alpha-3060920221114001: + resolution: {integrity: sha512-I1+OlR59sbLeIMSlIDDUTNH8avP1XLBDFAaU3+fNgjyCF+wHbGRGPO8ZVQxWzg/q25LkVfm+GZc/c9JfS8BWZg==} + dev: false + + /@dcloudio/uni-app@3.0.0-alpha-3060920221114001(@dcloudio/types@3.0.19)(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45): + resolution: {integrity: sha512-bLd7D7sZT9WMs64rKQWGx56QeAji8qw8toLAAvGThUEYMQwlrujE+8WCcH9soVfSMnqnUhI8/rM13AIsuwmpZg==} + peerDependencies: + '@dcloudio/types': ^3.0.19 + dependencies: + '@dcloudio/types': 3.0.19 + '@dcloudio/uni-cloud': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-components': 3.0.0-alpha-3060920221114001 + '@dcloudio/uni-i18n': 3.0.0-alpha-3060920221114001 + '@dcloudio/uni-push': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-shared': 3.0.0-alpha-3060920221114001 + '@dcloudio/uni-stat': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@vue/shared': 3.2.41 + transitivePeerDependencies: + - postcss + - supports-color + - ts-node + - vue + dev: false + + /@dcloudio/uni-automator@3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45): + resolution: {integrity: sha512-Lx/iu6WexQmGW8FBiSwAkLeoAzLgyeEAvwHr5gb1443aGctnFW98GKuL5e8lXWQKL/6OWpQpvxeBs/kcM8izug==} + dependencies: + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + address: 1.2.0 + cross-env: 7.0.3 + debug: 4.3.4 + default-gateway: 6.0.3 + fs-extra: 10.1.0 + licia: 1.36.0 + postcss-selector-parser: 6.0.10 + qrcode-reader: 1.0.4 + qrcode-terminal: 0.12.0 + ws: 8.8.0 + transitivePeerDependencies: + - bufferutil + - postcss + - supports-color + - ts-node + - utf-8-validate + - vue + dev: true + + /@dcloudio/uni-cli-shared@3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45): + resolution: {integrity: sha512-BNVzxDuyF++bUvfGIK3ItbgubNiCo49Gu9efYJpNfERAYz+SaXI7NXBPTzjNB5vzFB4gI1GtUD4j16gXEJmi9g==} + engines: {node: ^14.18.0 || >=16.0.0} + dependencies: + '@ampproject/remapping': 2.2.0 + '@babel/core': 7.20.2 + '@babel/parser': 7.20.3 + '@babel/types': 7.20.2 + '@dcloudio/uni-i18n': 3.0.0-alpha-3060920221114001 + '@dcloudio/uni-shared': 3.0.0-alpha-3060920221114001 + '@intlify/core-base': 9.1.9 + '@intlify/shared': 9.1.9 + '@intlify/vue-devtools': 9.1.9 + '@rollup/pluginutils': 4.2.1 + '@vue/compiler-core': 3.2.41 + '@vue/compiler-dom': 3.2.41 + '@vue/compiler-sfc': 3.2.41 + '@vue/server-renderer': 3.2.41(vue@3.2.45) + '@vue/shared': 3.2.41 + autoprefixer: 10.4.13(postcss@8.4.19) + base64url: 3.0.1 + chokidar: 3.5.3 + compare-versions: 3.6.0 + debug: 4.3.4 + es-module-lexer: 0.9.3 + esbuild: 0.15.13 + estree-walker: 2.0.2 + fast-glob: 3.2.12 + fs-extra: 10.1.0 + hash-sum: 2.0.0 + jsonc-parser: 3.0.0 + magic-string: 0.26.7 + merge: 2.1.1 + mime: 3.0.0 + module-alias: 2.2.2 + os-locale-s-fix: 1.0.8-fix-1 + picocolors: 1.0.0 + postcss-import: 14.1.0(postcss@8.4.19) + postcss-load-config: 3.1.4(postcss@8.4.19)(ts-node@10.9.1) + postcss-modules: 4.3.1(postcss@8.4.19) + postcss-selector-parser: 6.0.10 + resolve: 1.22.1 + tapable: 2.2.1 + xregexp: 3.1.0 + transitivePeerDependencies: + - postcss + - supports-color + - ts-node + - vue + + /@dcloudio/uni-cloud@3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45): + resolution: {integrity: sha512-E3MkF72rN6FQHvPmSJ75gbcKl5TTQFf7X7xMgCcvNZPt1iwwBsDYhpN9fk0L/z+TWsi764zW5OqBA00w8PkVTg==} + dependencies: + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-i18n': 3.0.0-alpha-3060920221114001 + '@dcloudio/uni-shared': 3.0.0-alpha-3060920221114001 + '@vue/shared': 3.2.41 + fast-glob: 3.2.12 + transitivePeerDependencies: + - postcss + - supports-color + - ts-node + - vue + dev: false + + /@dcloudio/uni-components@3.0.0-alpha-3060920221114001: + resolution: {integrity: sha512-pL7hB8EK2Hs3WdzxUDWGSXYJh8eLkhuBIW9YZnCuGd409YW5X1ZM2CNLtBiGMa1QK8iSAxkUkM5q52lTNFMaNQ==} + dev: false + + /@dcloudio/uni-h5-vite@3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45): + resolution: {integrity: sha512-g0iMZtplXcy/0V9M014pg1nTvC42qt5SNQe/6ij7sAUCoqVzvLqLemlYJa/cqA/QgQYeOfYauGo9n5TAHENxVw==} + dependencies: + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-shared': 3.0.0-alpha-3060920221114001 + '@rollup/pluginutils': 4.2.1 + '@vue/compiler-dom': 3.2.41 + '@vue/compiler-sfc': 3.2.41 + '@vue/server-renderer': 3.2.41(vue@3.2.45) + '@vue/shared': 3.2.41 + debug: 4.3.4 + fs-extra: 10.1.0 + mime: 3.0.0 + module-alias: 2.2.2 + transitivePeerDependencies: + - postcss + - supports-color + - ts-node + - vue + dev: false + + /@dcloudio/uni-h5-vue@3.0.0-alpha-3060920221114001: + resolution: {integrity: sha512-8RU+i7Aytd3jDSmJ9hzLveGFw2RdAeTxJD98M3xjF2CI5Z9ppK4kGcEX0uSqmyjoXOvmdkVxliiz2/W186lcdg==} + dependencies: + '@dcloudio/uni-shared': 3.0.0-alpha-3060920221114001 + dev: false + + /@dcloudio/uni-h5@3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45): + resolution: {integrity: sha512-rLlJdRLGElxNt99MUhiYO14GFLA6FZ/8I/6QIr3JMnjlqLqPtnaqVZjqzs1K7DFtaIPelm4H7XDrGRg9S4CqbA==} + dependencies: + '@dcloudio/uni-h5-vite': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-h5-vue': 3.0.0-alpha-3060920221114001 + '@dcloudio/uni-i18n': 3.0.0-alpha-3060920221114001 + '@dcloudio/uni-shared': 3.0.0-alpha-3060920221114001 + '@vue/server-renderer': 3.2.41(vue@3.2.45) + '@vue/shared': 3.2.41 + localstorage-polyfill: 1.0.1 + safe-area-insets: 1.4.1 + vue-router: 4.1.6(vue@3.2.45) + xmlhttprequest: 1.8.0 + transitivePeerDependencies: + - postcss + - supports-color + - ts-node + - vue + dev: false + + /@dcloudio/uni-i18n@3.0.0-alpha-3060920221114001: + resolution: {integrity: sha512-0YryodbG8bZuhLCotXcfAkWo1UAJh++aNnMJkIFvTctBegKwp/qtiGFOWIH+30TpNFMhtGKL7YaMl0wy2MJtuQ==} + + /@dcloudio/uni-mp-alipay@3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45): + resolution: {integrity: sha512-Tf0b7Le8awf3GoEkbkdOkWS2P4Ge7x7ntDguUGmumGee+OIsq+CDMZd2T9c7dOqgNXTADmibMghnjTXFhwnBTQ==} + dependencies: + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-vite': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-vue': 3.0.0-alpha-3060920221114001 + '@dcloudio/uni-shared': 3.0.0-alpha-3060920221114001 + '@vue/compiler-core': 3.2.41 + '@vue/shared': 3.2.41 + transitivePeerDependencies: + - postcss + - supports-color + - ts-node + - vue + dev: false + + /@dcloudio/uni-mp-baidu@3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45): + resolution: {integrity: sha512-gV402gXf9oFoJFVhFuMzIFogh5ies4EkCxeQUrjwaANjJ+UgO9ebcydYcSc7M1S8Blad+zWDWqEFHjsjEQNHeg==} + dependencies: + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-compiler': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-vite': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-vue': 3.0.0-alpha-3060920221114001 + '@dcloudio/uni-mp-weixin': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-shared': 3.0.0-alpha-3060920221114001 + '@vue/compiler-core': 3.2.41 + '@vue/shared': 3.2.41 + transitivePeerDependencies: + - postcss + - supports-color + - ts-node + - vue + dev: false + + /@dcloudio/uni-mp-compiler@3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45): + resolution: {integrity: sha512-/xefdK5YBBsGoQUDmgpSXAgyVkolPka7r3DLjKeiH7bxy+BSOQbyW1YOZffInLeQAJBXkipVd+mfWhHFuPK5UA==} + dependencies: + '@babel/generator': 7.20.4 + '@babel/parser': 7.20.3 + '@babel/types': 7.20.2 + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-shared': 3.0.0-alpha-3060920221114001 + '@vue/compiler-core': 3.2.41 + '@vue/compiler-dom': 3.2.41 + '@vue/shared': 3.2.41 + estree-walker: 2.0.2 + transitivePeerDependencies: + - postcss + - supports-color + - ts-node + - vue + dev: false + + /@dcloudio/uni-mp-kuaishou@3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45): + resolution: {integrity: sha512-YTDfkZ9FzBEcR+135PDYe4QDoVp1VI1V+jv0Lks8lFkewYIsizQO7zibb75/t8MlBuftf6v2i/JD2pgoZtW0hA==} + dependencies: + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-compiler': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-vite': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-vue': 3.0.0-alpha-3060920221114001 + '@dcloudio/uni-mp-weixin': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-shared': 3.0.0-alpha-3060920221114001 + '@vue/compiler-core': 3.2.41 + '@vue/shared': 3.2.41 + transitivePeerDependencies: + - postcss + - supports-color + - ts-node + - vue + dev: false + + /@dcloudio/uni-mp-lark@3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45): + resolution: {integrity: sha512-CruQIZyAhNmxAtzUzLzAVI42YhB5YS9Z3RAzTrAjQmzsIss8YQ18JkgMoEVWp7l0Hkyrc0JM+cXH+u3Di3Z6rQ==} + dependencies: + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-compiler': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-toutiao': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-vite': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-vue': 3.0.0-alpha-3060920221114001 + '@dcloudio/uni-shared': 3.0.0-alpha-3060920221114001 + '@vue/compiler-core': 3.2.41 + '@vue/shared': 3.2.41 + transitivePeerDependencies: + - postcss + - supports-color + - ts-node + - vue + dev: false + + /@dcloudio/uni-mp-qq@3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45): + resolution: {integrity: sha512-nB6nF75wgeoRhgGudAfoh5vPi364LV1D26eGMB9mnpNZHo54dNTRwnIR82ZUT/jxBBkS7i3ls0PNsYnxYnSqew==} + dependencies: + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-vite': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-vue': 3.0.0-alpha-3060920221114001 + '@dcloudio/uni-shared': 3.0.0-alpha-3060920221114001 + '@vue/shared': 3.2.41 + fs-extra: 10.1.0 + transitivePeerDependencies: + - postcss + - supports-color + - ts-node + - vue + dev: false + + /@dcloudio/uni-mp-toutiao@3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45): + resolution: {integrity: sha512-F4oDDteh7WcVZ0Jn+WDgwo+h2YsKPM9MqTVblp3jrXZs2bA1/OxXG6cjwFL/iC7E40tuZfQPIhb942rNXzFgQw==} + dependencies: + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-compiler': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-vite': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-vue': 3.0.0-alpha-3060920221114001 + '@dcloudio/uni-shared': 3.0.0-alpha-3060920221114001 + '@vue/compiler-core': 3.2.41 + '@vue/shared': 3.2.41 + transitivePeerDependencies: + - postcss + - supports-color + - ts-node + - vue + dev: false + + /@dcloudio/uni-mp-vite@3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45): + resolution: {integrity: sha512-+/B86xm7MhYY1G2GNpN+0HWB+FTLJIDe4j5PeCr/n5Rwmp3dHfTd//kYtA2Np7TIOYkLg3sME/BRxNfQqmHp4A==} + dependencies: + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-i18n': 3.0.0-alpha-3060920221114001 + '@dcloudio/uni-mp-compiler': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-vue': 3.0.0-alpha-3060920221114001 + '@dcloudio/uni-shared': 3.0.0-alpha-3060920221114001 + '@vue/compiler-sfc': 3.2.41 + '@vue/shared': 3.2.41 + debug: 4.3.4 + transitivePeerDependencies: + - postcss + - supports-color + - ts-node + - vue + dev: false + + /@dcloudio/uni-mp-vue@3.0.0-alpha-3060920221114001: + resolution: {integrity: sha512-UE5O+qGCE8RjORlXPXw8RueDmYjNXcUbqrmWh3daWyWpIAX6Rc8sGsyBAiXfvPQfTsx9OoqEqpN+vtTCf8vIuA==} + dependencies: + '@dcloudio/uni-shared': 3.0.0-alpha-3060920221114001 + '@vue/shared': 3.2.41 + dev: false + + /@dcloudio/uni-mp-weixin@3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45): + resolution: {integrity: sha512-EHi7/VRHKaeNlVTFMZ+DJEWLtPmY5uc1QIW322Wu2NPcyp2tZRbBbfI7sZlSgjWYY0QhIpK3k9SwNGRqnxdA6A==} + dependencies: + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-vite': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-vue': 3.0.0-alpha-3060920221114001 + '@dcloudio/uni-shared': 3.0.0-alpha-3060920221114001 + '@vue/shared': 3.2.41 + transitivePeerDependencies: + - postcss + - supports-color + - ts-node + - vue + dev: false + + /@dcloudio/uni-nvue-styler@3.0.0-alpha-3060920221114001: + resolution: {integrity: sha512-B0tRU9VVmbo1SgkeyH9LD2IzLAkomHELHExdObUCDXRQHAxUjIAmb/9PnslIaMQ1AHg/51TxElEGuANQUnV+NA==} + dependencies: + '@vue/shared': 3.2.41 + parse-css-font: 4.0.0 + postcss: 8.4.19 + dev: false + + /@dcloudio/uni-push@3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45): + resolution: {integrity: sha512-tUr33EL20U0/gnlMB5CgrIqXLDUpjFzGBrCFB5YS3Swqu9nnvTtwP9l4szu50mHi9DCkdrFzQ39C3h/3ey9gwQ==} + dependencies: + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + transitivePeerDependencies: + - postcss + - supports-color + - ts-node + - vue + dev: false + + /@dcloudio/uni-quickapp-webview@3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45): + resolution: {integrity: sha512-1TI9mvc8k/FdkeeVV/zRqG+aX+e263QhVEYAg+gRRfOwDZa/R3yxhGx4y70FI0m5DAm+MJh+SLJPS73+PzyjQw==} + dependencies: + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-vite': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-mp-vue': 3.0.0-alpha-3060920221114001 + '@dcloudio/uni-shared': 3.0.0-alpha-3060920221114001 + '@vue/shared': 3.2.41 + transitivePeerDependencies: + - postcss + - supports-color + - ts-node + - vue + dev: false + + /@dcloudio/uni-shared@3.0.0-alpha-3060920221114001: + resolution: {integrity: sha512-rblemR4gvDHKlnVIGGDh+H9Z6SnH2HKxnytEGbWJc7moDoxnUGHWP9DUwkt+PugpA7FccvOVo3Lsgi1wsZjG+g==} + dependencies: + '@vue/shared': 3.2.41 + + /@dcloudio/uni-stacktracey@3.0.0-alpha-3060920221114001: + resolution: {integrity: sha512-8n44NX4SMrIYjMFGCt35hLhsJNoP4VkSKivcgfEj2uWppAH5LDD/L7JR8APQeml2sKBe97MgQ2w9PW8yUfKkIA==} + dev: true + + /@dcloudio/uni-stat@3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45): + resolution: {integrity: sha512-enx5SEBs1epykp0f6sMUTaCymvMsSxStjOO3aRgUzUbF9nnrptCr3IlW889l/hbng5zLZGqpL4r1ZPj08tc0GA==} + dependencies: + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-shared': 3.0.0-alpha-3060920221114001 + debug: 4.3.4 + transitivePeerDependencies: + - postcss + - supports-color + - ts-node + - vue + dev: false + + /@dcloudio/vite-plugin-uni@3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vite@3.2.3)(vue@3.2.45): + resolution: {integrity: sha512-ODTNUhfR3LfGAagWef3Qrk+wKmst8WI+EHM5+b5fO5ihSyJXfHwLNE8LfDk8LasrIM4HwmzXFa1i317yXZKgqg==} + engines: {node: ^14.18.0 || >=16.0.0} + hasBin: true + peerDependencies: + vite: 3.2.3 + dependencies: + '@babel/core': 7.20.2 + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.20.2) + '@babel/plugin-transform-typescript': 7.20.2(@babel/core@7.20.2) + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3060920221114001(postcss@8.4.19)(ts-node@10.9.1)(vue@3.2.45) + '@dcloudio/uni-shared': 3.0.0-alpha-3060920221114001 + '@rollup/pluginutils': 4.2.1 + '@vitejs/plugin-legacy': 2.3.1(terser@5.15.1)(vite@3.2.3) + '@vitejs/plugin-vue': 3.2.0(vite@3.2.3)(vue@3.2.45) + '@vitejs/plugin-vue-jsx': 2.1.1(vite@3.2.3)(vue@3.2.45) + '@vue/compiler-core': 3.2.41 + '@vue/compiler-dom': 3.2.41 + '@vue/compiler-sfc': 3.2.41 + '@vue/shared': 3.2.41 + cac: 6.7.9 + debug: 4.3.4 + estree-walker: 2.0.2 + express: 4.18.1 + fast-glob: 3.2.12 + fs-extra: 10.1.0 + hash-sum: 2.0.0 + jsonc-parser: 3.0.0 + picocolors: 1.0.0 + terser: 5.15.1 + vite: 3.2.3(@types/node@17.0.45)(less@4.1.3)(sass@1.53.0)(terser@5.15.1) + transitivePeerDependencies: + - postcss + - supports-color + - ts-node + - vue + dev: true + + /@esbuild/android-arm@0.15.13: + resolution: {integrity: sha512-RY2fVI8O0iFUNvZirXaQ1vMvK0xhCcl0gqRj74Z6yEiO1zAUa7hbsdwZM1kzqbxHK7LFyMizipfXT3JME+12Hw==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + requiresBuild: true + optional: true + + /@esbuild/linux-loong64@0.15.13: + resolution: {integrity: sha512-+BoyIm4I8uJmH/QDIH0fu7MG0AEx9OXEDXnqptXCwKOlOqZiS4iraH1Nr7/ObLMokW3sOCeBNyD68ATcV9b9Ag==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + optional: true + + /@eslint/eslintrc@1.3.0: + resolution: {integrity: sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + ajv: 6.12.6 + debug: 4.3.4 + espree: 9.3.2 + globals: 13.15.0 + ignore: 5.2.0 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/config-array@0.9.5: + resolution: {integrity: sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==} + engines: {node: '>=10.10.0'} + dependencies: + '@humanwhocodes/object-schema': 1.2.1 + debug: 4.3.4 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/object-schema@1.2.1: + resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} + dev: true + + /@iconify/types@2.0.0: + resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==} + dev: true + + /@iconify/utils@2.0.1: + resolution: {integrity: sha512-t8IyICk25wgZL4YKn/2kYfjG5MGA6EWZlaUJZ1OEIku4V+kX9V900T5E4HIqS3hLyD6/RJET0zY4vxO9pHLHHw==} + dependencies: + '@antfu/install-pkg': 0.1.1 + '@antfu/utils': 0.5.2 + '@iconify/types': 2.0.0 + debug: 4.3.4 + kolorist: 1.6.0 + local-pkg: 0.4.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@intlify/core-base@9.1.10: + resolution: {integrity: sha512-So9CNUavB/IsZ+zBmk2Cv6McQp6vc2wbGi1S0XQmJ8Vz+UFcNn9MFXAe9gY67PreIHrbLsLxDD0cwo1qsxM1Nw==} + engines: {node: '>= 10'} + dependencies: + '@intlify/devtools-if': 9.1.10 + '@intlify/message-compiler': 9.1.10 + '@intlify/message-resolver': 9.1.10 + '@intlify/runtime': 9.1.10 + '@intlify/shared': 9.1.10 + '@intlify/vue-devtools': 9.1.10 + dev: false + + /@intlify/core-base@9.1.9: + resolution: {integrity: sha512-x5T0p/Ja0S8hs5xs+ImKyYckVkL4CzcEXykVYYV6rcbXxJTe2o58IquSqX9bdncVKbRZP7GlBU1EcRaQEEJ+vw==} + engines: {node: '>= 10'} + dependencies: + '@intlify/devtools-if': 9.1.9 + '@intlify/message-compiler': 9.1.9 + '@intlify/message-resolver': 9.1.9 + '@intlify/runtime': 9.1.9 + '@intlify/shared': 9.1.9 + '@intlify/vue-devtools': 9.1.9 + + /@intlify/devtools-if@9.1.10: + resolution: {integrity: sha512-SHaKoYu6sog3+Q8js1y3oXLywuogbH1sKuc7NSYkN3GElvXSBaMoCzW+we0ZSFqj/6c7vTNLg9nQ6rxhKqYwnQ==} + engines: {node: '>= 10'} + dependencies: + '@intlify/shared': 9.1.10 + dev: false + + /@intlify/devtools-if@9.1.9: + resolution: {integrity: sha512-oKSMKjttG3Ut/1UGEZjSdghuP3fwA15zpDPcjkf/1FjlOIm6uIBGMNS5jXzsZy593u+P/YcnrZD6cD3IVFz9vQ==} + engines: {node: '>= 10'} + dependencies: + '@intlify/shared': 9.1.9 + + /@intlify/message-compiler@9.1.10: + resolution: {integrity: sha512-+JiJpXff/XTb0EadYwdxOyRTB0hXNd4n1HaJ/a4yuV960uRmPXaklJsedW0LNdcptd/hYUZtCkI7Lc9J5C1gxg==} + engines: {node: '>= 10'} + dependencies: + '@intlify/message-resolver': 9.1.10 + '@intlify/shared': 9.1.10 + source-map: 0.6.1 + dev: false + + /@intlify/message-compiler@9.1.9: + resolution: {integrity: sha512-6YgCMF46Xd0IH2hMRLCssZI3gFG4aywidoWQ3QP4RGYQXQYYfFC54DxhSgfIPpVoPLQ+4AD29eoYmhiHZ+qLFQ==} + engines: {node: '>= 10'} + dependencies: + '@intlify/message-resolver': 9.1.9 + '@intlify/shared': 9.1.9 + source-map: 0.6.1 + + /@intlify/message-resolver@9.1.10: + resolution: {integrity: sha512-5YixMG/M05m0cn9+gOzd4EZQTFRUu8RGhzxJbR1DWN21x/Z3bJ8QpDYj6hC4FwBj5uKsRfKpJQ3Xqg98KWoA+w==} + engines: {node: '>= 10'} + dev: false + + /@intlify/message-resolver@9.1.9: + resolution: {integrity: sha512-Lx/DBpigeK0sz2BBbzv5mu9/dAlt98HxwbG7xLawC3O2xMF9MNWU5FtOziwYG6TDIjNq0O/3ZbOJAxwITIWXEA==} + engines: {node: '>= 10'} + + /@intlify/runtime@9.1.10: + resolution: {integrity: sha512-7QsuByNzpe3Gfmhwq6hzgXcMPpxz8Zxb/XFI6s9lQdPLPe5Lgw4U1ovRPZTOs6Y2hwitR3j/HD8BJNGWpJnOFA==} + engines: {node: '>= 10'} + dependencies: + '@intlify/message-compiler': 9.1.10 + '@intlify/message-resolver': 9.1.10 + '@intlify/shared': 9.1.10 + dev: false + + /@intlify/runtime@9.1.9: + resolution: {integrity: sha512-XgPw8+UlHCiie3fI41HPVa/VDJb3/aSH7bLhY1hJvlvNV713PFtb4p4Jo+rlE0gAoMsMCGcsiT982fImolSltg==} + engines: {node: '>= 10'} + dependencies: + '@intlify/message-compiler': 9.1.9 + '@intlify/message-resolver': 9.1.9 + '@intlify/shared': 9.1.9 + + /@intlify/shared@9.1.10: + resolution: {integrity: sha512-Om54xJeo1Vw+K1+wHYyXngE8cAbrxZHpWjYzMR9wCkqbhGtRV5VLhVc214Ze2YatPrWlS2WSMOWXR8JktX/IgA==} + engines: {node: '>= 10'} + dev: false + + /@intlify/shared@9.1.9: + resolution: {integrity: sha512-xKGM1d0EAxdDFCWedcYXOm6V5Pfw/TMudd6/qCdEb4tv0hk9EKeg7lwQF1azE0dP2phvx0yXxrt7UQK+IZjNdw==} + engines: {node: '>= 10'} + + /@intlify/vue-devtools@9.1.10: + resolution: {integrity: sha512-5l3qYARVbkWAkagLu1XbDUWRJSL8br1Dj60wgMaKB0+HswVsrR6LloYZTg7ozyvM621V6+zsmwzbQxbVQyrytQ==} + engines: {node: '>= 10'} + dependencies: + '@intlify/message-resolver': 9.1.10 + '@intlify/runtime': 9.1.10 + '@intlify/shared': 9.1.10 + dev: false + + /@intlify/vue-devtools@9.1.9: + resolution: {integrity: sha512-YPehH9uL4vZcGXky4Ev5qQIITnHKIvsD2GKGXgqf+05osMUI6WSEQHaN9USRa318Rs8RyyPCiDfmA0hRu3k7og==} + engines: {node: '>= 10'} + dependencies: + '@intlify/message-resolver': 9.1.9 + '@intlify/runtime': 9.1.9 + '@intlify/shared': 9.1.9 + + /@istanbuljs/schema@0.1.3: + resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} + engines: {node: '>=8'} + dev: true + + /@jridgewell/gen-mapping@0.1.1: + resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.14 + + /@jridgewell/gen-mapping@0.3.2: + resolution: {integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.14 + '@jridgewell/trace-mapping': 0.3.14 + + /@jridgewell/resolve-uri@3.0.8: + resolution: {integrity: sha512-YK5G9LaddzGbcucK4c8h5tWFmMPBvRZ/uyWmN1/SbBdIvqGUdWGkJ5BAaccgs6XbzVLsqbPJrBSFwKv3kT9i7w==} + engines: {node: '>=6.0.0'} + + /@jridgewell/set-array@1.1.2: + resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} + engines: {node: '>=6.0.0'} + + /@jridgewell/source-map@0.3.2: + resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==} + dependencies: + '@jridgewell/gen-mapping': 0.3.2 + '@jridgewell/trace-mapping': 0.3.14 + + /@jridgewell/sourcemap-codec@1.4.14: + resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} + + /@jridgewell/trace-mapping@0.3.14: + resolution: {integrity: sha512-bJWEfQ9lPTvm3SneWwRFVLzrh6nhjwqw7TUFFBEMzwvg7t7PCDenf2lDwqo4NQXzdpgBXyFgDWnQA+2vkruksQ==} + dependencies: + '@jridgewell/resolve-uri': 3.0.8 + '@jridgewell/sourcemap-codec': 1.4.14 + + /@jridgewell/trace-mapping@0.3.9: + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + dependencies: + '@jridgewell/resolve-uri': 3.0.8 + '@jridgewell/sourcemap-codec': 1.4.14 + + /@meoc/utils@0.1.9: + resolution: {integrity: sha512-CIZDdbMHHs8qMllpEE6WMyVTMrjFMQmYcrX25WxN8h+7QZkMcTK5omU6PKjb5d4rSdbrIPVTkvrl1KUByveITA==} + dependencies: + dayjs: 1.11.6 + dev: true + + /@nodelib/fs.scandir@2.1.5: + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + /@nodelib/fs.stat@2.0.5: + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + /@nodelib/fs.walk@1.2.8: + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.13.0 + + /@polka/url@1.0.0-next.21: + resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==} + dev: true + + /@rollup/pluginutils@4.2.1: + resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} + engines: {node: '>= 8.0.0'} + dependencies: + estree-walker: 2.0.2 + picomatch: 2.3.1 + + /@rollup/pluginutils@5.0.2: + resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + '@types/estree': 1.0.0 + estree-walker: 2.0.2 + picomatch: 2.3.1 + dev: true + + /@tsconfig/node10@1.0.9: + resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} + + /@tsconfig/node12@1.0.11: + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} + + /@tsconfig/node14@1.0.3: + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} + + /@tsconfig/node16@1.0.3: + resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==} + + /@types/chai-subset@1.3.3: + resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==} + dependencies: + '@types/chai': 4.3.1 + dev: true + + /@types/chai@4.3.1: + resolution: {integrity: sha512-/zPMqDkzSZ8t3VtxOa4KPq7uzzW978M9Tvh+j7GHKuo6k6GTLxPJ4J5gE5cjfJ26pnXst0N5Hax8Sr0T2Mi9zQ==} + dev: true + + /@types/eslint@8.4.5: + resolution: {integrity: sha512-dhsC09y1gpJWnK+Ff4SGvCuSnk9DaU0BJZSzOwa6GVSg65XtTugLBITDAAzRU5duGBoXBHpdR/9jHGxJjNflJQ==} + dependencies: + '@types/estree': 0.0.52 + '@types/json-schema': 7.0.11 + dev: true + + /@types/estree@0.0.52: + resolution: {integrity: sha512-BZWrtCU0bMVAIliIV+HJO1f1PR41M7NKjfxrFJwwhKI1KwhwOxYw1SXg9ao+CIMt774nFuGiG6eU+udtbEI9oQ==} + dev: true + + /@types/estree@1.0.0: + resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==} + dev: true + + /@types/istanbul-lib-coverage@2.0.4: + resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} + dev: true + + /@types/json-schema@7.0.11: + resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} + dev: true + + /@types/json5@0.0.29: + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + dev: true + + /@types/minimist@1.2.2: + resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} + dev: true + + /@types/node@17.0.45: + resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} + + /@types/normalize-package-data@2.4.1: + resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} + dev: true + + /@typescript-eslint/eslint-plugin@5.30.3(@typescript-eslint/parser@5.30.3)(eslint@8.19.0)(typescript@4.7.4): + resolution: {integrity: sha512-QEgE1uahnDbWEkZlidq7uKB630ny1NN8KbLPmznX+8hYsYpoV1/quG1Nzvs141FVuumuS7O0EpqYw3RB4AVzRg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + '@typescript-eslint/parser': ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/parser': 5.30.3(eslint@8.19.0)(typescript@4.7.4) + '@typescript-eslint/scope-manager': 5.30.3 + '@typescript-eslint/type-utils': 5.30.3(eslint@8.19.0)(typescript@4.7.4) + '@typescript-eslint/utils': 5.30.3(eslint@8.19.0)(typescript@4.7.4) + debug: 4.3.4 + eslint: 8.19.0 + functional-red-black-tree: 1.0.1 + ignore: 5.2.0 + regexpp: 3.2.0 + semver: 7.3.7 + tsutils: 3.21.0(typescript@4.7.4) + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser@5.30.3(eslint@8.19.0)(typescript@4.7.4): + resolution: {integrity: sha512-ddwGEPC3E49DduAUC8UThQafHRE5uc1NE8jdOgl+w8/NrYF50MJQNeD3u4JZrqAXdY9rJz0CdQ9HpNME20CzkA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 5.30.3 + '@typescript-eslint/types': 5.30.3 + '@typescript-eslint/typescript-estree': 5.30.3(typescript@4.7.4) + debug: 4.3.4 + eslint: 8.19.0 + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/scope-manager@5.30.3: + resolution: {integrity: sha512-yVJIIUXeo/vv6Alj6lKBvsqnRs5hcxUpN3Dg3aD9Zv6r7p6Nn106jJcr5rnpRHAReEb/aMI2RWrt3JmL17eCVA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.30.3 + '@typescript-eslint/visitor-keys': 5.30.3 + dev: true + + /@typescript-eslint/type-utils@5.30.3(eslint@8.19.0)(typescript@4.7.4): + resolution: {integrity: sha512-IIzakE7OXOqdwPaXhRiPnaZ8OuJJYBLufOffd9fqzkI4IMFIYq8KC7bghdnF7QUJTirURRErQFrJ/w5UpwIqaw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '*' + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/utils': 5.30.3(eslint@8.19.0)(typescript@4.7.4) + debug: 4.3.4 + eslint: 8.19.0 + tsutils: 3.21.0(typescript@4.7.4) + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/types@5.30.3: + resolution: {integrity: sha512-vshU3pjSTgBPNgfd55JLYngHkXuwQP68fxYFUAg1Uq+JrR3xG/XjvL9Dmv28CpOERtqwkaR4QQ3mD0NLZcE2Xw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /@typescript-eslint/typescript-estree@5.30.3(typescript@4.7.4): + resolution: {integrity: sha512-jqVh5N9AJx6+7yRgoA+ZelAFrHezgI9pzI9giv7s84DDOmtpFwTgURcpICDHyz9x6vAeOu91iACZ4dBTVfzIyA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 5.30.3 + '@typescript-eslint/visitor-keys': 5.30.3 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.3.7 + tsutils: 3.21.0(typescript@4.7.4) + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/utils@5.30.3(eslint@8.19.0)(typescript@4.7.4): + resolution: {integrity: sha512-OEaBXGxxdIy35H+jyXfYAMQ66KMJczK9hEhL3gR6IRbWe5PyK+bPDC9zbQNVII6rNFTfF/Mse0z21NlEU+vOMw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@types/json-schema': 7.0.11 + '@typescript-eslint/scope-manager': 5.30.3 + '@typescript-eslint/types': 5.30.3 + '@typescript-eslint/typescript-estree': 5.30.3(typescript@4.7.4) + eslint: 8.19.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0(eslint@8.19.0) + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/visitor-keys@5.30.3: + resolution: {integrity: sha512-ep2xtHOhnSRt6fDP9DSSxrA/FqZhdMF7/Y9fYsxrKss2uWJMbzJyBJ/We1fKc786BJ10pHwrzUlhvpz8i7XzBg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.30.3 + eslint-visitor-keys: 3.3.0 + dev: true + + /@unocss/astro@0.46.4(vite@3.2.3): + resolution: {integrity: sha512-Cyw17FcT6H5N2GvE7kWHj8xSP102T4V6O9dKlFMgQhhWXBIHA0toE2IHM1wV1LWBO93n6b5+FlDQxiFvq+CkUA==} + dependencies: + '@unocss/core': 0.46.4 + '@unocss/reset': 0.46.4 + '@unocss/vite': 0.46.4(vite@3.2.3) + transitivePeerDependencies: + - rollup + - vite + dev: true + + /@unocss/cli@0.46.4: + resolution: {integrity: sha512-egDUf6zqVWJFW1/2Y6NxJRwQ2Jys+DCbQTqCLEwZ4DN3SI7A4rmM/07K4m3JMoLJsn9srH2dnykpvxt2ZN3Uow==} + engines: {node: '>=14'} + hasBin: true + dependencies: + '@ampproject/remapping': 2.2.0 + '@rollup/pluginutils': 5.0.2 + '@unocss/config': 0.46.4 + '@unocss/core': 0.46.4 + '@unocss/preset-uno': 0.46.4 + cac: 6.7.14 + chokidar: 3.5.3 + colorette: 2.0.19 + consola: 2.15.3 + fast-glob: 3.2.12 + magic-string: 0.26.7 + pathe: 0.3.9 + perfect-debounce: 0.1.3 + transitivePeerDependencies: + - rollup + dev: true + + /@unocss/config@0.46.4: + resolution: {integrity: sha512-EN/4wn+RZpbWAei40osHTMfAaLGh1TmoyH2pypSdKLV17PFWkXu4hmcl4lHUl6+gHigL6TGQjlww7N9QOspt6g==} + engines: {node: '>=14'} + dependencies: + '@unocss/core': 0.46.4 + unconfig: 0.3.7 + dev: true + + /@unocss/core@0.46.4: + resolution: {integrity: sha512-pLWJ/QgRW1DT1m0Y/7IyX7tURi/1fJ0T17jygH+iMGfwOJVFigkqxstTbWknuVFqc1rCH+pO20bI5k0r3xvIPA==} + dev: true + + /@unocss/inspector@0.46.4: + resolution: {integrity: sha512-Ww6MMHtYPlGN72HnDrLFJvn88nM+lNy913TDfWu9lQZ9fZyA8KbvQ2IhE9klbA/LWW9kn+7i67tJNV3E5yVsmQ==} + dependencies: + gzip-size: 6.0.0 + sirv: 2.0.2 + dev: true + + /@unocss/preset-attributify@0.46.4: + resolution: {integrity: sha512-B3N5J0PRjNaMr2ma0eGqinEwbxYoosAtN4a/5vOKWsbkBoVAKZl+6lyvbjDNtPnwKxjEuHL3MbMUvzG46kLGGA==} + dependencies: + '@unocss/core': 0.46.4 + dev: true + + /@unocss/preset-icons@0.46.4: + resolution: {integrity: sha512-5Ojnv7VYwGk1sjiEbjreifHNuAObQxvKAT8MjR9keTC5IkDWgEu+h7FLFtPRLyG1Yb89hmbs2MFAKnNPCUdPeQ==} + dependencies: + '@iconify/utils': 2.0.1 + '@unocss/core': 0.46.4 + ohmyfetch: 0.4.21 + transitivePeerDependencies: + - supports-color + dev: true + + /@unocss/preset-mini@0.46.4: + resolution: {integrity: sha512-zDuFe+F83k6qOVXcncAZdjRaWIGrME8pt7k2PeCFmnjMyEpHHAISRItfa4sIu4dVhhYRNIuymldLdss5jmCCoQ==} + dependencies: + '@unocss/core': 0.46.4 + dev: true + + /@unocss/preset-tagify@0.46.4: + resolution: {integrity: sha512-HWAk39pKWcZ3GJcEEI1NWdcY3RqsJJPuC7FIn70VHTbn7KQh997+4TACuA/QGc4OItkiCL6ZLj6xjJCPtQakYg==} + dependencies: + '@unocss/core': 0.46.4 + dev: true + + /@unocss/preset-typography@0.46.4: + resolution: {integrity: sha512-6+aU9kuXO7FLOPt73SjGvgi/hrx4Z1gGD3iwSn+4kPpqSA+XChO/lz93OIwUCQMAuGKlJzXIqlpqZoMVTtPpig==} + dependencies: + '@unocss/core': 0.46.4 + dev: true + + /@unocss/preset-uno@0.46.4: + resolution: {integrity: sha512-6k1Icc6DUPgQNQut9ZGG+BOVvZ60rhApLEY1CiJaxRDNnE1fx5mbWtuQT/Uwl5osMCRgfbuFkCVdo1Qt2QwvVw==} + dependencies: + '@unocss/core': 0.46.4 + '@unocss/preset-mini': 0.46.4 + '@unocss/preset-wind': 0.46.4 + dev: true + + /@unocss/preset-web-fonts@0.46.4: + resolution: {integrity: sha512-W3/2jlD24EU8JSz+GGpnD+21RxxeYhzTr2G32AmOXYCpR2+hBCOCKnG6YBJmgp3xjNwNibXew6ZCBU0JGgPrNg==} + dependencies: + '@unocss/core': 0.46.4 + ohmyfetch: 0.4.21 + dev: true + + /@unocss/preset-wind@0.46.4: + resolution: {integrity: sha512-J3+pT5oaVu0HKRdHgeTqyazQs/lpB5lVUpDjw5nRKmSGcWCRe2BG6IptM6IFGBweMWK0SWwDxgefqsb4qIyrlA==} + dependencies: + '@unocss/core': 0.46.4 + '@unocss/preset-mini': 0.46.4 + dev: true + + /@unocss/reset@0.46.4: + resolution: {integrity: sha512-Bd5LlvJj2A0wdJIAjzXF2+SL5gVJlAItk0ZO88OR2q2UZnqAYDrjWGfZGyNQKttKPWNuTH87IC6/8FFjoIAtxA==} + dev: true + + /@unocss/scope@0.46.4: + resolution: {integrity: sha512-wNgFxvUzoqGyzW7dJCPLdIgbtcLulyIYBbVOSXEJ3fy+j8rjcF23HAZF/mh3hIRYbci8gm8XmG4+BKPlG3D7Aw==} + dev: true + + /@unocss/transformer-attributify-jsx@0.46.4: + resolution: {integrity: sha512-dEUEx/GJu8i3qZi9ci9E+5OXARVbhzmu+xrZ6yIbVRzOuxr2yp3zbMKPrP3cek+LRGgCQdk6ZkE/FVET4X4EGg==} + dependencies: + '@unocss/core': 0.46.4 + dev: true + + /@unocss/transformer-compile-class@0.46.4: + resolution: {integrity: sha512-T0m8vsymnUClhXMBulSIs8iIuNhvkys28UpIR6mnobI/cZV/+FKo+2w8r2vKyNkSlKd+yXZm+/RzF6q6S7Z5AQ==} + dependencies: + '@unocss/core': 0.46.4 + dev: true + + /@unocss/transformer-directives@0.46.4: + resolution: {integrity: sha512-ePw4E6beBVtogf7KFysDFvIqd1EAsb1nHs5b5W5JlKTcHySSZIY0neDhN6sD32PRfmQgkgTbR2Cu4XM6u/zBjA==} + dependencies: + '@unocss/core': 0.46.4 + css-tree: 2.2.1 + dev: true + + /@unocss/transformer-variant-group@0.46.4: + resolution: {integrity: sha512-5kzd4cEB/If+C0FsEj5wa8nb/0/SAvbEypGUluttaWcEaOH+h/CTMK5bPcFZScxrjNmBxe26f7CyNC0fe2G4yw==} + dependencies: + '@unocss/core': 0.46.4 + dev: true + + /@unocss/vite@0.46.4(vite@3.2.3): + resolution: {integrity: sha512-qWVuogukCkRCNVT7Kuqt4V7lqLMUu/u/IPfF9hA9C5kz/2ZoE3neHzwBrPq34xBBKCcD+eo96skarBTtHpVn0w==} + peerDependencies: + vite: ^2.9.0 || ^3.0.0-0 + dependencies: + '@ampproject/remapping': 2.2.0 + '@rollup/pluginutils': 5.0.2 + '@unocss/config': 0.46.4 + '@unocss/core': 0.46.4 + '@unocss/inspector': 0.46.4 + '@unocss/scope': 0.46.4 + '@unocss/transformer-directives': 0.46.4 + magic-string: 0.26.7 + vite: 3.2.3(@types/node@17.0.45)(less@4.1.3)(sass@1.53.0)(terser@5.15.1) + transitivePeerDependencies: + - rollup + dev: true + + /@vitejs/plugin-legacy@2.3.1(terser@5.15.1)(vite@3.2.3): + resolution: {integrity: sha512-J5KaGBlSt2tEYPVjM/C8dA6DkRzkFkbPe+Xb4IX5G+XOV5OGbVAfkMjKywdrkO3gGynO8S98i71Lmsff4cWkCQ==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + terser: ^5.4.0 + vite: ^3.0.0 + dependencies: + '@babel/standalone': 7.20.4 + core-js: 3.26.0 + magic-string: 0.26.7 + regenerator-runtime: 0.13.10 + systemjs: 6.13.0 + terser: 5.15.1 + vite: 3.2.3(@types/node@17.0.45)(less@4.1.3)(sass@1.53.0)(terser@5.15.1) + dev: true + + /@vitejs/plugin-vue-jsx@2.1.1(vite@3.2.3)(vue@3.2.45): + resolution: {integrity: sha512-JgDhxstQlwnHBvZ1BSnU5mbmyQ14/t5JhREc6YH5kWyu2QdAAOsLF6xgHoIWarj8tddaiwFrNzLbWJPudpXKYA==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + vite: ^3.0.0 + vue: ^3.0.0 + dependencies: + '@babel/core': 7.20.2 + '@babel/plugin-transform-typescript': 7.20.2(@babel/core@7.20.2) + '@vue/babel-plugin-jsx': 1.1.1(@babel/core@7.20.2) + vite: 3.2.3(@types/node@17.0.45)(less@4.1.3)(sass@1.53.0)(terser@5.15.1) + vue: 3.2.45 + transitivePeerDependencies: + - supports-color + dev: true + + /@vitejs/plugin-vue@2.3.3(vite@3.2.3)(vue@3.2.45): + resolution: {integrity: sha512-SmQLDyhz+6lGJhPELsBdzXGc+AcaT8stgkbiTFGpXPe8Tl1tJaBw1A6pxDqDuRsVkD8uscrkx3hA7QDOoKYtyw==} + engines: {node: '>=12.0.0'} + peerDependencies: + vite: ^2.5.10 + vue: ^3.2.25 + dependencies: + vite: 3.2.3(@types/node@17.0.45)(less@4.1.3)(sass@1.53.0)(terser@5.15.1) + vue: 3.2.45 + dev: true + + /@vitejs/plugin-vue@3.2.0(vite@3.2.3)(vue@3.2.45): + resolution: {integrity: sha512-E0tnaL4fr+qkdCNxJ+Xd0yM31UwMkQje76fsDVBBUCoGOUPexu2VDUYHL8P4CwV+zMvWw6nlRw19OnRKmYAJpw==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + vite: ^3.0.0 + vue: ^3.2.25 + dependencies: + vite: 3.2.3(@types/node@17.0.45)(less@4.1.3)(sass@1.53.0)(terser@5.15.1) + vue: 3.2.45 + + /@vitest/ui@0.10.5: + resolution: {integrity: sha512-DEj6GbXf98VJfVDszyczYRVKDJEjmAbMKGzt5cOM04dxrKfqb8ZM19WJJJCFyBOXmq1wrRKEXZ5LA293Mc57Nw==} + dependencies: + sirv: 2.0.2 + dev: true + + /@vue/babel-helper-vue-transform-on@1.0.2: + resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==} + dev: true + + /@vue/babel-plugin-jsx@1.1.1(@babel/core@7.20.2): + resolution: {integrity: sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==} + dependencies: + '@babel/helper-module-imports': 7.18.6 + '@babel/plugin-syntax-jsx': 7.18.6(@babel/core@7.20.2) + '@babel/template': 7.18.10 + '@babel/traverse': 7.20.1 + '@babel/types': 7.20.2 + '@vue/babel-helper-vue-transform-on': 1.0.2 + camelcase: 6.3.0 + html-tags: 3.2.0 + svg-tags: 1.0.0 + transitivePeerDependencies: + - '@babel/core' + - supports-color + dev: true + + /@vue/compiler-core@3.2.41: + resolution: {integrity: sha512-oA4mH6SA78DT+96/nsi4p9DX97PHcNROxs51lYk7gb9Z4BPKQ3Mh+BLn6CQZBw857Iuhu28BfMSRHAlPvD4vlw==} + dependencies: + '@babel/parser': 7.20.3 + '@vue/shared': 3.2.41 + estree-walker: 2.0.2 + source-map: 0.6.1 + + /@vue/compiler-core@3.2.45: + resolution: {integrity: sha512-rcMj7H+PYe5wBV3iYeUgbCglC+pbpN8hBLTJvRiK2eKQiWqu+fG9F+8sW99JdL4LQi7Re178UOxn09puSXvn4A==} + dependencies: + '@babel/parser': 7.20.3 + '@vue/shared': 3.2.45 + estree-walker: 2.0.2 + source-map: 0.6.1 + + /@vue/compiler-dom@3.2.41: + resolution: {integrity: sha512-xe5TbbIsonjENxJsYRbDJvthzqxLNk+tb3d/c47zgREDa/PCp6/Y4gC/skM4H6PIuX5DAxm7fFJdbjjUH2QTMw==} + dependencies: + '@vue/compiler-core': 3.2.41 + '@vue/shared': 3.2.41 + + /@vue/compiler-dom@3.2.45: + resolution: {integrity: sha512-tyYeUEuKqqZO137WrZkpwfPCdiiIeXYCcJ8L4gWz9vqaxzIQRccTSwSWZ/Axx5YR2z+LvpUbmPNXxuBU45lyRw==} + dependencies: + '@vue/compiler-core': 3.2.45 + '@vue/shared': 3.2.45 + + /@vue/compiler-sfc@3.2.41: + resolution: {integrity: sha512-+1P2m5kxOeaxVmJNXnBskAn3BenbTmbxBxWOtBq3mQTCokIreuMULFantBUclP0+KnzNCMOvcnKinqQZmiOF8w==} + dependencies: + '@babel/parser': 7.20.3 + '@vue/compiler-core': 3.2.41 + '@vue/compiler-dom': 3.2.41 + '@vue/compiler-ssr': 3.2.41 + '@vue/reactivity-transform': 3.2.41 + '@vue/shared': 3.2.41 + estree-walker: 2.0.2 + magic-string: 0.25.9 + postcss: 8.4.19 + source-map: 0.6.1 + + /@vue/compiler-sfc@3.2.45: + resolution: {integrity: sha512-1jXDuWah1ggsnSAOGsec8cFjT/K6TMZ0sPL3o3d84Ft2AYZi2jWJgRMjw4iaK0rBfA89L5gw427H4n1RZQBu6Q==} + dependencies: + '@babel/parser': 7.20.3 + '@vue/compiler-core': 3.2.45 + '@vue/compiler-dom': 3.2.45 + '@vue/compiler-ssr': 3.2.45 + '@vue/reactivity-transform': 3.2.45 + '@vue/shared': 3.2.45 + estree-walker: 2.0.2 + magic-string: 0.25.9 + postcss: 8.4.19 + source-map: 0.6.1 + + /@vue/compiler-ssr@3.2.41: + resolution: {integrity: sha512-Y5wPiNIiaMz/sps8+DmhaKfDm1xgj6GrH99z4gq2LQenfVQcYXmHIOBcs5qPwl7jaW3SUQWjkAPKMfQemEQZwQ==} + dependencies: + '@vue/compiler-dom': 3.2.41 + '@vue/shared': 3.2.41 + + /@vue/compiler-ssr@3.2.45: + resolution: {integrity: sha512-6BRaggEGqhWht3lt24CrIbQSRD5O07MTmd+LjAn5fJj568+R9eUD2F7wMQJjX859seSlrYog7sUtrZSd7feqrQ==} + dependencies: + '@vue/compiler-dom': 3.2.45 + '@vue/shared': 3.2.45 + + /@vue/devtools-api@6.2.0: + resolution: {integrity: sha512-pF1G4wky+hkifDiZSWn8xfuLOJI1ZXtuambpBEYaf7Xaf6zC/pM29rvAGpd3qaGXnr4BAXU1Pxz/VfvBGwexGA==} + dev: false + + /@vue/devtools-api@6.4.5: + resolution: {integrity: sha512-JD5fcdIuFxU4fQyXUu3w2KpAJHzTVdN+p4iOX2lMWSHMOoQdMAcpFLZzm9Z/2nmsoZ1a96QEhZ26e50xLBsgOQ==} + dev: false + + /@vue/devtools-api@6.6.1: + resolution: {integrity: sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA==} + dev: false + + /@vue/reactivity-transform@3.2.41: + resolution: {integrity: sha512-mK5+BNMsL4hHi+IR3Ft/ho6Za+L3FA5j8WvreJ7XzHrqkPq8jtF/SMo7tuc9gHjLDwKZX1nP1JQOKo9IEAn54A==} + dependencies: + '@babel/parser': 7.20.3 + '@vue/compiler-core': 3.2.41 + '@vue/shared': 3.2.41 + estree-walker: 2.0.2 + magic-string: 0.25.9 + + /@vue/reactivity-transform@3.2.45: + resolution: {integrity: sha512-BHVmzYAvM7vcU5WmuYqXpwaBHjsS8T63jlKGWVtHxAHIoMIlmaMyurUSEs1Zcg46M4AYT5MtB1U274/2aNzjJQ==} + dependencies: + '@babel/parser': 7.20.3 + '@vue/compiler-core': 3.2.45 + '@vue/shared': 3.2.45 + estree-walker: 2.0.2 + magic-string: 0.25.9 + + /@vue/reactivity@3.2.45: + resolution: {integrity: sha512-PRvhCcQcyEVohW0P8iQ7HDcIOXRjZfAsOds3N99X/Dzewy8TVhTCT4uXpAHfoKjVTJRA0O0K+6QNkDIZAxNi3A==} + dependencies: + '@vue/shared': 3.2.45 + + /@vue/runtime-core@3.2.45: + resolution: {integrity: sha512-gzJiTA3f74cgARptqzYswmoQx0fIA+gGYBfokYVhF8YSXjWTUA2SngRzZRku2HbGbjzB6LBYSbKGIaK8IW+s0A==} + dependencies: + '@vue/reactivity': 3.2.45 + '@vue/shared': 3.2.45 + + /@vue/runtime-dom@3.2.45: + resolution: {integrity: sha512-cy88YpfP5Ue2bDBbj75Cb4bIEZUMM/mAkDMfqDTpUYVgTf/kuQ2VQ8LebuZ8k6EudgH8pYhsGWHlY0lcxlvTwA==} + dependencies: + '@vue/runtime-core': 3.2.45 + '@vue/shared': 3.2.45 + csstype: 2.6.20 + + /@vue/server-renderer@3.2.41(vue@3.2.45): + resolution: {integrity: sha512-7YHLkfJdTlsZTV0ae5sPwl9Gn/EGr2hrlbcS/8naXm2CDpnKUwC68i1wGlrYAfIgYWL7vUZwk2GkYLQH5CvFig==} + peerDependencies: + vue: 3.2.41 + dependencies: + '@vue/compiler-ssr': 3.2.41 + '@vue/shared': 3.2.41 + vue: 3.2.45 + + /@vue/server-renderer@3.2.45(vue@3.2.45): + resolution: {integrity: sha512-ebiMq7q24WBU1D6uhPK//2OTR1iRIyxjF5iVq/1a5I1SDMDyDu4Ts6fJaMnjrvD3MqnaiFkKQj+LKAgz5WIK3g==} + peerDependencies: + vue: 3.2.45 + dependencies: + '@vue/compiler-ssr': 3.2.45 + '@vue/shared': 3.2.45 + vue: 3.2.45 + + /@vue/shared@3.2.41: + resolution: {integrity: sha512-W9mfWLHmJhkfAmV+7gDjcHeAWALQtgGT3JErxULl0oz6R6+3ug91I7IErs93eCFhPCZPHBs4QJS7YWEV7A3sxw==} + + /@vue/shared@3.2.45: + resolution: {integrity: sha512-Ewzq5Yhimg7pSztDV+RH1UDKBzmtqieXQlpTVm2AwraoRL/Rks96mvd8Vgi7Lj+h+TH8dv7mXD3FRZR3TUvbSg==} + + /JSONStream@1.3.5: + resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} + hasBin: true + dependencies: + jsonparse: 1.3.1 + through: 2.3.8 + dev: true + + /accepts@1.3.8: + resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} + engines: {node: '>= 0.6'} + dependencies: + mime-types: 2.1.35 + negotiator: 0.6.3 + dev: true + + /acorn-jsx@5.3.2(acorn@8.7.1): + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 8.7.1 + dev: true + + /acorn-walk@8.2.0: + resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} + engines: {node: '>=0.4.0'} + + /acorn@8.7.1: + resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + + /acorn@8.8.1: + resolution: {integrity: sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==} + engines: {node: '>=0.4.0'} + hasBin: true + + /address@1.2.0: + resolution: {integrity: sha512-tNEZYz5G/zYunxFm7sfhAxkXEuLj3K6BKwv6ZURlsF6yiUQ65z0Q2wZW9L5cPUl9ocofGvXOdFYbFHp0+6MOig==} + engines: {node: '>= 10.0.0'} + dev: true + + /agent-base@7.1.0: + resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==} + engines: {node: '>= 14'} + dependencies: + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + + /ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + dev: true + + /ajv@8.12.0: + resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} + dependencies: + fast-deep-equal: 3.1.3 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + uri-js: 4.4.1 + dev: true + + /ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + dev: true + + /ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + dependencies: + color-convert: 1.9.3 + + /ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + dependencies: + color-convert: 2.0.1 + dev: true + + /anymatch@3.1.2: + resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==} + engines: {node: '>= 8'} + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + + /arg@4.1.3: + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + + /argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + dev: true + + /array-flatten@1.1.1: + resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} + dev: true + + /array-ify@1.0.0: + resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} + dev: true + + /array-includes@3.1.5: + resolution: {integrity: sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + get-intrinsic: 1.1.2 + is-string: 1.0.7 + dev: true + + /array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + dev: true + + /array.prototype.flat@1.3.0: + resolution: {integrity: sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + es-shim-unscopables: 1.0.0 + dev: true + + /arrify@1.0.1: + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} + engines: {node: '>=0.10.0'} + dev: true + + /assertion-error@1.1.0: + resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} + dev: true + + /asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + + /autoprefixer@10.4.13(postcss@8.4.19): + resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==} + engines: {node: ^10 || ^12 || >=14} + hasBin: true + peerDependencies: + postcss: ^8.1.0 + dependencies: + browserslist: 4.21.4 + caniuse-lite: 1.0.30001431 + fraction.js: 4.2.0 + normalize-range: 0.1.2 + picocolors: 1.0.0 + postcss: 8.4.19 + postcss-value-parser: 4.2.0 + + /axios@0.27.2: + resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==} + dependencies: + follow-redirects: 1.15.1 + form-data: 4.0.0 + transitivePeerDependencies: + - debug + dev: false + + /balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + dev: true + + /base64url@3.0.1: + resolution: {integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==} + engines: {node: '>=6.0.0'} + + /binary-extensions@2.2.0: + resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} + engines: {node: '>=8'} + + /body-parser@1.20.0: + resolution: {integrity: sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + dependencies: + bytes: 3.1.2 + content-type: 1.0.4 + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + on-finished: 2.4.1 + qs: 6.10.3 + raw-body: 2.5.1 + type-is: 1.6.18 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + dev: true + + /brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + dev: true + + /braces@3.0.2: + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} + engines: {node: '>=8'} + dependencies: + fill-range: 7.0.1 + + /browserslist@4.21.4: + resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: 1.0.30001431 + electron-to-chromium: 1.4.284 + node-releases: 2.0.6 + update-browserslist-db: 1.0.10(browserslist@4.21.4) + + /buffer-from@1.1.2: + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + + /busboy@1.6.0: + resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} + engines: {node: '>=10.16.0'} + dependencies: + streamsearch: 1.1.0 + dev: true + + /bytes@3.1.2: + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} + engines: {node: '>= 0.8'} + dev: true + + /c8@7.11.3: + resolution: {integrity: sha512-6YBmsaNmqRm9OS3ZbIiL2EZgi1+Xc4O24jL3vMYGE6idixYuGdy76rIfIdltSKDj9DpLNrcXSonUTR1miBD0wA==} + engines: {node: '>=10.12.0'} + hasBin: true + dependencies: + '@bcoe/v8-coverage': 0.2.3 + '@istanbuljs/schema': 0.1.3 + find-up: 5.0.0 + foreground-child: 2.0.0 + istanbul-lib-coverage: 3.2.0 + istanbul-lib-report: 3.0.0 + istanbul-reports: 3.1.4 + rimraf: 3.0.2 + test-exclude: 6.0.0 + v8-to-istanbul: 9.0.1 + yargs: 16.2.0 + yargs-parser: 20.2.9 + dev: true + + /cac@6.7.14: + resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} + engines: {node: '>=8'} + dev: true + + /cac@6.7.9: + resolution: {integrity: sha512-XN5qEpfNQCJ8jRaZgitSkkukjMRCGio+X3Ks5KUbGGlPbV+pSem1l9VuzooCBXOiMFshUZgyYqg6rgN8rjkb/w==} + engines: {node: '>=8'} + dev: true + + /call-bind@1.0.2: + resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} + dependencies: + function-bind: 1.1.1 + get-intrinsic: 1.1.2 + dev: true + + /callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + dev: true + + /camelcase-keys@6.2.2: + resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} + engines: {node: '>=8'} + dependencies: + camelcase: 5.3.1 + map-obj: 4.3.0 + quick-lru: 4.0.1 + dev: true + + /camelcase@5.3.1: + resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} + engines: {node: '>=6'} + dev: true + + /camelcase@6.3.0: + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} + engines: {node: '>=10'} + dev: true + + /caniuse-lite@1.0.30001431: + resolution: {integrity: sha512-zBUoFU0ZcxpvSt9IU66dXVT/3ctO1cy4y9cscs1szkPlcWb6pasYM144GqrUygUbT+k7cmUCW61cvskjcv0enQ==} + + /chai@4.3.6: + resolution: {integrity: sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q==} + engines: {node: '>=4'} + dependencies: + assertion-error: 1.1.0 + check-error: 1.0.2 + deep-eql: 3.0.1 + get-func-name: 2.0.0 + loupe: 2.3.4 + pathval: 1.1.1 + type-detect: 4.0.8 + dev: true + + /chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + + /chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + dev: true + + /check-error@1.0.2: + resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==} + dev: true + + /chokidar@3.5.3: + resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} + engines: {node: '>= 8.10.0'} + dependencies: + anymatch: 3.1.2 + braces: 3.0.2 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.2 + + /cliui@7.0.4: + resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + dev: true + + /cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + dev: true + + /color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + dependencies: + color-name: 1.1.3 + + /color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + dependencies: + color-name: 1.1.4 + dev: true + + /color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + + /color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + dev: true + + /colorette@2.0.19: + resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==} + dev: true + + /combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + dependencies: + delayed-stream: 1.0.0 + + /commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + + /compare-func@2.0.0: + resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} + dependencies: + array-ify: 1.0.0 + dot-prop: 5.3.0 + dev: true + + /compare-versions@3.6.0: + resolution: {integrity: sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==} + + /concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + dev: true + + /confusing-browser-globals@1.0.11: + resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} + dev: true + + /consola@2.15.3: + resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==} + dev: true + + /content-disposition@0.5.4: + resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} + engines: {node: '>= 0.6'} + dependencies: + safe-buffer: 5.2.1 + dev: true + + /content-type@1.0.4: + resolution: {integrity: sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==} + engines: {node: '>= 0.6'} + dev: true + + /conventional-changelog-angular@5.0.13: + resolution: {integrity: sha512-i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==} + engines: {node: '>=10'} + dependencies: + compare-func: 2.0.0 + q: 1.5.1 + dev: true + + /conventional-changelog-conventionalcommits@5.0.0: + resolution: {integrity: sha512-lCDbA+ZqVFQGUj7h9QBKoIpLhl8iihkO0nCTyRNzuXtcd7ubODpYB04IFy31JloiJgG0Uovu8ot8oxRzn7Nwtw==} + engines: {node: '>=10'} + dependencies: + compare-func: 2.0.0 + lodash: 4.17.21 + q: 1.5.1 + dev: true + + /conventional-commits-parser@3.2.4: + resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} + engines: {node: '>=10'} + hasBin: true + dependencies: + JSONStream: 1.3.5 + is-text-path: 1.0.1 + lodash: 4.17.21 + meow: 8.1.2 + split2: 3.2.2 + through2: 4.0.2 + dev: true + + /convert-source-map@1.8.0: + resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==} + dependencies: + safe-buffer: 5.1.2 + + /cookie-signature@1.0.6: + resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} + dev: true + + /cookie@0.5.0: + resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} + engines: {node: '>= 0.6'} + dev: true + + /copy-anything@2.0.6: + resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} + dependencies: + is-what: 3.14.1 + + /core-js@3.26.0: + resolution: {integrity: sha512-+DkDrhoR4Y0PxDz6rurahuB+I45OsEUv8E1maPTB6OuHRohMMcznBq9TMpdpDMm/hUPob/mJJS3PqgbHpMTQgw==} + requiresBuild: true + dev: true + + /cosmiconfig-typescript-loader@4.3.0(@types/node@17.0.45)(cosmiconfig@8.0.0)(ts-node@10.9.1)(typescript@4.7.4): + resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==} + engines: {node: '>=12', npm: '>=6'} + peerDependencies: + '@types/node': '*' + cosmiconfig: '>=7' + ts-node: '>=10' + typescript: '>=3' + dependencies: + '@types/node': 17.0.45 + cosmiconfig: 8.0.0 + ts-node: 10.9.1(@types/node@17.0.45)(typescript@4.7.4) + typescript: 4.7.4 + dev: true + + /cosmiconfig@8.0.0: + resolution: {integrity: sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==} + engines: {node: '>=14'} + dependencies: + import-fresh: 3.3.0 + js-yaml: 4.1.0 + parse-json: 5.2.0 + path-type: 4.0.0 + dev: true + + /create-require@1.1.1: + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + + /cross-env@7.0.3: + resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==} + engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'} + hasBin: true + dependencies: + cross-spawn: 7.0.3 + dev: true + + /cross-spawn@7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + dev: true + + /css-font-size-keywords@1.0.0: + resolution: {integrity: sha512-Q+svMDbMlelgCfH/RVDKtTDaf5021O486ZThQPIpahnIjUkMUslC+WuOQSWTgGSrNCH08Y7tYNEmmy0hkfMI8Q==} + dev: false + + /css-font-stretch-keywords@1.0.1: + resolution: {integrity: sha512-KmugPO2BNqoyp9zmBIUGwt58UQSfyk1X5DbOlkb2pckDXFSAfjsD5wenb88fNrD6fvS+vu90a/tsPpb9vb0SLg==} + dev: false + + /css-font-style-keywords@1.0.1: + resolution: {integrity: sha512-0Fn0aTpcDktnR1RzaBYorIxQily85M2KXRpzmxQPgh8pxUN9Fcn00I8u9I3grNr1QXVgCl9T5Imx0ZwKU973Vg==} + dev: false + + /css-font-weight-keywords@1.0.0: + resolution: {integrity: sha512-5So8/NH+oDD+EzsnF4iaG4ZFHQ3vaViePkL1ZbZ5iC/KrsCY+WHq/lvOgrtmuOQ9pBBZ1ADGpaf+A4lj1Z9eYA==} + dev: false + + /css-list-helpers@2.0.0: + resolution: {integrity: sha512-9Bj8tZ0jWbAM3u/U6m/boAzAwLPwtjzFvwivr2piSvyVa3K3rChJzQy4RIHkNkKiZCHrEMWDJWtTR8UyVhdDnQ==} + dev: false + + /css-system-font-keywords@1.0.0: + resolution: {integrity: sha512-1umTtVd/fXS25ftfjB71eASCrYhilmEsvDEI6wG/QplnmlfmVM5HkZ/ZX46DT5K3eblFPgLUHt5BRCb0YXkSFA==} + dev: false + + /css-tree@2.2.1: + resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + dependencies: + mdn-data: 2.0.28 + source-map-js: 1.0.2 + dev: true + + /cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + + /cssstyle@4.0.1: + resolution: {integrity: sha512-8ZYiJ3A/3OkDd093CBT/0UKDWry7ak4BdPTFP2+QEP7cmhouyq/Up709ASSj2cK02BbZiMgk7kYjZNS4QP5qrQ==} + engines: {node: '>=18'} + dependencies: + rrweb-cssom: 0.6.0 + dev: true + + /csstype@2.6.20: + resolution: {integrity: sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA==} + + /cz-git@1.4.1: + resolution: {integrity: sha512-EOtuitcnfxde8t3NNTKh2YxEJhLXGiVlKSVaZipK3+DVo135rEUifAfqxkslM66Nf6ZO7a+3JR+XAOLhMXUAjQ==} + dev: false + + /czg@1.4.1: + resolution: {integrity: sha512-ZjK46yrHgRbypfKAzv8D/UIWiz3BgGfO0cSPAGpk4VO9FmJ3tqaLqelrNyiVjHqOyg1dOi8hoxBHdrdvwa1eaQ==} + hasBin: true + dev: true + + /dargs@7.0.0: + resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} + engines: {node: '>=8'} + dev: true + + /data-urls@5.0.0: + resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==} + engines: {node: '>=18'} + dependencies: + whatwg-mimetype: 4.0.0 + whatwg-url: 14.0.0 + dev: true + + /dayjs@1.11.6: + resolution: {integrity: sha512-zZbY5giJAinCG+7AGaw0wIhNZ6J8AhWuSXKvuc1KAyMiRsvGQWqh4L+MomvhdAYjN+lqvVCMq1I41e3YHvXkyQ==} + dev: true + + /debug@2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.0.0 + dev: true + + /debug@3.2.7: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.3 + + /debug@4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + + /decamelize-keys@1.1.1: + resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} + engines: {node: '>=0.10.0'} + dependencies: + decamelize: 1.2.0 + map-obj: 1.0.1 + dev: true + + /decamelize@1.2.0: + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} + engines: {node: '>=0.10.0'} + dev: true + + /decimal.js@10.4.3: + resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + + /deep-eql@3.0.1: + resolution: {integrity: sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==} + engines: {node: '>=0.12'} + dependencies: + type-detect: 4.0.8 + dev: true + + /deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + dev: true + + /default-gateway@6.0.3: + resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} + engines: {node: '>= 10'} + dependencies: + execa: 5.1.1 + dev: true + + /define-properties@1.1.4: + resolution: {integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==} + engines: {node: '>= 0.4'} + dependencies: + has-property-descriptors: 1.0.0 + object-keys: 1.1.1 + dev: true + + /defu@6.1.0: + resolution: {integrity: sha512-pOFYRTIhoKujrmbTRhcW5lYQLBXw/dlTwfI8IguF1QCDJOcJzNH1w+YFjxqy6BAuJrClTy6MUE8q+oKJ2FLsIw==} + dev: true + + /delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + + /depd@2.0.0: + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} + engines: {node: '>= 0.8'} + dev: true + + /destr@1.2.0: + resolution: {integrity: sha512-JG+cG4ZPB1L27sl2C2URg8MIOmIUtTbE5wEx02BpmrTCqg/hXxFKXsYsnODl5PdpqNRaS1KQGUQ56V8jk8XpYQ==} + dev: true + + /destroy@1.2.0: + resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + dev: true + + /diff@4.0.2: + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} + engines: {node: '>=0.3.1'} + + /dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + dependencies: + path-type: 4.0.0 + dev: true + + /doctrine@2.1.0: + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} + dependencies: + esutils: 2.0.3 + dev: true + + /doctrine@3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} + dependencies: + esutils: 2.0.3 + dev: true + + /dot-prop@5.3.0: + resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} + engines: {node: '>=8'} + dependencies: + is-obj: 2.0.0 + dev: true + + /duplexer@0.1.2: + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + dev: true + + /ee-first@1.1.1: + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + dev: true + + /electron-to-chromium@1.4.284: + resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==} + + /emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + dev: true + + /encodeurl@1.0.2: + resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} + engines: {node: '>= 0.8'} + dev: true + + /entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + dev: true + + /errno@0.1.8: + resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} + hasBin: true + requiresBuild: true + dependencies: + prr: 1.0.1 + optional: true + + /error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + dependencies: + is-arrayish: 0.2.1 + dev: true + + /es-abstract@1.20.1: + resolution: {integrity: sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + es-to-primitive: 1.2.1 + function-bind: 1.1.1 + function.prototype.name: 1.1.5 + get-intrinsic: 1.1.2 + get-symbol-description: 1.0.0 + has: 1.0.3 + has-property-descriptors: 1.0.0 + has-symbols: 1.0.3 + internal-slot: 1.0.3 + is-callable: 1.2.4 + is-negative-zero: 2.0.2 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.2 + is-string: 1.0.7 + is-weakref: 1.0.2 + object-inspect: 1.12.2 + object-keys: 1.1.1 + object.assign: 4.1.2 + regexp.prototype.flags: 1.4.3 + string.prototype.trimend: 1.0.5 + string.prototype.trimstart: 1.0.5 + unbox-primitive: 1.0.2 + dev: true + + /es-module-lexer@0.9.3: + resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==} + + /es-shim-unscopables@1.0.0: + resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} + dependencies: + has: 1.0.3 + dev: true + + /es-to-primitive@1.2.1: + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} + engines: {node: '>= 0.4'} + dependencies: + is-callable: 1.2.4 + is-date-object: 1.0.5 + is-symbol: 1.0.4 + dev: true + + /esbuild-android-64@0.14.48: + resolution: {integrity: sha512-3aMjboap/kqwCUpGWIjsk20TtxVoKck8/4Tu19rubh7t5Ra0Yrpg30Mt1QXXlipOazrEceGeWurXKeFJgkPOUg==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /esbuild-android-64@0.15.13: + resolution: {integrity: sha512-yRorukXBlokwTip+Sy4MYskLhJsO0Kn0/Fj43s1krVblfwP+hMD37a4Wmg139GEsMLl+vh8WXp2mq/cTA9J97g==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + optional: true + + /esbuild-android-arm64@0.14.48: + resolution: {integrity: sha512-vptI3K0wGALiDq+EvRuZotZrJqkYkN5282iAfcffjI5lmGG9G1ta/CIVauhY42MBXwEgDJkweiDcDMRLzBZC4g==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /esbuild-android-arm64@0.15.13: + resolution: {integrity: sha512-TKzyymLD6PiVeyYa4c5wdPw87BeAiTXNtK6amWUcXZxkV51gOk5u5qzmDaYSwiWeecSNHamFsaFjLoi32QR5/w==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + optional: true + + /esbuild-darwin-64@0.14.48: + resolution: {integrity: sha512-gGQZa4+hab2Va/Zww94YbshLuWteyKGD3+EsVon8EWTWhnHFRm5N9NbALNbwi/7hQ/hM1Zm4FuHg+k6BLsl5UA==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /esbuild-darwin-64@0.15.13: + resolution: {integrity: sha512-WAx7c2DaOS6CrRcoYCgXgkXDliLnFv3pQLV6GeW1YcGEZq2Gnl8s9Pg7ahValZkpOa0iE/ojRVQ87sbUhF1Cbg==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + optional: true + + /esbuild-darwin-arm64@0.14.48: + resolution: {integrity: sha512-bFjnNEXjhZT+IZ8RvRGNJthLWNHV5JkCtuOFOnjvo5pC0sk2/QVk0Qc06g2PV3J0TcU6kaPC3RN9yy9w2PSLEA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /esbuild-darwin-arm64@0.15.13: + resolution: {integrity: sha512-U6jFsPfSSxC3V1CLiQqwvDuj3GGrtQNB3P3nNC3+q99EKf94UGpsG9l4CQ83zBs1NHrk1rtCSYT0+KfK5LsD8A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + optional: true + + /esbuild-freebsd-64@0.14.48: + resolution: {integrity: sha512-1NOlwRxmOsnPcWOGTB10JKAkYSb2nue0oM1AfHWunW/mv3wERfJmnYlGzL3UAOIUXZqW8GeA2mv+QGwq7DToqA==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-freebsd-64@0.15.13: + resolution: {integrity: sha512-whItJgDiOXaDG/idy75qqevIpZjnReZkMGCgQaBWZuKHoElDJC1rh7MpoUgupMcdfOd+PgdEwNQW9DAE6i8wyA==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + optional: true + + /esbuild-freebsd-arm64@0.14.48: + resolution: {integrity: sha512-gXqKdO8wabVcYtluAbikDH2jhXp+Klq5oCD5qbVyUG6tFiGhrC9oczKq3vIrrtwcxDQqK6+HDYK8Zrd4bCA9Gw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-freebsd-arm64@0.15.13: + resolution: {integrity: sha512-6pCSWt8mLUbPtygv7cufV0sZLeylaMwS5Fznj6Rsx9G2AJJsAjQ9ifA+0rQEIg7DwJmi9it+WjzNTEAzzdoM3Q==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + optional: true + + /esbuild-linux-32@0.14.48: + resolution: {integrity: sha512-ghGyDfS289z/LReZQUuuKq9KlTiTspxL8SITBFQFAFRA/IkIvDpnZnCAKTCjGXAmUqroMQfKJXMxyjJA69c/nQ==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-32@0.15.13: + resolution: {integrity: sha512-VbZdWOEdrJiYApm2kkxoTOgsoCO1krBZ3quHdYk3g3ivWaMwNIVPIfEE0f0XQQ0u5pJtBsnk2/7OPiCFIPOe/w==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + optional: true + + /esbuild-linux-64@0.14.48: + resolution: {integrity: sha512-vni3p/gppLMVZLghI7oMqbOZdGmLbbKR23XFARKnszCIBpEMEDxOMNIKPmMItQrmH/iJrL1z8Jt2nynY0bE1ug==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-64@0.15.13: + resolution: {integrity: sha512-rXmnArVNio6yANSqDQlIO4WiP+Cv7+9EuAHNnag7rByAqFVuRusLbGi2697A5dFPNXoO//IiogVwi3AdcfPC6A==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + optional: true + + /esbuild-linux-arm64@0.14.48: + resolution: {integrity: sha512-3CFsOlpoxlKPRevEHq8aAntgYGYkE1N9yRYAcPyng/p4Wyx0tPR5SBYsxLKcgPB9mR8chHEhtWYz6EZ+H199Zw==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-arm64@0.15.13: + resolution: {integrity: sha512-alEMGU4Z+d17U7KQQw2IV8tQycO6T+rOrgW8OS22Ua25x6kHxoG6Ngry6Aq6uranC+pNWNMB6aHFPh7aTQdORQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + optional: true + + /esbuild-linux-arm@0.14.48: + resolution: {integrity: sha512-+VfSV7Akh1XUiDNXgqgY1cUP1i2vjI+BmlyXRfVz5AfV3jbpde8JTs5Q9sYgaoq5cWfuKfoZB/QkGOI+QcL1Tw==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-arm@0.15.13: + resolution: {integrity: sha512-Ac6LpfmJO8WhCMQmO253xX2IU2B3wPDbl4IvR0hnqcPrdfCaUa2j/lLMGTjmQ4W5JsJIdHEdW12dG8lFS0MbxQ==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + optional: true + + /esbuild-linux-mips64le@0.14.48: + resolution: {integrity: sha512-cs0uOiRlPp6ymknDnjajCgvDMSsLw5mST2UXh+ZIrXTj2Ifyf2aAP3Iw4DiqgnyYLV2O/v/yWBJx+WfmKEpNLA==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-mips64le@0.15.13: + resolution: {integrity: sha512-47PgmyYEu+yN5rD/MbwS6DxP2FSGPo4Uxg5LwIdxTiyGC2XKwHhHyW7YYEDlSuXLQXEdTO7mYe8zQ74czP7W8A==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + optional: true + + /esbuild-linux-ppc64le@0.14.48: + resolution: {integrity: sha512-+2F0vJMkuI0Wie/wcSPDCqXvSFEELH7Jubxb7mpWrA/4NpT+/byjxDz0gG6R1WJoeDefcrMfpBx4GFNN1JQorQ==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-ppc64le@0.15.13: + resolution: {integrity: sha512-z6n28h2+PC1Ayle9DjKoBRcx/4cxHoOa2e689e2aDJSaKug3jXcQw7mM+GLg+9ydYoNzj8QxNL8ihOv/OnezhA==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + optional: true + + /esbuild-linux-riscv64@0.14.48: + resolution: {integrity: sha512-BmaK/GfEE+5F2/QDrIXteFGKnVHGxlnK9MjdVKMTfvtmudjY3k2t8NtlY4qemKSizc+QwyombGWTBDc76rxePA==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-riscv64@0.15.13: + resolution: {integrity: sha512-+Lu4zuuXuQhgLUGyZloWCqTslcCAjMZH1k3Xc9MSEJEpEFdpsSU0sRDXAnk18FKOfEjhu4YMGaykx9xjtpA6ow==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + optional: true + + /esbuild-linux-s390x@0.14.48: + resolution: {integrity: sha512-tndw/0B9jiCL+KWKo0TSMaUm5UWBLsfCKVdbfMlb3d5LeV9WbijZ8Ordia8SAYv38VSJWOEt6eDCdOx8LqkC4g==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /esbuild-linux-s390x@0.15.13: + resolution: {integrity: sha512-BMeXRljruf7J0TMxD5CIXS65y7puiZkAh+s4XFV9qy16SxOuMhxhVIXYLnbdfLrsYGFzx7U9mcdpFWkkvy/Uag==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + optional: true + + /esbuild-netbsd-64@0.14.48: + resolution: {integrity: sha512-V9hgXfwf/T901Lr1wkOfoevtyNkrxmMcRHyticybBUHookznipMOHoF41Al68QBsqBxnITCEpjjd4yAos7z9Tw==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-netbsd-64@0.15.13: + resolution: {integrity: sha512-EHj9QZOTel581JPj7UO3xYbltFTYnHy+SIqJVq6yd3KkCrsHRbapiPb0Lx3EOOtybBEE9EyqbmfW1NlSDsSzvQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + optional: true + + /esbuild-openbsd-64@0.14.48: + resolution: {integrity: sha512-+IHf4JcbnnBl4T52egorXMatil/za0awqzg2Vy6FBgPcBpisDWT2sVz/tNdrK9kAqj+GZG/jZdrOkj7wsrNTKA==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + /esbuild-openbsd-64@0.15.13: + resolution: {integrity: sha512-nkuDlIjF/sfUhfx8SKq0+U+Fgx5K9JcPq1mUodnxI0x4kBdCv46rOGWbuJ6eof2n3wdoCLccOoJAbg9ba/bT2w==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + optional: true + + /esbuild-sunos-64@0.14.48: + resolution: {integrity: sha512-77m8bsr5wOpOWbGi9KSqDphcq6dFeJyun8TA+12JW/GAjyfTwVtOnN8DOt6DSPUfEV+ltVMNqtXUeTeMAxl5KA==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + + /esbuild-sunos-64@0.15.13: + resolution: {integrity: sha512-jVeu2GfxZQ++6lRdY43CS0Tm/r4WuQQ0Pdsrxbw+aOrHQPHV0+LNOLnvbN28M7BSUGnJnHkHm2HozGgNGyeIRw==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + optional: true + + /esbuild-windows-32@0.14.48: + resolution: {integrity: sha512-EPgRuTPP8vK9maxpTGDe5lSoIBHGKO/AuxDncg5O3NkrPeLNdvvK8oywB0zGaAZXxYWfNNSHskvvDgmfVTguhg==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /esbuild-windows-32@0.15.13: + resolution: {integrity: sha512-XoF2iBf0wnqo16SDq+aDGi/+QbaLFpkiRarPVssMh9KYbFNCqPLlGAWwDvxEVz+ywX6Si37J2AKm+AXq1kC0JA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + optional: true + + /esbuild-windows-64@0.14.48: + resolution: {integrity: sha512-YmpXjdT1q0b8ictSdGwH3M8VCoqPpK1/UArze3X199w6u8hUx3V8BhAi1WjbsfDYRBanVVtduAhh2sirImtAvA==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /esbuild-windows-64@0.15.13: + resolution: {integrity: sha512-Et6htEfGycjDrtqb2ng6nT+baesZPYQIW+HUEHK4D1ncggNrDNk3yoboYQ5KtiVrw/JaDMNttz8rrPubV/fvPQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + optional: true + + /esbuild-windows-arm64@0.14.48: + resolution: {integrity: sha512-HHaOMCsCXp0rz5BT2crTka6MPWVno121NKApsGs/OIW5QC0ggC69YMGs1aJct9/9FSUF4A1xNE/cLvgB5svR4g==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /esbuild-windows-arm64@0.15.13: + resolution: {integrity: sha512-3bv7tqntThQC9SWLRouMDmZnlOukBhOCTlkzNqzGCmrkCJI7io5LLjwJBOVY6kOUlIvdxbooNZwjtBvj+7uuVg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + optional: true + + /esbuild@0.14.48: + resolution: {integrity: sha512-w6N1Yn5MtqK2U1/WZTX9ZqUVb8IOLZkZ5AdHkT6x3cHDMVsYWC7WPdiLmx19w3i4Rwzy5LqsEMtVihG3e4rFzA==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + esbuild-android-64: 0.14.48 + esbuild-android-arm64: 0.14.48 + esbuild-darwin-64: 0.14.48 + esbuild-darwin-arm64: 0.14.48 + esbuild-freebsd-64: 0.14.48 + esbuild-freebsd-arm64: 0.14.48 + esbuild-linux-32: 0.14.48 + esbuild-linux-64: 0.14.48 + esbuild-linux-arm: 0.14.48 + esbuild-linux-arm64: 0.14.48 + esbuild-linux-mips64le: 0.14.48 + esbuild-linux-ppc64le: 0.14.48 + esbuild-linux-riscv64: 0.14.48 + esbuild-linux-s390x: 0.14.48 + esbuild-netbsd-64: 0.14.48 + esbuild-openbsd-64: 0.14.48 + esbuild-sunos-64: 0.14.48 + esbuild-windows-32: 0.14.48 + esbuild-windows-64: 0.14.48 + esbuild-windows-arm64: 0.14.48 + dev: true + + /esbuild@0.15.13: + resolution: {integrity: sha512-Cu3SC84oyzzhrK/YyN4iEVy2jZu5t2fz66HEOShHURcjSkOSAVL8C/gfUT+lDJxkVHpg8GZ10DD0rMHRPqMFaQ==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/android-arm': 0.15.13 + '@esbuild/linux-loong64': 0.15.13 + esbuild-android-64: 0.15.13 + esbuild-android-arm64: 0.15.13 + esbuild-darwin-64: 0.15.13 + esbuild-darwin-arm64: 0.15.13 + esbuild-freebsd-64: 0.15.13 + esbuild-freebsd-arm64: 0.15.13 + esbuild-linux-32: 0.15.13 + esbuild-linux-64: 0.15.13 + esbuild-linux-arm: 0.15.13 + esbuild-linux-arm64: 0.15.13 + esbuild-linux-mips64le: 0.15.13 + esbuild-linux-ppc64le: 0.15.13 + esbuild-linux-riscv64: 0.15.13 + esbuild-linux-s390x: 0.15.13 + esbuild-netbsd-64: 0.15.13 + esbuild-openbsd-64: 0.15.13 + esbuild-sunos-64: 0.15.13 + esbuild-windows-32: 0.15.13 + esbuild-windows-64: 0.15.13 + esbuild-windows-arm64: 0.15.13 + + /escalade@3.1.1: + resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} + engines: {node: '>=6'} + + /escape-html@1.0.3: + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + dev: true + + /escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + + /escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + dev: true + + /eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.26.0)(eslint@8.19.0): + resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + eslint: ^7.32.0 || ^8.2.0 + eslint-plugin-import: ^2.25.2 + dependencies: + confusing-browser-globals: 1.0.11 + eslint: 8.19.0 + eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.30.3)(eslint@8.19.0) + object.assign: 4.1.2 + object.entries: 1.1.5 + semver: 6.3.0 + dev: true + + /eslint-config-prettier@8.5.0(eslint@8.19.0): + resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + dependencies: + eslint: 8.19.0 + dev: true + + /eslint-import-resolver-node@0.3.6: + resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==} + dependencies: + debug: 3.2.7 + resolve: 1.22.1 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-module-utils@2.7.3(@typescript-eslint/parser@5.30.3)(eslint-import-resolver-node@0.3.6): + resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + dependencies: + '@typescript-eslint/parser': 5.30.3(eslint@8.19.0)(typescript@4.7.4) + debug: 3.2.7 + eslint-import-resolver-node: 0.3.6 + find-up: 2.1.0 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-import@2.26.0(@typescript-eslint/parser@5.30.3)(eslint@8.19.0): + resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + dependencies: + '@typescript-eslint/parser': 5.30.3(eslint@8.19.0)(typescript@4.7.4) + array-includes: 3.1.5 + array.prototype.flat: 1.3.0 + debug: 2.6.9 + doctrine: 2.1.0 + eslint: 8.19.0 + eslint-import-resolver-node: 0.3.6 + eslint-module-utils: 2.7.3(@typescript-eslint/parser@5.30.3)(eslint-import-resolver-node@0.3.6) + has: 1.0.3 + is-core-module: 2.9.0 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.values: 1.1.5 + resolve: 1.22.1 + tsconfig-paths: 3.14.1 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + dev: true + + /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.5.0)(eslint@8.19.0)(prettier@2.7.1): + resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} + engines: {node: '>=12.0.0'} + peerDependencies: + eslint: '>=7.28.0' + eslint-config-prettier: '*' + prettier: '>=2.0.0' + peerDependenciesMeta: + eslint-config-prettier: + optional: true + dependencies: + eslint: 8.19.0 + eslint-config-prettier: 8.5.0(eslint@8.19.0) + prettier: 2.7.1 + prettier-linter-helpers: 1.0.0 + dev: true + + /eslint-plugin-todo-ddl@1.1.1: + resolution: {integrity: sha512-1FnxUkDUoQLgxdSHxLUYvAoeKyqWgqBSZcULEElxMgwzrgP7aS5loL5uz552Mfe1hbD2/jM+DozvKtt+NK/hbg==} + dev: true + + /eslint-plugin-vue@9.1.1(eslint@8.19.0): + resolution: {integrity: sha512-W9n5PB1X2jzC7CK6riG0oAcxjmKrjTF6+keL1rni8n57DZeilx/Fulz+IRJK3lYseLNAygN0I62L7DvioW40Tw==} + engines: {node: ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 + dependencies: + eslint: 8.19.0 + eslint-utils: 3.0.0(eslint@8.19.0) + natural-compare: 1.4.0 + nth-check: 2.1.1 + postcss-selector-parser: 6.0.10 + semver: 7.3.7 + vue-eslint-parser: 9.0.3(eslint@8.19.0) + xml-name-validator: 4.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-scope@5.1.1: + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} + dependencies: + esrecurse: 4.3.0 + estraverse: 4.3.0 + dev: true + + /eslint-scope@7.1.1: + resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + dev: true + + /eslint-utils@3.0.0(eslint@8.19.0): + resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} + engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + peerDependencies: + eslint: '>=5' + dependencies: + eslint: 8.19.0 + eslint-visitor-keys: 2.1.0 + dev: true + + /eslint-visitor-keys@2.1.0: + resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} + engines: {node: '>=10'} + dev: true + + /eslint-visitor-keys@3.3.0: + resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /eslint@8.19.0: + resolution: {integrity: sha512-SXOPj3x9VKvPe81TjjUJCYlV4oJjQw68Uek+AM0X4p+33dj2HY5bpTZOgnQHcG2eAm1mtCU9uNMnJi7exU/kYw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + hasBin: true + dependencies: + '@eslint/eslintrc': 1.3.0 + '@humanwhocodes/config-array': 0.9.5 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4 + doctrine: 3.0.0 + escape-string-regexp: 4.0.0 + eslint-scope: 7.1.1 + eslint-utils: 3.0.0(eslint@8.19.0) + eslint-visitor-keys: 3.3.0 + espree: 9.3.2 + esquery: 1.4.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + functional-red-black-tree: 1.0.1 + glob-parent: 6.0.2 + globals: 13.15.0 + ignore: 5.2.0 + import-fresh: 3.3.0 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + js-yaml: 4.1.0 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.1 + regexpp: 3.2.0 + strip-ansi: 6.0.1 + strip-json-comments: 3.1.1 + text-table: 0.2.0 + v8-compile-cache: 2.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /espree@9.3.2: + resolution: {integrity: sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + acorn: 8.7.1 + acorn-jsx: 5.3.2(acorn@8.7.1) + eslint-visitor-keys: 3.3.0 + dev: true + + /esquery@1.4.0: + resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==} + engines: {node: '>=0.10'} + dependencies: + estraverse: 5.3.0 + dev: true + + /esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + dependencies: + estraverse: 5.3.0 + dev: true + + /estraverse@4.3.0: + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + engines: {node: '>=4.0'} + dev: true + + /estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + dev: true + + /estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + /esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + dev: true + + /etag@1.8.1: + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} + engines: {node: '>= 0.6'} + dev: true + + /execa@5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} + dependencies: + cross-spawn: 7.0.3 + get-stream: 6.0.1 + human-signals: 2.1.0 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + dev: true + + /express@4.18.1: + resolution: {integrity: sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==} + engines: {node: '>= 0.10.0'} + dependencies: + accepts: 1.3.8 + array-flatten: 1.1.1 + body-parser: 1.20.0 + content-disposition: 0.5.4 + content-type: 1.0.4 + cookie: 0.5.0 + cookie-signature: 1.0.6 + debug: 2.6.9 + depd: 2.0.0 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + finalhandler: 1.2.0 + fresh: 0.5.2 + http-errors: 2.0.0 + merge-descriptors: 1.0.1 + methods: 1.1.2 + on-finished: 2.4.1 + parseurl: 1.3.3 + path-to-regexp: 0.1.7 + proxy-addr: 2.0.7 + qs: 6.10.3 + range-parser: 1.2.1 + safe-buffer: 5.2.1 + send: 0.18.0 + serve-static: 1.15.0 + setprototypeof: 1.2.0 + statuses: 2.0.1 + type-is: 1.6.18 + utils-merge: 1.0.1 + vary: 1.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + dev: true + + /fast-diff@1.2.0: + resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==} + dev: true + + /fast-glob@3.2.12: + resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} + engines: {node: '>=8.6.0'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + + /fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + dev: true + + /fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + dev: true + + /fastq@1.13.0: + resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==} + dependencies: + reusify: 1.0.4 + + /file-entry-cache@6.0.1: + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + flat-cache: 3.0.4 + dev: true + + /fill-range@7.0.1: + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} + dependencies: + to-regex-range: 5.0.1 + + /finalhandler@1.2.0: + resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} + engines: {node: '>= 0.8'} + dependencies: + debug: 2.6.9 + encodeurl: 1.0.2 + escape-html: 1.0.3 + on-finished: 2.4.1 + parseurl: 1.3.3 + statuses: 2.0.1 + unpipe: 1.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /find-up@2.1.0: + resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} + engines: {node: '>=4'} + dependencies: + locate-path: 2.0.0 + dev: true + + /find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + dev: true + + /find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + dev: true + + /flat-cache@3.0.4: + resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + flatted: 3.2.6 + rimraf: 3.0.2 + dev: true + + /flatted@3.2.6: + resolution: {integrity: sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ==} + dev: true + + /follow-redirects@1.15.1: + resolution: {integrity: sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + dev: false + + /foreground-child@2.0.0: + resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} + engines: {node: '>=8.0.0'} + dependencies: + cross-spawn: 7.0.3 + signal-exit: 3.0.7 + dev: true + + /form-data@4.0.0: + resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} + engines: {node: '>= 6'} + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + + /forwarded@0.2.0: + resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} + engines: {node: '>= 0.6'} + dev: true + + /fraction.js@4.2.0: + resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} + + /fresh@0.5.2: + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + engines: {node: '>= 0.6'} + dev: true + + /fs-extra@10.1.0: + resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} + engines: {node: '>=12'} + dependencies: + graceful-fs: 4.2.10 + jsonfile: 6.1.0 + universalify: 2.0.0 + + /fs-extra@11.1.0: + resolution: {integrity: sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==} + engines: {node: '>=14.14'} + dependencies: + graceful-fs: 4.2.10 + jsonfile: 6.1.0 + universalify: 2.0.0 + dev: true + + /fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + dev: true + + /fsevents@2.3.2: + resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + requiresBuild: true + optional: true + + /function-bind@1.1.1: + resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} + + /function.prototype.name@1.1.5: + resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + functions-have-names: 1.2.3 + dev: true + + /functional-red-black-tree@1.0.1: + resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} + dev: true + + /functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + dev: true + + /generic-names@4.0.0: + resolution: {integrity: sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A==} + dependencies: + loader-utils: 3.2.0 + + /gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + + /get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + dev: true + + /get-func-name@2.0.0: + resolution: {integrity: sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==} + dev: true + + /get-intrinsic@1.1.2: + resolution: {integrity: sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==} + dependencies: + function-bind: 1.1.1 + has: 1.0.3 + has-symbols: 1.0.3 + dev: true + + /get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + dev: true + + /get-symbol-description@1.0.0: + resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.2 + dev: true + + /git-raw-commits@2.0.11: + resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} + engines: {node: '>=10'} + hasBin: true + dependencies: + dargs: 7.0.0 + lodash: 4.17.21 + meow: 8.1.2 + split2: 3.2.2 + through2: 4.0.2 + dev: true + + /glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + dependencies: + is-glob: 4.0.3 + + /glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + dependencies: + is-glob: 4.0.3 + dev: true + + /glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + + /global-dirs@0.1.1: + resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==} + engines: {node: '>=4'} + dependencies: + ini: 1.3.8 + dev: true + + /globals@11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} + + /globals@13.15.0: + resolution: {integrity: sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==} + engines: {node: '>=8'} + dependencies: + type-fest: 0.20.2 + dev: true + + /globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.2.12 + ignore: 5.2.0 + merge2: 1.4.1 + slash: 3.0.0 + dev: true + + /graceful-fs@4.2.10: + resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} + + /gzip-size@6.0.0: + resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} + engines: {node: '>=10'} + dependencies: + duplexer: 0.1.2 + dev: true + + /hard-rejection@2.1.0: + resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} + engines: {node: '>=6'} + dev: true + + /has-bigints@1.0.2: + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + dev: true + + /has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + + /has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + dev: true + + /has-property-descriptors@1.0.0: + resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} + dependencies: + get-intrinsic: 1.1.2 + dev: true + + /has-symbols@1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} + dev: true + + /has-tostringtag@1.0.0: + resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + + /has@1.0.3: + resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} + engines: {node: '>= 0.4.0'} + dependencies: + function-bind: 1.1.1 + + /hash-sum@2.0.0: + resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==} + + /hosted-git-info@2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + dev: true + + /hosted-git-info@4.1.0: + resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} + engines: {node: '>=10'} + dependencies: + lru-cache: 6.0.0 + dev: true + + /html-encoding-sniffer@4.0.0: + resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==} + engines: {node: '>=18'} + dependencies: + whatwg-encoding: 3.1.1 + dev: true + + /html-escaper@2.0.2: + resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + dev: true + + /html-tags@3.2.0: + resolution: {integrity: sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==} + engines: {node: '>=8'} + dev: true + + /http-errors@2.0.0: + resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} + engines: {node: '>= 0.8'} + dependencies: + depd: 2.0.0 + inherits: 2.0.4 + setprototypeof: 1.2.0 + statuses: 2.0.1 + toidentifier: 1.0.1 + dev: true + + /http-proxy-agent@7.0.2: + resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} + engines: {node: '>= 14'} + dependencies: + agent-base: 7.1.0 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + + /https-proxy-agent@7.0.4: + resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==} + engines: {node: '>= 14'} + dependencies: + agent-base: 7.1.0 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + + /human-signals@2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} + dev: true + + /iconv-lite@0.4.24: + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} + engines: {node: '>=0.10.0'} + dependencies: + safer-buffer: 2.1.2 + dev: true + + /iconv-lite@0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} + requiresBuild: true + dependencies: + safer-buffer: 2.1.2 + + /icss-replace-symbols@1.1.0: + resolution: {integrity: sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg==} + + /icss-utils@5.1.0(postcss@8.4.19): + resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + dependencies: + postcss: 8.4.19 + + /ignore@5.2.0: + resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==} + engines: {node: '>= 4'} + dev: true + + /image-size@0.5.5: + resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} + engines: {node: '>=0.10.0'} + hasBin: true + requiresBuild: true + optional: true + + /immutable@4.1.0: + resolution: {integrity: sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==} + + /import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + dev: true + + /imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + dev: true + + /indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + dev: true + + /inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + dev: true + + /inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + dev: true + + /ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + dev: true + + /internal-slot@1.0.3: + resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.1.2 + has: 1.0.3 + side-channel: 1.0.4 + dev: true + + /invert-kv@3.0.1: + resolution: {integrity: sha512-CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw==} + engines: {node: '>=8'} + + /ipaddr.js@1.9.1: + resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} + engines: {node: '>= 0.10'} + dev: true + + /is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + dev: true + + /is-bigint@1.0.4: + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + dependencies: + has-bigints: 1.0.2 + dev: true + + /is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + dependencies: + binary-extensions: 2.2.0 + + /is-boolean-object@1.1.2: + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-callable@1.2.4: + resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==} + engines: {node: '>= 0.4'} + dev: true + + /is-core-module@2.9.0: + resolution: {integrity: sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==} + dependencies: + has: 1.0.3 + + /is-date-object@1.0.5: + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + /is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + dev: true + + /is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + dependencies: + is-extglob: 2.1.1 + + /is-negative-zero@2.0.2: + resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} + engines: {node: '>= 0.4'} + dev: true + + /is-number-object@1.0.7: + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + /is-obj@2.0.0: + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} + dev: true + + /is-plain-obj@1.1.0: + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} + dev: true + + /is-potential-custom-element-name@1.0.1: + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + dev: true + + /is-regex@1.1.4: + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-shared-array-buffer@1.0.2: + resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} + dependencies: + call-bind: 1.0.2 + dev: true + + /is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + dev: true + + /is-string@1.0.7: + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} + engines: {node: '>= 0.4'} + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-symbol@1.0.4: + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} + engines: {node: '>= 0.4'} + dependencies: + has-symbols: 1.0.3 + dev: true + + /is-text-path@1.0.1: + resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} + engines: {node: '>=0.10.0'} + dependencies: + text-extensions: 1.9.0 + dev: true + + /is-weakref@1.0.2: + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + dependencies: + call-bind: 1.0.2 + dev: true + + /is-what@3.14.1: + resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} + + /isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + dev: true + + /istanbul-lib-coverage@3.2.0: + resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==} + engines: {node: '>=8'} + dev: true + + /istanbul-lib-report@3.0.0: + resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==} + engines: {node: '>=8'} + dependencies: + istanbul-lib-coverage: 3.2.0 + make-dir: 3.1.0 + supports-color: 7.2.0 + dev: true + + /istanbul-reports@3.1.4: + resolution: {integrity: sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==} + engines: {node: '>=8'} + dependencies: + html-escaper: 2.0.2 + istanbul-lib-report: 3.0.0 + dev: true + + /jiti@1.16.0: + resolution: {integrity: sha512-L3BJStEf5NAqNuzrpfbN71dp43mYIcBUlCRea/vdyv5dW/AYa1d4bpelko4SHdY3I6eN9Wzyasxirj1/vv5kmg==} + hasBin: true + dev: true + + /js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + /js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + dependencies: + argparse: 2.0.1 + dev: true + + /jsdom@24.0.0: + resolution: {integrity: sha512-UDS2NayCvmXSXVP6mpTj+73JnNQadZlr9N68189xib2tx5Mls7swlTNao26IoHv46BZJFvXygyRtyXd1feAk1A==} + engines: {node: '>=18'} + peerDependencies: + canvas: ^2.11.2 + peerDependenciesMeta: + canvas: + optional: true + dependencies: + cssstyle: 4.0.1 + data-urls: 5.0.0 + decimal.js: 10.4.3 + form-data: 4.0.0 + html-encoding-sniffer: 4.0.0 + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.4 + is-potential-custom-element-name: 1.0.1 + nwsapi: 2.2.7 + parse5: 7.1.2 + rrweb-cssom: 0.6.0 + saxes: 6.0.0 + symbol-tree: 3.2.4 + tough-cookie: 4.1.3 + w3c-xmlserializer: 5.0.0 + webidl-conversions: 7.0.0 + whatwg-encoding: 3.1.1 + whatwg-mimetype: 4.0.0 + whatwg-url: 14.0.0 + ws: 8.16.0 + xml-name-validator: 5.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + dev: true + + /jsesc@2.5.2: + resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} + engines: {node: '>=4'} + hasBin: true + + /json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + dev: true + + /json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + dev: true + + /json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + dev: true + + /json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + dev: true + + /json5@1.0.1: + resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==} + hasBin: true + dependencies: + minimist: 1.2.6 + dev: true + + /json5@2.2.1: + resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==} + engines: {node: '>=6'} + hasBin: true + + /jsonc-parser@3.0.0: + resolution: {integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==} + + /jsonfile@6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + dependencies: + universalify: 2.0.0 + optionalDependencies: + graceful-fs: 4.2.10 + + /jsonparse@1.3.1: + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} + engines: {'0': node >= 0.2.0} + dev: true + + /kind-of@6.0.3: + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} + dev: true + + /kolorist@1.6.0: + resolution: {integrity: sha512-dLkz37Ab97HWMx9KTes3Tbi3D1ln9fCAy2zr2YVExJasDRPGRaKcoE4fycWNtnCAJfjFqe0cnY+f8KT2JePEXQ==} + dev: true + + /lcid@3.1.1: + resolution: {integrity: sha512-M6T051+5QCGLBQb8id3hdvIW8+zeFV2FyBGFS9IEK5H9Wt4MueD4bW1eWikpHgZp+5xR3l5c8pZUkQsIA0BFZg==} + engines: {node: '>=8'} + dependencies: + invert-kv: 3.0.1 + + /less@4.1.3: + resolution: {integrity: sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==} + engines: {node: '>=6'} + hasBin: true + dependencies: + copy-anything: 2.0.6 + parse-node-version: 1.0.1 + tslib: 2.4.0 + optionalDependencies: + errno: 0.1.8 + graceful-fs: 4.2.10 + image-size: 0.5.5 + make-dir: 2.1.0 + mime: 1.6.0 + needle: 3.1.0 + source-map: 0.6.1 + transitivePeerDependencies: + - supports-color + + /levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + dev: true + + /licia@1.36.0: + resolution: {integrity: sha512-T1E+U8ObQmsVVTE4XN/OUUhwve8f9cDgKFFBOdJvuXIN1uZvKEQa0PP8Q+KSgSRCgUnp/gjvxGKskNt4K5pVkA==} + dev: true + + /lilconfig@2.0.5: + resolution: {integrity: sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg==} + engines: {node: '>=10'} + + /lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + dev: true + + /loader-utils@3.2.0: + resolution: {integrity: sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ==} + engines: {node: '>= 12.13.0'} + + /local-pkg@0.4.1: + resolution: {integrity: sha512-lL87ytIGP2FU5PWwNDo0w3WhIo2gopIAxPg9RxDYF7m4rr5ahuZxP22xnJHIvaLTe4Z9P6uKKY2UHiwyB4pcrw==} + engines: {node: '>=14'} + dev: true + + /local-pkg@0.4.2: + resolution: {integrity: sha512-mlERgSPrbxU3BP4qBqAvvwlgW4MTg78iwJdGGnv7kibKjWcJksrG3t6LB5lXI93wXRDvG4NpUgJFmTG4T6rdrg==} + engines: {node: '>=14'} + dev: true + + /localstorage-polyfill@1.0.1: + resolution: {integrity: sha512-m4iHVZxFH5734oQcPKU08025gIz2+4bjWR9lulP8ZYxEJR0BpA0w32oJmkzh8y3UI9ci7xCBehQDc3oA1X+VHw==} + engines: {node: '>=6'} + dev: false + + /locate-path@2.0.0: + resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} + engines: {node: '>=4'} + dependencies: + p-locate: 2.0.0 + path-exists: 3.0.0 + dev: true + + /locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + dependencies: + p-locate: 4.1.0 + dev: true + + /locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + dependencies: + p-locate: 5.0.0 + dev: true + + /lodash.camelcase@4.3.0: + resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + + /lodash.isfunction@3.0.9: + resolution: {integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==} + dev: true + + /lodash.isplainobject@4.0.6: + resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + dev: true + + /lodash.kebabcase@4.1.1: + resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==} + dev: true + + /lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + dev: true + + /lodash.mergewith@4.6.2: + resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==} + dev: true + + /lodash.snakecase@4.1.1: + resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} + dev: true + + /lodash.startcase@4.4.0: + resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} + dev: true + + /lodash.uniq@4.5.0: + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + dev: true + + /lodash.upperfirst@4.3.1: + resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==} + dev: true + + /lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + dev: true + + /loupe@2.3.4: + resolution: {integrity: sha512-OvKfgCC2Ndby6aSTREl5aCCPTNIzlDfQZvZxNUrBrihDhL3xcrYegTblhmEiCrg2kKQz4XsFIaemE5BF4ybSaQ==} + dependencies: + get-func-name: 2.0.0 + dev: true + + /lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + dependencies: + yallist: 4.0.0 + dev: true + + /magic-string@0.25.9: + resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} + dependencies: + sourcemap-codec: 1.4.8 + + /magic-string@0.26.7: + resolution: {integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==} + engines: {node: '>=12'} + dependencies: + sourcemap-codec: 1.4.8 + + /make-dir@2.1.0: + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + engines: {node: '>=6'} + requiresBuild: true + dependencies: + pify: 4.0.1 + semver: 5.7.1 + optional: true + + /make-dir@3.1.0: + resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} + engines: {node: '>=8'} + dependencies: + semver: 6.3.0 + dev: true + + /make-error@1.3.6: + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + + /map-obj@1.0.1: + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} + engines: {node: '>=0.10.0'} + dev: true + + /map-obj@4.3.0: + resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} + engines: {node: '>=8'} + dev: true + + /mdn-data@2.0.28: + resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} + dev: true + + /media-typer@0.3.0: + resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} + engines: {node: '>= 0.6'} + dev: true + + /meow@8.1.2: + resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} + engines: {node: '>=10'} + dependencies: + '@types/minimist': 1.2.2 + camelcase-keys: 6.2.2 + decamelize-keys: 1.1.1 + hard-rejection: 2.1.0 + minimist-options: 4.1.0 + normalize-package-data: 3.0.3 + read-pkg-up: 7.0.1 + redent: 3.0.0 + trim-newlines: 3.0.1 + type-fest: 0.18.1 + yargs-parser: 20.2.9 + dev: true + + /merge-descriptors@1.0.1: + resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} + dev: true + + /merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + dev: true + + /merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + /merge@2.1.1: + resolution: {integrity: sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==} + + /methods@1.1.2: + resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} + engines: {node: '>= 0.6'} + dev: true + + /micromatch@4.0.5: + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} + dependencies: + braces: 3.0.2 + picomatch: 2.3.1 + + /mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + /mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + dependencies: + mime-db: 1.52.0 + + /mime@1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true + + /mime@3.0.0: + resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} + engines: {node: '>=10.0.0'} + hasBin: true + + /mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + dev: true + + /min-indent@1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + dev: true + + /minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + dependencies: + brace-expansion: 1.1.11 + dev: true + + /minimist-options@4.1.0: + resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} + engines: {node: '>= 6'} + dependencies: + arrify: 1.0.1 + is-plain-obj: 1.1.0 + kind-of: 6.0.3 + dev: true + + /minimist@1.2.6: + resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} + dev: true + + /module-alias@2.2.2: + resolution: {integrity: sha512-A/78XjoX2EmNvppVWEhM2oGk3x4lLxnkEA4jTbaK97QKSDjkIoOsKQlfylt/d3kKKi596Qy3NP5XrXJ6fZIC9Q==} + + /mrmime@1.0.1: + resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==} + engines: {node: '>=10'} + dev: true + + /ms@2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + dev: true + + /ms@2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + + /ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + /nanoid@3.3.4: + resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + /natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + dev: true + + /needle@3.1.0: + resolution: {integrity: sha512-gCE9weDhjVGCRqS8dwDR/D3GTAeyXLXuqp7I8EzH6DllZGXSUyxuqqLh+YX9rMAWaaTFyVAg6rHGL25dqvczKw==} + engines: {node: '>= 4.4.x'} + hasBin: true + requiresBuild: true + dependencies: + debug: 3.2.7 + iconv-lite: 0.6.3 + sax: 1.2.4 + transitivePeerDependencies: + - supports-color + optional: true + + /negotiator@0.6.3: + resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} + engines: {node: '>= 0.6'} + dev: true + + /node-fetch-native@0.1.8: + resolution: {integrity: sha512-ZNaury9r0NxaT2oL65GvdGDy+5PlSaHTovT6JV5tOW07k1TQmgC0olZETa4C9KZg0+6zBr99ctTYa3Utqj9P/Q==} + dev: true + + /node-releases@2.0.6: + resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==} + + /normalize-package-data@2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + dependencies: + hosted-git-info: 2.8.9 + resolve: 1.22.1 + semver: 5.7.1 + validate-npm-package-license: 3.0.4 + dev: true + + /normalize-package-data@3.0.3: + resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} + engines: {node: '>=10'} + dependencies: + hosted-git-info: 4.1.0 + is-core-module: 2.9.0 + semver: 7.3.8 + validate-npm-package-license: 3.0.4 + dev: true + + /normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + /normalize-range@0.1.2: + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} + engines: {node: '>=0.10.0'} + + /npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + dependencies: + path-key: 3.1.1 + dev: true + + /nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + dependencies: + boolbase: 1.0.0 + dev: true + + /nwsapi@2.2.7: + resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==} + dev: true + + /object-inspect@1.12.2: + resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==} + dev: true + + /object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + dev: true + + /object.assign@4.1.2: + resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + has-symbols: 1.0.3 + object-keys: 1.1.1 + dev: true + + /object.entries@1.1.5: + resolution: {integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + dev: true + + /object.values@1.1.5: + resolution: {integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + dev: true + + /ohmyfetch@0.4.21: + resolution: {integrity: sha512-VG7f/JRvqvBOYvL0tHyEIEG7XHWm7OqIfAs6/HqwWwDfjiJ1g0huIpe5sFEmyb+7hpFa1EGNH2aERWR72tlClw==} + dependencies: + destr: 1.2.0 + node-fetch-native: 0.1.8 + ufo: 0.8.6 + undici: 5.12.0 + dev: true + + /on-finished@2.4.1: + resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} + engines: {node: '>= 0.8'} + dependencies: + ee-first: 1.1.1 + dev: true + + /once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + dependencies: + wrappy: 1.0.2 + dev: true + + /onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + dependencies: + mimic-fn: 2.1.0 + dev: true + + /optionator@0.9.1: + resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} + engines: {node: '>= 0.8.0'} + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.3 + dev: true + + /or@0.2.0: + resolution: {integrity: sha512-BHB8VZq2isxkyRaCBZ6CZCbQBzCT+gy8LPiqdbMH1+Fd6biFj3v8ebjeYzzL51PbsApsPYnGegGTO6KLQMxxDw==} + dev: false + + /os-locale-s-fix@1.0.8-fix-1: + resolution: {integrity: sha512-Sv0OvhPiMutICiwORAUefv02DCPb62IelBmo8ZsSrRHyI3FStqIWZvjqDkvtjU+lcujo7UNir+dCwKSqlEQ/5w==} + engines: {node: '>=10', yarn: ^1.22.4} + dependencies: + lcid: 3.1.1 + + /p-limit@1.3.0: + resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} + engines: {node: '>=4'} + dependencies: + p-try: 1.0.0 + dev: true + + /p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + dependencies: + p-try: 2.2.0 + dev: true + + /p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + dependencies: + yocto-queue: 0.1.0 + dev: true + + /p-locate@2.0.0: + resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} + engines: {node: '>=4'} + dependencies: + p-limit: 1.3.0 + dev: true + + /p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + dependencies: + p-limit: 2.3.0 + dev: true + + /p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + dependencies: + p-limit: 3.1.0 + dev: true + + /p-try@1.0.0: + resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} + engines: {node: '>=4'} + dev: true + + /p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + dev: true + + /parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + dependencies: + callsites: 3.1.0 + dev: true + + /parse-css-font@4.0.0: + resolution: {integrity: sha512-lnY7dTUfjRXsSo5G5C639L8RaBBaVSgL+5hacIFKsNHzeCJQ5SFSZv1DZmc7+wZv/22PFGOq2YbaEHLdaCS/mQ==} + dependencies: + css-font-size-keywords: 1.0.0 + css-font-stretch-keywords: 1.0.1 + css-font-style-keywords: 1.0.1 + css-font-weight-keywords: 1.0.0 + css-list-helpers: 2.0.0 + css-system-font-keywords: 1.0.0 + unquote: 1.1.1 + dev: false + + /parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + dependencies: + '@babel/code-frame': 7.18.6 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + dev: true + + /parse-node-version@1.0.1: + resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==} + engines: {node: '>= 0.10'} + + /parse5@7.1.2: + resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} + dependencies: + entities: 4.5.0 + dev: true + + /parseurl@1.3.3: + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} + engines: {node: '>= 0.8'} + dev: true + + /path-exists@3.0.0: + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} + engines: {node: '>=4'} + dev: true + + /path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + dev: true + + /path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + dev: true + + /path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + dev: true + + /path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + /path-to-regexp@0.1.7: + resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} + dev: true + + /path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + dev: true + + /pathe@0.3.9: + resolution: {integrity: sha512-6Y6s0vT112P3jD8dGfuS6r+lpa0qqNrLyHPOwvXMnyNTQaYiwgau2DP3aNDsR13xqtGj7rrPo+jFUATpU6/s+g==} + dev: true + + /pathval@1.1.1: + resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} + dev: true + + /perfect-debounce@0.1.3: + resolution: {integrity: sha512-NOT9AcKiDGpnV/HBhI22Str++XWcErO/bALvHCuhv33owZW/CjH8KAFLZDCmu3727sihe0wTxpDhyGc6M8qacQ==} + dev: true + + /picocolors@1.0.0: + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + + /picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + /pify@2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} + + /pify@4.0.1: + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} + requiresBuild: true + optional: true + + /pinia@2.0.35(typescript@4.7.4)(vue@3.2.45): + resolution: {integrity: sha512-P1IKKQWhxGXiiZ3atOaNI75bYlFUbRxtJdhPLX059Z7+b9Z04rnTZdSY8Aph1LA+/4QEMAYHsTQ638Wfe+6K5g==} + peerDependencies: + '@vue/composition-api': ^1.4.0 + typescript: '>=4.4.4' + vue: ^2.6.14 || ^3.2.0 + peerDependenciesMeta: + '@vue/composition-api': + optional: true + typescript: + optional: true + dependencies: + '@vue/devtools-api': 6.6.1 + typescript: 4.7.4 + vue: 3.2.45 + vue-demi: 0.14.7(vue@3.2.45) + dev: false + + /postcss-import@14.1.0(postcss@8.4.19): + resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} + engines: {node: '>=10.0.0'} + peerDependencies: + postcss: ^8.0.0 + dependencies: + postcss: 8.4.19 + postcss-value-parser: 4.2.0 + read-cache: 1.0.0 + resolve: 1.22.1 + + /postcss-load-config@3.1.4(postcss@8.4.19)(ts-node@10.9.1): + resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} + engines: {node: '>= 10'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + dependencies: + lilconfig: 2.0.5 + postcss: 8.4.19 + ts-node: 10.9.1(@types/node@17.0.45)(typescript@4.7.4) + yaml: 1.10.2 + + /postcss-modules-extract-imports@3.0.0(postcss@8.4.19): + resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + dependencies: + postcss: 8.4.19 + + /postcss-modules-local-by-default@4.0.0(postcss@8.4.19): + resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + dependencies: + icss-utils: 5.1.0(postcss@8.4.19) + postcss: 8.4.19 + postcss-selector-parser: 6.0.10 + postcss-value-parser: 4.2.0 + + /postcss-modules-scope@3.0.0(postcss@8.4.19): + resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + dependencies: + postcss: 8.4.19 + postcss-selector-parser: 6.0.10 + + /postcss-modules-values@4.0.0(postcss@8.4.19): + resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} + engines: {node: ^10 || ^12 || >= 14} + peerDependencies: + postcss: ^8.1.0 + dependencies: + icss-utils: 5.1.0(postcss@8.4.19) + postcss: 8.4.19 + + /postcss-modules@4.3.1(postcss@8.4.19): + resolution: {integrity: sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q==} + peerDependencies: + postcss: ^8.0.0 + dependencies: + generic-names: 4.0.0 + icss-replace-symbols: 1.1.0 + lodash.camelcase: 4.3.0 + postcss: 8.4.19 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.19) + postcss-modules-local-by-default: 4.0.0(postcss@8.4.19) + postcss-modules-scope: 3.0.0(postcss@8.4.19) + postcss-modules-values: 4.0.0(postcss@8.4.19) + string-hash: 1.1.3 + + /postcss-selector-parser@6.0.10: + resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==} + engines: {node: '>=4'} + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + + /postcss-value-parser@4.2.0: + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + + /postcss@8.4.19: + resolution: {integrity: sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: 3.3.4 + picocolors: 1.0.0 + source-map-js: 1.0.2 + + /prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + dev: true + + /prettier-linter-helpers@1.0.0: + resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} + engines: {node: '>=6.0.0'} + dependencies: + fast-diff: 1.2.0 + dev: true + + /prettier@2.7.1: + resolution: {integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==} + engines: {node: '>=10.13.0'} + hasBin: true + dev: true + + /proxy-addr@2.0.7: + resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} + engines: {node: '>= 0.10'} + dependencies: + forwarded: 0.2.0 + ipaddr.js: 1.9.1 + dev: true + + /prr@1.0.1: + resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} + requiresBuild: true + optional: true + + /psl@1.9.0: + resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + dev: true + + /punycode@2.1.1: + resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} + engines: {node: '>=6'} + dev: true + + /punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + dev: true + + /q@1.5.1: + resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} + engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + dev: true + + /qrcode-reader@1.0.4: + resolution: {integrity: sha512-rRjALGNh9zVqvweg1j5OKIQKNsw3bLC+7qwlnead5K/9cb1cEIAGkwikt/09U0K+2IDWGD9CC6SP7tHAjUeqvQ==} + dev: true + + /qrcode-terminal@0.12.0: + resolution: {integrity: sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ==} + hasBin: true + dev: true + + /qs@6.10.3: + resolution: {integrity: sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==} + engines: {node: '>=0.6'} + dependencies: + side-channel: 1.0.4 + dev: true + + /querystringify@2.2.0: + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + dev: true + + /queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + /quick-lru@4.0.1: + resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} + engines: {node: '>=8'} + dev: true + + /range-parser@1.2.1: + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} + engines: {node: '>= 0.6'} + dev: true + + /raw-body@2.5.1: + resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==} + engines: {node: '>= 0.8'} + dependencies: + bytes: 3.1.2 + http-errors: 2.0.0 + iconv-lite: 0.4.24 + unpipe: 1.0.0 + dev: true + + /read-cache@1.0.0: + resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + dependencies: + pify: 2.3.0 + + /read-pkg-up@7.0.1: + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} + dependencies: + find-up: 4.1.0 + read-pkg: 5.2.0 + type-fest: 0.8.1 + dev: true + + /read-pkg@5.2.0: + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} + dependencies: + '@types/normalize-package-data': 2.4.1 + normalize-package-data: 2.5.0 + parse-json: 5.2.0 + type-fest: 0.6.0 + dev: true + + /readable-stream@3.6.0: + resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==} + engines: {node: '>= 6'} + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + dev: true + + /readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + dependencies: + picomatch: 2.3.1 + + /redent@3.0.0: + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} + dependencies: + indent-string: 4.0.0 + strip-indent: 3.0.0 + dev: true + + /regenerator-runtime@0.13.10: + resolution: {integrity: sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==} + dev: true + + /regexp.prototype.flags@1.4.3: + resolution: {integrity: sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + functions-have-names: 1.2.3 + dev: true + + /regexpp@3.2.0: + resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} + engines: {node: '>=8'} + dev: true + + /require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + dev: true + + /require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + dev: true + + /requires-port@1.0.0: + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + dev: true + + /resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + dev: true + + /resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + dev: true + + /resolve-global@1.0.0: + resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==} + engines: {node: '>=8'} + dependencies: + global-dirs: 0.1.1 + dev: true + + /resolve@1.22.1: + resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==} + hasBin: true + dependencies: + is-core-module: 2.9.0 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + /reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + /rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + hasBin: true + dependencies: + glob: 7.2.3 + dev: true + + /rollup@2.75.7: + resolution: {integrity: sha512-VSE1iy0eaAYNCxEXaleThdFXqZJ42qDBatAwrfnPlENEZ8erQ+0LYX4JXOLPceWfZpV1VtZwZ3dFCuOZiSyFtQ==} + engines: {node: '>=10.0.0'} + hasBin: true + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /rollup@2.79.1: + resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} + engines: {node: '>=10.0.0'} + hasBin: true + optionalDependencies: + fsevents: 2.3.2 + + /rrweb-cssom@0.6.0: + resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==} + dev: true + + /run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + dependencies: + queue-microtask: 1.2.3 + + /safe-area-insets@1.4.1: + resolution: {integrity: sha512-r/nRWTjFGhhm3w1Z6Kd/jY11srN+lHt2mNl1E/emQGW8ic7n3Avu4noibklfSM+Y34peNphHD/BSZecav0sXYQ==} + dev: false + + /safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + + /safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + dev: true + + /safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + /sass@1.53.0: + resolution: {integrity: sha512-zb/oMirbKhUgRQ0/GFz8TSAwRq2IlR29vOUJZOx0l8sV+CkHUfHa4u5nqrG+1VceZp7Jfj59SVW9ogdhTvJDcQ==} + engines: {node: '>=12.0.0'} + hasBin: true + dependencies: + chokidar: 3.5.3 + immutable: 4.1.0 + source-map-js: 1.0.2 + + /sax@1.2.4: + resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} + requiresBuild: true + optional: true + + /saxes@6.0.0: + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} + dependencies: + xmlchars: 2.2.0 + dev: true + + /semver@5.7.1: + resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} + hasBin: true + + /semver@6.3.0: + resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} + hasBin: true + + /semver@7.3.7: + resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: true + + /semver@7.3.8: + resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: true + + /send@0.18.0: + resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} + engines: {node: '>= 0.8.0'} + dependencies: + debug: 2.6.9 + depd: 2.0.0 + destroy: 1.2.0 + encodeurl: 1.0.2 + escape-html: 1.0.3 + etag: 1.8.1 + fresh: 0.5.2 + http-errors: 2.0.0 + mime: 1.6.0 + ms: 2.1.3 + on-finished: 2.4.1 + range-parser: 1.2.1 + statuses: 2.0.1 + transitivePeerDependencies: + - supports-color + dev: true + + /serve-static@1.15.0: + resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} + engines: {node: '>= 0.8.0'} + dependencies: + encodeurl: 1.0.2 + escape-html: 1.0.3 + parseurl: 1.3.3 + send: 0.18.0 + transitivePeerDependencies: + - supports-color + dev: true + + /setprototypeof@1.2.0: + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + dev: true + + /shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + dependencies: + shebang-regex: 3.0.0 + dev: true + + /shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + dev: true + + /side-channel@1.0.4: + resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.2 + object-inspect: 1.12.2 + dev: true + + /signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + dev: true + + /simple-git-hooks@2.8.1: + resolution: {integrity: sha512-DYpcVR1AGtSfFUNzlBdHrQGPsOhuuEJ/FkmPOOlFysP60AHd3nsEpkGq/QEOdtUyT1Qhk7w9oLmFoMG+75BDog==} + hasBin: true + requiresBuild: true + dev: true + + /sirv@2.0.2: + resolution: {integrity: sha512-4Qog6aE29nIjAOKe/wowFTxOdmbEZKb+3tsLljaBRzJwtqto0BChD2zzH0LhgCSXiI+V7X+Y45v14wBZQ1TK3w==} + engines: {node: '>= 10'} + dependencies: + '@polka/url': 1.0.0-next.21 + mrmime: 1.0.1 + totalist: 3.0.0 + dev: true + + /slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + dev: true + + /source-map-js@1.0.2: + resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} + engines: {node: '>=0.10.0'} + + /source-map-support@0.5.21: + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + + /source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + + /sourcemap-codec@1.4.8: + resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} + + /spdx-correct@3.1.1: + resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==} + dependencies: + spdx-expression-parse: 3.0.1 + spdx-license-ids: 3.0.12 + dev: true + + /spdx-exceptions@2.3.0: + resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} + dev: true + + /spdx-expression-parse@3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + dependencies: + spdx-exceptions: 2.3.0 + spdx-license-ids: 3.0.12 + dev: true + + /spdx-license-ids@3.0.12: + resolution: {integrity: sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==} + dev: true + + /split2@3.2.2: + resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} + dependencies: + readable-stream: 3.6.0 + dev: true + + /statuses@2.0.1: + resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} + engines: {node: '>= 0.8'} + dev: true + + /streamsearch@1.1.0: + resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} + engines: {node: '>=10.0.0'} + dev: true + + /string-hash@1.1.3: + resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==} + + /string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + dev: true + + /string.prototype.trimend@1.0.5: + resolution: {integrity: sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + dev: true + + /string.prototype.trimstart@1.0.5: + resolution: {integrity: sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 + dev: true + + /string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + dependencies: + safe-buffer: 5.2.1 + dev: true + + /strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + dependencies: + ansi-regex: 5.0.1 + dev: true + + /strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + dev: true + + /strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + dev: true + + /strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + dependencies: + min-indent: 1.0.1 + dev: true + + /strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + dev: true + + /supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + dependencies: + has-flag: 3.0.0 + + /supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + dependencies: + has-flag: 4.0.0 + dev: true + + /supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + /svg-tags@1.0.0: + resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==} + dev: true + + /symbol-tree@3.2.4: + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + dev: true + + /systemjs@6.13.0: + resolution: {integrity: sha512-P3cgh2bpaPvAO2NE3uRp/n6hmk4xPX4DQf+UzTlCAycssKdqhp6hjw+ENWe+aUS7TogKRFtptMosTSFeC6R55g==} + dev: true + + /tapable@2.2.1: + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} + engines: {node: '>=6'} + + /terser@5.15.1: + resolution: {integrity: sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==} + engines: {node: '>=10'} + hasBin: true + dependencies: + '@jridgewell/source-map': 0.3.2 + acorn: 8.8.1 + commander: 2.20.3 + source-map-support: 0.5.21 + + /test-exclude@6.0.0: + resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} + engines: {node: '>=8'} + dependencies: + '@istanbuljs/schema': 0.1.3 + glob: 7.2.3 + minimatch: 3.1.2 + dev: true + + /text-extensions@1.9.0: + resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} + engines: {node: '>=0.10'} + dev: true + + /text-table@0.2.0: + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + dev: true + + /through2@4.0.2: + resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} + dependencies: + readable-stream: 3.6.0 + dev: true + + /through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + dev: true + + /tinypool@0.2.1: + resolution: {integrity: sha512-HFU5ZYVq3wBfhSaf8qdqGsneaqXm0FgJQpoUlJbVdHpRLzm77IneKAD3RjzJWZvIv0YpPB9S7LUW53f6BE6ZSg==} + engines: {node: '>=14.0.0'} + dev: true + + /tinyspy@0.3.3: + resolution: {integrity: sha512-gRiUR8fuhUf0W9lzojPf1N1euJYA30ISebSfgca8z76FOvXtVXqd5ojEIaKLWbDQhAaC3ibxZIjqbyi4ybjcTw==} + engines: {node: '>=14.0.0'} + dev: true + + /to-fast-properties@2.0.0: + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} + + /to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + dependencies: + is-number: 7.0.0 + + /toidentifier@1.0.1: + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} + engines: {node: '>=0.6'} + dev: true + + /totalist@3.0.0: + resolution: {integrity: sha512-eM+pCBxXO/njtF7vdFsHuqb+ElbxqtI4r5EAvk6grfAFyJ6IvWlSkfZ5T9ozC6xWw3Fj1fGoSmrl0gUs46JVIw==} + engines: {node: '>=6'} + dev: true + + /tough-cookie@4.1.3: + resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==} + engines: {node: '>=6'} + dependencies: + psl: 1.9.0 + punycode: 2.1.1 + universalify: 0.2.0 + url-parse: 1.5.10 + dev: true + + /tr46@5.0.0: + resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==} + engines: {node: '>=18'} + dependencies: + punycode: 2.3.1 + dev: true + + /trim-newlines@3.0.1: + resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} + engines: {node: '>=8'} + dev: true + + /ts-node@10.9.1(@types/node@17.0.45)(typescript@4.7.4): + resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.9 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.3 + '@types/node': 17.0.45 + acorn: 8.8.1 + acorn-walk: 8.2.0 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 4.7.4 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + + /tsconfig-paths@3.14.1: + resolution: {integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==} + dependencies: + '@types/json5': 0.0.29 + json5: 1.0.1 + minimist: 1.2.6 + strip-bom: 3.0.0 + dev: true + + /tslib@1.14.1: + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + dev: true + + /tslib@2.4.0: + resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} + + /tsutils@3.21.0(typescript@4.7.4): + resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} + engines: {node: '>= 6'} + peerDependencies: + typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' + dependencies: + tslib: 1.14.1 + typescript: 4.7.4 + dev: true + + /type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.2.1 + dev: true + + /type-detect@4.0.8: + resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} + engines: {node: '>=4'} + dev: true + + /type-fest@0.18.1: + resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} + engines: {node: '>=10'} + dev: true + + /type-fest@0.20.2: + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} + dev: true + + /type-fest@0.6.0: + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} + dev: true + + /type-fest@0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} + dev: true + + /type-is@1.6.18: + resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} + engines: {node: '>= 0.6'} + dependencies: + media-typer: 0.3.0 + mime-types: 2.1.35 + dev: true + + /typescript@4.7.4: + resolution: {integrity: sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==} + engines: {node: '>=4.2.0'} + hasBin: true + + /ufo@0.8.6: + resolution: {integrity: sha512-fk6CmUgwKCfX79EzcDQQpSCMxrHstvbLswFChHS0Vump+kFkw7nJBfTZoC1j0bOGoY9I7R3n2DGek5ajbcYnOw==} + dev: true + + /unbox-primitive@1.0.2: + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + dependencies: + call-bind: 1.0.2 + has-bigints: 1.0.2 + has-symbols: 1.0.3 + which-boxed-primitive: 1.0.2 + dev: true + + /unconfig@0.3.7: + resolution: {integrity: sha512-1589b7oGa8ILBYpta7TndM5mLHLzHUqBfhszeZxuUBrjO/RoQ52VGVWsS3w0C0GLNxO9RPmqkf6BmIvBApaRdA==} + dependencies: + '@antfu/utils': 0.5.2 + defu: 6.1.0 + jiti: 1.16.0 + dev: true + + /undici@5.12.0: + resolution: {integrity: sha512-zMLamCG62PGjd9HHMpo05bSLvvwWOZgGeiWlN/vlqu3+lRo3elxktVGEyLMX+IO7c2eflLjcW74AlkhEZm15mg==} + engines: {node: '>=12.18'} + dependencies: + busboy: 1.6.0 + dev: true + + /universalify@0.2.0: + resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} + engines: {node: '>= 4.0.0'} + dev: true + + /universalify@2.0.0: + resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} + engines: {node: '>= 10.0.0'} + + /unocss-preset-weapp@0.2.1: + resolution: {integrity: sha512-uJlfTJ5WBnA1tqVuIQ7XcGauX3FNLD6fqbYf79grN6O3cfCi8wkAxddbybQIgPkDDRplpCvs6tdO1/l6YJgSvg==} + dependencies: + '@rollup/pluginutils': 5.0.2 + '@unocss/core': 0.46.4 + unplugin-attributify-to-class: 0.2.0 + unplugin-transform-class: 0.2.0 + transitivePeerDependencies: + - rollup + dev: true + + /unocss@0.46.4(vite@3.2.3): + resolution: {integrity: sha512-fm+t0p/Sni32s9yxn4JC1nEAHOrjo8vYR0+Wwxnbtu+vYPef/562EFAu2qoagZRRU7pVab1L0EiivcFHlcErGA==} + engines: {node: '>=14'} + peerDependencies: + '@unocss/webpack': 0.46.4 + peerDependenciesMeta: + '@unocss/webpack': + optional: true + dependencies: + '@unocss/astro': 0.46.4(vite@3.2.3) + '@unocss/cli': 0.46.4 + '@unocss/core': 0.46.4 + '@unocss/preset-attributify': 0.46.4 + '@unocss/preset-icons': 0.46.4 + '@unocss/preset-mini': 0.46.4 + '@unocss/preset-tagify': 0.46.4 + '@unocss/preset-typography': 0.46.4 + '@unocss/preset-uno': 0.46.4 + '@unocss/preset-web-fonts': 0.46.4 + '@unocss/preset-wind': 0.46.4 + '@unocss/reset': 0.46.4 + '@unocss/transformer-attributify-jsx': 0.46.4 + '@unocss/transformer-compile-class': 0.46.4 + '@unocss/transformer-directives': 0.46.4 + '@unocss/transformer-variant-group': 0.46.4 + '@unocss/vite': 0.46.4(vite@3.2.3) + transitivePeerDependencies: + - rollup + - supports-color + - vite + dev: true + + /unpipe@1.0.0: + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + engines: {node: '>= 0.8'} + dev: true + + /unplugin-attributify-to-class@0.2.0: + resolution: {integrity: sha512-vvF2jn17E2wl/Sf6htC3EZ9kyW3xaX4APz2fgyvyi620CyhFVJotUFj7xGEk02MXr36u7ylK3PHkgpJxS5lsvA==} + dependencies: + '@rollup/pluginutils': 5.0.2 + unplugin: 0.10.2 + unplugin-transform-class: 0.2.0 + transitivePeerDependencies: + - rollup + dev: true + + /unplugin-transform-class@0.2.0: + resolution: {integrity: sha512-ReppJAAy4K9Iga66PGYci5S/Jodqm05WgiDoNpAfJn2bqE/X2mWwFIqNsHWWXsFGPDIzbaFHQvIGVIcHAixQrg==} + dependencies: + '@meoc/utils': 0.1.9 + '@rollup/pluginutils': 5.0.2 + unplugin: 0.10.2 + transitivePeerDependencies: + - rollup + dev: true + + /unplugin@0.10.2: + resolution: {integrity: sha512-6rk7GUa4ICYjae5PrAllvcDeuT8pA9+j5J5EkxbMFaV+SalHhxZ7X2dohMzu6C3XzsMT+6jwR/+pwPNR3uK9MA==} + dependencies: + acorn: 8.8.1 + chokidar: 3.5.3 + webpack-sources: 3.2.3 + webpack-virtual-modules: 0.4.6 + dev: true + + /unquote@1.1.1: + resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==} + dev: false + + /update-browserslist-db@1.0.10(browserslist@4.21.4): + resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + dependencies: + browserslist: 4.21.4 + escalade: 3.1.1 + picocolors: 1.0.0 + + /uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + dependencies: + punycode: 2.1.1 + dev: true + + /url-parse@1.5.10: + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + dependencies: + querystringify: 2.2.0 + requires-port: 1.0.0 + dev: true + + /util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + /utils-merge@1.0.1: + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + engines: {node: '>= 0.4.0'} + dev: true + + /v8-compile-cache-lib@3.0.1: + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} + + /v8-compile-cache@2.3.0: + resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} + dev: true + + /v8-to-istanbul@9.0.1: + resolution: {integrity: sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w==} + engines: {node: '>=10.12.0'} + dependencies: + '@jridgewell/trace-mapping': 0.3.14 + '@types/istanbul-lib-coverage': 2.0.4 + convert-source-map: 1.8.0 + dev: true + + /validate-npm-package-license@3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + dependencies: + spdx-correct: 3.1.1 + spdx-expression-parse: 3.0.1 + dev: true + + /vary@1.1.2: + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} + engines: {node: '>= 0.8'} + dev: true + + /vite-plugin-eslint@1.6.1(eslint@8.19.0)(vite@3.2.3): + resolution: {integrity: sha512-wXwGJ222zjlllHmmPXX6oSU8DbmYjnA6HHBYbOLT8WAc73j4/YAtBQHCVSoHOTPiT4TPzsuZSvputWwc86BweQ==} + peerDependencies: + eslint: '>=7' + vite: ^2.0.0 + dependencies: + '@rollup/pluginutils': 4.2.1 + '@types/eslint': 8.4.5 + eslint: 8.19.0 + rollup: 2.75.7 + vite: 3.2.3(@types/node@17.0.45)(less@4.1.3)(sass@1.53.0)(terser@5.15.1) + dev: true + + /vite@2.9.14(less@4.1.3)(sass@1.53.0): + resolution: {integrity: sha512-P/UCjSpSMcE54r4mPak55hWAZPlyfS369svib/gpmz8/01L822lMPOJ/RYW6tLCe1RPvMvOsJ17erf55bKp4Hw==} + engines: {node: '>=12.2.0'} + hasBin: true + peerDependencies: + less: '*' + sass: '*' + stylus: '*' + peerDependenciesMeta: + less: + optional: true + sass: + optional: true + stylus: + optional: true + dependencies: + esbuild: 0.14.48 + less: 4.1.3 + postcss: 8.4.19 + resolve: 1.22.1 + rollup: 2.75.7 + sass: 1.53.0 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /vite@3.2.3(@types/node@17.0.45)(less@4.1.3)(sass@1.53.0)(terser@5.15.1): + resolution: {integrity: sha512-h8jl1TZ76eGs3o2dIBSsvXDLb1m/Ec1iej8ZMdz+PsaFUsftZeWe2CZOI3qogEsMNaywc17gu0q6cQDzh/weCQ==} + engines: {node: ^14.18.0 || >=16.0.0} + hasBin: true + peerDependencies: + '@types/node': '>= 14' + less: '*' + sass: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + dependencies: + '@types/node': 17.0.45 + esbuild: 0.15.13 + less: 4.1.3 + postcss: 8.4.19 + resolve: 1.22.1 + rollup: 2.79.1 + sass: 1.53.0 + terser: 5.15.1 + optionalDependencies: + fsevents: 2.3.2 + + /vitest@0.16.0(@vitest/ui@0.10.5)(c8@7.11.3)(jsdom@24.0.0)(less@4.1.3)(sass@1.53.0): + resolution: {integrity: sha512-Ntp6jrM8wf2NMtamMBLkRBBdeqHkgAH/WMh5Xryts1j2ft2D8QZQbiSVFkSl4WmEQzcPP0YM069g/Ga1vtnEtg==} + engines: {node: '>=v14.16.0'} + hasBin: true + peerDependencies: + '@vitest/ui': '*' + c8: '*' + happy-dom: '*' + jsdom: '*' + peerDependenciesMeta: + '@vitest/ui': + optional: true + c8: + optional: true + happy-dom: + optional: true + jsdom: + optional: true + dependencies: + '@types/chai': 4.3.1 + '@types/chai-subset': 1.3.3 + '@types/node': 17.0.45 + '@vitest/ui': 0.10.5 + c8: 7.11.3 + chai: 4.3.6 + debug: 4.3.4 + jsdom: 24.0.0 + local-pkg: 0.4.1 + tinypool: 0.2.1 + tinyspy: 0.3.3 + vite: 2.9.14(less@4.1.3)(sass@1.53.0) + transitivePeerDependencies: + - less + - sass + - stylus + - supports-color + dev: true + + /vk-uview-ui@1.3.7: + resolution: {integrity: sha512-u25eKVyPxlZCj4CAYwWH5L32JvrMJtpIQiyhdK/4/jHTnmCrrrj2bjAHAoZ0GzBBXYGoonj3ZgnFzzeysh/3ww==} + engines: {HBuilderX: ^3.1.0} + dev: false + + /vue-demi@0.14.7(vue@3.2.45): + resolution: {integrity: sha512-EOG8KXDQNwkJILkx/gPcoL/7vH+hORoBaKgGe+6W7VFMvCYJfmF2dGbvgDroVnI8LU7/kTu8mbjRZGBU1z9NTA==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + peerDependencies: + '@vue/composition-api': ^1.0.0-rc.1 + vue: ^3.0.0-0 || ^2.6.0 + peerDependenciesMeta: + '@vue/composition-api': + optional: true + dependencies: + vue: 3.2.45 + dev: false + + /vue-eslint-parser@9.0.3(eslint@8.19.0): + resolution: {integrity: sha512-yL+ZDb+9T0ELG4VIFo/2anAOz8SvBdlqEnQnvJ3M7Scq56DvtjY0VY88bByRZB0D4J0u8olBcfrXTVONXsh4og==} + engines: {node: ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '>=6.0.0' + dependencies: + debug: 4.3.4 + eslint: 8.19.0 + eslint-scope: 7.1.1 + eslint-visitor-keys: 3.3.0 + espree: 9.3.2 + esquery: 1.4.0 + lodash: 4.17.21 + semver: 7.3.7 + transitivePeerDependencies: + - supports-color + dev: true + + /vue-i18n@9.1.10(vue@3.2.45): + resolution: {integrity: sha512-jpr7gV5KPk4n+sSPdpZT8Qx3XzTcNDWffRlHV/cT2NUyEf+sEgTTmLvnBAibjOFJ0zsUyZlVTAWH5DDnYep+1g==} + engines: {node: '>= 10'} + peerDependencies: + vue: ^3.0.0 + dependencies: + '@intlify/core-base': 9.1.10 + '@intlify/shared': 9.1.10 + '@intlify/vue-devtools': 9.1.10 + '@vue/devtools-api': 6.2.0 + vue: 3.2.45 + dev: false + + /vue-router@4.1.6(vue@3.2.45): + resolution: {integrity: sha512-DYWYwsG6xNPmLq/FmZn8Ip+qrhFEzA14EI12MsMgVxvHFDYvlr4NXpVF5hrRH1wVcDP8fGi5F4rxuJSl8/r+EQ==} + peerDependencies: + vue: ^3.2.0 + dependencies: + '@vue/devtools-api': 6.4.5 + vue: 3.2.45 + dev: false + + /vue@3.2.45: + resolution: {integrity: sha512-9Nx/Mg2b2xWlXykmCwiTUCWHbWIj53bnkizBxKai1g61f2Xit700A1ljowpTIM11e3uipOeiPcSqnmBg6gyiaA==} + dependencies: + '@vue/compiler-dom': 3.2.45 + '@vue/compiler-sfc': 3.2.45 + '@vue/runtime-dom': 3.2.45 + '@vue/server-renderer': 3.2.45(vue@3.2.45) + '@vue/shared': 3.2.45 + + /vuex@4.0.2(vue@3.2.45): + resolution: {integrity: sha512-M6r8uxELjZIK8kTKDGgZTYX/ahzblnzC4isU1tpmEuOIIKmV+TRdc+H4s8ds2NuZ7wpUTdGRzJRtoj+lI+pc0Q==} + peerDependencies: + vue: ^3.0.2 + dependencies: + '@vue/devtools-api': 6.2.0 + vue: 3.2.45 + dev: false + + /w3c-xmlserializer@5.0.0: + resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==} + engines: {node: '>=18'} + dependencies: + xml-name-validator: 5.0.0 + dev: true + + /webidl-conversions@7.0.0: + resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + engines: {node: '>=12'} + dev: true + + /webpack-sources@3.2.3: + resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} + engines: {node: '>=10.13.0'} + dev: true + + /webpack-virtual-modules@0.4.6: + resolution: {integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==} + dev: true + + /whatwg-encoding@3.1.1: + resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} + engines: {node: '>=18'} + dependencies: + iconv-lite: 0.6.3 + dev: true + + /whatwg-mimetype@4.0.0: + resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} + engines: {node: '>=18'} + dev: true + + /whatwg-url@14.0.0: + resolution: {integrity: sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==} + engines: {node: '>=18'} + dependencies: + tr46: 5.0.0 + webidl-conversions: 7.0.0 + dev: true + + /which-boxed-primitive@1.0.2: + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + dependencies: + is-bigint: 1.0.4 + is-boolean-object: 1.1.2 + is-number-object: 1.0.7 + is-string: 1.0.7 + is-symbol: 1.0.4 + dev: true + + /which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /word-wrap@1.2.3: + resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} + engines: {node: '>=0.10.0'} + dev: true + + /wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + dev: true + + /ws@8.16.0: + resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + dev: true + + /ws@8.8.0: + resolution: {integrity: sha512-JDAgSYQ1ksuwqfChJusw1LSJ8BizJ2e/vVu5Lxjq3YvNJNlROv1ui4i+c/kUUrPheBvQl4c5UbERhTwKa6QBJQ==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + dev: true + + /xml-name-validator@4.0.0: + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + engines: {node: '>=12'} + dev: true + + /xml-name-validator@5.0.0: + resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==} + engines: {node: '>=18'} + dev: true + + /xmlchars@2.2.0: + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + dev: true + + /xmlhttprequest@1.8.0: + resolution: {integrity: sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==} + engines: {node: '>=0.4.0'} + dev: false + + /xregexp@3.1.0: + resolution: {integrity: sha512-4Y1x6DyB8xRoxosooa6PlGWqmmSKatbzhrftZ7Purmm4B8R4qIEJG1A2hZsdz5DhmIqS0msC0I7KEq93GphEVg==} + + /y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + dev: true + + /yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + dev: true + + /yaml@1.10.2: + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} + + /yargs-parser@20.2.9: + resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} + engines: {node: '>=10'} + dev: true + + /yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + dev: true + + /yargs@16.2.0: + resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} + engines: {node: '>=10'} + dependencies: + cliui: 7.0.4 + escalade: 3.1.1 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 20.2.9 + dev: true + + /yargs@17.6.2: + resolution: {integrity: sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==} + engines: {node: '>=12'} + dependencies: + cliui: 8.0.1 + escalade: 3.1.1 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 + dev: true + + /yn@3.1.1: + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} + + /yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + dev: true diff --git a/App.vue b/src/App.vue similarity index 100% rename from App.vue rename to src/App.vue diff --git a/api/http.ts b/src/api/http.ts similarity index 100% rename from api/http.ts rename to src/api/http.ts diff --git a/api/login.js b/src/api/login.js similarity index 100% rename from api/login.js rename to src/api/login.js diff --git a/api/request2.js b/src/api/request2.js similarity index 100% rename from api/request2.js rename to src/api/request2.js diff --git a/common/appUpdate.js b/src/common/appUpdate.js similarity index 100% rename from common/appUpdate.js rename to src/common/appUpdate.js diff --git a/common/array.js b/src/common/array.js similarity index 100% rename from common/array.js rename to src/common/array.js diff --git a/common/balance.js b/src/common/balance.js similarity index 100% rename from common/balance.js rename to src/common/balance.js diff --git a/common/basic.js b/src/common/basic.js similarity index 100% rename from common/basic.js rename to src/common/basic.js diff --git a/common/calc.js b/src/common/calc.js similarity index 100% rename from common/calc.js rename to src/common/calc.js diff --git a/common/detail.js b/src/common/detail.js similarity index 100% rename from common/detail.js rename to src/common/detail.js diff --git a/common/directory.js b/src/common/directory.js similarity index 100% rename from common/directory.js rename to src/common/directory.js diff --git a/common/label.js b/src/common/label.js similarity index 100% rename from common/label.js rename to src/common/label.js diff --git a/common/record.js b/src/common/record.js similarity index 100% rename from common/record.js rename to src/common/record.js diff --git a/common/style/PDA_style-delete.css b/src/common/style/PDA_style-delete.css similarity index 100% rename from common/style/PDA_style-delete.css rename to src/common/style/PDA_style-delete.css diff --git a/common/style/new_style.css b/src/common/style/new_style.css similarity index 100% rename from common/style/new_style.css rename to src/common/style/new_style.css diff --git a/common/style/pdabasic.css b/src/common/style/pdabasic.css similarity index 100% rename from common/style/pdabasic.css rename to src/common/style/pdabasic.css diff --git a/common/style/uni.css b/src/common/style/uni.css similarity index 100% rename from common/style/uni.css rename to src/common/style/uni.css diff --git a/common/utils/auth.js b/src/common/utils/auth.js similarity index 100% rename from common/utils/auth.js rename to src/common/utils/auth.js diff --git a/common/utils/common.js b/src/common/utils/common.js similarity index 100% rename from common/utils/common.js rename to src/common/utils/common.js diff --git a/common/utils/constant.js b/src/common/utils/constant.js similarity index 100% rename from common/utils/constant.js rename to src/common/utils/constant.js diff --git a/common/utils/errorCode.js b/src/common/utils/errorCode.js similarity index 100% rename from common/utils/errorCode.js rename to src/common/utils/errorCode.js diff --git a/common/utils/permission.js b/src/common/utils/permission.js similarity index 100% rename from common/utils/permission.js rename to src/common/utils/permission.js diff --git a/common/utils/ruoyi.js b/src/common/utils/ruoyi.js similarity index 100% rename from common/utils/ruoyi.js rename to src/common/utils/ruoyi.js diff --git a/common/utils/storage.js b/src/common/utils/storage.js similarity index 100% rename from common/utils/storage.js rename to src/common/utils/storage.js diff --git a/components/amap-wx/js/util.js b/src/components/amap-wx/js/util.js similarity index 100% rename from components/amap-wx/js/util.js rename to src/components/amap-wx/js/util.js diff --git a/components/amap-wx/lib/amap-wx.js b/src/components/amap-wx/lib/amap-wx.js similarity index 100% rename from components/amap-wx/lib/amap-wx.js rename to src/components/amap-wx/lib/amap-wx.js diff --git a/components/custom-nomore/custom-nomore.vue b/src/components/custom-nomore/custom-nomore.vue similarity index 100% rename from components/custom-nomore/custom-nomore.vue rename to src/components/custom-nomore/custom-nomore.vue diff --git a/components/custom-refresher/custom-refresher.vue b/src/components/custom-refresher/custom-refresher.vue similarity index 100% rename from components/custom-refresher/custom-refresher.vue rename to src/components/custom-refresher/custom-refresher.vue diff --git a/components/marked/index.js b/src/components/marked/index.js similarity index 100% rename from components/marked/index.js rename to src/components/marked/index.js diff --git a/components/marked/lib/marked.js b/src/components/marked/lib/marked.js similarity index 100% rename from components/marked/lib/marked.js rename to src/components/marked/lib/marked.js diff --git a/components/mpvue-citypicker/city-data/area.js b/src/components/mpvue-citypicker/city-data/area.js similarity index 100% rename from components/mpvue-citypicker/city-data/area.js rename to src/components/mpvue-citypicker/city-data/area.js diff --git a/components/mpvue-citypicker/city-data/city.js b/src/components/mpvue-citypicker/city-data/city.js similarity index 100% rename from components/mpvue-citypicker/city-data/city.js rename to src/components/mpvue-citypicker/city-data/city.js diff --git a/components/mpvue-citypicker/city-data/province.js b/src/components/mpvue-citypicker/city-data/province.js similarity index 100% rename from components/mpvue-citypicker/city-data/province.js rename to src/components/mpvue-citypicker/city-data/province.js diff --git a/components/mpvue-citypicker/mpvueCityPicker.vue b/src/components/mpvue-citypicker/mpvueCityPicker.vue similarity index 100% rename from components/mpvue-citypicker/mpvueCityPicker.vue rename to src/components/mpvue-citypicker/mpvueCityPicker.vue diff --git a/components/mpvue-echarts/src/echarts.vue b/src/components/mpvue-echarts/src/echarts.vue similarity index 100% rename from components/mpvue-echarts/src/echarts.vue rename to src/components/mpvue-echarts/src/echarts.vue diff --git a/components/mpvue-echarts/src/wx-canvas.js b/src/components/mpvue-echarts/src/wx-canvas.js similarity index 100% rename from components/mpvue-echarts/src/wx-canvas.js rename to src/components/mpvue-echarts/src/wx-canvas.js diff --git a/components/mpvue-picker/mpvuePicker.vue b/src/components/mpvue-picker/mpvuePicker.vue similarity index 100% rename from components/mpvue-picker/mpvuePicker.vue rename to src/components/mpvue-picker/mpvuePicker.vue diff --git a/components/mpvueGestureLock/gestureLock.js b/src/components/mpvueGestureLock/gestureLock.js similarity index 100% rename from components/mpvueGestureLock/gestureLock.js rename to src/components/mpvueGestureLock/gestureLock.js diff --git a/components/mpvueGestureLock/index.vue b/src/components/mpvueGestureLock/index.vue similarity index 100% rename from components/mpvueGestureLock/index.vue rename to src/components/mpvueGestureLock/index.vue diff --git a/components/my-paging/my-paging.vue b/src/components/my-paging/my-paging.vue similarity index 100% rename from components/my-paging/my-paging.vue rename to src/components/my-paging/my-paging.vue diff --git a/components/page-foot/page-foot.vue b/src/components/page-foot/page-foot.vue similarity index 100% rename from components/page-foot/page-foot.vue rename to src/components/page-foot/page-foot.vue diff --git a/components/page-head/page-head.vue b/src/components/page-head/page-head.vue similarity index 100% rename from components/page-head/page-head.vue rename to src/components/page-head/page-head.vue diff --git a/components/pullDown/pullDown.vue b/src/components/pullDown/pullDown.vue similarity index 100% rename from components/pullDown/pullDown.vue rename to src/components/pullDown/pullDown.vue diff --git a/components/search/index.vue b/src/components/search/index.vue similarity index 100% rename from components/search/index.vue rename to src/components/search/index.vue diff --git a/components/show-modal/show-modal.vue b/src/components/show-modal/show-modal.vue similarity index 100% rename from components/show-modal/show-modal.vue rename to src/components/show-modal/show-modal.vue diff --git a/components/tab-nvue/mediaList.vue b/src/components/tab-nvue/mediaList.vue similarity index 100% rename from components/tab-nvue/mediaList.vue rename to src/components/tab-nvue/mediaList.vue diff --git a/components/u-charts/u-charts.js b/src/components/u-charts/u-charts.js similarity index 100% rename from components/u-charts/u-charts.js rename to src/components/u-charts/u-charts.js diff --git a/components/verifition/Verify.vue b/src/components/verifition/Verify.vue similarity index 100% rename from components/verifition/Verify.vue rename to src/components/verifition/Verify.vue diff --git a/components/verifition/utils/ase.js b/src/components/verifition/utils/ase.js similarity index 100% rename from components/verifition/utils/ase.js rename to src/components/verifition/utils/ase.js diff --git a/components/verifition/utils/request.js b/src/components/verifition/utils/request.js similarity index 100% rename from components/verifition/utils/request.js rename to src/components/verifition/utils/request.js diff --git a/components/verifition/verifyPoint/verifyPoint.vue b/src/components/verifition/verifyPoint/verifyPoint.vue similarity index 100% rename from components/verifition/verifyPoint/verifyPoint.vue rename to src/components/verifition/verifyPoint/verifyPoint.vue diff --git a/components/verifition/verifySlider/verifySlider.vue b/src/components/verifition/verifySlider/verifySlider.vue similarity index 100% rename from components/verifition/verifySlider/verifySlider.vue rename to src/components/verifition/verifySlider/verifySlider.vue diff --git a/env.d.ts b/src/env.d.ts similarity index 100% rename from env.d.ts rename to src/env.d.ts diff --git a/main.ts b/src/main.ts similarity index 100% rename from main.ts rename to src/main.ts diff --git a/manifest.json b/src/manifest.json similarity index 100% rename from manifest.json rename to src/manifest.json diff --git a/pages.json b/src/pages.json similarity index 100% rename from pages.json rename to src/pages.json diff --git a/pages/common/textview/index.vue b/src/pages/common/textview/index.vue similarity index 100% rename from pages/common/textview/index.vue rename to src/pages/common/textview/index.vue diff --git a/pages/common/webview/index.vue b/src/pages/common/webview/index.vue similarity index 100% rename from pages/common/webview/index.vue rename to src/pages/common/webview/index.vue diff --git a/pages/config/config.vue b/src/pages/config/config.vue similarity index 100% rename from pages/config/config.vue rename to src/pages/config/config.vue diff --git a/pages/container/coms/comContainerBindCard.vue b/src/pages/container/coms/comContainerBindCard.vue similarity index 100% rename from pages/container/coms/comContainerBindCard.vue rename to src/pages/container/coms/comContainerBindCard.vue diff --git a/pages/container/coms/comPalletRecord.vue b/src/pages/container/coms/comPalletRecord.vue similarity index 100% rename from pages/container/coms/comPalletRecord.vue rename to src/pages/container/coms/comPalletRecord.vue diff --git a/pages/container/record/containerBindRecord.vue b/src/pages/container/record/containerBindRecord.vue similarity index 100% rename from pages/container/record/containerBindRecord.vue rename to src/pages/container/record/containerBindRecord.vue diff --git a/pages/container/record/containerUnBindRecord.vue b/src/pages/container/record/containerUnBindRecord.vue similarity index 100% rename from pages/container/record/containerUnBindRecord.vue rename to src/pages/container/record/containerUnBindRecord.vue diff --git a/pages/count/coms/comCountDetailCard.vue b/src/pages/count/coms/comCountDetailCard.vue similarity index 100% rename from pages/count/coms/comCountDetailCard.vue rename to src/pages/count/coms/comCountDetailCard.vue diff --git a/pages/count/coms/comCountJobCard.vue b/src/pages/count/coms/comCountJobCard.vue similarity index 100% rename from pages/count/coms/comCountJobCard.vue rename to src/pages/count/coms/comCountJobCard.vue diff --git a/pages/count/coms/detailInfoPopup.vue b/src/pages/count/coms/detailInfoPopup.vue similarity index 100% rename from pages/count/coms/detailInfoPopup.vue rename to src/pages/count/coms/detailInfoPopup.vue diff --git a/pages/count/coms/jobInfoPopup.vue b/src/pages/count/coms/jobInfoPopup.vue similarity index 100% rename from pages/count/coms/jobInfoPopup.vue rename to src/pages/count/coms/jobInfoPopup.vue diff --git a/pages/count/coms/jobListPopup.vue b/src/pages/count/coms/jobListPopup.vue similarity index 100% rename from pages/count/coms/jobListPopup.vue rename to src/pages/count/coms/jobListPopup.vue diff --git a/pages/count/job/countDetail.vue b/src/pages/count/job/countDetail.vue similarity index 100% rename from pages/count/job/countDetail.vue rename to src/pages/count/job/countDetail.vue diff --git a/pages/count/job/countJob.vue b/src/pages/count/job/countJob.vue similarity index 100% rename from pages/count/job/countJob.vue rename to src/pages/count/job/countJob.vue diff --git a/pages/count/record/countRecord.vue b/src/pages/count/record/countRecord.vue similarity index 100% rename from pages/count/record/countRecord.vue rename to src/pages/count/record/countRecord.vue diff --git a/pages/customerReturn/coms/comReturnJobCard.vue b/src/pages/customerReturn/coms/comReturnJobCard.vue similarity index 100% rename from pages/customerReturn/coms/comReturnJobCard.vue rename to src/pages/customerReturn/coms/comReturnJobCard.vue diff --git a/pages/customerReturn/coms/comReturnRecord.vue b/src/pages/customerReturn/coms/comReturnRecord.vue similarity index 100% rename from pages/customerReturn/coms/comReturnRecord.vue rename to src/pages/customerReturn/coms/comReturnRecord.vue diff --git a/pages/customerReturn/coms/comReturnRequestCard.vue b/src/pages/customerReturn/coms/comReturnRequestCard.vue similarity index 100% rename from pages/customerReturn/coms/comReturnRequestCard.vue rename to src/pages/customerReturn/coms/comReturnRequestCard.vue diff --git a/pages/customerReturn/coms/detailInfoPopup.vue b/src/pages/customerReturn/coms/detailInfoPopup.vue similarity index 100% rename from pages/customerReturn/coms/detailInfoPopup.vue rename to src/pages/customerReturn/coms/detailInfoPopup.vue diff --git a/pages/customerReturn/coms/jobInfoPopup.vue b/src/pages/customerReturn/coms/jobInfoPopup.vue similarity index 100% rename from pages/customerReturn/coms/jobInfoPopup.vue rename to src/pages/customerReturn/coms/jobInfoPopup.vue diff --git a/pages/customerReturn/coms/jobListPopup.vue b/src/pages/customerReturn/coms/jobListPopup.vue similarity index 100% rename from pages/customerReturn/coms/jobListPopup.vue rename to src/pages/customerReturn/coms/jobListPopup.vue diff --git a/pages/customerReturn/coms/requestDetailInfoPopup.vue b/src/pages/customerReturn/coms/requestDetailInfoPopup.vue similarity index 100% rename from pages/customerReturn/coms/requestDetailInfoPopup.vue rename to src/pages/customerReturn/coms/requestDetailInfoPopup.vue diff --git a/pages/customerReturn/coms/requestInfoPopup.vue b/src/pages/customerReturn/coms/requestInfoPopup.vue similarity index 100% rename from pages/customerReturn/coms/requestInfoPopup.vue rename to src/pages/customerReturn/coms/requestInfoPopup.vue diff --git a/pages/customerReturn/job/returnDetail.vue b/src/pages/customerReturn/job/returnDetail.vue similarity index 100% rename from pages/customerReturn/job/returnDetail.vue rename to src/pages/customerReturn/job/returnDetail.vue diff --git a/pages/customerReturn/job/returnJob.vue b/src/pages/customerReturn/job/returnJob.vue similarity index 100% rename from pages/customerReturn/job/returnJob.vue rename to src/pages/customerReturn/job/returnJob.vue diff --git a/pages/customerReturn/record/returnRecord.vue b/src/pages/customerReturn/record/returnRecord.vue similarity index 100% rename from pages/customerReturn/record/returnRecord.vue rename to src/pages/customerReturn/record/returnRecord.vue diff --git a/pages/customerReturn/request/customerReturnRequest.vue b/src/pages/customerReturn/request/customerReturnRequest.vue similarity index 100% rename from pages/customerReturn/request/customerReturnRequest.vue rename to src/pages/customerReturn/request/customerReturnRequest.vue diff --git a/pages/customerReturn/request/customerReturnRequestCreate.vue b/src/pages/customerReturn/request/customerReturnRequestCreate.vue similarity index 100% rename from pages/customerReturn/request/customerReturnRequestCreate.vue rename to src/pages/customerReturn/request/customerReturnRequestCreate.vue diff --git a/pages/customerReturn/request/customerReturnRequestDetail.vue b/src/pages/customerReturn/request/customerReturnRequestDetail.vue similarity index 100% rename from pages/customerReturn/request/customerReturnRequestDetail.vue rename to src/pages/customerReturn/request/customerReturnRequestDetail.vue diff --git a/pages/deliver/coms/comDeliverDetailCard.vue b/src/pages/deliver/coms/comDeliverDetailCard.vue similarity index 100% rename from pages/deliver/coms/comDeliverDetailCard.vue rename to src/pages/deliver/coms/comDeliverDetailCard.vue diff --git a/pages/deliver/coms/comDeliverJobCard.vue b/src/pages/deliver/coms/comDeliverJobCard.vue similarity index 100% rename from pages/deliver/coms/comDeliverJobCard.vue rename to src/pages/deliver/coms/comDeliverJobCard.vue diff --git a/pages/deliver/coms/comDeliverRequestCard.vue b/src/pages/deliver/coms/comDeliverRequestCard.vue similarity index 100% rename from pages/deliver/coms/comDeliverRequestCard.vue rename to src/pages/deliver/coms/comDeliverRequestCard.vue diff --git a/pages/deliver/coms/comDeliverRequestCreator.vue b/src/pages/deliver/coms/comDeliverRequestCreator.vue similarity index 100% rename from pages/deliver/coms/comDeliverRequestCreator.vue rename to src/pages/deliver/coms/comDeliverRequestCreator.vue diff --git a/pages/deliver/coms/comDeliverRequestPopup.vue b/src/pages/deliver/coms/comDeliverRequestPopup.vue similarity index 100% rename from pages/deliver/coms/comDeliverRequestPopup.vue rename to src/pages/deliver/coms/comDeliverRequestPopup.vue diff --git a/pages/deliver/coms/comScanDeliverPack.vue b/src/pages/deliver/coms/comScanDeliverPack.vue similarity index 100% rename from pages/deliver/coms/comScanDeliverPack.vue rename to src/pages/deliver/coms/comScanDeliverPack.vue diff --git a/pages/deliver/coms/detailInfoPopup.vue b/src/pages/deliver/coms/detailInfoPopup.vue similarity index 100% rename from pages/deliver/coms/detailInfoPopup.vue rename to src/pages/deliver/coms/detailInfoPopup.vue diff --git a/pages/deliver/coms/jobInfoPopup.vue b/src/pages/deliver/coms/jobInfoPopup.vue similarity index 100% rename from pages/deliver/coms/jobInfoPopup.vue rename to src/pages/deliver/coms/jobInfoPopup.vue diff --git a/pages/deliver/coms/jobListPopup.vue b/src/pages/deliver/coms/jobListPopup.vue similarity index 100% rename from pages/deliver/coms/jobListPopup.vue rename to src/pages/deliver/coms/jobListPopup.vue diff --git a/pages/deliver/coms/requestDetailInfoPopup.vue b/src/pages/deliver/coms/requestDetailInfoPopup.vue similarity index 100% rename from pages/deliver/coms/requestDetailInfoPopup.vue rename to src/pages/deliver/coms/requestDetailInfoPopup.vue diff --git a/pages/deliver/coms/requestInfoPopup.vue b/src/pages/deliver/coms/requestInfoPopup.vue similarity index 100% rename from pages/deliver/coms/requestInfoPopup.vue rename to src/pages/deliver/coms/requestInfoPopup.vue diff --git a/pages/deliver/job/deliverDetail.vue b/src/pages/deliver/job/deliverDetail.vue similarity index 100% rename from pages/deliver/job/deliverDetail.vue rename to src/pages/deliver/job/deliverDetail.vue diff --git a/pages/deliver/job/deliverJob.vue b/src/pages/deliver/job/deliverJob.vue similarity index 100% rename from pages/deliver/job/deliverJob.vue rename to src/pages/deliver/job/deliverJob.vue diff --git a/pages/deliver/record/deliverRecord.vue b/src/pages/deliver/record/deliverRecord.vue similarity index 100% rename from pages/deliver/record/deliverRecord.vue rename to src/pages/deliver/record/deliverRecord.vue diff --git a/pages/deliver/request/deliverRequest.vue b/src/pages/deliver/request/deliverRequest.vue similarity index 100% rename from pages/deliver/request/deliverRequest.vue rename to src/pages/deliver/request/deliverRequest.vue diff --git a/pages/deliver/request/deliverRequestCreate.vue b/src/pages/deliver/request/deliverRequestCreate.vue similarity index 100% rename from pages/deliver/request/deliverRequestCreate.vue rename to src/pages/deliver/request/deliverRequestCreate.vue diff --git a/pages/deliver/request/deliverRequestDetail.vue b/src/pages/deliver/request/deliverRequestDetail.vue similarity index 100% rename from pages/deliver/request/deliverRequestDetail.vue rename to src/pages/deliver/request/deliverRequestDetail.vue diff --git a/pages/demo/demo.vue b/src/pages/demo/demo.vue similarity index 100% rename from pages/demo/demo.vue rename to src/pages/demo/demo.vue diff --git a/pages/demo/page.vue b/src/pages/demo/page.vue similarity index 100% rename from pages/demo/page.vue rename to src/pages/demo/page.vue diff --git a/pages/error/404.vue b/src/pages/error/404.vue similarity index 100% rename from pages/error/404.vue rename to src/pages/error/404.vue diff --git a/pages/index/index.vue b/src/pages/index/index.vue similarity index 100% rename from pages/index/index.vue rename to src/pages/index/index.vue diff --git a/pages/inspect/coms/comInspectDetailCard.vue b/src/pages/inspect/coms/comInspectDetailCard.vue similarity index 100% rename from pages/inspect/coms/comInspectDetailCard.vue rename to src/pages/inspect/coms/comInspectDetailCard.vue diff --git a/pages/inspect/coms/comInspectJobCard.vue b/src/pages/inspect/coms/comInspectJobCard.vue similarity index 100% rename from pages/inspect/coms/comInspectJobCard.vue rename to src/pages/inspect/coms/comInspectJobCard.vue diff --git a/pages/inspect/coms/comInspectJobList.vue b/src/pages/inspect/coms/comInspectJobList.vue similarity index 100% rename from pages/inspect/coms/comInspectJobList.vue rename to src/pages/inspect/coms/comInspectJobList.vue diff --git a/pages/inspect/coms/comInspectRequestCard.vue b/src/pages/inspect/coms/comInspectRequestCard.vue similarity index 100% rename from pages/inspect/coms/comInspectRequestCard.vue rename to src/pages/inspect/coms/comInspectRequestCard.vue diff --git a/pages/inspect/coms/inspectComDetailCard.vue b/src/pages/inspect/coms/inspectComDetailCard.vue similarity index 100% rename from pages/inspect/coms/inspectComDetailCard.vue rename to src/pages/inspect/coms/inspectComDetailCard.vue diff --git a/pages/inspect/coms/inspectEdit.vue b/src/pages/inspect/coms/inspectEdit.vue similarity index 100% rename from pages/inspect/coms/inspectEdit.vue rename to src/pages/inspect/coms/inspectEdit.vue diff --git a/pages/inspect/coms/inspectInfoPopup.vue b/src/pages/inspect/coms/inspectInfoPopup.vue similarity index 100% rename from pages/inspect/coms/inspectInfoPopup.vue rename to src/pages/inspect/coms/inspectInfoPopup.vue diff --git a/pages/inspect/coms/requestDetailInfoPopup.vue b/src/pages/inspect/coms/requestDetailInfoPopup.vue similarity index 100% rename from pages/inspect/coms/requestDetailInfoPopup.vue rename to src/pages/inspect/coms/requestDetailInfoPopup.vue diff --git a/pages/inspect/coms/requestInfoPopup.vue b/src/pages/inspect/coms/requestInfoPopup.vue similarity index 100% rename from pages/inspect/coms/requestInfoPopup.vue rename to src/pages/inspect/coms/requestInfoPopup.vue diff --git a/pages/inspect/coms/uploadCamera.vue b/src/pages/inspect/coms/uploadCamera.vue similarity index 100% rename from pages/inspect/coms/uploadCamera.vue rename to src/pages/inspect/coms/uploadCamera.vue diff --git a/pages/inspect/job/inspectDetail.vue b/src/pages/inspect/job/inspectDetail.vue similarity index 100% rename from pages/inspect/job/inspectDetail.vue rename to src/pages/inspect/job/inspectDetail.vue diff --git a/pages/inspect/job/inspectFullDetail.vue b/src/pages/inspect/job/inspectFullDetail.vue similarity index 100% rename from pages/inspect/job/inspectFullDetail.vue rename to src/pages/inspect/job/inspectFullDetail.vue diff --git a/pages/inspect/job/inspectJob.vue b/src/pages/inspect/job/inspectJob.vue similarity index 100% rename from pages/inspect/job/inspectJob.vue rename to src/pages/inspect/job/inspectJob.vue diff --git a/pages/inspect/job/inspectResult.vue b/src/pages/inspect/job/inspectResult.vue similarity index 100% rename from pages/inspect/job/inspectResult.vue rename to src/pages/inspect/job/inspectResult.vue diff --git a/pages/inspect/request/inspectRequest.vue b/src/pages/inspect/request/inspectRequest.vue similarity index 100% rename from pages/inspect/request/inspectRequest.vue rename to src/pages/inspect/request/inspectRequest.vue diff --git a/pages/inspect/request/inspectRequestDetail.vue b/src/pages/inspect/request/inspectRequestDetail.vue similarity index 100% rename from pages/inspect/request/inspectRequestDetail.vue rename to src/pages/inspect/request/inspectRequestDetail.vue diff --git a/pages/inventoryMove/coms/comInventoryDetailCard.vue b/src/pages/inventoryMove/coms/comInventoryDetailCard.vue similarity index 100% rename from pages/inventoryMove/coms/comInventoryDetailCard.vue rename to src/pages/inventoryMove/coms/comInventoryDetailCard.vue diff --git a/pages/inventoryMove/coms/comInventoryJobCard.vue b/src/pages/inventoryMove/coms/comInventoryJobCard.vue similarity index 100% rename from pages/inventoryMove/coms/comInventoryJobCard.vue rename to src/pages/inventoryMove/coms/comInventoryJobCard.vue diff --git a/pages/inventoryMove/coms/comMove.vue b/src/pages/inventoryMove/coms/comMove.vue similarity index 100% rename from pages/inventoryMove/coms/comMove.vue rename to src/pages/inventoryMove/coms/comMove.vue diff --git a/pages/inventoryMove/coms/comMoveJob.vue b/src/pages/inventoryMove/coms/comMoveJob.vue similarity index 100% rename from pages/inventoryMove/coms/comMoveJob.vue rename to src/pages/inventoryMove/coms/comMoveJob.vue diff --git a/pages/inventoryMove/coms/comMoveRecord.vue b/src/pages/inventoryMove/coms/comMoveRecord.vue similarity index 100% rename from pages/inventoryMove/coms/comMoveRecord.vue rename to src/pages/inventoryMove/coms/comMoveRecord.vue diff --git a/pages/inventoryMove/coms/comMoveRecordCard.vue b/src/pages/inventoryMove/coms/comMoveRecordCard.vue similarity index 100% rename from pages/inventoryMove/coms/comMoveRecordCard.vue rename to src/pages/inventoryMove/coms/comMoveRecordCard.vue diff --git a/pages/inventoryMove/coms/comMovebalance.vue b/src/pages/inventoryMove/coms/comMovebalance.vue similarity index 100% rename from pages/inventoryMove/coms/comMovebalance.vue rename to src/pages/inventoryMove/coms/comMovebalance.vue diff --git a/pages/inventoryMove/coms/detailInfoPopup.vue b/src/pages/inventoryMove/coms/detailInfoPopup.vue similarity index 100% rename from pages/inventoryMove/coms/detailInfoPopup.vue rename to src/pages/inventoryMove/coms/detailInfoPopup.vue diff --git a/pages/inventoryMove/coms/jobInfoPopup.vue b/src/pages/inventoryMove/coms/jobInfoPopup.vue similarity index 100% rename from pages/inventoryMove/coms/jobInfoPopup.vue rename to src/pages/inventoryMove/coms/jobInfoPopup.vue diff --git a/pages/inventoryMove/coms/jobListPopup.vue b/src/pages/inventoryMove/coms/jobListPopup.vue similarity index 100% rename from pages/inventoryMove/coms/jobListPopup.vue rename to src/pages/inventoryMove/coms/jobListPopup.vue diff --git a/pages/inventoryMove/job/holdToOkMoveJob.vue b/src/pages/inventoryMove/job/holdToOkMoveJob.vue similarity index 100% rename from pages/inventoryMove/job/holdToOkMoveJob.vue rename to src/pages/inventoryMove/job/holdToOkMoveJob.vue diff --git a/pages/inventoryMove/job/holdToScrapMoveJob.vue b/src/pages/inventoryMove/job/holdToScrapMoveJob.vue similarity index 100% rename from pages/inventoryMove/job/holdToScrapMoveJob.vue rename to src/pages/inventoryMove/job/holdToScrapMoveJob.vue diff --git a/pages/inventoryMove/job/inventoryMoveDetail.vue b/src/pages/inventoryMove/job/inventoryMoveDetail.vue similarity index 100% rename from pages/inventoryMove/job/inventoryMoveDetail.vue rename to src/pages/inventoryMove/job/inventoryMoveDetail.vue diff --git a/pages/inventoryMove/job/inventoryMoveJob.vue b/src/pages/inventoryMove/job/inventoryMoveJob.vue similarity index 100% rename from pages/inventoryMove/job/inventoryMoveJob.vue rename to src/pages/inventoryMove/job/inventoryMoveJob.vue diff --git a/pages/inventoryMove/job/moveJob.vue b/src/pages/inventoryMove/job/moveJob.vue similarity index 100% rename from pages/inventoryMove/job/moveJob.vue rename to src/pages/inventoryMove/job/moveJob.vue diff --git a/pages/inventoryMove/job/okToHoldMoveJob.vue b/src/pages/inventoryMove/job/okToHoldMoveJob.vue similarity index 100% rename from pages/inventoryMove/job/okToHoldMoveJob.vue rename to src/pages/inventoryMove/job/okToHoldMoveJob.vue diff --git a/pages/inventoryMove/job/okToScrapMoveJob.vue b/src/pages/inventoryMove/job/okToScrapMoveJob.vue similarity index 100% rename from pages/inventoryMove/job/okToScrapMoveJob.vue rename to src/pages/inventoryMove/job/okToScrapMoveJob.vue diff --git a/pages/inventoryMove/job/scrapToHoldMoveJob.vue b/src/pages/inventoryMove/job/scrapToHoldMoveJob.vue similarity index 100% rename from pages/inventoryMove/job/scrapToHoldMoveJob.vue rename to src/pages/inventoryMove/job/scrapToHoldMoveJob.vue diff --git a/pages/inventoryMove/record/holdToOkRecord.vue b/src/pages/inventoryMove/record/holdToOkRecord.vue similarity index 100% rename from pages/inventoryMove/record/holdToOkRecord.vue rename to src/pages/inventoryMove/record/holdToOkRecord.vue diff --git a/pages/inventoryMove/record/holdToScrapRecord.vue b/src/pages/inventoryMove/record/holdToScrapRecord.vue similarity index 100% rename from pages/inventoryMove/record/holdToScrapRecord.vue rename to src/pages/inventoryMove/record/holdToScrapRecord.vue diff --git a/pages/inventoryMove/record/moveFreeRecord.vue b/src/pages/inventoryMove/record/moveFreeRecord.vue similarity index 100% rename from pages/inventoryMove/record/moveFreeRecord.vue rename to src/pages/inventoryMove/record/moveFreeRecord.vue diff --git a/pages/inventoryMove/record/okToHoldRecord.vue b/src/pages/inventoryMove/record/okToHoldRecord.vue similarity index 100% rename from pages/inventoryMove/record/okToHoldRecord.vue rename to src/pages/inventoryMove/record/okToHoldRecord.vue diff --git a/pages/inventoryMove/record/okToScrapRecord.vue b/src/pages/inventoryMove/record/okToScrapRecord.vue similarity index 100% rename from pages/inventoryMove/record/okToScrapRecord.vue rename to src/pages/inventoryMove/record/okToScrapRecord.vue diff --git a/pages/inventoryMove/record/scrapToHoldRecord.vue b/src/pages/inventoryMove/record/scrapToHoldRecord.vue similarity index 100% rename from pages/inventoryMove/record/scrapToHoldRecord.vue rename to src/pages/inventoryMove/record/scrapToHoldRecord.vue diff --git a/pages/issue-按批次推荐/coms/comIssueDetailCard.vue b/src/pages/issue-按批次推荐/coms/comIssueDetailCard.vue similarity index 100% rename from pages/issue-按批次推荐/coms/comIssueDetailCard.vue rename to src/pages/issue-按批次推荐/coms/comIssueDetailCard.vue diff --git a/pages/issue-按批次推荐/coms/comIssueJobCard.vue b/src/pages/issue-按批次推荐/coms/comIssueJobCard.vue similarity index 100% rename from pages/issue-按批次推荐/coms/comIssueJobCard.vue rename to src/pages/issue-按批次推荐/coms/comIssueJobCard.vue diff --git a/pages/issue-按批次推荐/coms/comIssueRecommend.vue b/src/pages/issue-按批次推荐/coms/comIssueRecommend.vue similarity index 100% rename from pages/issue-按批次推荐/coms/comIssueRecommend.vue rename to src/pages/issue-按批次推荐/coms/comIssueRecommend.vue diff --git a/pages/issue-按批次推荐/coms/comScanIssueList.vue b/src/pages/issue-按批次推荐/coms/comScanIssueList.vue similarity index 100% rename from pages/issue-按批次推荐/coms/comScanIssueList.vue rename to src/pages/issue-按批次推荐/coms/comScanIssueList.vue diff --git a/pages/issue-按批次推荐/coms/comScanIssuePack.vue b/src/pages/issue-按批次推荐/coms/comScanIssuePack.vue similarity index 100% rename from pages/issue-按批次推荐/coms/comScanIssuePack.vue rename to src/pages/issue-按批次推荐/coms/comScanIssuePack.vue diff --git a/pages/issue-按批次推荐/job/issueDetail.vue b/src/pages/issue-按批次推荐/job/issueDetail.vue similarity index 100% rename from pages/issue-按批次推荐/job/issueDetail.vue rename to src/pages/issue-按批次推荐/job/issueDetail.vue diff --git a/pages/issue-按批次推荐/job/issueJob.vue b/src/pages/issue-按批次推荐/job/issueJob.vue similarity index 100% rename from pages/issue-按批次推荐/job/issueJob.vue rename to src/pages/issue-按批次推荐/job/issueJob.vue diff --git a/pages/issue/coms/comIssueDetailCard.vue b/src/pages/issue/coms/comIssueDetailCard.vue similarity index 100% rename from pages/issue/coms/comIssueDetailCard.vue rename to src/pages/issue/coms/comIssueDetailCard.vue diff --git a/pages/issue/coms/comIssueJobCard.vue b/src/pages/issue/coms/comIssueJobCard.vue similarity index 100% rename from pages/issue/coms/comIssueJobCard.vue rename to src/pages/issue/coms/comIssueJobCard.vue diff --git a/pages/issue/coms/comIssueRecommend.vue b/src/pages/issue/coms/comIssueRecommend.vue similarity index 100% rename from pages/issue/coms/comIssueRecommend.vue rename to src/pages/issue/coms/comIssueRecommend.vue diff --git a/pages/issue/coms/comIssueRequestCard.vue b/src/pages/issue/coms/comIssueRequestCard.vue similarity index 100% rename from pages/issue/coms/comIssueRequestCard.vue rename to src/pages/issue/coms/comIssueRequestCard.vue diff --git a/pages/issue/coms/comIssueRequestCreator.vue b/src/pages/issue/coms/comIssueRequestCreator.vue similarity index 100% rename from pages/issue/coms/comIssueRequestCreator.vue rename to src/pages/issue/coms/comIssueRequestCreator.vue diff --git a/pages/issue/coms/comIssueRequestDetailCard.vue b/src/pages/issue/coms/comIssueRequestDetailCard.vue similarity index 100% rename from pages/issue/coms/comIssueRequestDetailCard.vue rename to src/pages/issue/coms/comIssueRequestDetailCard.vue diff --git a/pages/issue/coms/comIssueRequestInfo.vue b/src/pages/issue/coms/comIssueRequestInfo.vue similarity index 100% rename from pages/issue/coms/comIssueRequestInfo.vue rename to src/pages/issue/coms/comIssueRequestInfo.vue diff --git a/pages/issue/coms/comIssueRequestPopup.vue b/src/pages/issue/coms/comIssueRequestPopup.vue similarity index 100% rename from pages/issue/coms/comIssueRequestPopup.vue rename to src/pages/issue/coms/comIssueRequestPopup.vue diff --git a/pages/issue/coms/comScanIssueList.vue b/src/pages/issue/coms/comScanIssueList.vue similarity index 100% rename from pages/issue/coms/comScanIssueList.vue rename to src/pages/issue/coms/comScanIssueList.vue diff --git a/pages/issue/coms/comScanIssuePack.vue b/src/pages/issue/coms/comScanIssuePack.vue similarity index 100% rename from pages/issue/coms/comScanIssuePack.vue rename to src/pages/issue/coms/comScanIssuePack.vue diff --git a/pages/issue/coms/detailInfoPopup.vue b/src/pages/issue/coms/detailInfoPopup.vue similarity index 100% rename from pages/issue/coms/detailInfoPopup.vue rename to src/pages/issue/coms/detailInfoPopup.vue diff --git a/pages/issue/coms/jobInfoPopup.vue b/src/pages/issue/coms/jobInfoPopup.vue similarity index 100% rename from pages/issue/coms/jobInfoPopup.vue rename to src/pages/issue/coms/jobInfoPopup.vue diff --git a/pages/issue/coms/jobListPopup.vue b/src/pages/issue/coms/jobListPopup.vue similarity index 100% rename from pages/issue/coms/jobListPopup.vue rename to src/pages/issue/coms/jobListPopup.vue diff --git a/pages/issue/coms/requestDetailInfoPopup.vue b/src/pages/issue/coms/requestDetailInfoPopup.vue similarity index 100% rename from pages/issue/coms/requestDetailInfoPopup.vue rename to src/pages/issue/coms/requestDetailInfoPopup.vue diff --git a/pages/issue/coms/requestInfoPopup.vue b/src/pages/issue/coms/requestInfoPopup.vue similarity index 100% rename from pages/issue/coms/requestInfoPopup.vue rename to src/pages/issue/coms/requestInfoPopup.vue diff --git a/pages/issue/job/issueDetail.vue b/src/pages/issue/job/issueDetail.vue similarity index 100% rename from pages/issue/job/issueDetail.vue rename to src/pages/issue/job/issueDetail.vue diff --git a/pages/issue/job/issueJob.vue b/src/pages/issue/job/issueJob.vue similarity index 100% rename from pages/issue/job/issueJob.vue rename to src/pages/issue/job/issueJob.vue diff --git a/pages/issue/job/issueReceiptJob.vue b/src/pages/issue/job/issueReceiptJob.vue similarity index 100% rename from pages/issue/job/issueReceiptJob.vue rename to src/pages/issue/job/issueReceiptJob.vue diff --git a/pages/issue/js/issue.js b/src/pages/issue/js/issue.js similarity index 100% rename from pages/issue/js/issue.js rename to src/pages/issue/js/issue.js diff --git a/pages/issue/record/issueRecord.vue b/src/pages/issue/record/issueRecord.vue similarity index 100% rename from pages/issue/record/issueRecord.vue rename to src/pages/issue/record/issueRecord.vue diff --git a/pages/issue/request/issueRequest.vue b/src/pages/issue/request/issueRequest.vue similarity index 100% rename from pages/issue/request/issueRequest.vue rename to src/pages/issue/request/issueRequest.vue diff --git a/pages/issue/request/issueRequestCreate.vue b/src/pages/issue/request/issueRequestCreate.vue similarity index 100% rename from pages/issue/request/issueRequestCreate.vue rename to src/pages/issue/request/issueRequestCreate.vue diff --git a/pages/issue/request/issueRequestDetail.vue b/src/pages/issue/request/issueRequestDetail.vue similarity index 100% rename from pages/issue/request/issueRequestDetail.vue rename to src/pages/issue/request/issueRequestDetail.vue diff --git a/pages/login/index.vue b/src/pages/login/index.vue similarity index 100% rename from pages/login/index.vue rename to src/pages/login/index.vue diff --git a/pages/message/details.vue b/src/pages/message/details.vue similarity index 100% rename from pages/message/details.vue rename to src/pages/message/details.vue diff --git a/pages/message/index.vue b/src/pages/message/index.vue similarity index 100% rename from pages/message/index.vue rename to src/pages/message/index.vue diff --git a/pages/package/coms/comOverRecord.vue b/src/pages/package/coms/comOverRecord.vue similarity index 100% rename from pages/package/coms/comOverRecord.vue rename to src/pages/package/coms/comOverRecord.vue diff --git a/pages/package/coms/comPackageRecord.vue b/src/pages/package/coms/comPackageRecord.vue similarity index 100% rename from pages/package/coms/comPackageRecord.vue rename to src/pages/package/coms/comPackageRecord.vue diff --git a/pages/package/record/mergePackageRecord.vue b/src/pages/package/record/mergePackageRecord.vue similarity index 100% rename from pages/package/record/mergePackageRecord.vue rename to src/pages/package/record/mergePackageRecord.vue diff --git a/pages/package/record/overPackageRecord.vue b/src/pages/package/record/overPackageRecord.vue similarity index 100% rename from pages/package/record/overPackageRecord.vue rename to src/pages/package/record/overPackageRecord.vue diff --git a/pages/package/record/splitPackageRecord.vue b/src/pages/package/record/splitPackageRecord.vue similarity index 100% rename from pages/package/record/splitPackageRecord.vue rename to src/pages/package/record/splitPackageRecord.vue diff --git a/pages/productDismantle/coms/comProductDetailCard.vue b/src/pages/productDismantle/coms/comProductDetailCard.vue similarity index 100% rename from pages/productDismantle/coms/comProductDetailCard.vue rename to src/pages/productDismantle/coms/comProductDetailCard.vue diff --git a/pages/productDismantle/coms/comProductJobCard.vue b/src/pages/productDismantle/coms/comProductJobCard.vue similarity index 100% rename from pages/productDismantle/coms/comProductJobCard.vue rename to src/pages/productDismantle/coms/comProductJobCard.vue diff --git a/pages/productDismantle/coms/comProductRecord.vue b/src/pages/productDismantle/coms/comProductRecord.vue similarity index 100% rename from pages/productDismantle/coms/comProductRecord.vue rename to src/pages/productDismantle/coms/comProductRecord.vue diff --git a/pages/productDismantle/coms/comScanProductList.vue b/src/pages/productDismantle/coms/comScanProductList.vue similarity index 100% rename from pages/productDismantle/coms/comScanProductList.vue rename to src/pages/productDismantle/coms/comScanProductList.vue diff --git a/pages/productDismantle/coms/detailInfoPopup.vue b/src/pages/productDismantle/coms/detailInfoPopup.vue similarity index 100% rename from pages/productDismantle/coms/detailInfoPopup.vue rename to src/pages/productDismantle/coms/detailInfoPopup.vue diff --git a/pages/productDismantle/coms/jobInfoPopup.vue b/src/pages/productDismantle/coms/jobInfoPopup.vue similarity index 100% rename from pages/productDismantle/coms/jobInfoPopup.vue rename to src/pages/productDismantle/coms/jobInfoPopup.vue diff --git a/pages/productDismantle/coms/jobListPopup.vue b/src/pages/productDismantle/coms/jobListPopup.vue similarity index 100% rename from pages/productDismantle/coms/jobListPopup.vue rename to src/pages/productDismantle/coms/jobListPopup.vue diff --git a/pages/productDismantle/coms/requestDetailInfoPopup.vue b/src/pages/productDismantle/coms/requestDetailInfoPopup.vue similarity index 100% rename from pages/productDismantle/coms/requestDetailInfoPopup.vue rename to src/pages/productDismantle/coms/requestDetailInfoPopup.vue diff --git a/pages/productDismantle/coms/requestInfoPopup.vue b/src/pages/productDismantle/coms/requestInfoPopup.vue similarity index 100% rename from pages/productDismantle/coms/requestInfoPopup.vue rename to src/pages/productDismantle/coms/requestInfoPopup.vue diff --git a/pages/productDismantle/job/productDismantleDetail.vue b/src/pages/productDismantle/job/productDismantleDetail.vue similarity index 100% rename from pages/productDismantle/job/productDismantleDetail.vue rename to src/pages/productDismantle/job/productDismantleDetail.vue diff --git a/pages/productDismantle/job/productDismantleJob.vue b/src/pages/productDismantle/job/productDismantleJob.vue similarity index 100% rename from pages/productDismantle/job/productDismantleJob.vue rename to src/pages/productDismantle/job/productDismantleJob.vue diff --git a/pages/productDismantle/record/productDismantleRecord.vue b/src/pages/productDismantle/record/productDismantleRecord.vue similarity index 100% rename from pages/productDismantle/record/productDismantleRecord.vue rename to src/pages/productDismantle/record/productDismantleRecord.vue diff --git a/pages/productPutaway/coms/comProductDetailCard.vue b/src/pages/productPutaway/coms/comProductDetailCard.vue similarity index 100% rename from pages/productPutaway/coms/comProductDetailCard.vue rename to src/pages/productPutaway/coms/comProductDetailCard.vue diff --git a/pages/productPutaway/coms/comProductJobCard.vue b/src/pages/productPutaway/coms/comProductJobCard.vue similarity index 100% rename from pages/productPutaway/coms/comProductJobCard.vue rename to src/pages/productPutaway/coms/comProductJobCard.vue diff --git a/pages/productPutaway/coms/comPutawayRequestCard.vue b/src/pages/productPutaway/coms/comPutawayRequestCard.vue similarity index 100% rename from pages/productPutaway/coms/comPutawayRequestCard.vue rename to src/pages/productPutaway/coms/comPutawayRequestCard.vue diff --git a/pages/productPutaway/coms/comScanProductList.vue b/src/pages/productPutaway/coms/comScanProductList.vue similarity index 100% rename from pages/productPutaway/coms/comScanProductList.vue rename to src/pages/productPutaway/coms/comScanProductList.vue diff --git a/pages/productPutaway/coms/detailInfoPopup.vue b/src/pages/productPutaway/coms/detailInfoPopup.vue similarity index 100% rename from pages/productPutaway/coms/detailInfoPopup.vue rename to src/pages/productPutaway/coms/detailInfoPopup.vue diff --git a/pages/productPutaway/coms/jobInfoPopup.vue b/src/pages/productPutaway/coms/jobInfoPopup.vue similarity index 100% rename from pages/productPutaway/coms/jobInfoPopup.vue rename to src/pages/productPutaway/coms/jobInfoPopup.vue diff --git a/pages/productPutaway/coms/jobListPopup.vue b/src/pages/productPutaway/coms/jobListPopup.vue similarity index 100% rename from pages/productPutaway/coms/jobListPopup.vue rename to src/pages/productPutaway/coms/jobListPopup.vue diff --git a/pages/productPutaway/coms/requestDetailInfoPopup.vue b/src/pages/productPutaway/coms/requestDetailInfoPopup.vue similarity index 100% rename from pages/productPutaway/coms/requestDetailInfoPopup.vue rename to src/pages/productPutaway/coms/requestDetailInfoPopup.vue diff --git a/pages/productPutaway/coms/requestInfoPopup.vue b/src/pages/productPutaway/coms/requestInfoPopup.vue similarity index 100% rename from pages/productPutaway/coms/requestInfoPopup.vue rename to src/pages/productPutaway/coms/requestInfoPopup.vue diff --git a/pages/productPutaway/job/productPutawayDetail.vue b/src/pages/productPutaway/job/productPutawayDetail.vue similarity index 100% rename from pages/productPutaway/job/productPutawayDetail.vue rename to src/pages/productPutaway/job/productPutawayDetail.vue diff --git a/pages/productPutaway/job/productPutawayJob.vue b/src/pages/productPutaway/job/productPutawayJob.vue similarity index 100% rename from pages/productPutaway/job/productPutawayJob.vue rename to src/pages/productPutaway/job/productPutawayJob.vue diff --git a/pages/productPutaway/record/productPutawayRecord.vue b/src/pages/productPutaway/record/productPutawayRecord.vue similarity index 100% rename from pages/productPutaway/record/productPutawayRecord.vue rename to src/pages/productPutaway/record/productPutawayRecord.vue diff --git a/pages/productPutaway/request/putawayRequest.vue b/src/pages/productPutaway/request/putawayRequest.vue similarity index 100% rename from pages/productPutaway/request/putawayRequest.vue rename to src/pages/productPutaway/request/putawayRequest.vue diff --git a/pages/productPutaway/request/putawayRequestCreate.vue b/src/pages/productPutaway/request/putawayRequestCreate.vue similarity index 100% rename from pages/productPutaway/request/putawayRequestCreate.vue rename to src/pages/productPutaway/request/putawayRequestCreate.vue diff --git a/pages/productPutaway/request/putawayRequestDetail.vue b/src/pages/productPutaway/request/putawayRequestDetail.vue similarity index 100% rename from pages/productPutaway/request/putawayRequestDetail.vue rename to src/pages/productPutaway/request/putawayRequestDetail.vue diff --git a/pages/productReceipt/coms/comProductDetailCard.vue b/src/pages/productReceipt/coms/comProductDetailCard.vue similarity index 100% rename from pages/productReceipt/coms/comProductDetailCard.vue rename to src/pages/productReceipt/coms/comProductDetailCard.vue diff --git a/pages/productReceipt/coms/comProductJobCard.vue b/src/pages/productReceipt/coms/comProductJobCard.vue similarity index 100% rename from pages/productReceipt/coms/comProductJobCard.vue rename to src/pages/productReceipt/coms/comProductJobCard.vue diff --git a/pages/productReceipt/coms/comProductRecord.vue b/src/pages/productReceipt/coms/comProductRecord.vue similarity index 100% rename from pages/productReceipt/coms/comProductRecord.vue rename to src/pages/productReceipt/coms/comProductRecord.vue diff --git a/pages/productReceipt/coms/detailInfoPopup.vue b/src/pages/productReceipt/coms/detailInfoPopup.vue similarity index 100% rename from pages/productReceipt/coms/detailInfoPopup.vue rename to src/pages/productReceipt/coms/detailInfoPopup.vue diff --git a/pages/productReceipt/coms/jobInfoPopup.vue b/src/pages/productReceipt/coms/jobInfoPopup.vue similarity index 100% rename from pages/productReceipt/coms/jobInfoPopup.vue rename to src/pages/productReceipt/coms/jobInfoPopup.vue diff --git a/pages/productReceipt/coms/jobListPopup.vue b/src/pages/productReceipt/coms/jobListPopup.vue similarity index 100% rename from pages/productReceipt/coms/jobListPopup.vue rename to src/pages/productReceipt/coms/jobListPopup.vue diff --git a/pages/productReceipt/coms/productDetailInfoPopup.vue b/src/pages/productReceipt/coms/productDetailInfoPopup.vue similarity index 100% rename from pages/productReceipt/coms/productDetailInfoPopup.vue rename to src/pages/productReceipt/coms/productDetailInfoPopup.vue diff --git a/pages/productReceipt/job/productReceiptDetail.vue b/src/pages/productReceipt/job/productReceiptDetail.vue similarity index 100% rename from pages/productReceipt/job/productReceiptDetail.vue rename to src/pages/productReceipt/job/productReceiptDetail.vue diff --git a/pages/productReceipt/job/productReceiptJob.vue b/src/pages/productReceipt/job/productReceiptJob.vue similarity index 100% rename from pages/productReceipt/job/productReceiptJob.vue rename to src/pages/productReceipt/job/productReceiptJob.vue diff --git a/pages/productReceipt/record/productReceiptRecord.vue b/src/pages/productReceipt/record/productReceiptRecord.vue similarity index 100% rename from pages/productReceipt/record/productReceiptRecord.vue rename to src/pages/productReceipt/record/productReceiptRecord.vue diff --git a/pages/productionReceipt/coms/comProductionDetailCard.vue b/src/pages/productionReceipt/coms/comProductionDetailCard.vue similarity index 100% rename from pages/productionReceipt/coms/comProductionDetailCard.vue rename to src/pages/productionReceipt/coms/comProductionDetailCard.vue diff --git a/pages/productionReceipt/coms/comProductionJobCard.vue b/src/pages/productionReceipt/coms/comProductionJobCard.vue similarity index 100% rename from pages/productionReceipt/coms/comProductionJobCard.vue rename to src/pages/productionReceipt/coms/comProductionJobCard.vue diff --git a/pages/productionReceipt/coms/comProductionRecord.vue b/src/pages/productionReceipt/coms/comProductionRecord.vue similarity index 100% rename from pages/productionReceipt/coms/comProductionRecord.vue rename to src/pages/productionReceipt/coms/comProductionRecord.vue diff --git a/pages/productionReceipt/coms/detailInfoPopup.vue b/src/pages/productionReceipt/coms/detailInfoPopup.vue similarity index 100% rename from pages/productionReceipt/coms/detailInfoPopup.vue rename to src/pages/productionReceipt/coms/detailInfoPopup.vue diff --git a/pages/productionReceipt/coms/jobInfoPopup.vue b/src/pages/productionReceipt/coms/jobInfoPopup.vue similarity index 100% rename from pages/productionReceipt/coms/jobInfoPopup.vue rename to src/pages/productionReceipt/coms/jobInfoPopup.vue diff --git a/pages/productionReceipt/coms/jobListPopup.vue b/src/pages/productionReceipt/coms/jobListPopup.vue similarity index 100% rename from pages/productionReceipt/coms/jobListPopup.vue rename to src/pages/productionReceipt/coms/jobListPopup.vue diff --git a/pages/productionReceipt/job/productionReceiptDetail.vue b/src/pages/productionReceipt/job/productionReceiptDetail.vue similarity index 100% rename from pages/productionReceipt/job/productionReceiptDetail.vue rename to src/pages/productionReceipt/job/productionReceiptDetail.vue diff --git a/pages/productionReceipt/job/productionReceiptJob.vue b/src/pages/productionReceipt/job/productionReceiptJob.vue similarity index 100% rename from pages/productionReceipt/job/productionReceiptJob.vue rename to src/pages/productionReceipt/job/productionReceiptJob.vue diff --git a/pages/productionReceipt/record/productionReceiptRecord.vue b/src/pages/productionReceipt/record/productionReceiptRecord.vue similarity index 100% rename from pages/productionReceipt/record/productionReceiptRecord.vue rename to src/pages/productionReceipt/record/productionReceiptRecord.vue diff --git a/pages/productionReturn/coms/comReturn.vue b/src/pages/productionReturn/coms/comReturn.vue similarity index 100% rename from pages/productionReturn/coms/comReturn.vue rename to src/pages/productionReturn/coms/comReturn.vue diff --git a/pages/productionReturn/coms/comReturnCommonRequest.vue b/src/pages/productionReturn/coms/comReturnCommonRequest.vue similarity index 100% rename from pages/productionReturn/coms/comReturnCommonRequest.vue rename to src/pages/productionReturn/coms/comReturnCommonRequest.vue diff --git a/pages/productionReturn/coms/comReturnDetailCard.vue b/src/pages/productionReturn/coms/comReturnDetailCard.vue similarity index 100% rename from pages/productionReturn/coms/comReturnDetailCard.vue rename to src/pages/productionReturn/coms/comReturnDetailCard.vue diff --git a/pages/productionReturn/coms/comReturnJobCard.vue b/src/pages/productionReturn/coms/comReturnJobCard.vue similarity index 100% rename from pages/productionReturn/coms/comReturnJobCard.vue rename to src/pages/productionReturn/coms/comReturnJobCard.vue diff --git a/pages/productionReturn/coms/comReturnRecord.vue b/src/pages/productionReturn/coms/comReturnRecord.vue similarity index 100% rename from pages/productionReturn/coms/comReturnRecord.vue rename to src/pages/productionReturn/coms/comReturnRecord.vue diff --git a/pages/productionReturn/coms/comReturnRecordTitle.vue b/src/pages/productionReturn/coms/comReturnRecordTitle.vue similarity index 100% rename from pages/productionReturn/coms/comReturnRecordTitle.vue rename to src/pages/productionReturn/coms/comReturnRecordTitle.vue diff --git a/pages/productionReturn/coms/comReturnRequestCard.vue b/src/pages/productionReturn/coms/comReturnRequestCard.vue similarity index 100% rename from pages/productionReturn/coms/comReturnRequestCard.vue rename to src/pages/productionReturn/coms/comReturnRequestCard.vue diff --git a/pages/productionReturn/coms/comReturnRequestCreator.vue b/src/pages/productionReturn/coms/comReturnRequestCreator.vue similarity index 100% rename from pages/productionReturn/coms/comReturnRequestCreator.vue rename to src/pages/productionReturn/coms/comReturnRequestCreator.vue diff --git a/pages/productionReturn/coms/comReturnRequestInfo.vue b/src/pages/productionReturn/coms/comReturnRequestInfo.vue similarity index 100% rename from pages/productionReturn/coms/comReturnRequestInfo.vue rename to src/pages/productionReturn/coms/comReturnRequestInfo.vue diff --git a/pages/productionReturn/coms/comReturnRequestPopup.vue b/src/pages/productionReturn/coms/comReturnRequestPopup.vue similarity index 100% rename from pages/productionReturn/coms/comReturnRequestPopup.vue rename to src/pages/productionReturn/coms/comReturnRequestPopup.vue diff --git a/pages/productionReturn/coms/comScanReturnPack.vue b/src/pages/productionReturn/coms/comScanReturnPack.vue similarity index 100% rename from pages/productionReturn/coms/comScanReturnPack.vue rename to src/pages/productionReturn/coms/comScanReturnPack.vue diff --git a/pages/productionReturn/coms/detailInfoPopup.vue b/src/pages/productionReturn/coms/detailInfoPopup.vue similarity index 100% rename from pages/productionReturn/coms/detailInfoPopup.vue rename to src/pages/productionReturn/coms/detailInfoPopup.vue diff --git a/pages/productionReturn/coms/jobInfoPopup.vue b/src/pages/productionReturn/coms/jobInfoPopup.vue similarity index 100% rename from pages/productionReturn/coms/jobInfoPopup.vue rename to src/pages/productionReturn/coms/jobInfoPopup.vue diff --git a/pages/productionReturn/coms/jobListPopup.vue b/src/pages/productionReturn/coms/jobListPopup.vue similarity index 100% rename from pages/productionReturn/coms/jobListPopup.vue rename to src/pages/productionReturn/coms/jobListPopup.vue diff --git a/pages/productionReturn/coms/requestDetailInfoPopup.vue b/src/pages/productionReturn/coms/requestDetailInfoPopup.vue similarity index 100% rename from pages/productionReturn/coms/requestDetailInfoPopup.vue rename to src/pages/productionReturn/coms/requestDetailInfoPopup.vue diff --git a/pages/productionReturn/coms/requestInfoPopup.vue b/src/pages/productionReturn/coms/requestInfoPopup.vue similarity index 100% rename from pages/productionReturn/coms/requestInfoPopup.vue rename to src/pages/productionReturn/coms/requestInfoPopup.vue diff --git a/pages/productionReturn/coms/returnDetailInfoPopup.vue b/src/pages/productionReturn/coms/returnDetailInfoPopup.vue similarity index 100% rename from pages/productionReturn/coms/returnDetailInfoPopup.vue rename to src/pages/productionReturn/coms/returnDetailInfoPopup.vue diff --git a/pages/productionReturn/job/returnDetail.vue b/src/pages/productionReturn/job/returnDetail.vue similarity index 100% rename from pages/productionReturn/job/returnDetail.vue rename to src/pages/productionReturn/job/returnDetail.vue diff --git a/pages/productionReturn/job/returnJob.vue b/src/pages/productionReturn/job/returnJob.vue similarity index 100% rename from pages/productionReturn/job/returnJob.vue rename to src/pages/productionReturn/job/returnJob.vue diff --git a/pages/productionReturn/record/returnToHold.vue b/src/pages/productionReturn/record/returnToHold.vue similarity index 100% rename from pages/productionReturn/record/returnToHold.vue rename to src/pages/productionReturn/record/returnToHold.vue diff --git a/pages/productionReturn/record/returnToStore.vue b/src/pages/productionReturn/record/returnToStore.vue similarity index 100% rename from pages/productionReturn/record/returnToStore.vue rename to src/pages/productionReturn/record/returnToStore.vue diff --git a/pages/productionReturn/request/requestDetail.vue b/src/pages/productionReturn/request/requestDetail.vue similarity index 100% rename from pages/productionReturn/request/requestDetail.vue rename to src/pages/productionReturn/request/requestDetail.vue diff --git a/pages/productionReturn/request/returnRequestCreate.vue b/src/pages/productionReturn/request/returnRequestCreate.vue similarity index 100% rename from pages/productionReturn/request/returnRequestCreate.vue rename to src/pages/productionReturn/request/returnRequestCreate.vue diff --git a/pages/productionReturn/request/returnToHoldRequest.vue b/src/pages/productionReturn/request/returnToHoldRequest.vue similarity index 100% rename from pages/productionReturn/request/returnToHoldRequest.vue rename to src/pages/productionReturn/request/returnToHoldRequest.vue diff --git a/pages/productionReturn/request/returnToStoreRequest.vue b/src/pages/productionReturn/request/returnToStoreRequest.vue similarity index 100% rename from pages/productionReturn/request/returnToStoreRequest.vue rename to src/pages/productionReturn/request/returnToStoreRequest.vue diff --git a/pages/purchaseReceipt/coms/comReceiptDetailCard.vue b/src/pages/purchaseReceipt/coms/comReceiptDetailCard.vue similarity index 100% rename from pages/purchaseReceipt/coms/comReceiptDetailCard.vue rename to src/pages/purchaseReceipt/coms/comReceiptDetailCard.vue diff --git a/pages/purchaseReceipt/coms/comReceiptJobCard.vue b/src/pages/purchaseReceipt/coms/comReceiptJobCard.vue similarity index 100% rename from pages/purchaseReceipt/coms/comReceiptJobCard.vue rename to src/pages/purchaseReceipt/coms/comReceiptJobCard.vue diff --git a/pages/purchaseReceipt/coms/receiptDetailInfoPopup.vue b/src/pages/purchaseReceipt/coms/receiptDetailInfoPopup.vue similarity index 100% rename from pages/purchaseReceipt/coms/receiptDetailInfoPopup.vue rename to src/pages/purchaseReceipt/coms/receiptDetailInfoPopup.vue diff --git a/pages/purchaseReceipt/coms/receiptInfoPopup.vue b/src/pages/purchaseReceipt/coms/receiptInfoPopup.vue similarity index 100% rename from pages/purchaseReceipt/coms/receiptInfoPopup.vue rename to src/pages/purchaseReceipt/coms/receiptInfoPopup.vue diff --git a/pages/purchaseReceipt/coms/receiptJobListPopup.vue b/src/pages/purchaseReceipt/coms/receiptJobListPopup.vue similarity index 100% rename from pages/purchaseReceipt/coms/receiptJobListPopup.vue rename to src/pages/purchaseReceipt/coms/receiptJobListPopup.vue diff --git a/pages/purchaseReceipt/job/receiptDetail.vue b/src/pages/purchaseReceipt/job/receiptDetail.vue similarity index 100% rename from pages/purchaseReceipt/job/receiptDetail.vue rename to src/pages/purchaseReceipt/job/receiptDetail.vue diff --git a/pages/purchaseReceipt/job/receiptJob.vue b/src/pages/purchaseReceipt/job/receiptJob.vue similarity index 100% rename from pages/purchaseReceipt/job/receiptJob.vue rename to src/pages/purchaseReceipt/job/receiptJob.vue diff --git a/pages/purchaseReturn/coms/comReturnJobCard.vue b/src/pages/purchaseReturn/coms/comReturnJobCard.vue similarity index 100% rename from pages/purchaseReturn/coms/comReturnJobCard.vue rename to src/pages/purchaseReturn/coms/comReturnJobCard.vue diff --git a/pages/purchaseReturn/coms/comReturnRequestCard.vue b/src/pages/purchaseReturn/coms/comReturnRequestCard.vue similarity index 100% rename from pages/purchaseReturn/coms/comReturnRequestCard.vue rename to src/pages/purchaseReturn/coms/comReturnRequestCard.vue diff --git a/pages/purchaseReturn/coms/requestDetailInfoPopup.vue b/src/pages/purchaseReturn/coms/requestDetailInfoPopup.vue similarity index 100% rename from pages/purchaseReturn/coms/requestDetailInfoPopup.vue rename to src/pages/purchaseReturn/coms/requestDetailInfoPopup.vue diff --git a/pages/purchaseReturn/coms/requestInfoPopup.vue b/src/pages/purchaseReturn/coms/requestInfoPopup.vue similarity index 100% rename from pages/purchaseReturn/coms/requestInfoPopup.vue rename to src/pages/purchaseReturn/coms/requestInfoPopup.vue diff --git a/pages/purchaseReturn/coms/returnDetailInfoPopup.vue b/src/pages/purchaseReturn/coms/returnDetailInfoPopup.vue similarity index 100% rename from pages/purchaseReturn/coms/returnDetailInfoPopup.vue rename to src/pages/purchaseReturn/coms/returnDetailInfoPopup.vue diff --git a/pages/purchaseReturn/coms/returnInfoPopup.vue b/src/pages/purchaseReturn/coms/returnInfoPopup.vue similarity index 100% rename from pages/purchaseReturn/coms/returnInfoPopup.vue rename to src/pages/purchaseReturn/coms/returnInfoPopup.vue diff --git a/pages/purchaseReturn/coms/returnJobListPopup.vue b/src/pages/purchaseReturn/coms/returnJobListPopup.vue similarity index 100% rename from pages/purchaseReturn/coms/returnJobListPopup.vue rename to src/pages/purchaseReturn/coms/returnJobListPopup.vue diff --git a/pages/purchaseReturn/job/returnDetail.vue b/src/pages/purchaseReturn/job/returnDetail.vue similarity index 100% rename from pages/purchaseReturn/job/returnDetail.vue rename to src/pages/purchaseReturn/job/returnDetail.vue diff --git a/pages/purchaseReturn/job/returnJob.vue b/src/pages/purchaseReturn/job/returnJob.vue similarity index 100% rename from pages/purchaseReturn/job/returnJob.vue rename to src/pages/purchaseReturn/job/returnJob.vue diff --git a/pages/purchaseReturn/record/returnRecord.vue b/src/pages/purchaseReturn/record/returnRecord.vue similarity index 100% rename from pages/purchaseReturn/record/returnRecord.vue rename to src/pages/purchaseReturn/record/returnRecord.vue diff --git a/pages/purchaseReturn/request/returnRequest.vue b/src/pages/purchaseReturn/request/returnRequest.vue similarity index 100% rename from pages/purchaseReturn/request/returnRequest.vue rename to src/pages/purchaseReturn/request/returnRequest.vue diff --git a/pages/purchaseReturn/request/returnRequestCreate.vue b/src/pages/purchaseReturn/request/returnRequestCreate.vue similarity index 100% rename from pages/purchaseReturn/request/returnRequestCreate.vue rename to src/pages/purchaseReturn/request/returnRequestCreate.vue diff --git a/pages/purchaseReturn/request/returnRequestDetail.vue b/src/pages/purchaseReturn/request/returnRequestDetail.vue similarity index 100% rename from pages/purchaseReturn/request/returnRequestDetail.vue rename to src/pages/purchaseReturn/request/returnRequestDetail.vue diff --git a/pages/putaway/coms/comPutawayJobCard.vue b/src/pages/putaway/coms/comPutawayJobCard.vue similarity index 100% rename from pages/putaway/coms/comPutawayJobCard.vue rename to src/pages/putaway/coms/comPutawayJobCard.vue diff --git a/pages/putaway/coms/comPutawayRequestCard.vue b/src/pages/putaway/coms/comPutawayRequestCard.vue similarity index 100% rename from pages/putaway/coms/comPutawayRequestCard.vue rename to src/pages/putaway/coms/comPutawayRequestCard.vue diff --git a/pages/putaway/coms/putawayDetailInfoPopup.vue b/src/pages/putaway/coms/putawayDetailInfoPopup.vue similarity index 100% rename from pages/putaway/coms/putawayDetailInfoPopup.vue rename to src/pages/putaway/coms/putawayDetailInfoPopup.vue diff --git a/pages/putaway/coms/putawayInfoPopup.vue b/src/pages/putaway/coms/putawayInfoPopup.vue similarity index 100% rename from pages/putaway/coms/putawayInfoPopup.vue rename to src/pages/putaway/coms/putawayInfoPopup.vue diff --git a/pages/putaway/coms/putawayJobListPopup.vue b/src/pages/putaway/coms/putawayJobListPopup.vue similarity index 100% rename from pages/putaway/coms/putawayJobListPopup.vue rename to src/pages/putaway/coms/putawayJobListPopup.vue diff --git a/pages/putaway/coms/requestDetailInfoPopup.vue b/src/pages/putaway/coms/requestDetailInfoPopup.vue similarity index 100% rename from pages/putaway/coms/requestDetailInfoPopup.vue rename to src/pages/putaway/coms/requestDetailInfoPopup.vue diff --git a/pages/putaway/coms/requestInfoPopup.vue b/src/pages/putaway/coms/requestInfoPopup.vue similarity index 100% rename from pages/putaway/coms/requestInfoPopup.vue rename to src/pages/putaway/coms/requestInfoPopup.vue diff --git a/pages/putaway/job/putawayDetail.vue b/src/pages/putaway/job/putawayDetail.vue similarity index 100% rename from pages/putaway/job/putawayDetail.vue rename to src/pages/putaway/job/putawayDetail.vue diff --git a/pages/putaway/job/putawayJob.vue b/src/pages/putaway/job/putawayJob.vue similarity index 100% rename from pages/putaway/job/putawayJob.vue rename to src/pages/putaway/job/putawayJob.vue diff --git a/pages/putaway/record/putawayRecord.vue b/src/pages/putaway/record/putawayRecord.vue similarity index 100% rename from pages/putaway/record/putawayRecord.vue rename to src/pages/putaway/record/putawayRecord.vue diff --git a/pages/putaway/request/putawayRequest.vue b/src/pages/putaway/request/putawayRequest.vue similarity index 100% rename from pages/putaway/request/putawayRequest.vue rename to src/pages/putaway/request/putawayRequest.vue diff --git a/pages/putaway/request/putawayRequestCreate.vue b/src/pages/putaway/request/putawayRequestCreate.vue similarity index 100% rename from pages/putaway/request/putawayRequestCreate.vue rename to src/pages/putaway/request/putawayRequestCreate.vue diff --git a/pages/putaway/request/putawayRequestDetail.vue b/src/pages/putaway/request/putawayRequestDetail.vue similarity index 100% rename from pages/putaway/request/putawayRequestDetail.vue rename to src/pages/putaway/request/putawayRequestDetail.vue diff --git a/pages/query/coms/comItemBalance.vue b/src/pages/query/coms/comItemBalance.vue similarity index 100% rename from pages/query/coms/comItemBalance.vue rename to src/pages/query/coms/comItemBalance.vue diff --git a/pages/query/coms/comItemDetailCard.vue b/src/pages/query/coms/comItemDetailCard.vue similarity index 100% rename from pages/query/coms/comItemDetailCard.vue rename to src/pages/query/coms/comItemDetailCard.vue diff --git a/pages/query/coms/comLocationDetailCard.vue b/src/pages/query/coms/comLocationDetailCard.vue similarity index 100% rename from pages/query/coms/comLocationDetailCard.vue rename to src/pages/query/coms/comLocationDetailCard.vue diff --git a/pages/query/container.vue b/src/pages/query/container.vue similarity index 100% rename from pages/query/container.vue rename to src/pages/query/container.vue diff --git a/pages/query/item.vue b/src/pages/query/item.vue similarity index 100% rename from pages/query/item.vue rename to src/pages/query/item.vue diff --git a/pages/query/item_copy.vue b/src/pages/query/item_copy.vue similarity index 100% rename from pages/query/item_copy.vue rename to src/pages/query/item_copy.vue diff --git a/pages/query/location.vue b/src/pages/query/location.vue similarity index 100% rename from pages/query/location.vue rename to src/pages/query/location.vue diff --git a/pages/query/location_copy.vue b/src/pages/query/location_copy.vue similarity index 100% rename from pages/query/location_copy.vue rename to src/pages/query/location_copy.vue diff --git a/pages/repleinsh/coms/comRepleinshJobCard.vue b/src/pages/repleinsh/coms/comRepleinshJobCard.vue similarity index 100% rename from pages/repleinsh/coms/comRepleinshJobCard.vue rename to src/pages/repleinsh/coms/comRepleinshJobCard.vue diff --git a/pages/repleinsh/coms/comRepleinshRequestCard.vue b/src/pages/repleinsh/coms/comRepleinshRequestCard.vue similarity index 100% rename from pages/repleinsh/coms/comRepleinshRequestCard.vue rename to src/pages/repleinsh/coms/comRepleinshRequestCard.vue diff --git a/pages/repleinsh/coms/comRepleinshRequestPopup.vue b/src/pages/repleinsh/coms/comRepleinshRequestPopup.vue similarity index 100% rename from pages/repleinsh/coms/comRepleinshRequestPopup.vue rename to src/pages/repleinsh/coms/comRepleinshRequestPopup.vue diff --git a/pages/repleinsh/coms/comRepleishDetailCard.vue b/src/pages/repleinsh/coms/comRepleishDetailCard.vue similarity index 100% rename from pages/repleinsh/coms/comRepleishDetailCard.vue rename to src/pages/repleinsh/coms/comRepleishDetailCard.vue diff --git a/pages/repleinsh/coms/comScanReplishPack.vue b/src/pages/repleinsh/coms/comScanReplishPack.vue similarity index 100% rename from pages/repleinsh/coms/comScanReplishPack.vue rename to src/pages/repleinsh/coms/comScanReplishPack.vue diff --git a/pages/repleinsh/coms/repleinshDetailInfoPopup.vue b/src/pages/repleinsh/coms/repleinshDetailInfoPopup.vue similarity index 100% rename from pages/repleinsh/coms/repleinshDetailInfoPopup.vue rename to src/pages/repleinsh/coms/repleinshDetailInfoPopup.vue diff --git a/pages/repleinsh/coms/repleinshInfoPopup.vue b/src/pages/repleinsh/coms/repleinshInfoPopup.vue similarity index 100% rename from pages/repleinsh/coms/repleinshInfoPopup.vue rename to src/pages/repleinsh/coms/repleinshInfoPopup.vue diff --git a/pages/repleinsh/coms/repleinshJobListPopup.vue b/src/pages/repleinsh/coms/repleinshJobListPopup.vue similarity index 100% rename from pages/repleinsh/coms/repleinshJobListPopup.vue rename to src/pages/repleinsh/coms/repleinshJobListPopup.vue diff --git a/pages/repleinsh/coms/requestDetailInfoPopup.vue b/src/pages/repleinsh/coms/requestDetailInfoPopup.vue similarity index 100% rename from pages/repleinsh/coms/requestDetailInfoPopup.vue rename to src/pages/repleinsh/coms/requestDetailInfoPopup.vue diff --git a/pages/repleinsh/coms/requestInfoPopup.vue b/src/pages/repleinsh/coms/requestInfoPopup.vue similarity index 100% rename from pages/repleinsh/coms/requestInfoPopup.vue rename to src/pages/repleinsh/coms/requestInfoPopup.vue diff --git a/pages/repleinsh/job/repleinshDetail.vue b/src/pages/repleinsh/job/repleinshDetail.vue similarity index 100% rename from pages/repleinsh/job/repleinshDetail.vue rename to src/pages/repleinsh/job/repleinshDetail.vue diff --git a/pages/repleinsh/job/repleinshJob.vue b/src/pages/repleinsh/job/repleinshJob.vue similarity index 100% rename from pages/repleinsh/job/repleinshJob.vue rename to src/pages/repleinsh/job/repleinshJob.vue diff --git a/pages/repleinsh/record/repleinshRecord.vue b/src/pages/repleinsh/record/repleinshRecord.vue similarity index 100% rename from pages/repleinsh/record/repleinshRecord.vue rename to src/pages/repleinsh/record/repleinshRecord.vue diff --git a/pages/repleinsh/request/repleinshRequest.vue b/src/pages/repleinsh/request/repleinshRequest.vue similarity index 100% rename from pages/repleinsh/request/repleinshRequest.vue rename to src/pages/repleinsh/request/repleinshRequest.vue diff --git a/pages/repleinsh/request/repleinshRequestDetail.vue b/src/pages/repleinsh/request/repleinshRequestDetail.vue similarity index 100% rename from pages/repleinsh/request/repleinshRequestDetail.vue rename to src/pages/repleinsh/request/repleinshRequestDetail.vue diff --git a/pages/scrap/coms/comScrapDetailCard.vue b/src/pages/scrap/coms/comScrapDetailCard.vue similarity index 100% rename from pages/scrap/coms/comScrapDetailCard.vue rename to src/pages/scrap/coms/comScrapDetailCard.vue diff --git a/pages/scrap/coms/comScrapJobCard.vue b/src/pages/scrap/coms/comScrapJobCard.vue similarity index 100% rename from pages/scrap/coms/comScrapJobCard.vue rename to src/pages/scrap/coms/comScrapJobCard.vue diff --git a/pages/scrap/coms/comScrapRequestCard.vue b/src/pages/scrap/coms/comScrapRequestCard.vue similarity index 100% rename from pages/scrap/coms/comScrapRequestCard.vue rename to src/pages/scrap/coms/comScrapRequestCard.vue diff --git a/pages/scrap/coms/requestDetailInfoPopup.vue b/src/pages/scrap/coms/requestDetailInfoPopup.vue similarity index 100% rename from pages/scrap/coms/requestDetailInfoPopup.vue rename to src/pages/scrap/coms/requestDetailInfoPopup.vue diff --git a/pages/scrap/coms/requestInfoPopup.vue b/src/pages/scrap/coms/requestInfoPopup.vue similarity index 100% rename from pages/scrap/coms/requestInfoPopup.vue rename to src/pages/scrap/coms/requestInfoPopup.vue diff --git a/pages/scrap/coms/scrapDetailInfoPopup.vue b/src/pages/scrap/coms/scrapDetailInfoPopup.vue similarity index 100% rename from pages/scrap/coms/scrapDetailInfoPopup.vue rename to src/pages/scrap/coms/scrapDetailInfoPopup.vue diff --git a/pages/scrap/coms/scrapInfoPopup.vue b/src/pages/scrap/coms/scrapInfoPopup.vue similarity index 100% rename from pages/scrap/coms/scrapInfoPopup.vue rename to src/pages/scrap/coms/scrapInfoPopup.vue diff --git a/pages/scrap/coms/scrapJobListPopup.vue b/src/pages/scrap/coms/scrapJobListPopup.vue similarity index 100% rename from pages/scrap/coms/scrapJobListPopup.vue rename to src/pages/scrap/coms/scrapJobListPopup.vue diff --git a/pages/scrap/job/scrapJob.vue b/src/pages/scrap/job/scrapJob.vue similarity index 100% rename from pages/scrap/job/scrapJob.vue rename to src/pages/scrap/job/scrapJob.vue diff --git a/pages/scrap/job/scrapJobDetail.vue b/src/pages/scrap/job/scrapJobDetail.vue similarity index 100% rename from pages/scrap/job/scrapJobDetail.vue rename to src/pages/scrap/job/scrapJobDetail.vue diff --git a/pages/scrap/record/scrapRecord.vue b/src/pages/scrap/record/scrapRecord.vue similarity index 100% rename from pages/scrap/record/scrapRecord.vue rename to src/pages/scrap/record/scrapRecord.vue diff --git a/pages/scrap/request/scrapRequestCreate.vue b/src/pages/scrap/request/scrapRequestCreate.vue similarity index 100% rename from pages/scrap/request/scrapRequestCreate.vue rename to src/pages/scrap/request/scrapRequestCreate.vue diff --git a/pages/scrap/request/scrapRequestDetail.vue b/src/pages/scrap/request/scrapRequestDetail.vue similarity index 100% rename from pages/scrap/request/scrapRequestDetail.vue rename to src/pages/scrap/request/scrapRequestDetail.vue diff --git a/pages/scrap/request/scrapRrequest.vue b/src/pages/scrap/request/scrapRrequest.vue similarity index 100% rename from pages/scrap/request/scrapRrequest.vue rename to src/pages/scrap/request/scrapRrequest.vue diff --git a/pages/setter/index.vue b/src/pages/setter/index.vue similarity index 80% rename from pages/setter/index.vue rename to src/pages/setter/index.vue index 9b616cf..71458a2 100644 --- a/pages/setter/index.vue +++ b/src/pages/setter/index.vue @@ -32,7 +32,6 @@ logout, getUserProfile } from '@/api/request2.js'; - import store from '@/store' import { clearCacheData } from '@/common/directory.js'; @@ -55,10 +54,14 @@ onLoad } from "@dcloudio/uni-app"; const app = createApp({}); + import { useCountStore } from '@/store' + + // 获取自定义的store + const store = useCountStore() // app.component({ // }); - const userName = ref(store.state.user.name); + const userName = ref(store.name); let test = ref("123"); let version = ref(); let userInfo = ref(null); @@ -73,23 +76,37 @@ }) }); +function handleLogout() { + proxy.$modal.confirm('确定注销并退出系统吗?').then(() => { + store.LogOut().then(() => { + // #ifdef H5 + uni.reLaunch({ + url: '../login/index' + }) + // #endif + + // #ifdef APP + plus.runtime.quit() + // #endif + }).catch(() => { }) + }).catch(() => { }) + } - - function handlerlogout() { - store.dispatch('LogOut', {}).then(() => { - clearStorage(); - // #ifdef H5 - uni.reLaunch({ - url: '../login/index' - }) - // #endif + // function handlerlogout() { + // store.dispatch('LogOut', {}).then(() => { + // clearStorage(); + // // #ifdef H5 + // uni.reLaunch({ + // url: '../login/index' + // }) + // // #endif - // #ifdef APP - plus.runtime.quit() - // #endif + // // #ifdef APP + // plus.runtime.quit() + // // #endif - }) - }; + // }) + // }; function clearStorage() { uni.clearStorageSync() diff --git a/pages/setter/passwordpage.vue b/src/pages/setter/passwordpage.vue similarity index 100% rename from pages/setter/passwordpage.vue rename to src/pages/setter/passwordpage.vue diff --git a/pages/setter/setterDetail.vue b/src/pages/setter/setterDetail.vue similarity index 100% rename from pages/setter/setterDetail.vue rename to src/pages/setter/setterDetail.vue diff --git a/pages/supplierDeliver/coms/comRecordCard.vue b/src/pages/supplierDeliver/coms/comRecordCard.vue similarity index 100% rename from pages/supplierDeliver/coms/comRecordCard.vue rename to src/pages/supplierDeliver/coms/comRecordCard.vue diff --git a/pages/supplierDeliver/coms/comRecordDetailCard.vue b/src/pages/supplierDeliver/coms/comRecordDetailCard.vue similarity index 100% rename from pages/supplierDeliver/coms/comRecordDetailCard.vue rename to src/pages/supplierDeliver/coms/comRecordDetailCard.vue diff --git a/pages/supplierDeliver/coms/recordDetailInfoPopup.vue b/src/pages/supplierDeliver/coms/recordDetailInfoPopup.vue similarity index 100% rename from pages/supplierDeliver/coms/recordDetailInfoPopup.vue rename to src/pages/supplierDeliver/coms/recordDetailInfoPopup.vue diff --git a/pages/supplierDeliver/coms/recordInfoPopup.vue b/src/pages/supplierDeliver/coms/recordInfoPopup.vue similarity index 100% rename from pages/supplierDeliver/coms/recordInfoPopup.vue rename to src/pages/supplierDeliver/coms/recordInfoPopup.vue diff --git a/pages/supplierDeliver/coms/recordListDetailPop.vue b/src/pages/supplierDeliver/coms/recordListDetailPop.vue similarity index 100% rename from pages/supplierDeliver/coms/recordListDetailPop.vue rename to src/pages/supplierDeliver/coms/recordListDetailPop.vue diff --git a/pages/supplierDeliver/coms/recordListPopup.vue b/src/pages/supplierDeliver/coms/recordListPopup.vue similarity index 100% rename from pages/supplierDeliver/coms/recordListPopup.vue rename to src/pages/supplierDeliver/coms/recordListPopup.vue diff --git a/pages/supplierDeliver/coms/recordtDetailInfoPopup.vue b/src/pages/supplierDeliver/coms/recordtDetailInfoPopup.vue similarity index 100% rename from pages/supplierDeliver/coms/recordtDetailInfoPopup.vue rename to src/pages/supplierDeliver/coms/recordtDetailInfoPopup.vue diff --git a/pages/supplierDeliver/record/supplierDeliverRecord.vue b/src/pages/supplierDeliver/record/supplierDeliverRecord.vue similarity index 100% rename from pages/supplierDeliver/record/supplierDeliverRecord.vue rename to src/pages/supplierDeliver/record/supplierDeliverRecord.vue diff --git a/pages/supplierDeliver/record/supplierDeliverRecordDetail.vue b/src/pages/supplierDeliver/record/supplierDeliverRecordDetail.vue similarity index 100% rename from pages/supplierDeliver/record/supplierDeliverRecordDetail.vue rename to src/pages/supplierDeliver/record/supplierDeliverRecordDetail.vue diff --git a/pages/transfer/coms/comReceiptDetailCard.vue b/src/pages/transfer/coms/comReceiptDetailCard.vue similarity index 100% rename from pages/transfer/coms/comReceiptDetailCard.vue rename to src/pages/transfer/coms/comReceiptDetailCard.vue diff --git a/pages/transfer/coms/comTransferJobCard.vue b/src/pages/transfer/coms/comTransferJobCard.vue similarity index 100% rename from pages/transfer/coms/comTransferJobCard.vue rename to src/pages/transfer/coms/comTransferJobCard.vue diff --git a/pages/transfer/coms/comTransferRecord.vue b/src/pages/transfer/coms/comTransferRecord.vue similarity index 100% rename from pages/transfer/coms/comTransferRecord.vue rename to src/pages/transfer/coms/comTransferRecord.vue diff --git a/pages/transfer/coms/detailInfoPopup.vue b/src/pages/transfer/coms/detailInfoPopup.vue similarity index 100% rename from pages/transfer/coms/detailInfoPopup.vue rename to src/pages/transfer/coms/detailInfoPopup.vue diff --git a/pages/transfer/coms/jobInfoPopup.vue b/src/pages/transfer/coms/jobInfoPopup.vue similarity index 100% rename from pages/transfer/coms/jobInfoPopup.vue rename to src/pages/transfer/coms/jobInfoPopup.vue diff --git a/pages/transfer/coms/jobListPopup.vue b/src/pages/transfer/coms/jobListPopup.vue similarity index 100% rename from pages/transfer/coms/jobListPopup.vue rename to src/pages/transfer/coms/jobListPopup.vue diff --git a/pages/transfer/job/issueDetail.vue b/src/pages/transfer/job/issueDetail.vue similarity index 100% rename from pages/transfer/job/issueDetail.vue rename to src/pages/transfer/job/issueDetail.vue diff --git a/pages/transfer/job/issueJob.vue b/src/pages/transfer/job/issueJob.vue similarity index 100% rename from pages/transfer/job/issueJob.vue rename to src/pages/transfer/job/issueJob.vue diff --git a/pages/transfer/job/receiptDetail.vue b/src/pages/transfer/job/receiptDetail.vue similarity index 100% rename from pages/transfer/job/receiptDetail.vue rename to src/pages/transfer/job/receiptDetail.vue diff --git a/pages/transfer/job/receiptJob.vue b/src/pages/transfer/job/receiptJob.vue similarity index 100% rename from pages/transfer/job/receiptJob.vue rename to src/pages/transfer/job/receiptJob.vue diff --git a/pages/transfer/job/transferDetail.vue b/src/pages/transfer/job/transferDetail.vue similarity index 100% rename from pages/transfer/job/transferDetail.vue rename to src/pages/transfer/job/transferDetail.vue diff --git a/pages/transfer/job/transferJob.vue b/src/pages/transfer/job/transferJob.vue similarity index 100% rename from pages/transfer/job/transferJob.vue rename to src/pages/transfer/job/transferJob.vue diff --git a/pages/transfer/record/deliverRecord.vue b/src/pages/transfer/record/deliverRecord.vue similarity index 100% rename from pages/transfer/record/deliverRecord.vue rename to src/pages/transfer/record/deliverRecord.vue diff --git a/pages/transfer/record/receiptRecord.vue b/src/pages/transfer/record/receiptRecord.vue similarity index 100% rename from pages/transfer/record/receiptRecord.vue rename to src/pages/transfer/record/receiptRecord.vue diff --git a/pages/unPlanned/coms/comBalance.vue b/src/pages/unPlanned/coms/comBalance.vue similarity index 100% rename from pages/unPlanned/coms/comBalance.vue rename to src/pages/unPlanned/coms/comBalance.vue diff --git a/pages/unPlanned/coms/comIssueDetailCard.vue b/src/pages/unPlanned/coms/comIssueDetailCard.vue similarity index 100% rename from pages/unPlanned/coms/comIssueDetailCard.vue rename to src/pages/unPlanned/coms/comIssueDetailCard.vue diff --git a/pages/unPlanned/coms/comIssueJobCard.vue b/src/pages/unPlanned/coms/comIssueJobCard.vue similarity index 100% rename from pages/unPlanned/coms/comIssueJobCard.vue rename to src/pages/unPlanned/coms/comIssueJobCard.vue diff --git a/pages/unPlanned/coms/comIssueRequestCard.vue b/src/pages/unPlanned/coms/comIssueRequestCard.vue similarity index 100% rename from pages/unPlanned/coms/comIssueRequestCard.vue rename to src/pages/unPlanned/coms/comIssueRequestCard.vue diff --git a/pages/unPlanned/coms/comReceiptDetailCard.vue b/src/pages/unPlanned/coms/comReceiptDetailCard.vue similarity index 100% rename from pages/unPlanned/coms/comReceiptDetailCard.vue rename to src/pages/unPlanned/coms/comReceiptDetailCard.vue diff --git a/pages/unPlanned/coms/comReceiptJobCard.vue b/src/pages/unPlanned/coms/comReceiptJobCard.vue similarity index 100% rename from pages/unPlanned/coms/comReceiptJobCard.vue rename to src/pages/unPlanned/coms/comReceiptJobCard.vue diff --git a/pages/unPlanned/coms/comReceiptRecord.vue b/src/pages/unPlanned/coms/comReceiptRecord.vue similarity index 100% rename from pages/unPlanned/coms/comReceiptRecord.vue rename to src/pages/unPlanned/coms/comReceiptRecord.vue diff --git a/pages/unPlanned/coms/comReceiptRequestCard.vue b/src/pages/unPlanned/coms/comReceiptRequestCard.vue similarity index 100% rename from pages/unPlanned/coms/comReceiptRequestCard.vue rename to src/pages/unPlanned/coms/comReceiptRequestCard.vue diff --git a/pages/unPlanned/coms/comReceiptRequestPopup.vue b/src/pages/unPlanned/coms/comReceiptRequestPopup.vue similarity index 100% rename from pages/unPlanned/coms/comReceiptRequestPopup.vue rename to src/pages/unPlanned/coms/comReceiptRequestPopup.vue diff --git a/pages/unPlanned/coms/detailInfoPopup.vue b/src/pages/unPlanned/coms/detailInfoPopup.vue similarity index 100% rename from pages/unPlanned/coms/detailInfoPopup.vue rename to src/pages/unPlanned/coms/detailInfoPopup.vue diff --git a/pages/unPlanned/coms/jobInfoPopup.vue b/src/pages/unPlanned/coms/jobInfoPopup.vue similarity index 100% rename from pages/unPlanned/coms/jobInfoPopup.vue rename to src/pages/unPlanned/coms/jobInfoPopup.vue diff --git a/pages/unPlanned/coms/jobListPopup.vue b/src/pages/unPlanned/coms/jobListPopup.vue similarity index 100% rename from pages/unPlanned/coms/jobListPopup.vue rename to src/pages/unPlanned/coms/jobListPopup.vue diff --git a/pages/unPlanned/coms/requestIssDetailInfoPopup.vue b/src/pages/unPlanned/coms/requestIssDetailInfoPopup.vue similarity index 100% rename from pages/unPlanned/coms/requestIssDetailInfoPopup.vue rename to src/pages/unPlanned/coms/requestIssDetailInfoPopup.vue diff --git a/pages/unPlanned/coms/requestIssInfoPopup.vue b/src/pages/unPlanned/coms/requestIssInfoPopup.vue similarity index 100% rename from pages/unPlanned/coms/requestIssInfoPopup.vue rename to src/pages/unPlanned/coms/requestIssInfoPopup.vue diff --git a/pages/unPlanned/coms/requestRecDetailInfoPopup.vue b/src/pages/unPlanned/coms/requestRecDetailInfoPopup.vue similarity index 100% rename from pages/unPlanned/coms/requestRecDetailInfoPopup.vue rename to src/pages/unPlanned/coms/requestRecDetailInfoPopup.vue diff --git a/pages/unPlanned/coms/requestRecInfoPopup.vue b/src/pages/unPlanned/coms/requestRecInfoPopup.vue similarity index 100% rename from pages/unPlanned/coms/requestRecInfoPopup.vue rename to src/pages/unPlanned/coms/requestRecInfoPopup.vue diff --git a/pages/unPlanned/job/issueJob.vue b/src/pages/unPlanned/job/issueJob.vue similarity index 100% rename from pages/unPlanned/job/issueJob.vue rename to src/pages/unPlanned/job/issueJob.vue diff --git a/pages/unPlanned/job/issueJobDetail.vue b/src/pages/unPlanned/job/issueJobDetail.vue similarity index 100% rename from pages/unPlanned/job/issueJobDetail.vue rename to src/pages/unPlanned/job/issueJobDetail.vue diff --git a/pages/unPlanned/job/receiptJob.vue b/src/pages/unPlanned/job/receiptJob.vue similarity index 100% rename from pages/unPlanned/job/receiptJob.vue rename to src/pages/unPlanned/job/receiptJob.vue diff --git a/pages/unPlanned/job/receiptJobDetail.vue b/src/pages/unPlanned/job/receiptJobDetail.vue similarity index 100% rename from pages/unPlanned/job/receiptJobDetail.vue rename to src/pages/unPlanned/job/receiptJobDetail.vue diff --git a/pages/unPlanned/record/issueRecord.vue b/src/pages/unPlanned/record/issueRecord.vue similarity index 100% rename from pages/unPlanned/record/issueRecord.vue rename to src/pages/unPlanned/record/issueRecord.vue diff --git a/pages/unPlanned/record/receiptRecord.vue b/src/pages/unPlanned/record/receiptRecord.vue similarity index 100% rename from pages/unPlanned/record/receiptRecord.vue rename to src/pages/unPlanned/record/receiptRecord.vue diff --git a/pages/unPlanned/request/issueRequest.vue b/src/pages/unPlanned/request/issueRequest.vue similarity index 100% rename from pages/unPlanned/request/issueRequest.vue rename to src/pages/unPlanned/request/issueRequest.vue diff --git a/pages/unPlanned/request/issueRequestCreate.vue b/src/pages/unPlanned/request/issueRequestCreate.vue similarity index 100% rename from pages/unPlanned/request/issueRequestCreate.vue rename to src/pages/unPlanned/request/issueRequestCreate.vue diff --git a/pages/unPlanned/request/issueRequestDetail.vue b/src/pages/unPlanned/request/issueRequestDetail.vue similarity index 100% rename from pages/unPlanned/request/issueRequestDetail.vue rename to src/pages/unPlanned/request/issueRequestDetail.vue diff --git a/pages/unPlanned/request/receiptRequest.vue b/src/pages/unPlanned/request/receiptRequest.vue similarity index 100% rename from pages/unPlanned/request/receiptRequest.vue rename to src/pages/unPlanned/request/receiptRequest.vue diff --git a/pages/unPlanned/request/receiptRequestCreate.vue b/src/pages/unPlanned/request/receiptRequestCreate.vue similarity index 100% rename from pages/unPlanned/request/receiptRequestCreate.vue rename to src/pages/unPlanned/request/receiptRequestCreate.vue diff --git a/pages/unPlanned/request/receiptRequestDetail.vue b/src/pages/unPlanned/request/receiptRequestDetail.vue similarity index 100% rename from pages/unPlanned/request/receiptRequestDetail.vue rename to src/pages/unPlanned/request/receiptRequestDetail.vue diff --git a/plugins/auth.js b/src/plugins/auth.js similarity index 100% rename from plugins/auth.js rename to src/plugins/auth.js diff --git a/plugins/index.js b/src/plugins/index.js similarity index 100% rename from plugins/index.js rename to src/plugins/index.js diff --git a/plugins/modal.js b/src/plugins/modal.js similarity index 100% rename from plugins/modal.js rename to src/plugins/modal.js diff --git a/plugins/tab.js b/src/plugins/tab.js similarity index 100% rename from plugins/tab.js rename to src/plugins/tab.js diff --git a/plugins/time.js b/src/plugins/time.js similarity index 100% rename from plugins/time.js rename to src/plugins/time.js diff --git a/static/avatar.png b/src/static/avatar.png similarity index 100% rename from static/avatar.png rename to src/static/avatar.png diff --git a/static/customicons.ttf b/src/static/customicons.ttf similarity index 100% rename from static/customicons.ttf rename to src/static/customicons.ttf diff --git a/static/icon/black_count.svg b/src/static/icon/black_count.svg similarity index 100% rename from static/icon/black_count.svg rename to src/static/icon/black_count.svg diff --git a/static/icon/checkmark-circle.svg b/src/static/icon/checkmark-circle.svg similarity index 100% rename from static/icon/checkmark-circle.svg rename to src/static/icon/checkmark-circle.svg diff --git a/static/icon/close-circle.svg b/src/static/icon/close-circle.svg similarity index 100% rename from static/icon/close-circle.svg rename to src/static/icon/close-circle.svg diff --git a/static/icon/close-circle2.svg b/src/static/icon/close-circle2.svg similarity index 100% rename from static/icon/close-circle2.svg rename to src/static/icon/close-circle2.svg diff --git a/static/icon/close.svg b/src/static/icon/close.svg similarity index 100% rename from static/icon/close.svg rename to src/static/icon/close.svg diff --git a/static/icon/data-checkbox.png b/src/static/icon/data-checkbox.png similarity index 100% rename from static/icon/data-checkbox.png rename to src/static/icon/data-checkbox.png diff --git a/static/icon/error-circle.svg b/src/static/icon/error-circle.svg similarity index 100% rename from static/icon/error-circle.svg rename to src/static/icon/error-circle.svg diff --git a/static/icon/icon_customer.svg b/src/static/icon/icon_customer.svg similarity index 100% rename from static/icon/icon_customer.svg rename to src/static/icon/icon_customer.svg diff --git a/static/icon/icon_date.svg b/src/static/icon/icon_date.svg similarity index 100% rename from static/icon/icon_date.svg rename to src/static/icon/icon_date.svg diff --git a/static/icon/icon_eye-fill.svg b/src/static/icon/icon_eye-fill.svg similarity index 100% rename from static/icon/icon_eye-fill.svg rename to src/static/icon/icon_eye-fill.svg diff --git a/static/icon/icon_eye-off-outline.svg b/src/static/icon/icon_eye-off-outline.svg similarity index 100% rename from static/icon/icon_eye-off-outline.svg rename to src/static/icon/icon_eye-off-outline.svg diff --git a/static/icon/icon_filter.svg b/src/static/icon/icon_filter.svg similarity index 100% rename from static/icon/icon_filter.svg rename to src/static/icon/icon_filter.svg diff --git a/static/icon/iconfont.ttf b/src/static/icon/iconfont.ttf similarity index 100% rename from static/icon/iconfont.ttf rename to src/static/icon/iconfont.ttf diff --git a/static/icon/icons_camera.svg b/src/static/icon/icons_camera.svg similarity index 100% rename from static/icon/icons_camera.svg rename to src/static/icon/icons_camera.svg diff --git a/static/icon/icons_close-circle.svg b/src/static/icon/icons_close-circle.svg similarity index 100% rename from static/icon/icons_close-circle.svg rename to src/static/icon/icons_close-circle.svg diff --git a/static/icon/icons_close.svg b/src/static/icon/icons_close.svg similarity index 100% rename from static/icon/icons_close.svg rename to src/static/icon/icons_close.svg diff --git a/static/icon/icons_edit.svg b/src/static/icon/icons_edit.svg similarity index 100% rename from static/icon/icons_edit.svg rename to src/static/icon/icons_edit.svg diff --git a/static/icon/icons_scan_close.svg b/src/static/icon/icons_scan_close.svg similarity index 100% rename from static/icon/icons_scan_close.svg rename to src/static/icon/icons_scan_close.svg diff --git a/static/icon/light_count.svg b/src/static/icon/light_count.svg similarity index 100% rename from static/icon/light_count.svg rename to src/static/icon/light_count.svg diff --git a/static/icon/plus.svg b/src/static/icon/plus.svg similarity index 100% rename from static/icon/plus.svg rename to src/static/icon/plus.svg diff --git a/static/icon/question-circle.svg b/src/static/icon/question-circle.svg similarity index 100% rename from static/icon/question-circle.svg rename to src/static/icon/question-circle.svg diff --git a/static/icon/screen.png b/src/static/icon/screen.png similarity index 100% rename from static/icon/screen.png rename to src/static/icon/screen.png diff --git a/static/icon/search.svg b/src/static/icon/search.svg similarity index 100% rename from static/icon/search.svg rename to src/static/icon/search.svg diff --git a/static/icon/warning.svg b/src/static/icon/warning.svg similarity index 100% rename from static/icon/warning.svg rename to src/static/icon/warning.svg diff --git a/static/icon_personal_name.png b/src/static/icon_personal_name.png similarity index 100% rename from static/icon_personal_name.png rename to src/static/icon_personal_name.png diff --git a/static/icon_personal_password.png b/src/static/icon_personal_password.png similarity index 100% rename from static/icon_personal_password.png rename to src/static/icon_personal_password.png diff --git a/static/icon_personal_setting.png b/src/static/icon_personal_setting.png similarity index 100% rename from static/icon_personal_setting.png rename to src/static/icon_personal_setting.png diff --git a/static/icons_ui/default_blank.png b/src/static/icons_ui/default_blank.png similarity index 100% rename from static/icons_ui/default_blank.png rename to src/static/icons_ui/default_blank.png diff --git a/static/icons_ui/default_data.png b/src/static/icons_ui/default_data.png similarity index 100% rename from static/icons_ui/default_data.png rename to src/static/icons_ui/default_data.png diff --git a/static/icons_ui/default_notpassed.png b/src/static/icons_ui/default_notpassed.png similarity index 100% rename from static/icons_ui/default_notpassed.png rename to src/static/icons_ui/default_notpassed.png diff --git a/static/icons_ui/icon_add.svg b/src/static/icons_ui/icon_add.svg similarity index 100% rename from static/icons_ui/icon_add.svg rename to src/static/icons_ui/icon_add.svg diff --git a/static/icons_ui/icon_apply_num.svg b/src/static/icons_ui/icon_apply_num.svg similarity index 100% rename from static/icons_ui/icon_apply_num.svg rename to src/static/icons_ui/icon_apply_num.svg diff --git a/static/icons_ui/icon_asn.svg b/src/static/icons_ui/icon_asn.svg similarity index 100% rename from static/icons_ui/icon_asn.svg rename to src/static/icons_ui/icon_asn.svg diff --git a/static/icons_ui/icon_avn.svg b/src/static/icons_ui/icon_avn.svg similarity index 100% rename from static/icons_ui/icon_avn.svg rename to src/static/icons_ui/icon_avn.svg diff --git a/static/icons_ui/icon_buy_num.svg b/src/static/icons_ui/icon_buy_num.svg similarity index 100% rename from static/icons_ui/icon_buy_num.svg rename to src/static/icons_ui/icon_buy_num.svg diff --git a/static/icons_ui/icon_camera_black.svg b/src/static/icons_ui/icon_camera_black.svg similarity index 100% rename from static/icons_ui/icon_camera_black.svg rename to src/static/icons_ui/icon_camera_black.svg diff --git a/static/icons_ui/icon_camera_white.svg b/src/static/icons_ui/icon_camera_white.svg similarity index 100% rename from static/icons_ui/icon_camera_white.svg rename to src/static/icons_ui/icon_camera_white.svg diff --git a/static/icons_ui/icon_close.svg b/src/static/icons_ui/icon_close.svg similarity index 100% rename from static/icons_ui/icon_close.svg rename to src/static/icons_ui/icon_close.svg diff --git a/static/icons_ui/icon_customer.svg b/src/static/icons_ui/icon_customer.svg similarity index 100% rename from static/icons_ui/icon_customer.svg rename to src/static/icons_ui/icon_customer.svg diff --git a/static/icons_ui/icon_date.svg b/src/static/icons_ui/icon_date.svg similarity index 100% rename from static/icons_ui/icon_date.svg rename to src/static/icons_ui/icon_date.svg diff --git a/static/icons_ui/icon_down.svg b/src/static/icons_ui/icon_down.svg similarity index 100% rename from static/icons_ui/icon_down.svg rename to src/static/icons_ui/icon_down.svg diff --git a/static/icons_ui/icon_erp.svg b/src/static/icons_ui/icon_erp.svg similarity index 100% rename from static/icons_ui/icon_erp.svg rename to src/static/icons_ui/icon_erp.svg diff --git a/static/icons_ui/icon_form.svg b/src/static/icons_ui/icon_form.svg similarity index 100% rename from static/icons_ui/icon_form.svg rename to src/static/icons_ui/icon_form.svg diff --git a/static/icons_ui/icon_kw.svg b/src/static/icons_ui/icon_kw.svg similarity index 100% rename from static/icons_ui/icon_kw.svg rename to src/static/icons_ui/icon_kw.svg diff --git a/static/icons_ui/icon_kw_blue.svg b/src/static/icons_ui/icon_kw_blue.svg similarity index 100% rename from static/icons_ui/icon_kw_blue.svg rename to src/static/icons_ui/icon_kw_blue.svg diff --git a/static/icons_ui/icon_kw_use.svg b/src/static/icons_ui/icon_kw_use.svg similarity index 100% rename from static/icons_ui/icon_kw_use.svg rename to src/static/icons_ui/icon_kw_use.svg diff --git a/static/icons_ui/icon_login_password.svg b/src/static/icons_ui/icon_login_password.svg similarity index 100% rename from static/icons_ui/icon_login_password.svg rename to src/static/icons_ui/icon_login_password.svg diff --git a/static/icons_ui/icon_login_user.svg b/src/static/icons_ui/icon_login_user.svg similarity index 100% rename from static/icons_ui/icon_login_user.svg rename to src/static/icons_ui/icon_login_user.svg diff --git a/static/icons_ui/icon_notpass.svg b/src/static/icons_ui/icon_notpass.svg similarity index 100% rename from static/icons_ui/icon_notpass.svg rename to src/static/icons_ui/icon_notpass.svg diff --git a/static/icons_ui/icon_num.svg b/src/static/icons_ui/icon_num.svg similarity index 100% rename from static/icons_ui/icon_num.svg rename to src/static/icons_ui/icon_num.svg diff --git a/static/icons_ui/icon_passed.svg b/src/static/icons_ui/icon_passed.svg similarity index 100% rename from static/icons_ui/icon_passed.svg rename to src/static/icons_ui/icon_passed.svg diff --git a/static/icons_ui/icon_pc.svg b/src/static/icons_ui/icon_pc.svg similarity index 100% rename from static/icons_ui/icon_pc.svg rename to src/static/icons_ui/icon_pc.svg diff --git a/static/icons_ui/icon_ponumber.svg b/src/static/icons_ui/icon_ponumber.svg similarity index 100% rename from static/icons_ui/icon_ponumber.svg rename to src/static/icons_ui/icon_ponumber.svg diff --git a/static/icons_ui/icon_prod_line.svg b/src/static/icons_ui/icon_prod_line.svg similarity index 100% rename from static/icons_ui/icon_prod_line.svg rename to src/static/icons_ui/icon_prod_line.svg diff --git a/static/icons_ui/icon_qiju_end.svg b/src/static/icons_ui/icon_qiju_end.svg similarity index 100% rename from static/icons_ui/icon_qiju_end.svg rename to src/static/icons_ui/icon_qiju_end.svg diff --git a/static/icons_ui/icon_qiju_num.svg b/src/static/icons_ui/icon_qiju_num.svg similarity index 100% rename from static/icons_ui/icon_qiju_num.svg rename to src/static/icons_ui/icon_qiju_num.svg diff --git a/static/icons_ui/icon_qiju_start.svg b/src/static/icons_ui/icon_qiju_start.svg similarity index 100% rename from static/icons_ui/icon_qiju_start.svg rename to src/static/icons_ui/icon_qiju_start.svg diff --git a/static/icons_ui/icon_return_num.svg b/src/static/icons_ui/icon_return_num.svg similarity index 100% rename from static/icons_ui/icon_return_num.svg rename to src/static/icons_ui/icon_return_num.svg diff --git a/static/icons_ui/icon_scan_white.svg b/src/static/icons_ui/icon_scan_white.svg similarity index 100% rename from static/icons_ui/icon_scan_white.svg rename to src/static/icons_ui/icon_scan_white.svg diff --git a/static/icons_ui/icon_send_request.svg b/src/static/icons_ui/icon_send_request.svg similarity index 100% rename from static/icons_ui/icon_send_request.svg rename to src/static/icons_ui/icon_send_request.svg diff --git a/static/icons_ui/icon_senditem.svg b/src/static/icons_ui/icon_senditem.svg similarity index 100% rename from static/icons_ui/icon_senditem.svg rename to src/static/icons_ui/icon_senditem.svg diff --git a/static/icons_ui/icon_supplier.svg b/src/static/icons_ui/icon_supplier.svg similarity index 100% rename from static/icons_ui/icon_supplier.svg rename to src/static/icons_ui/icon_supplier.svg diff --git a/static/icons_ui/icon_take_photo.svg b/src/static/icons_ui/icon_take_photo.svg similarity index 100% rename from static/icons_ui/icon_take_photo.svg rename to src/static/icons_ui/icon_take_photo.svg diff --git a/static/icons_ui/icon_tasknum.svg b/src/static/icons_ui/icon_tasknum.svg similarity index 100% rename from static/icons_ui/icon_tasknum.svg rename to src/static/icons_ui/icon_tasknum.svg diff --git a/static/icons_ui/icon_tenant.svg b/src/static/icons_ui/icon_tenant.svg similarity index 100% rename from static/icons_ui/icon_tenant.svg rename to src/static/icons_ui/icon_tenant.svg diff --git a/static/icons_ui/icon_time.svg b/src/static/icons_ui/icon_time.svg similarity index 100% rename from static/icons_ui/icon_time.svg rename to src/static/icons_ui/icon_time.svg diff --git a/static/icons_ui/icon_tm.svg b/src/static/icons_ui/icon_tm.svg similarity index 100% rename from static/icons_ui/icon_tm.svg rename to src/static/icons_ui/icon_tm.svg diff --git a/static/icons_ui/icon_xm.svg b/src/static/icons_ui/icon_xm.svg similarity index 100% rename from static/icons_ui/icon_xm.svg rename to src/static/icons_ui/icon_xm.svg diff --git a/static/icons_ui/icon_xm_blue.svg b/src/static/icons_ui/icon_xm_blue.svg similarity index 100% rename from static/icons_ui/icon_xm_blue.svg rename to src/static/icons_ui/icon_xm_blue.svg diff --git a/static/icons_ui/icons_common_recceipt.svg b/src/static/icons_ui/icons_common_recceipt.svg similarity index 100% rename from static/icons_ui/icons_common_recceipt.svg rename to src/static/icons_ui/icons_common_recceipt.svg diff --git a/static/icons_ui/icons_common_sjadd.svg b/src/static/icons_ui/icons_common_sjadd.svg similarity index 100% rename from static/icons_ui/icons_common_sjadd.svg rename to src/static/icons_ui/icons_common_sjadd.svg diff --git a/static/icons_ui/label_scx.svg b/src/static/icons_ui/label_scx.svg similarity index 100% rename from static/icons_ui/label_scx.svg rename to src/static/icons_ui/label_scx.svg diff --git a/static/icons_ui/login_bg.png b/src/static/icons_ui/login_bg.png similarity index 100% rename from static/icons_ui/login_bg.png rename to src/static/icons_ui/login_bg.png diff --git a/static/icons_ui/popup_bot_bg.png b/src/static/icons_ui/popup_bot_bg.png similarity index 100% rename from static/icons_ui/popup_bot_bg.png rename to src/static/icons_ui/popup_bot_bg.png diff --git a/static/images/banner/banner01.jpg b/src/static/images/banner/banner01.jpg similarity index 100% rename from static/images/banner/banner01.jpg rename to src/static/images/banner/banner01.jpg diff --git a/static/images/banner/banner02.jpg b/src/static/images/banner/banner02.jpg similarity index 100% rename from static/images/banner/banner02.jpg rename to src/static/images/banner/banner02.jpg diff --git a/static/images/banner/banner03.jpg b/src/static/images/banner/banner03.jpg similarity index 100% rename from static/images/banner/banner03.jpg rename to src/static/images/banner/banner03.jpg diff --git a/static/images/banner/icon1.png b/src/static/images/banner/icon1.png similarity index 100% rename from static/images/banner/icon1.png rename to src/static/images/banner/icon1.png diff --git a/static/images/banner/icon2.png b/src/static/images/banner/icon2.png similarity index 100% rename from static/images/banner/icon2.png rename to src/static/images/banner/icon2.png diff --git a/static/images/banner/icon3.png b/src/static/images/banner/icon3.png similarity index 100% rename from static/images/banner/icon3.png rename to src/static/images/banner/icon3.png diff --git a/static/images/banner/icon4.png b/src/static/images/banner/icon4.png similarity index 100% rename from static/images/banner/icon4.png rename to src/static/images/banner/icon4.png diff --git a/static/images/banner/icon5.png b/src/static/images/banner/icon5.png similarity index 100% rename from static/images/banner/icon5.png rename to src/static/images/banner/icon5.png diff --git a/static/images/banner/icon6.png b/src/static/images/banner/icon6.png similarity index 100% rename from static/images/banner/icon6.png rename to src/static/images/banner/icon6.png diff --git a/static/images/banner/icon7.png b/src/static/images/banner/icon7.png similarity index 100% rename from static/images/banner/icon7.png rename to src/static/images/banner/icon7.png diff --git a/static/images/banner/login_banner.svg b/src/static/images/banner/login_banner.svg similarity index 100% rename from static/images/banner/login_banner.svg rename to src/static/images/banner/login_banner.svg diff --git a/static/images/banner/logo-banner.png b/src/static/images/banner/logo-banner.png similarity index 100% rename from static/images/banner/logo-banner.png rename to src/static/images/banner/logo-banner.png diff --git a/static/images/banner/u2335.svg b/src/static/images/banner/u2335.svg similarity index 100% rename from static/images/banner/u2335.svg rename to src/static/images/banner/u2335.svg diff --git a/static/images/banner/u2450.svg b/src/static/images/banner/u2450.svg similarity index 100% rename from static/images/banner/u2450.svg rename to src/static/images/banner/u2450.svg diff --git a/static/images/banner/u253_selected.svg b/src/static/images/banner/u253_selected.svg similarity index 100% rename from static/images/banner/u253_selected.svg rename to src/static/images/banner/u253_selected.svg diff --git a/static/images/bg.jpg b/src/static/images/bg.jpg similarity index 100% rename from static/images/bg.jpg rename to src/static/images/bg.jpg diff --git a/static/images/default.jpg b/src/static/images/default.jpg similarity index 100% rename from static/images/default.jpg rename to src/static/images/default.jpg diff --git a/static/images/icon1.png b/src/static/images/icon1.png similarity index 100% rename from static/images/icon1.png rename to src/static/images/icon1.png diff --git a/static/images/icon1.svg b/src/static/images/icon1.svg similarity index 100% rename from static/images/icon1.svg rename to src/static/images/icon1.svg diff --git a/static/images/icon2.png b/src/static/images/icon2.png similarity index 100% rename from static/images/icon2.png rename to src/static/images/icon2.png diff --git a/static/images/icon2.svg b/src/static/images/icon2.svg similarity index 100% rename from static/images/icon2.svg rename to src/static/images/icon2.svg diff --git a/static/images/icon3.png b/src/static/images/icon3.png similarity index 100% rename from static/images/icon3.png rename to src/static/images/icon3.png diff --git a/static/images/icon3.svg b/src/static/images/icon3.svg similarity index 100% rename from static/images/icon3.svg rename to src/static/images/icon3.svg diff --git a/static/images/icon4.svg b/src/static/images/icon4.svg similarity index 100% rename from static/images/icon4.svg rename to src/static/images/icon4.svg diff --git a/static/images/icon5.svg b/src/static/images/icon5.svg similarity index 100% rename from static/images/icon5.svg rename to src/static/images/icon5.svg diff --git a/static/images/icon6.png b/src/static/images/icon6.png similarity index 100% rename from static/images/icon6.png rename to src/static/images/icon6.png diff --git a/static/images/icon7.png b/src/static/images/icon7.png similarity index 100% rename from static/images/icon7.png rename to src/static/images/icon7.png diff --git a/static/images/icon8.png b/src/static/images/icon8.png similarity index 100% rename from static/images/icon8.png rename to src/static/images/icon8.png diff --git a/static/images/mobile_bg.png b/src/static/images/mobile_bg.png similarity index 100% rename from static/images/mobile_bg.png rename to src/static/images/mobile_bg.png diff --git a/static/images/photo.png b/src/static/images/photo.png similarity index 100% rename from static/images/photo.png rename to src/static/images/photo.png diff --git a/static/images/profile.jpg b/src/static/images/profile.jpg similarity index 100% rename from static/images/profile.jpg rename to src/static/images/profile.jpg diff --git a/static/images/tabbar/tab_act_icon1.png b/src/static/images/tabbar/tab_act_icon1.png similarity index 100% rename from static/images/tabbar/tab_act_icon1.png rename to src/static/images/tabbar/tab_act_icon1.png diff --git a/static/images/tabbar/tab_act_icon2.png b/src/static/images/tabbar/tab_act_icon2.png similarity index 100% rename from static/images/tabbar/tab_act_icon2.png rename to src/static/images/tabbar/tab_act_icon2.png diff --git a/static/images/tabbar/tab_act_icon3.png b/src/static/images/tabbar/tab_act_icon3.png similarity index 100% rename from static/images/tabbar/tab_act_icon3.png rename to src/static/images/tabbar/tab_act_icon3.png diff --git a/static/images/tabbar/tab_act_icon4.png b/src/static/images/tabbar/tab_act_icon4.png similarity index 100% rename from static/images/tabbar/tab_act_icon4.png rename to src/static/images/tabbar/tab_act_icon4.png diff --git a/static/images/tabbar/tab_act_icon5.png b/src/static/images/tabbar/tab_act_icon5.png similarity index 100% rename from static/images/tabbar/tab_act_icon5.png rename to src/static/images/tabbar/tab_act_icon5.png diff --git a/static/images/tabbar/tab_icon1.png b/src/static/images/tabbar/tab_icon1.png similarity index 100% rename from static/images/tabbar/tab_icon1.png rename to src/static/images/tabbar/tab_icon1.png diff --git a/static/images/tabbar/tab_icon2.png b/src/static/images/tabbar/tab_icon2.png similarity index 100% rename from static/images/tabbar/tab_icon2.png rename to src/static/images/tabbar/tab_icon2.png diff --git a/static/images/tabbar/tab_icon3.png b/src/static/images/tabbar/tab_icon3.png similarity index 100% rename from static/images/tabbar/tab_icon3.png rename to src/static/images/tabbar/tab_icon3.png diff --git a/static/images/tabbar/tab_icon4.png b/src/static/images/tabbar/tab_icon4.png similarity index 100% rename from static/images/tabbar/tab_icon4.png rename to src/static/images/tabbar/tab_icon4.png diff --git a/static/images/tabbar/tab_icon5.png b/src/static/images/tabbar/tab_icon5.png similarity index 100% rename from static/images/tabbar/tab_icon5.png rename to src/static/images/tabbar/tab_icon5.png diff --git a/static/login.png b/src/static/login.png similarity index 100% rename from static/login.png rename to src/static/login.png diff --git a/static/logo.png b/src/static/logo.png similarity index 100% rename from static/logo.png rename to src/static/logo.png diff --git a/static/menus/bind_pallet.svg b/src/static/menus/bind_pallet.svg similarity index 100% rename from static/menus/bind_pallet.svg rename to src/static/menus/bind_pallet.svg diff --git a/static/menus/count.svg b/src/static/menus/count.svg similarity index 100% rename from static/menus/count.svg rename to src/static/menus/count.svg diff --git a/static/menus/customer_return.svg b/src/static/menus/customer_return.svg similarity index 100% rename from static/menus/customer_return.svg rename to src/static/menus/customer_return.svg diff --git a/static/menus/deliver.svg b/src/static/menus/deliver.svg similarity index 100% rename from static/menus/deliver.svg rename to src/static/menus/deliver.svg diff --git a/static/menus/hold_to_ok.svg b/src/static/menus/hold_to_ok.svg similarity index 100% rename from static/menus/hold_to_ok.svg rename to src/static/menus/hold_to_ok.svg diff --git a/static/menus/hold_to_scrap.svg b/src/static/menus/hold_to_scrap.svg similarity index 100% rename from static/menus/hold_to_scrap.svg rename to src/static/menus/hold_to_scrap.svg diff --git a/static/menus/inspect.svg b/src/static/menus/inspect.svg similarity index 100% rename from static/menus/inspect.svg rename to src/static/menus/inspect.svg diff --git a/static/menus/inventory_move.svg b/src/static/menus/inventory_move.svg similarity index 100% rename from static/menus/inventory_move.svg rename to src/static/menus/inventory_move.svg diff --git a/static/menus/issue.svg b/src/static/menus/issue.svg similarity index 100% rename from static/menus/issue.svg rename to src/static/menus/issue.svg diff --git a/static/menus/menu_search_lj.svg b/src/static/menus/menu_search_lj.svg similarity index 100% rename from static/menus/menu_search_lj.svg rename to src/static/menus/menu_search_lj.svg diff --git a/static/menus/merge_package.svg b/src/static/menus/merge_package.svg similarity index 100% rename from static/menus/merge_package.svg rename to src/static/menus/merge_package.svg diff --git a/static/menus/ok_to_hold.svg b/src/static/menus/ok_to_hold.svg similarity index 100% rename from static/menus/ok_to_hold.svg rename to src/static/menus/ok_to_hold.svg diff --git a/static/menus/ok_to_scrap.svg b/src/static/menus/ok_to_scrap.svg similarity index 100% rename from static/menus/ok_to_scrap.svg rename to src/static/menus/ok_to_scrap.svg diff --git a/static/menus/over_package.svg b/src/static/menus/over_package.svg similarity index 100% rename from static/menus/over_package.svg rename to src/static/menus/over_package.svg diff --git a/static/menus/product_dismantle.svg b/src/static/menus/product_dismantle.svg similarity index 100% rename from static/menus/product_dismantle.svg rename to src/static/menus/product_dismantle.svg diff --git a/static/menus/product_putaway.svg b/src/static/menus/product_putaway.svg similarity index 100% rename from static/menus/product_putaway.svg rename to src/static/menus/product_putaway.svg diff --git a/static/menus/product_receipt.svg b/src/static/menus/product_receipt.svg similarity index 100% rename from static/menus/product_receipt.svg rename to src/static/menus/product_receipt.svg diff --git a/static/menus/production_receipt.svg b/src/static/menus/production_receipt.svg similarity index 100% rename from static/menus/production_receipt.svg rename to src/static/menus/production_receipt.svg diff --git a/static/menus/production_return.svg b/src/static/menus/production_return.svg similarity index 100% rename from static/menus/production_return.svg rename to src/static/menus/production_return.svg diff --git a/static/menus/purchase_receipt.svg b/src/static/menus/purchase_receipt.svg similarity index 100% rename from static/menus/purchase_receipt.svg rename to src/static/menus/purchase_receipt.svg diff --git a/static/menus/purchase_return.svg b/src/static/menus/purchase_return.svg similarity index 100% rename from static/menus/purchase_return.svg rename to src/static/menus/purchase_return.svg diff --git a/static/menus/putaway.svg b/src/static/menus/putaway.svg similarity index 100% rename from static/menus/putaway.svg rename to src/static/menus/putaway.svg diff --git a/static/menus/query_container.svg b/src/static/menus/query_container.svg similarity index 100% rename from static/menus/query_container.svg rename to src/static/menus/query_container.svg diff --git a/static/menus/query_inspect.svg b/src/static/menus/query_inspect.svg similarity index 100% rename from static/menus/query_inspect.svg rename to src/static/menus/query_inspect.svg diff --git a/static/menus/query_issue_request.svg b/src/static/menus/query_issue_request.svg similarity index 100% rename from static/menus/query_issue_request.svg rename to src/static/menus/query_issue_request.svg diff --git a/static/menus/query_item.svg b/src/static/menus/query_item.svg similarity index 100% rename from static/menus/query_item.svg rename to src/static/menus/query_item.svg diff --git a/static/menus/query_location.svg b/src/static/menus/query_location.svg similarity index 100% rename from static/menus/query_location.svg rename to src/static/menus/query_location.svg diff --git a/static/menus/query_supplier_deliver.svg b/src/static/menus/query_supplier_deliver.svg similarity index 100% rename from static/menus/query_supplier_deliver.svg rename to src/static/menus/query_supplier_deliver.svg diff --git a/static/menus/repleinsh.svg b/src/static/menus/repleinsh.svg similarity index 100% rename from static/menus/repleinsh.svg rename to src/static/menus/repleinsh.svg diff --git a/static/menus/return_to_hold.svg b/src/static/menus/return_to_hold.svg similarity index 100% rename from static/menus/return_to_hold.svg rename to src/static/menus/return_to_hold.svg diff --git a/static/menus/return_to_store.svg b/src/static/menus/return_to_store.svg similarity index 100% rename from static/menus/return_to_store.svg rename to src/static/menus/return_to_store.svg diff --git a/static/menus/scrap.svg b/src/static/menus/scrap.svg similarity index 100% rename from static/menus/scrap.svg rename to src/static/menus/scrap.svg diff --git a/static/menus/scrap_to_hold.svg b/src/static/menus/scrap_to_hold.svg similarity index 100% rename from static/menus/scrap_to_hold.svg rename to src/static/menus/scrap_to_hold.svg diff --git a/static/menus/split_package.svg b/src/static/menus/split_package.svg similarity index 100% rename from static/menus/split_package.svg rename to src/static/menus/split_package.svg diff --git a/static/menus/transfer_deliver.svg b/src/static/menus/transfer_deliver.svg similarity index 100% rename from static/menus/transfer_deliver.svg rename to src/static/menus/transfer_deliver.svg diff --git a/static/menus/transfer_receipt.svg b/src/static/menus/transfer_receipt.svg similarity index 100% rename from static/menus/transfer_receipt.svg rename to src/static/menus/transfer_receipt.svg diff --git a/static/menus/unbind_pallet.svg b/src/static/menus/unbind_pallet.svg similarity index 100% rename from static/menus/unbind_pallet.svg rename to src/static/menus/unbind_pallet.svg diff --git a/static/menus/unplanned_issue.svg b/src/static/menus/unplanned_issue.svg similarity index 100% rename from static/menus/unplanned_issue.svg rename to src/static/menus/unplanned_issue.svg diff --git a/static/menus/unplanned_receipt.svg b/src/static/menus/unplanned_receipt.svg similarity index 100% rename from static/menus/unplanned_receipt.svg rename to src/static/menus/unplanned_receipt.svg diff --git a/static/no_more.png b/src/static/no_more.png similarity index 100% rename from static/no_more.png rename to src/static/no_more.png diff --git a/static/refresher_loading.gif b/src/static/refresher_loading.gif similarity index 100% rename from static/refresher_loading.gif rename to src/static/refresher_loading.gif diff --git a/static/search.svg b/src/static/search.svg similarity index 100% rename from static/search.svg rename to src/static/search.svg diff --git a/static/uni.ttf b/src/static/uni.ttf similarity index 100% rename from static/uni.ttf rename to src/static/uni.ttf diff --git a/store/index.ts b/src/store/index.ts similarity index 100% rename from store/index.ts rename to src/store/index.ts diff --git a/store/modules/countStore.ts b/src/store/modules/countStore.ts similarity index 100% rename from store/modules/countStore.ts rename to src/store/modules/countStore.ts diff --git a/styles/vars/_base.less b/src/styles/vars/_base.less similarity index 100% rename from styles/vars/_base.less rename to src/styles/vars/_base.less diff --git a/styles/vars/_base.scss b/src/styles/vars/_base.scss similarity index 100% rename from styles/vars/_base.scss rename to src/styles/vars/_base.scss diff --git a/uni.scss b/src/uni.scss similarity index 100% rename from uni.scss rename to src/uni.scss diff --git a/uni_modules/uni-badge/changelog.md b/src/uni_modules/uni-badge/changelog.md similarity index 100% rename from uni_modules/uni-badge/changelog.md rename to src/uni_modules/uni-badge/changelog.md diff --git a/uni_modules/uni-badge/components/uni-badge/uni-badge.vue b/src/uni_modules/uni-badge/components/uni-badge/uni-badge.vue similarity index 100% rename from uni_modules/uni-badge/components/uni-badge/uni-badge.vue rename to src/uni_modules/uni-badge/components/uni-badge/uni-badge.vue diff --git a/uni_modules/uni-badge/package.json b/src/uni_modules/uni-badge/package.json similarity index 100% rename from uni_modules/uni-badge/package.json rename to src/uni_modules/uni-badge/package.json diff --git a/uni_modules/uni-badge/readme.md b/src/uni_modules/uni-badge/readme.md similarity index 100% rename from uni_modules/uni-badge/readme.md rename to src/uni_modules/uni-badge/readme.md diff --git a/uni_modules/uni-breadcrumb/changelog.md b/src/uni_modules/uni-breadcrumb/changelog.md similarity index 100% rename from uni_modules/uni-breadcrumb/changelog.md rename to src/uni_modules/uni-breadcrumb/changelog.md diff --git a/uni_modules/uni-breadcrumb/components/uni-breadcrumb-item/uni-breadcrumb-item.vue b/src/uni_modules/uni-breadcrumb/components/uni-breadcrumb-item/uni-breadcrumb-item.vue similarity index 100% rename from uni_modules/uni-breadcrumb/components/uni-breadcrumb-item/uni-breadcrumb-item.vue rename to src/uni_modules/uni-breadcrumb/components/uni-breadcrumb-item/uni-breadcrumb-item.vue diff --git a/uni_modules/uni-breadcrumb/components/uni-breadcrumb/uni-breadcrumb.vue b/src/uni_modules/uni-breadcrumb/components/uni-breadcrumb/uni-breadcrumb.vue similarity index 100% rename from uni_modules/uni-breadcrumb/components/uni-breadcrumb/uni-breadcrumb.vue rename to src/uni_modules/uni-breadcrumb/components/uni-breadcrumb/uni-breadcrumb.vue diff --git a/uni_modules/uni-breadcrumb/package.json b/src/uni_modules/uni-breadcrumb/package.json similarity index 100% rename from uni_modules/uni-breadcrumb/package.json rename to src/uni_modules/uni-breadcrumb/package.json diff --git a/uni_modules/uni-breadcrumb/readme.md b/src/uni_modules/uni-breadcrumb/readme.md similarity index 100% rename from uni_modules/uni-breadcrumb/readme.md rename to src/uni_modules/uni-breadcrumb/readme.md diff --git a/uni_modules/uni-calendar/changelog.md b/src/uni_modules/uni-calendar/changelog.md similarity index 100% rename from uni_modules/uni-calendar/changelog.md rename to src/uni_modules/uni-calendar/changelog.md diff --git a/uni_modules/uni-calendar/components/uni-calendar/calendar.js b/src/uni_modules/uni-calendar/components/uni-calendar/calendar.js similarity index 100% rename from uni_modules/uni-calendar/components/uni-calendar/calendar.js rename to src/uni_modules/uni-calendar/components/uni-calendar/calendar.js diff --git a/uni_modules/uni-calendar/components/uni-calendar/i18n/en.json b/src/uni_modules/uni-calendar/components/uni-calendar/i18n/en.json similarity index 100% rename from uni_modules/uni-calendar/components/uni-calendar/i18n/en.json rename to src/uni_modules/uni-calendar/components/uni-calendar/i18n/en.json diff --git a/uni_modules/uni-calendar/components/uni-calendar/i18n/index.js b/src/uni_modules/uni-calendar/components/uni-calendar/i18n/index.js similarity index 100% rename from uni_modules/uni-calendar/components/uni-calendar/i18n/index.js rename to src/uni_modules/uni-calendar/components/uni-calendar/i18n/index.js diff --git a/uni_modules/uni-calendar/components/uni-calendar/i18n/zh-Hans.json b/src/uni_modules/uni-calendar/components/uni-calendar/i18n/zh-Hans.json similarity index 100% rename from uni_modules/uni-calendar/components/uni-calendar/i18n/zh-Hans.json rename to src/uni_modules/uni-calendar/components/uni-calendar/i18n/zh-Hans.json diff --git a/uni_modules/uni-calendar/components/uni-calendar/i18n/zh-Hant.json b/src/uni_modules/uni-calendar/components/uni-calendar/i18n/zh-Hant.json similarity index 100% rename from uni_modules/uni-calendar/components/uni-calendar/i18n/zh-Hant.json rename to src/uni_modules/uni-calendar/components/uni-calendar/i18n/zh-Hant.json diff --git a/uni_modules/uni-calendar/components/uni-calendar/uni-calendar-item.vue b/src/uni_modules/uni-calendar/components/uni-calendar/uni-calendar-item.vue similarity index 100% rename from uni_modules/uni-calendar/components/uni-calendar/uni-calendar-item.vue rename to src/uni_modules/uni-calendar/components/uni-calendar/uni-calendar-item.vue diff --git a/uni_modules/uni-calendar/components/uni-calendar/uni-calendar.vue b/src/uni_modules/uni-calendar/components/uni-calendar/uni-calendar.vue similarity index 100% rename from uni_modules/uni-calendar/components/uni-calendar/uni-calendar.vue rename to src/uni_modules/uni-calendar/components/uni-calendar/uni-calendar.vue diff --git a/uni_modules/uni-calendar/components/uni-calendar/util.js b/src/uni_modules/uni-calendar/components/uni-calendar/util.js similarity index 100% rename from uni_modules/uni-calendar/components/uni-calendar/util.js rename to src/uni_modules/uni-calendar/components/uni-calendar/util.js diff --git a/uni_modules/uni-calendar/package.json b/src/uni_modules/uni-calendar/package.json similarity index 100% rename from uni_modules/uni-calendar/package.json rename to src/uni_modules/uni-calendar/package.json diff --git a/uni_modules/uni-calendar/readme.md b/src/uni_modules/uni-calendar/readme.md similarity index 100% rename from uni_modules/uni-calendar/readme.md rename to src/uni_modules/uni-calendar/readme.md diff --git a/uni_modules/uni-card/changelog.md b/src/uni_modules/uni-card/changelog.md similarity index 100% rename from uni_modules/uni-card/changelog.md rename to src/uni_modules/uni-card/changelog.md diff --git a/uni_modules/uni-card/components/uni-card/uni-card.vue b/src/uni_modules/uni-card/components/uni-card/uni-card.vue similarity index 100% rename from uni_modules/uni-card/components/uni-card/uni-card.vue rename to src/uni_modules/uni-card/components/uni-card/uni-card.vue diff --git a/uni_modules/uni-card/package.json b/src/uni_modules/uni-card/package.json similarity index 100% rename from uni_modules/uni-card/package.json rename to src/uni_modules/uni-card/package.json diff --git a/uni_modules/uni-card/readme.md b/src/uni_modules/uni-card/readme.md similarity index 100% rename from uni_modules/uni-card/readme.md rename to src/uni_modules/uni-card/readme.md diff --git a/uni_modules/uni-collapse/changelog.md b/src/uni_modules/uni-collapse/changelog.md similarity index 100% rename from uni_modules/uni-collapse/changelog.md rename to src/uni_modules/uni-collapse/changelog.md diff --git a/uni_modules/uni-collapse/components/uni-collapse-item/uni-collapse-item.vue b/src/uni_modules/uni-collapse/components/uni-collapse-item/uni-collapse-item.vue similarity index 100% rename from uni_modules/uni-collapse/components/uni-collapse-item/uni-collapse-item.vue rename to src/uni_modules/uni-collapse/components/uni-collapse-item/uni-collapse-item.vue diff --git a/uni_modules/uni-collapse/components/uni-collapse/uni-collapse.vue b/src/uni_modules/uni-collapse/components/uni-collapse/uni-collapse.vue similarity index 100% rename from uni_modules/uni-collapse/components/uni-collapse/uni-collapse.vue rename to src/uni_modules/uni-collapse/components/uni-collapse/uni-collapse.vue diff --git a/uni_modules/uni-collapse/package.json b/src/uni_modules/uni-collapse/package.json similarity index 100% rename from uni_modules/uni-collapse/package.json rename to src/uni_modules/uni-collapse/package.json diff --git a/uni_modules/uni-collapse/readme.md b/src/uni_modules/uni-collapse/readme.md similarity index 100% rename from uni_modules/uni-collapse/readme.md rename to src/uni_modules/uni-collapse/readme.md diff --git a/uni_modules/uni-combox/changelog.md b/src/uni_modules/uni-combox/changelog.md similarity index 100% rename from uni_modules/uni-combox/changelog.md rename to src/uni_modules/uni-combox/changelog.md diff --git a/uni_modules/uni-combox/components/uni-combox/uni-combox.vue b/src/uni_modules/uni-combox/components/uni-combox/uni-combox.vue similarity index 100% rename from uni_modules/uni-combox/components/uni-combox/uni-combox.vue rename to src/uni_modules/uni-combox/components/uni-combox/uni-combox.vue diff --git a/uni_modules/uni-combox/package.json b/src/uni_modules/uni-combox/package.json similarity index 100% rename from uni_modules/uni-combox/package.json rename to src/uni_modules/uni-combox/package.json diff --git a/uni_modules/uni-combox/readme.md b/src/uni_modules/uni-combox/readme.md similarity index 100% rename from uni_modules/uni-combox/readme.md rename to src/uni_modules/uni-combox/readme.md diff --git a/uni_modules/uni-countdown/changelog.md b/src/uni_modules/uni-countdown/changelog.md similarity index 100% rename from uni_modules/uni-countdown/changelog.md rename to src/uni_modules/uni-countdown/changelog.md diff --git a/uni_modules/uni-countdown/components/uni-countdown/i18n/en.json b/src/uni_modules/uni-countdown/components/uni-countdown/i18n/en.json similarity index 100% rename from uni_modules/uni-countdown/components/uni-countdown/i18n/en.json rename to src/uni_modules/uni-countdown/components/uni-countdown/i18n/en.json diff --git a/uni_modules/uni-countdown/components/uni-countdown/i18n/index.js b/src/uni_modules/uni-countdown/components/uni-countdown/i18n/index.js similarity index 100% rename from uni_modules/uni-countdown/components/uni-countdown/i18n/index.js rename to src/uni_modules/uni-countdown/components/uni-countdown/i18n/index.js diff --git a/uni_modules/uni-countdown/components/uni-countdown/i18n/zh-Hans.json b/src/uni_modules/uni-countdown/components/uni-countdown/i18n/zh-Hans.json similarity index 100% rename from uni_modules/uni-countdown/components/uni-countdown/i18n/zh-Hans.json rename to src/uni_modules/uni-countdown/components/uni-countdown/i18n/zh-Hans.json diff --git a/uni_modules/uni-countdown/components/uni-countdown/i18n/zh-Hant.json b/src/uni_modules/uni-countdown/components/uni-countdown/i18n/zh-Hant.json similarity index 100% rename from uni_modules/uni-countdown/components/uni-countdown/i18n/zh-Hant.json rename to src/uni_modules/uni-countdown/components/uni-countdown/i18n/zh-Hant.json diff --git a/uni_modules/uni-countdown/components/uni-countdown/uni-countdown.vue b/src/uni_modules/uni-countdown/components/uni-countdown/uni-countdown.vue similarity index 100% rename from uni_modules/uni-countdown/components/uni-countdown/uni-countdown.vue rename to src/uni_modules/uni-countdown/components/uni-countdown/uni-countdown.vue diff --git a/uni_modules/uni-countdown/package.json b/src/uni_modules/uni-countdown/package.json similarity index 100% rename from uni_modules/uni-countdown/package.json rename to src/uni_modules/uni-countdown/package.json diff --git a/uni_modules/uni-countdown/readme.md b/src/uni_modules/uni-countdown/readme.md similarity index 100% rename from uni_modules/uni-countdown/readme.md rename to src/uni_modules/uni-countdown/readme.md diff --git a/uni_modules/uni-data-checkbox/changelog.md b/src/uni_modules/uni-data-checkbox/changelog.md similarity index 100% rename from uni_modules/uni-data-checkbox/changelog.md rename to src/uni_modules/uni-data-checkbox/changelog.md diff --git a/uni_modules/uni-data-checkbox/components/uni-data-checkbox/uni-data-checkbox.vue b/src/uni_modules/uni-data-checkbox/components/uni-data-checkbox/uni-data-checkbox.vue similarity index 100% rename from uni_modules/uni-data-checkbox/components/uni-data-checkbox/uni-data-checkbox.vue rename to src/uni_modules/uni-data-checkbox/components/uni-data-checkbox/uni-data-checkbox.vue diff --git a/uni_modules/uni-data-checkbox/package.json b/src/uni_modules/uni-data-checkbox/package.json similarity index 100% rename from uni_modules/uni-data-checkbox/package.json rename to src/uni_modules/uni-data-checkbox/package.json diff --git a/uni_modules/uni-data-checkbox/readme.md b/src/uni_modules/uni-data-checkbox/readme.md similarity index 100% rename from uni_modules/uni-data-checkbox/readme.md rename to src/uni_modules/uni-data-checkbox/readme.md diff --git a/uni_modules/uni-data-picker/changelog.md b/src/uni_modules/uni-data-picker/changelog.md similarity index 100% rename from uni_modules/uni-data-picker/changelog.md rename to src/uni_modules/uni-data-picker/changelog.md diff --git a/uni_modules/uni-data-picker/components/uni-data-picker/keypress.js b/src/uni_modules/uni-data-picker/components/uni-data-picker/keypress.js similarity index 100% rename from uni_modules/uni-data-picker/components/uni-data-picker/keypress.js rename to src/uni_modules/uni-data-picker/components/uni-data-picker/keypress.js diff --git a/uni_modules/uni-data-picker/components/uni-data-picker/uni-data-picker.vue b/src/uni_modules/uni-data-picker/components/uni-data-picker/uni-data-picker.vue similarity index 100% rename from uni_modules/uni-data-picker/components/uni-data-picker/uni-data-picker.vue rename to src/uni_modules/uni-data-picker/components/uni-data-picker/uni-data-picker.vue diff --git a/uni_modules/uni-data-picker/components/uni-data-pickerview/uni-data-picker.js b/src/uni_modules/uni-data-picker/components/uni-data-pickerview/uni-data-picker.js similarity index 100% rename from uni_modules/uni-data-picker/components/uni-data-pickerview/uni-data-picker.js rename to src/uni_modules/uni-data-picker/components/uni-data-pickerview/uni-data-picker.js diff --git a/uni_modules/uni-data-picker/components/uni-data-pickerview/uni-data-pickerview.vue b/src/uni_modules/uni-data-picker/components/uni-data-pickerview/uni-data-pickerview.vue similarity index 100% rename from uni_modules/uni-data-picker/components/uni-data-pickerview/uni-data-pickerview.vue rename to src/uni_modules/uni-data-picker/components/uni-data-pickerview/uni-data-pickerview.vue diff --git a/uni_modules/uni-data-picker/package.json b/src/uni_modules/uni-data-picker/package.json similarity index 100% rename from uni_modules/uni-data-picker/package.json rename to src/uni_modules/uni-data-picker/package.json diff --git a/uni_modules/uni-data-picker/readme.md b/src/uni_modules/uni-data-picker/readme.md similarity index 100% rename from uni_modules/uni-data-picker/readme.md rename to src/uni_modules/uni-data-picker/readme.md diff --git a/uni_modules/uni-data-select/changelog.md b/src/uni_modules/uni-data-select/changelog.md similarity index 100% rename from uni_modules/uni-data-select/changelog.md rename to src/uni_modules/uni-data-select/changelog.md diff --git a/uni_modules/uni-data-select/components/uni-data-select/uni-data-select.vue b/src/uni_modules/uni-data-select/components/uni-data-select/uni-data-select.vue similarity index 100% rename from uni_modules/uni-data-select/components/uni-data-select/uni-data-select.vue rename to src/uni_modules/uni-data-select/components/uni-data-select/uni-data-select.vue diff --git a/uni_modules/uni-data-select/package.json b/src/uni_modules/uni-data-select/package.json similarity index 100% rename from uni_modules/uni-data-select/package.json rename to src/uni_modules/uni-data-select/package.json diff --git a/uni_modules/uni-data-select/readme.md b/src/uni_modules/uni-data-select/readme.md similarity index 100% rename from uni_modules/uni-data-select/readme.md rename to src/uni_modules/uni-data-select/readme.md diff --git a/uni_modules/uni-dateformat/changelog.md b/src/uni_modules/uni-dateformat/changelog.md similarity index 100% rename from uni_modules/uni-dateformat/changelog.md rename to src/uni_modules/uni-dateformat/changelog.md diff --git a/uni_modules/uni-dateformat/components/uni-dateformat/date-format.js b/src/uni_modules/uni-dateformat/components/uni-dateformat/date-format.js similarity index 100% rename from uni_modules/uni-dateformat/components/uni-dateformat/date-format.js rename to src/uni_modules/uni-dateformat/components/uni-dateformat/date-format.js diff --git a/uni_modules/uni-dateformat/components/uni-dateformat/uni-dateformat.vue b/src/uni_modules/uni-dateformat/components/uni-dateformat/uni-dateformat.vue similarity index 100% rename from uni_modules/uni-dateformat/components/uni-dateformat/uni-dateformat.vue rename to src/uni_modules/uni-dateformat/components/uni-dateformat/uni-dateformat.vue diff --git a/uni_modules/uni-dateformat/package.json b/src/uni_modules/uni-dateformat/package.json similarity index 100% rename from uni_modules/uni-dateformat/package.json rename to src/uni_modules/uni-dateformat/package.json diff --git a/uni_modules/uni-dateformat/readme.md b/src/uni_modules/uni-dateformat/readme.md similarity index 100% rename from uni_modules/uni-dateformat/readme.md rename to src/uni_modules/uni-dateformat/readme.md diff --git a/uni_modules/uni-datetime-picker/changelog.md b/src/uni_modules/uni-datetime-picker/changelog.md similarity index 100% rename from uni_modules/uni-datetime-picker/changelog.md rename to src/uni_modules/uni-datetime-picker/changelog.md diff --git a/uni_modules/uni-datetime-picker/components/uni-datetime-picker/calendar-item.vue b/src/uni_modules/uni-datetime-picker/components/uni-datetime-picker/calendar-item.vue similarity index 100% rename from uni_modules/uni-datetime-picker/components/uni-datetime-picker/calendar-item.vue rename to src/uni_modules/uni-datetime-picker/components/uni-datetime-picker/calendar-item.vue diff --git a/uni_modules/uni-datetime-picker/components/uni-datetime-picker/calendar.js b/src/uni_modules/uni-datetime-picker/components/uni-datetime-picker/calendar.js similarity index 100% rename from uni_modules/uni-datetime-picker/components/uni-datetime-picker/calendar.js rename to src/uni_modules/uni-datetime-picker/components/uni-datetime-picker/calendar.js diff --git a/uni_modules/uni-datetime-picker/components/uni-datetime-picker/calendar.vue b/src/uni_modules/uni-datetime-picker/components/uni-datetime-picker/calendar.vue similarity index 100% rename from uni_modules/uni-datetime-picker/components/uni-datetime-picker/calendar.vue rename to src/uni_modules/uni-datetime-picker/components/uni-datetime-picker/calendar.vue diff --git a/uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/en.json b/src/uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/en.json similarity index 100% rename from uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/en.json rename to src/uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/en.json diff --git a/uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/index.js b/src/uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/index.js similarity index 100% rename from uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/index.js rename to src/uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/index.js diff --git a/uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/zh-Hans.json b/src/uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/zh-Hans.json similarity index 100% rename from uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/zh-Hans.json rename to src/uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/zh-Hans.json diff --git a/uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/zh-Hant.json b/src/uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/zh-Hant.json similarity index 100% rename from uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/zh-Hant.json rename to src/uni_modules/uni-datetime-picker/components/uni-datetime-picker/i18n/zh-Hant.json diff --git a/uni_modules/uni-datetime-picker/components/uni-datetime-picker/keypress.js b/src/uni_modules/uni-datetime-picker/components/uni-datetime-picker/keypress.js similarity index 100% rename from uni_modules/uni-datetime-picker/components/uni-datetime-picker/keypress.js rename to src/uni_modules/uni-datetime-picker/components/uni-datetime-picker/keypress.js diff --git a/uni_modules/uni-datetime-picker/components/uni-datetime-picker/time-picker.vue b/src/uni_modules/uni-datetime-picker/components/uni-datetime-picker/time-picker.vue similarity index 100% rename from uni_modules/uni-datetime-picker/components/uni-datetime-picker/time-picker.vue rename to src/uni_modules/uni-datetime-picker/components/uni-datetime-picker/time-picker.vue diff --git a/uni_modules/uni-datetime-picker/components/uni-datetime-picker/uni-datetime-picker.vue b/src/uni_modules/uni-datetime-picker/components/uni-datetime-picker/uni-datetime-picker.vue similarity index 100% rename from uni_modules/uni-datetime-picker/components/uni-datetime-picker/uni-datetime-picker.vue rename to src/uni_modules/uni-datetime-picker/components/uni-datetime-picker/uni-datetime-picker.vue diff --git a/uni_modules/uni-datetime-picker/components/uni-datetime-picker/util.js b/src/uni_modules/uni-datetime-picker/components/uni-datetime-picker/util.js similarity index 100% rename from uni_modules/uni-datetime-picker/components/uni-datetime-picker/util.js rename to src/uni_modules/uni-datetime-picker/components/uni-datetime-picker/util.js diff --git a/uni_modules/uni-datetime-picker/package.json b/src/uni_modules/uni-datetime-picker/package.json similarity index 100% rename from uni_modules/uni-datetime-picker/package.json rename to src/uni_modules/uni-datetime-picker/package.json diff --git a/uni_modules/uni-datetime-picker/readme.md b/src/uni_modules/uni-datetime-picker/readme.md similarity index 100% rename from uni_modules/uni-datetime-picker/readme.md rename to src/uni_modules/uni-datetime-picker/readme.md diff --git a/uni_modules/uni-drawer/changelog.md b/src/uni_modules/uni-drawer/changelog.md similarity index 100% rename from uni_modules/uni-drawer/changelog.md rename to src/uni_modules/uni-drawer/changelog.md diff --git a/uni_modules/uni-drawer/components/uni-drawer/keypress.js b/src/uni_modules/uni-drawer/components/uni-drawer/keypress.js similarity index 100% rename from uni_modules/uni-drawer/components/uni-drawer/keypress.js rename to src/uni_modules/uni-drawer/components/uni-drawer/keypress.js diff --git a/uni_modules/uni-drawer/components/uni-drawer/uni-drawer.vue b/src/uni_modules/uni-drawer/components/uni-drawer/uni-drawer.vue similarity index 100% rename from uni_modules/uni-drawer/components/uni-drawer/uni-drawer.vue rename to src/uni_modules/uni-drawer/components/uni-drawer/uni-drawer.vue diff --git a/uni_modules/uni-drawer/package.json b/src/uni_modules/uni-drawer/package.json similarity index 100% rename from uni_modules/uni-drawer/package.json rename to src/uni_modules/uni-drawer/package.json diff --git a/uni_modules/uni-drawer/readme.md b/src/uni_modules/uni-drawer/readme.md similarity index 100% rename from uni_modules/uni-drawer/readme.md rename to src/uni_modules/uni-drawer/readme.md diff --git a/uni_modules/uni-easyinput/changelog.md b/src/uni_modules/uni-easyinput/changelog.md similarity index 100% rename from uni_modules/uni-easyinput/changelog.md rename to src/uni_modules/uni-easyinput/changelog.md diff --git a/uni_modules/uni-easyinput/components/uni-easyinput/common.js b/src/uni_modules/uni-easyinput/components/uni-easyinput/common.js similarity index 100% rename from uni_modules/uni-easyinput/components/uni-easyinput/common.js rename to src/uni_modules/uni-easyinput/components/uni-easyinput/common.js diff --git a/uni_modules/uni-easyinput/components/uni-easyinput/uni-easyinput.vue b/src/uni_modules/uni-easyinput/components/uni-easyinput/uni-easyinput.vue similarity index 100% rename from uni_modules/uni-easyinput/components/uni-easyinput/uni-easyinput.vue rename to src/uni_modules/uni-easyinput/components/uni-easyinput/uni-easyinput.vue diff --git a/uni_modules/uni-easyinput/package.json b/src/uni_modules/uni-easyinput/package.json similarity index 100% rename from uni_modules/uni-easyinput/package.json rename to src/uni_modules/uni-easyinput/package.json diff --git a/uni_modules/uni-easyinput/readme.md b/src/uni_modules/uni-easyinput/readme.md similarity index 100% rename from uni_modules/uni-easyinput/readme.md rename to src/uni_modules/uni-easyinput/readme.md diff --git a/uni_modules/uni-fab/changelog.md b/src/uni_modules/uni-fab/changelog.md similarity index 100% rename from uni_modules/uni-fab/changelog.md rename to src/uni_modules/uni-fab/changelog.md diff --git a/uni_modules/uni-fab/components/uni-fab/uni-fab.vue b/src/uni_modules/uni-fab/components/uni-fab/uni-fab.vue similarity index 100% rename from uni_modules/uni-fab/components/uni-fab/uni-fab.vue rename to src/uni_modules/uni-fab/components/uni-fab/uni-fab.vue diff --git a/uni_modules/uni-fab/components/uni-fab/uni-fab.vue.bak b/src/uni_modules/uni-fab/components/uni-fab/uni-fab.vue.bak similarity index 100% rename from uni_modules/uni-fab/components/uni-fab/uni-fab.vue.bak rename to src/uni_modules/uni-fab/components/uni-fab/uni-fab.vue.bak diff --git a/uni_modules/uni-fab/package.json b/src/uni_modules/uni-fab/package.json similarity index 100% rename from uni_modules/uni-fab/package.json rename to src/uni_modules/uni-fab/package.json diff --git a/uni_modules/uni-fab/readme.md b/src/uni_modules/uni-fab/readme.md similarity index 100% rename from uni_modules/uni-fab/readme.md rename to src/uni_modules/uni-fab/readme.md diff --git a/uni_modules/uni-fav/changelog.md b/src/uni_modules/uni-fav/changelog.md similarity index 100% rename from uni_modules/uni-fav/changelog.md rename to src/uni_modules/uni-fav/changelog.md diff --git a/uni_modules/uni-fav/components/uni-fav/i18n/en.json b/src/uni_modules/uni-fav/components/uni-fav/i18n/en.json similarity index 100% rename from uni_modules/uni-fav/components/uni-fav/i18n/en.json rename to src/uni_modules/uni-fav/components/uni-fav/i18n/en.json diff --git a/uni_modules/uni-fav/components/uni-fav/i18n/index.js b/src/uni_modules/uni-fav/components/uni-fav/i18n/index.js similarity index 100% rename from uni_modules/uni-fav/components/uni-fav/i18n/index.js rename to src/uni_modules/uni-fav/components/uni-fav/i18n/index.js diff --git a/uni_modules/uni-fav/components/uni-fav/i18n/zh-Hans.json b/src/uni_modules/uni-fav/components/uni-fav/i18n/zh-Hans.json similarity index 100% rename from uni_modules/uni-fav/components/uni-fav/i18n/zh-Hans.json rename to src/uni_modules/uni-fav/components/uni-fav/i18n/zh-Hans.json diff --git a/uni_modules/uni-fav/components/uni-fav/i18n/zh-Hant.json b/src/uni_modules/uni-fav/components/uni-fav/i18n/zh-Hant.json similarity index 100% rename from uni_modules/uni-fav/components/uni-fav/i18n/zh-Hant.json rename to src/uni_modules/uni-fav/components/uni-fav/i18n/zh-Hant.json diff --git a/uni_modules/uni-fav/components/uni-fav/uni-fav.vue b/src/uni_modules/uni-fav/components/uni-fav/uni-fav.vue similarity index 100% rename from uni_modules/uni-fav/components/uni-fav/uni-fav.vue rename to src/uni_modules/uni-fav/components/uni-fav/uni-fav.vue diff --git a/uni_modules/uni-fav/package.json b/src/uni_modules/uni-fav/package.json similarity index 100% rename from uni_modules/uni-fav/package.json rename to src/uni_modules/uni-fav/package.json diff --git a/uni_modules/uni-fav/readme.md b/src/uni_modules/uni-fav/readme.md similarity index 100% rename from uni_modules/uni-fav/readme.md rename to src/uni_modules/uni-fav/readme.md diff --git a/uni_modules/uni-file-picker/changelog.md b/src/uni_modules/uni-file-picker/changelog.md similarity index 100% rename from uni_modules/uni-file-picker/changelog.md rename to src/uni_modules/uni-file-picker/changelog.md diff --git a/uni_modules/uni-file-picker/components/uni-file-picker/choose-and-upload-file.js b/src/uni_modules/uni-file-picker/components/uni-file-picker/choose-and-upload-file.js similarity index 100% rename from uni_modules/uni-file-picker/components/uni-file-picker/choose-and-upload-file.js rename to src/uni_modules/uni-file-picker/components/uni-file-picker/choose-and-upload-file.js diff --git a/uni_modules/uni-file-picker/components/uni-file-picker/uni-file-picker.vue b/src/uni_modules/uni-file-picker/components/uni-file-picker/uni-file-picker.vue similarity index 100% rename from uni_modules/uni-file-picker/components/uni-file-picker/uni-file-picker.vue rename to src/uni_modules/uni-file-picker/components/uni-file-picker/uni-file-picker.vue diff --git a/uni_modules/uni-file-picker/components/uni-file-picker/upload-file.vue b/src/uni_modules/uni-file-picker/components/uni-file-picker/upload-file.vue similarity index 100% rename from uni_modules/uni-file-picker/components/uni-file-picker/upload-file.vue rename to src/uni_modules/uni-file-picker/components/uni-file-picker/upload-file.vue diff --git a/uni_modules/uni-file-picker/components/uni-file-picker/upload-image.vue b/src/uni_modules/uni-file-picker/components/uni-file-picker/upload-image.vue similarity index 100% rename from uni_modules/uni-file-picker/components/uni-file-picker/upload-image.vue rename to src/uni_modules/uni-file-picker/components/uni-file-picker/upload-image.vue diff --git a/uni_modules/uni-file-picker/components/uni-file-picker/utils.js b/src/uni_modules/uni-file-picker/components/uni-file-picker/utils.js similarity index 100% rename from uni_modules/uni-file-picker/components/uni-file-picker/utils.js rename to src/uni_modules/uni-file-picker/components/uni-file-picker/utils.js diff --git a/uni_modules/uni-file-picker/package.json b/src/uni_modules/uni-file-picker/package.json similarity index 100% rename from uni_modules/uni-file-picker/package.json rename to src/uni_modules/uni-file-picker/package.json diff --git a/uni_modules/uni-file-picker/readme.md b/src/uni_modules/uni-file-picker/readme.md similarity index 100% rename from uni_modules/uni-file-picker/readme.md rename to src/uni_modules/uni-file-picker/readme.md diff --git a/uni_modules/uni-forms/changelog.md b/src/uni_modules/uni-forms/changelog.md similarity index 100% rename from uni_modules/uni-forms/changelog.md rename to src/uni_modules/uni-forms/changelog.md diff --git a/uni_modules/uni-forms/components/uni-forms-item/uni-forms-item.vue b/src/uni_modules/uni-forms/components/uni-forms-item/uni-forms-item.vue similarity index 100% rename from uni_modules/uni-forms/components/uni-forms-item/uni-forms-item.vue rename to src/uni_modules/uni-forms/components/uni-forms-item/uni-forms-item.vue diff --git a/uni_modules/uni-forms/components/uni-forms/uni-forms.vue b/src/uni_modules/uni-forms/components/uni-forms/uni-forms.vue similarity index 100% rename from uni_modules/uni-forms/components/uni-forms/uni-forms.vue rename to src/uni_modules/uni-forms/components/uni-forms/uni-forms.vue diff --git a/uni_modules/uni-forms/components/uni-forms/utils.js b/src/uni_modules/uni-forms/components/uni-forms/utils.js similarity index 100% rename from uni_modules/uni-forms/components/uni-forms/utils.js rename to src/uni_modules/uni-forms/components/uni-forms/utils.js diff --git a/uni_modules/uni-forms/components/uni-forms/validate.js b/src/uni_modules/uni-forms/components/uni-forms/validate.js similarity index 100% rename from uni_modules/uni-forms/components/uni-forms/validate.js rename to src/uni_modules/uni-forms/components/uni-forms/validate.js diff --git a/uni_modules/uni-forms/package.json b/src/uni_modules/uni-forms/package.json similarity index 100% rename from uni_modules/uni-forms/package.json rename to src/uni_modules/uni-forms/package.json diff --git a/uni_modules/uni-forms/readme.md b/src/uni_modules/uni-forms/readme.md similarity index 100% rename from uni_modules/uni-forms/readme.md rename to src/uni_modules/uni-forms/readme.md diff --git a/uni_modules/uni-goods-nav/changelog.md b/src/uni_modules/uni-goods-nav/changelog.md similarity index 100% rename from uni_modules/uni-goods-nav/changelog.md rename to src/uni_modules/uni-goods-nav/changelog.md diff --git a/uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/en.json b/src/uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/en.json similarity index 100% rename from uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/en.json rename to src/uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/en.json diff --git a/uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/index.js b/src/uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/index.js similarity index 100% rename from uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/index.js rename to src/uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/index.js diff --git a/uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/zh-Hans.json b/src/uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/zh-Hans.json similarity index 100% rename from uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/zh-Hans.json rename to src/uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/zh-Hans.json diff --git a/uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/zh-Hant.json b/src/uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/zh-Hant.json similarity index 100% rename from uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/zh-Hant.json rename to src/uni_modules/uni-goods-nav/components/uni-goods-nav/i18n/zh-Hant.json diff --git a/uni_modules/uni-goods-nav/components/uni-goods-nav/uni-goods-nav.vue b/src/uni_modules/uni-goods-nav/components/uni-goods-nav/uni-goods-nav.vue similarity index 100% rename from uni_modules/uni-goods-nav/components/uni-goods-nav/uni-goods-nav.vue rename to src/uni_modules/uni-goods-nav/components/uni-goods-nav/uni-goods-nav.vue diff --git a/uni_modules/uni-goods-nav/package.json b/src/uni_modules/uni-goods-nav/package.json similarity index 100% rename from uni_modules/uni-goods-nav/package.json rename to src/uni_modules/uni-goods-nav/package.json diff --git a/uni_modules/uni-goods-nav/readme.md b/src/uni_modules/uni-goods-nav/readme.md similarity index 100% rename from uni_modules/uni-goods-nav/readme.md rename to src/uni_modules/uni-goods-nav/readme.md diff --git a/uni_modules/uni-grid/changelog.md b/src/uni_modules/uni-grid/changelog.md similarity index 100% rename from uni_modules/uni-grid/changelog.md rename to src/uni_modules/uni-grid/changelog.md diff --git a/uni_modules/uni-grid/components/uni-grid-item/uni-grid-item.vue b/src/uni_modules/uni-grid/components/uni-grid-item/uni-grid-item.vue similarity index 100% rename from uni_modules/uni-grid/components/uni-grid-item/uni-grid-item.vue rename to src/uni_modules/uni-grid/components/uni-grid-item/uni-grid-item.vue diff --git a/uni_modules/uni-grid/components/uni-grid/uni-grid.vue b/src/uni_modules/uni-grid/components/uni-grid/uni-grid.vue similarity index 100% rename from uni_modules/uni-grid/components/uni-grid/uni-grid.vue rename to src/uni_modules/uni-grid/components/uni-grid/uni-grid.vue diff --git a/uni_modules/uni-grid/package.json b/src/uni_modules/uni-grid/package.json similarity index 100% rename from uni_modules/uni-grid/package.json rename to src/uni_modules/uni-grid/package.json diff --git a/uni_modules/uni-grid/readme.md b/src/uni_modules/uni-grid/readme.md similarity index 100% rename from uni_modules/uni-grid/readme.md rename to src/uni_modules/uni-grid/readme.md diff --git a/uni_modules/uni-group/changelog.md b/src/uni_modules/uni-group/changelog.md similarity index 100% rename from uni_modules/uni-group/changelog.md rename to src/uni_modules/uni-group/changelog.md diff --git a/uni_modules/uni-group/components/uni-group/uni-group.vue b/src/uni_modules/uni-group/components/uni-group/uni-group.vue similarity index 100% rename from uni_modules/uni-group/components/uni-group/uni-group.vue rename to src/uni_modules/uni-group/components/uni-group/uni-group.vue diff --git a/uni_modules/uni-group/package.json b/src/uni_modules/uni-group/package.json similarity index 100% rename from uni_modules/uni-group/package.json rename to src/uni_modules/uni-group/package.json diff --git a/uni_modules/uni-group/readme.md b/src/uni_modules/uni-group/readme.md similarity index 100% rename from uni_modules/uni-group/readme.md rename to src/uni_modules/uni-group/readme.md diff --git a/uni_modules/uni-icons/changelog.md b/src/uni_modules/uni-icons/changelog.md similarity index 100% rename from uni_modules/uni-icons/changelog.md rename to src/uni_modules/uni-icons/changelog.md diff --git a/uni_modules/uni-icons/components/uni-icons/icons.js b/src/uni_modules/uni-icons/components/uni-icons/icons.js similarity index 100% rename from uni_modules/uni-icons/components/uni-icons/icons.js rename to src/uni_modules/uni-icons/components/uni-icons/icons.js diff --git a/uni_modules/uni-icons/components/uni-icons/uni-icons.vue b/src/uni_modules/uni-icons/components/uni-icons/uni-icons.vue similarity index 100% rename from uni_modules/uni-icons/components/uni-icons/uni-icons.vue rename to src/uni_modules/uni-icons/components/uni-icons/uni-icons.vue diff --git a/uni_modules/uni-icons/components/uni-icons/uni.ttf b/src/uni_modules/uni-icons/components/uni-icons/uni.ttf similarity index 100% rename from uni_modules/uni-icons/components/uni-icons/uni.ttf rename to src/uni_modules/uni-icons/components/uni-icons/uni.ttf diff --git a/uni_modules/uni-icons/components/uni-icons/uniicons.css b/src/uni_modules/uni-icons/components/uni-icons/uniicons.css similarity index 100% rename from uni_modules/uni-icons/components/uni-icons/uniicons.css rename to src/uni_modules/uni-icons/components/uni-icons/uniicons.css diff --git a/uni_modules/uni-icons/components/uni-icons/uniicons.ttf b/src/uni_modules/uni-icons/components/uni-icons/uniicons.ttf similarity index 100% rename from uni_modules/uni-icons/components/uni-icons/uniicons.ttf rename to src/uni_modules/uni-icons/components/uni-icons/uniicons.ttf diff --git a/uni_modules/uni-icons/package.json b/src/uni_modules/uni-icons/package.json similarity index 100% rename from uni_modules/uni-icons/package.json rename to src/uni_modules/uni-icons/package.json diff --git a/uni_modules/uni-icons/readme.md b/src/uni_modules/uni-icons/readme.md similarity index 100% rename from uni_modules/uni-icons/readme.md rename to src/uni_modules/uni-icons/readme.md diff --git a/uni_modules/uni-indexed-list/changelog.md b/src/uni_modules/uni-indexed-list/changelog.md similarity index 100% rename from uni_modules/uni-indexed-list/changelog.md rename to src/uni_modules/uni-indexed-list/changelog.md diff --git a/uni_modules/uni-indexed-list/components/uni-indexed-list/uni-indexed-list-item.vue b/src/uni_modules/uni-indexed-list/components/uni-indexed-list/uni-indexed-list-item.vue similarity index 100% rename from uni_modules/uni-indexed-list/components/uni-indexed-list/uni-indexed-list-item.vue rename to src/uni_modules/uni-indexed-list/components/uni-indexed-list/uni-indexed-list-item.vue diff --git a/uni_modules/uni-indexed-list/components/uni-indexed-list/uni-indexed-list.vue b/src/uni_modules/uni-indexed-list/components/uni-indexed-list/uni-indexed-list.vue similarity index 100% rename from uni_modules/uni-indexed-list/components/uni-indexed-list/uni-indexed-list.vue rename to src/uni_modules/uni-indexed-list/components/uni-indexed-list/uni-indexed-list.vue diff --git a/uni_modules/uni-indexed-list/package.json b/src/uni_modules/uni-indexed-list/package.json similarity index 100% rename from uni_modules/uni-indexed-list/package.json rename to src/uni_modules/uni-indexed-list/package.json diff --git a/uni_modules/uni-indexed-list/readme.md b/src/uni_modules/uni-indexed-list/readme.md similarity index 100% rename from uni_modules/uni-indexed-list/readme.md rename to src/uni_modules/uni-indexed-list/readme.md diff --git a/uni_modules/uni-link/changelog.md b/src/uni_modules/uni-link/changelog.md similarity index 100% rename from uni_modules/uni-link/changelog.md rename to src/uni_modules/uni-link/changelog.md diff --git a/uni_modules/uni-link/components/uni-link/uni-link.vue b/src/uni_modules/uni-link/components/uni-link/uni-link.vue similarity index 100% rename from uni_modules/uni-link/components/uni-link/uni-link.vue rename to src/uni_modules/uni-link/components/uni-link/uni-link.vue diff --git a/uni_modules/uni-link/package.json b/src/uni_modules/uni-link/package.json similarity index 100% rename from uni_modules/uni-link/package.json rename to src/uni_modules/uni-link/package.json diff --git a/uni_modules/uni-link/readme.md b/src/uni_modules/uni-link/readme.md similarity index 100% rename from uni_modules/uni-link/readme.md rename to src/uni_modules/uni-link/readme.md diff --git a/uni_modules/uni-list/changelog.md b/src/uni_modules/uni-list/changelog.md similarity index 100% rename from uni_modules/uni-list/changelog.md rename to src/uni_modules/uni-list/changelog.md diff --git a/uni_modules/uni-list/components/uni-list-ad/uni-list-ad.vue b/src/uni_modules/uni-list/components/uni-list-ad/uni-list-ad.vue similarity index 100% rename from uni_modules/uni-list/components/uni-list-ad/uni-list-ad.vue rename to src/uni_modules/uni-list/components/uni-list-ad/uni-list-ad.vue diff --git a/uni_modules/uni-list/components/uni-list-chat/uni-list-chat.scss b/src/uni_modules/uni-list/components/uni-list-chat/uni-list-chat.scss similarity index 100% rename from uni_modules/uni-list/components/uni-list-chat/uni-list-chat.scss rename to src/uni_modules/uni-list/components/uni-list-chat/uni-list-chat.scss diff --git a/uni_modules/uni-list/components/uni-list-chat/uni-list-chat.vue b/src/uni_modules/uni-list/components/uni-list-chat/uni-list-chat.vue similarity index 100% rename from uni_modules/uni-list/components/uni-list-chat/uni-list-chat.vue rename to src/uni_modules/uni-list/components/uni-list-chat/uni-list-chat.vue diff --git a/uni_modules/uni-list/components/uni-list-item/uni-list-item.vue b/src/uni_modules/uni-list/components/uni-list-item/uni-list-item.vue similarity index 100% rename from uni_modules/uni-list/components/uni-list-item/uni-list-item.vue rename to src/uni_modules/uni-list/components/uni-list-item/uni-list-item.vue diff --git a/uni_modules/uni-list/components/uni-list/uni-list - 副本.vue b/src/uni_modules/uni-list/components/uni-list/uni-list - 副本.vue similarity index 100% rename from uni_modules/uni-list/components/uni-list/uni-list - 副本.vue rename to src/uni_modules/uni-list/components/uni-list/uni-list - 副本.vue diff --git a/uni_modules/uni-list/components/uni-list/uni-list.vue b/src/uni_modules/uni-list/components/uni-list/uni-list.vue similarity index 100% rename from uni_modules/uni-list/components/uni-list/uni-list.vue rename to src/uni_modules/uni-list/components/uni-list/uni-list.vue diff --git a/uni_modules/uni-list/components/uni-list/uni-refresh.vue b/src/uni_modules/uni-list/components/uni-list/uni-refresh.vue similarity index 100% rename from uni_modules/uni-list/components/uni-list/uni-refresh.vue rename to src/uni_modules/uni-list/components/uni-list/uni-refresh.vue diff --git a/uni_modules/uni-list/components/uni-list/uni-refresh.wxs b/src/uni_modules/uni-list/components/uni-list/uni-refresh.wxs similarity index 100% rename from uni_modules/uni-list/components/uni-list/uni-refresh.wxs rename to src/uni_modules/uni-list/components/uni-list/uni-refresh.wxs diff --git a/uni_modules/uni-list/package.json b/src/uni_modules/uni-list/package.json similarity index 100% rename from uni_modules/uni-list/package.json rename to src/uni_modules/uni-list/package.json diff --git a/uni_modules/uni-list/readme.md b/src/uni_modules/uni-list/readme.md similarity index 100% rename from uni_modules/uni-list/readme.md rename to src/uni_modules/uni-list/readme.md diff --git a/uni_modules/uni-load-more/changelog.md b/src/uni_modules/uni-load-more/changelog.md similarity index 100% rename from uni_modules/uni-load-more/changelog.md rename to src/uni_modules/uni-load-more/changelog.md diff --git a/uni_modules/uni-load-more/components/uni-load-more/i18n/en.json b/src/uni_modules/uni-load-more/components/uni-load-more/i18n/en.json similarity index 100% rename from uni_modules/uni-load-more/components/uni-load-more/i18n/en.json rename to src/uni_modules/uni-load-more/components/uni-load-more/i18n/en.json diff --git a/uni_modules/uni-load-more/components/uni-load-more/i18n/index.js b/src/uni_modules/uni-load-more/components/uni-load-more/i18n/index.js similarity index 100% rename from uni_modules/uni-load-more/components/uni-load-more/i18n/index.js rename to src/uni_modules/uni-load-more/components/uni-load-more/i18n/index.js diff --git a/uni_modules/uni-load-more/components/uni-load-more/i18n/zh-Hans.json b/src/uni_modules/uni-load-more/components/uni-load-more/i18n/zh-Hans.json similarity index 100% rename from uni_modules/uni-load-more/components/uni-load-more/i18n/zh-Hans.json rename to src/uni_modules/uni-load-more/components/uni-load-more/i18n/zh-Hans.json diff --git a/uni_modules/uni-load-more/components/uni-load-more/i18n/zh-Hant.json b/src/uni_modules/uni-load-more/components/uni-load-more/i18n/zh-Hant.json similarity index 100% rename from uni_modules/uni-load-more/components/uni-load-more/i18n/zh-Hant.json rename to src/uni_modules/uni-load-more/components/uni-load-more/i18n/zh-Hant.json diff --git a/uni_modules/uni-load-more/components/uni-load-more/uni-load-more.vue b/src/uni_modules/uni-load-more/components/uni-load-more/uni-load-more.vue similarity index 100% rename from uni_modules/uni-load-more/components/uni-load-more/uni-load-more.vue rename to src/uni_modules/uni-load-more/components/uni-load-more/uni-load-more.vue diff --git a/uni_modules/uni-load-more/package.json b/src/uni_modules/uni-load-more/package.json similarity index 100% rename from uni_modules/uni-load-more/package.json rename to src/uni_modules/uni-load-more/package.json diff --git a/uni_modules/uni-load-more/readme.md b/src/uni_modules/uni-load-more/readme.md similarity index 100% rename from uni_modules/uni-load-more/readme.md rename to src/uni_modules/uni-load-more/readme.md diff --git a/uni_modules/uni-nav-bar/changelog.md b/src/uni_modules/uni-nav-bar/changelog.md similarity index 100% rename from uni_modules/uni-nav-bar/changelog.md rename to src/uni_modules/uni-nav-bar/changelog.md diff --git a/uni_modules/uni-nav-bar/components/uni-nav-bar/uni-nav-bar.vue b/src/uni_modules/uni-nav-bar/components/uni-nav-bar/uni-nav-bar.vue similarity index 100% rename from uni_modules/uni-nav-bar/components/uni-nav-bar/uni-nav-bar.vue rename to src/uni_modules/uni-nav-bar/components/uni-nav-bar/uni-nav-bar.vue diff --git a/uni_modules/uni-nav-bar/components/uni-nav-bar/uni-status-bar.vue b/src/uni_modules/uni-nav-bar/components/uni-nav-bar/uni-status-bar.vue similarity index 100% rename from uni_modules/uni-nav-bar/components/uni-nav-bar/uni-status-bar.vue rename to src/uni_modules/uni-nav-bar/components/uni-nav-bar/uni-status-bar.vue diff --git a/uni_modules/uni-nav-bar/package.json b/src/uni_modules/uni-nav-bar/package.json similarity index 100% rename from uni_modules/uni-nav-bar/package.json rename to src/uni_modules/uni-nav-bar/package.json diff --git a/uni_modules/uni-nav-bar/readme.md b/src/uni_modules/uni-nav-bar/readme.md similarity index 100% rename from uni_modules/uni-nav-bar/readme.md rename to src/uni_modules/uni-nav-bar/readme.md diff --git a/uni_modules/uni-notice-bar/changelog.md b/src/uni_modules/uni-notice-bar/changelog.md similarity index 100% rename from uni_modules/uni-notice-bar/changelog.md rename to src/uni_modules/uni-notice-bar/changelog.md diff --git a/uni_modules/uni-notice-bar/components/uni-notice-bar/uni-notice-bar.vue b/src/uni_modules/uni-notice-bar/components/uni-notice-bar/uni-notice-bar.vue similarity index 100% rename from uni_modules/uni-notice-bar/components/uni-notice-bar/uni-notice-bar.vue rename to src/uni_modules/uni-notice-bar/components/uni-notice-bar/uni-notice-bar.vue diff --git a/uni_modules/uni-notice-bar/package.json b/src/uni_modules/uni-notice-bar/package.json similarity index 100% rename from uni_modules/uni-notice-bar/package.json rename to src/uni_modules/uni-notice-bar/package.json diff --git a/uni_modules/uni-notice-bar/readme.md b/src/uni_modules/uni-notice-bar/readme.md similarity index 100% rename from uni_modules/uni-notice-bar/readme.md rename to src/uni_modules/uni-notice-bar/readme.md diff --git a/uni_modules/uni-number-box/changelog.md b/src/uni_modules/uni-number-box/changelog.md similarity index 100% rename from uni_modules/uni-number-box/changelog.md rename to src/uni_modules/uni-number-box/changelog.md diff --git a/uni_modules/uni-number-box/components/uni-number-box/uni-number-box.vue b/src/uni_modules/uni-number-box/components/uni-number-box/uni-number-box.vue similarity index 100% rename from uni_modules/uni-number-box/components/uni-number-box/uni-number-box.vue rename to src/uni_modules/uni-number-box/components/uni-number-box/uni-number-box.vue diff --git a/uni_modules/uni-number-box/package.json b/src/uni_modules/uni-number-box/package.json similarity index 100% rename from uni_modules/uni-number-box/package.json rename to src/uni_modules/uni-number-box/package.json diff --git a/uni_modules/uni-number-box/readme.md b/src/uni_modules/uni-number-box/readme.md similarity index 100% rename from uni_modules/uni-number-box/readme.md rename to src/uni_modules/uni-number-box/readme.md diff --git a/uni_modules/uni-pagination/changelog.md b/src/uni_modules/uni-pagination/changelog.md similarity index 100% rename from uni_modules/uni-pagination/changelog.md rename to src/uni_modules/uni-pagination/changelog.md diff --git a/uni_modules/uni-pagination/components/uni-pagination/i18n/en.json b/src/uni_modules/uni-pagination/components/uni-pagination/i18n/en.json similarity index 100% rename from uni_modules/uni-pagination/components/uni-pagination/i18n/en.json rename to src/uni_modules/uni-pagination/components/uni-pagination/i18n/en.json diff --git a/uni_modules/uni-pagination/components/uni-pagination/i18n/es.json b/src/uni_modules/uni-pagination/components/uni-pagination/i18n/es.json similarity index 100% rename from uni_modules/uni-pagination/components/uni-pagination/i18n/es.json rename to src/uni_modules/uni-pagination/components/uni-pagination/i18n/es.json diff --git a/uni_modules/uni-pagination/components/uni-pagination/i18n/fr.json b/src/uni_modules/uni-pagination/components/uni-pagination/i18n/fr.json similarity index 100% rename from uni_modules/uni-pagination/components/uni-pagination/i18n/fr.json rename to src/uni_modules/uni-pagination/components/uni-pagination/i18n/fr.json diff --git a/uni_modules/uni-pagination/components/uni-pagination/i18n/index.js b/src/uni_modules/uni-pagination/components/uni-pagination/i18n/index.js similarity index 100% rename from uni_modules/uni-pagination/components/uni-pagination/i18n/index.js rename to src/uni_modules/uni-pagination/components/uni-pagination/i18n/index.js diff --git a/uni_modules/uni-pagination/components/uni-pagination/i18n/zh-Hans.json b/src/uni_modules/uni-pagination/components/uni-pagination/i18n/zh-Hans.json similarity index 100% rename from uni_modules/uni-pagination/components/uni-pagination/i18n/zh-Hans.json rename to src/uni_modules/uni-pagination/components/uni-pagination/i18n/zh-Hans.json diff --git a/uni_modules/uni-pagination/components/uni-pagination/i18n/zh-Hant.json b/src/uni_modules/uni-pagination/components/uni-pagination/i18n/zh-Hant.json similarity index 100% rename from uni_modules/uni-pagination/components/uni-pagination/i18n/zh-Hant.json rename to src/uni_modules/uni-pagination/components/uni-pagination/i18n/zh-Hant.json diff --git a/uni_modules/uni-pagination/components/uni-pagination/uni-pagination.vue b/src/uni_modules/uni-pagination/components/uni-pagination/uni-pagination.vue similarity index 100% rename from uni_modules/uni-pagination/components/uni-pagination/uni-pagination.vue rename to src/uni_modules/uni-pagination/components/uni-pagination/uni-pagination.vue diff --git a/uni_modules/uni-pagination/package.json b/src/uni_modules/uni-pagination/package.json similarity index 100% rename from uni_modules/uni-pagination/package.json rename to src/uni_modules/uni-pagination/package.json diff --git a/uni_modules/uni-pagination/readme.md b/src/uni_modules/uni-pagination/readme.md similarity index 100% rename from uni_modules/uni-pagination/readme.md rename to src/uni_modules/uni-pagination/readme.md diff --git a/uni_modules/uni-popup/changelog.md b/src/uni_modules/uni-popup/changelog.md similarity index 100% rename from uni_modules/uni-popup/changelog.md rename to src/uni_modules/uni-popup/changelog.md diff --git a/uni_modules/uni-popup/components/uni-popup-dialog/keypress.js b/src/uni_modules/uni-popup/components/uni-popup-dialog/keypress.js similarity index 100% rename from uni_modules/uni-popup/components/uni-popup-dialog/keypress.js rename to src/uni_modules/uni-popup/components/uni-popup-dialog/keypress.js diff --git a/uni_modules/uni-popup/components/uni-popup-dialog/uni-popup-dialog.vue b/src/uni_modules/uni-popup/components/uni-popup-dialog/uni-popup-dialog.vue similarity index 100% rename from uni_modules/uni-popup/components/uni-popup-dialog/uni-popup-dialog.vue rename to src/uni_modules/uni-popup/components/uni-popup-dialog/uni-popup-dialog.vue diff --git a/uni_modules/uni-popup/components/uni-popup-message/uni-popup-message.vue b/src/uni_modules/uni-popup/components/uni-popup-message/uni-popup-message.vue similarity index 100% rename from uni_modules/uni-popup/components/uni-popup-message/uni-popup-message.vue rename to src/uni_modules/uni-popup/components/uni-popup-message/uni-popup-message.vue diff --git a/uni_modules/uni-popup/components/uni-popup-share/uni-popup-share.vue b/src/uni_modules/uni-popup/components/uni-popup-share/uni-popup-share.vue similarity index 100% rename from uni_modules/uni-popup/components/uni-popup-share/uni-popup-share.vue rename to src/uni_modules/uni-popup/components/uni-popup-share/uni-popup-share.vue diff --git a/uni_modules/uni-popup/components/uni-popup/i18n/en.json b/src/uni_modules/uni-popup/components/uni-popup/i18n/en.json similarity index 100% rename from uni_modules/uni-popup/components/uni-popup/i18n/en.json rename to src/uni_modules/uni-popup/components/uni-popup/i18n/en.json diff --git a/uni_modules/uni-popup/components/uni-popup/i18n/index.js b/src/uni_modules/uni-popup/components/uni-popup/i18n/index.js similarity index 100% rename from uni_modules/uni-popup/components/uni-popup/i18n/index.js rename to src/uni_modules/uni-popup/components/uni-popup/i18n/index.js diff --git a/uni_modules/uni-popup/components/uni-popup/i18n/zh-Hans.json b/src/uni_modules/uni-popup/components/uni-popup/i18n/zh-Hans.json similarity index 100% rename from uni_modules/uni-popup/components/uni-popup/i18n/zh-Hans.json rename to src/uni_modules/uni-popup/components/uni-popup/i18n/zh-Hans.json diff --git a/uni_modules/uni-popup/components/uni-popup/i18n/zh-Hant.json b/src/uni_modules/uni-popup/components/uni-popup/i18n/zh-Hant.json similarity index 100% rename from uni_modules/uni-popup/components/uni-popup/i18n/zh-Hant.json rename to src/uni_modules/uni-popup/components/uni-popup/i18n/zh-Hant.json diff --git a/uni_modules/uni-popup/components/uni-popup/keypress.js b/src/uni_modules/uni-popup/components/uni-popup/keypress.js similarity index 100% rename from uni_modules/uni-popup/components/uni-popup/keypress.js rename to src/uni_modules/uni-popup/components/uni-popup/keypress.js diff --git a/uni_modules/uni-popup/components/uni-popup/popup.js b/src/uni_modules/uni-popup/components/uni-popup/popup.js similarity index 100% rename from uni_modules/uni-popup/components/uni-popup/popup.js rename to src/uni_modules/uni-popup/components/uni-popup/popup.js diff --git a/uni_modules/uni-popup/components/uni-popup/uni-popup.vue b/src/uni_modules/uni-popup/components/uni-popup/uni-popup.vue similarity index 100% rename from uni_modules/uni-popup/components/uni-popup/uni-popup.vue rename to src/uni_modules/uni-popup/components/uni-popup/uni-popup.vue diff --git a/uni_modules/uni-popup/package.json b/src/uni_modules/uni-popup/package.json similarity index 100% rename from uni_modules/uni-popup/package.json rename to src/uni_modules/uni-popup/package.json diff --git a/uni_modules/uni-popup/readme.md b/src/uni_modules/uni-popup/readme.md similarity index 100% rename from uni_modules/uni-popup/readme.md rename to src/uni_modules/uni-popup/readme.md diff --git a/uni_modules/uni-rate/changelog.md b/src/uni_modules/uni-rate/changelog.md similarity index 100% rename from uni_modules/uni-rate/changelog.md rename to src/uni_modules/uni-rate/changelog.md diff --git a/uni_modules/uni-rate/components/uni-rate/uni-rate.vue b/src/uni_modules/uni-rate/components/uni-rate/uni-rate.vue similarity index 100% rename from uni_modules/uni-rate/components/uni-rate/uni-rate.vue rename to src/uni_modules/uni-rate/components/uni-rate/uni-rate.vue diff --git a/uni_modules/uni-rate/package.json b/src/uni_modules/uni-rate/package.json similarity index 100% rename from uni_modules/uni-rate/package.json rename to src/uni_modules/uni-rate/package.json diff --git a/uni_modules/uni-rate/readme.md b/src/uni_modules/uni-rate/readme.md similarity index 100% rename from uni_modules/uni-rate/readme.md rename to src/uni_modules/uni-rate/readme.md diff --git a/uni_modules/uni-row/changelog.md b/src/uni_modules/uni-row/changelog.md similarity index 100% rename from uni_modules/uni-row/changelog.md rename to src/uni_modules/uni-row/changelog.md diff --git a/uni_modules/uni-row/components/uni-col/uni-col.vue b/src/uni_modules/uni-row/components/uni-col/uni-col.vue similarity index 100% rename from uni_modules/uni-row/components/uni-col/uni-col.vue rename to src/uni_modules/uni-row/components/uni-col/uni-col.vue diff --git a/uni_modules/uni-row/components/uni-row/uni-row.vue b/src/uni_modules/uni-row/components/uni-row/uni-row.vue similarity index 100% rename from uni_modules/uni-row/components/uni-row/uni-row.vue rename to src/uni_modules/uni-row/components/uni-row/uni-row.vue diff --git a/uni_modules/uni-row/package.json b/src/uni_modules/uni-row/package.json similarity index 100% rename from uni_modules/uni-row/package.json rename to src/uni_modules/uni-row/package.json diff --git a/uni_modules/uni-row/readme.md b/src/uni_modules/uni-row/readme.md similarity index 100% rename from uni_modules/uni-row/readme.md rename to src/uni_modules/uni-row/readme.md diff --git a/uni_modules/uni-scss/changelog.md b/src/uni_modules/uni-scss/changelog.md similarity index 100% rename from uni_modules/uni-scss/changelog.md rename to src/uni_modules/uni-scss/changelog.md diff --git a/uni_modules/uni-scss/index.scss b/src/uni_modules/uni-scss/index.scss similarity index 100% rename from uni_modules/uni-scss/index.scss rename to src/uni_modules/uni-scss/index.scss diff --git a/uni_modules/uni-scss/package.json b/src/uni_modules/uni-scss/package.json similarity index 100% rename from uni_modules/uni-scss/package.json rename to src/uni_modules/uni-scss/package.json diff --git a/uni_modules/uni-scss/readme.md b/src/uni_modules/uni-scss/readme.md similarity index 100% rename from uni_modules/uni-scss/readme.md rename to src/uni_modules/uni-scss/readme.md diff --git a/uni_modules/uni-scss/styles/index.scss b/src/uni_modules/uni-scss/styles/index.scss similarity index 100% rename from uni_modules/uni-scss/styles/index.scss rename to src/uni_modules/uni-scss/styles/index.scss diff --git a/uni_modules/uni-scss/styles/setting/_border.scss b/src/uni_modules/uni-scss/styles/setting/_border.scss similarity index 100% rename from uni_modules/uni-scss/styles/setting/_border.scss rename to src/uni_modules/uni-scss/styles/setting/_border.scss diff --git a/uni_modules/uni-scss/styles/setting/_color.scss b/src/uni_modules/uni-scss/styles/setting/_color.scss similarity index 100% rename from uni_modules/uni-scss/styles/setting/_color.scss rename to src/uni_modules/uni-scss/styles/setting/_color.scss diff --git a/uni_modules/uni-scss/styles/setting/_radius.scss b/src/uni_modules/uni-scss/styles/setting/_radius.scss similarity index 100% rename from uni_modules/uni-scss/styles/setting/_radius.scss rename to src/uni_modules/uni-scss/styles/setting/_radius.scss diff --git a/uni_modules/uni-scss/styles/setting/_space.scss b/src/uni_modules/uni-scss/styles/setting/_space.scss similarity index 100% rename from uni_modules/uni-scss/styles/setting/_space.scss rename to src/uni_modules/uni-scss/styles/setting/_space.scss diff --git a/uni_modules/uni-scss/styles/setting/_styles.scss b/src/uni_modules/uni-scss/styles/setting/_styles.scss similarity index 100% rename from uni_modules/uni-scss/styles/setting/_styles.scss rename to src/uni_modules/uni-scss/styles/setting/_styles.scss diff --git a/uni_modules/uni-scss/styles/setting/_text.scss b/src/uni_modules/uni-scss/styles/setting/_text.scss similarity index 100% rename from uni_modules/uni-scss/styles/setting/_text.scss rename to src/uni_modules/uni-scss/styles/setting/_text.scss diff --git a/uni_modules/uni-scss/styles/setting/_variables.scss b/src/uni_modules/uni-scss/styles/setting/_variables.scss similarity index 100% rename from uni_modules/uni-scss/styles/setting/_variables.scss rename to src/uni_modules/uni-scss/styles/setting/_variables.scss diff --git a/uni_modules/uni-scss/styles/tools/functions.scss b/src/uni_modules/uni-scss/styles/tools/functions.scss similarity index 100% rename from uni_modules/uni-scss/styles/tools/functions.scss rename to src/uni_modules/uni-scss/styles/tools/functions.scss diff --git a/uni_modules/uni-scss/theme.scss b/src/uni_modules/uni-scss/theme.scss similarity index 100% rename from uni_modules/uni-scss/theme.scss rename to src/uni_modules/uni-scss/theme.scss diff --git a/uni_modules/uni-scss/variables.scss b/src/uni_modules/uni-scss/variables.scss similarity index 100% rename from uni_modules/uni-scss/variables.scss rename to src/uni_modules/uni-scss/variables.scss diff --git a/uni_modules/uni-search-bar/changelog.md b/src/uni_modules/uni-search-bar/changelog.md similarity index 100% rename from uni_modules/uni-search-bar/changelog.md rename to src/uni_modules/uni-search-bar/changelog.md diff --git a/uni_modules/uni-search-bar/components/uni-search-bar/i18n/en.json b/src/uni_modules/uni-search-bar/components/uni-search-bar/i18n/en.json similarity index 100% rename from uni_modules/uni-search-bar/components/uni-search-bar/i18n/en.json rename to src/uni_modules/uni-search-bar/components/uni-search-bar/i18n/en.json diff --git a/uni_modules/uni-search-bar/components/uni-search-bar/i18n/index.js b/src/uni_modules/uni-search-bar/components/uni-search-bar/i18n/index.js similarity index 100% rename from uni_modules/uni-search-bar/components/uni-search-bar/i18n/index.js rename to src/uni_modules/uni-search-bar/components/uni-search-bar/i18n/index.js diff --git a/uni_modules/uni-search-bar/components/uni-search-bar/i18n/zh-Hans.json b/src/uni_modules/uni-search-bar/components/uni-search-bar/i18n/zh-Hans.json similarity index 100% rename from uni_modules/uni-search-bar/components/uni-search-bar/i18n/zh-Hans.json rename to src/uni_modules/uni-search-bar/components/uni-search-bar/i18n/zh-Hans.json diff --git a/uni_modules/uni-search-bar/components/uni-search-bar/i18n/zh-Hant.json b/src/uni_modules/uni-search-bar/components/uni-search-bar/i18n/zh-Hant.json similarity index 100% rename from uni_modules/uni-search-bar/components/uni-search-bar/i18n/zh-Hant.json rename to src/uni_modules/uni-search-bar/components/uni-search-bar/i18n/zh-Hant.json diff --git a/uni_modules/uni-search-bar/components/uni-search-bar/uni-search-bar.vue b/src/uni_modules/uni-search-bar/components/uni-search-bar/uni-search-bar.vue similarity index 100% rename from uni_modules/uni-search-bar/components/uni-search-bar/uni-search-bar.vue rename to src/uni_modules/uni-search-bar/components/uni-search-bar/uni-search-bar.vue diff --git a/uni_modules/uni-search-bar/package.json b/src/uni_modules/uni-search-bar/package.json similarity index 100% rename from uni_modules/uni-search-bar/package.json rename to src/uni_modules/uni-search-bar/package.json diff --git a/uni_modules/uni-search-bar/readme.md b/src/uni_modules/uni-search-bar/readme.md similarity index 100% rename from uni_modules/uni-search-bar/readme.md rename to src/uni_modules/uni-search-bar/readme.md diff --git a/uni_modules/uni-section/changelog.md b/src/uni_modules/uni-section/changelog.md similarity index 100% rename from uni_modules/uni-section/changelog.md rename to src/uni_modules/uni-section/changelog.md diff --git a/uni_modules/uni-section/components/uni-section/uni-section.vue b/src/uni_modules/uni-section/components/uni-section/uni-section.vue similarity index 100% rename from uni_modules/uni-section/components/uni-section/uni-section.vue rename to src/uni_modules/uni-section/components/uni-section/uni-section.vue diff --git a/uni_modules/uni-section/package.json b/src/uni_modules/uni-section/package.json similarity index 100% rename from uni_modules/uni-section/package.json rename to src/uni_modules/uni-section/package.json diff --git a/uni_modules/uni-section/readme.md b/src/uni_modules/uni-section/readme.md similarity index 100% rename from uni_modules/uni-section/readme.md rename to src/uni_modules/uni-section/readme.md diff --git a/uni_modules/uni-segmented-control/changelog.md b/src/uni_modules/uni-segmented-control/changelog.md similarity index 100% rename from uni_modules/uni-segmented-control/changelog.md rename to src/uni_modules/uni-segmented-control/changelog.md diff --git a/uni_modules/uni-segmented-control/components/uni-segmented-control/uni-segmented-control.vue b/src/uni_modules/uni-segmented-control/components/uni-segmented-control/uni-segmented-control.vue similarity index 100% rename from uni_modules/uni-segmented-control/components/uni-segmented-control/uni-segmented-control.vue rename to src/uni_modules/uni-segmented-control/components/uni-segmented-control/uni-segmented-control.vue diff --git a/uni_modules/uni-segmented-control/package.json b/src/uni_modules/uni-segmented-control/package.json similarity index 100% rename from uni_modules/uni-segmented-control/package.json rename to src/uni_modules/uni-segmented-control/package.json diff --git a/uni_modules/uni-segmented-control/readme.md b/src/uni_modules/uni-segmented-control/readme.md similarity index 100% rename from uni_modules/uni-segmented-control/readme.md rename to src/uni_modules/uni-segmented-control/readme.md diff --git a/uni_modules/uni-steps/changelog.md b/src/uni_modules/uni-steps/changelog.md similarity index 100% rename from uni_modules/uni-steps/changelog.md rename to src/uni_modules/uni-steps/changelog.md diff --git a/uni_modules/uni-steps/components/uni-steps/uni-steps.vue b/src/uni_modules/uni-steps/components/uni-steps/uni-steps.vue similarity index 100% rename from uni_modules/uni-steps/components/uni-steps/uni-steps.vue rename to src/uni_modules/uni-steps/components/uni-steps/uni-steps.vue diff --git a/uni_modules/uni-steps/package.json b/src/uni_modules/uni-steps/package.json similarity index 100% rename from uni_modules/uni-steps/package.json rename to src/uni_modules/uni-steps/package.json diff --git a/uni_modules/uni-steps/readme.md b/src/uni_modules/uni-steps/readme.md similarity index 100% rename from uni_modules/uni-steps/readme.md rename to src/uni_modules/uni-steps/readme.md diff --git a/uni_modules/uni-swipe-action/changelog.md b/src/uni_modules/uni-swipe-action/changelog.md similarity index 100% rename from uni_modules/uni-swipe-action/changelog.md rename to src/uni_modules/uni-swipe-action/changelog.md diff --git a/uni_modules/uni-swipe-action/components/uni-swipe-action-item/bindingx.js b/src/uni_modules/uni-swipe-action/components/uni-swipe-action-item/bindingx.js similarity index 100% rename from uni_modules/uni-swipe-action/components/uni-swipe-action-item/bindingx.js rename to src/uni_modules/uni-swipe-action/components/uni-swipe-action-item/bindingx.js diff --git a/uni_modules/uni-swipe-action/components/uni-swipe-action-item/index.wxs b/src/uni_modules/uni-swipe-action/components/uni-swipe-action-item/index.wxs similarity index 100% rename from uni_modules/uni-swipe-action/components/uni-swipe-action-item/index.wxs rename to src/uni_modules/uni-swipe-action/components/uni-swipe-action-item/index.wxs diff --git a/uni_modules/uni-swipe-action/components/uni-swipe-action-item/isPC.js b/src/uni_modules/uni-swipe-action/components/uni-swipe-action-item/isPC.js similarity index 100% rename from uni_modules/uni-swipe-action/components/uni-swipe-action-item/isPC.js rename to src/uni_modules/uni-swipe-action/components/uni-swipe-action-item/isPC.js diff --git a/uni_modules/uni-swipe-action/components/uni-swipe-action-item/mpalipay.js b/src/uni_modules/uni-swipe-action/components/uni-swipe-action-item/mpalipay.js similarity index 100% rename from uni_modules/uni-swipe-action/components/uni-swipe-action-item/mpalipay.js rename to src/uni_modules/uni-swipe-action/components/uni-swipe-action-item/mpalipay.js diff --git a/uni_modules/uni-swipe-action/components/uni-swipe-action-item/mpother.js b/src/uni_modules/uni-swipe-action/components/uni-swipe-action-item/mpother.js similarity index 100% rename from uni_modules/uni-swipe-action/components/uni-swipe-action-item/mpother.js rename to src/uni_modules/uni-swipe-action/components/uni-swipe-action-item/mpother.js diff --git a/uni_modules/uni-swipe-action/components/uni-swipe-action-item/mpwxs.js b/src/uni_modules/uni-swipe-action/components/uni-swipe-action-item/mpwxs.js similarity index 100% rename from uni_modules/uni-swipe-action/components/uni-swipe-action-item/mpwxs.js rename to src/uni_modules/uni-swipe-action/components/uni-swipe-action-item/mpwxs.js diff --git a/uni_modules/uni-swipe-action/components/uni-swipe-action-item/render.js b/src/uni_modules/uni-swipe-action/components/uni-swipe-action-item/render.js similarity index 100% rename from uni_modules/uni-swipe-action/components/uni-swipe-action-item/render.js rename to src/uni_modules/uni-swipe-action/components/uni-swipe-action-item/render.js diff --git a/uni_modules/uni-swipe-action/components/uni-swipe-action-item/uni-swipe-action-item.vue b/src/uni_modules/uni-swipe-action/components/uni-swipe-action-item/uni-swipe-action-item.vue similarity index 100% rename from uni_modules/uni-swipe-action/components/uni-swipe-action-item/uni-swipe-action-item.vue rename to src/uni_modules/uni-swipe-action/components/uni-swipe-action-item/uni-swipe-action-item.vue diff --git a/uni_modules/uni-swipe-action/components/uni-swipe-action-item/wx.wxs b/src/uni_modules/uni-swipe-action/components/uni-swipe-action-item/wx.wxs similarity index 100% rename from uni_modules/uni-swipe-action/components/uni-swipe-action-item/wx.wxs rename to src/uni_modules/uni-swipe-action/components/uni-swipe-action-item/wx.wxs diff --git a/uni_modules/uni-swipe-action/components/uni-swipe-action/uni-swipe-action.vue b/src/uni_modules/uni-swipe-action/components/uni-swipe-action/uni-swipe-action.vue similarity index 100% rename from uni_modules/uni-swipe-action/components/uni-swipe-action/uni-swipe-action.vue rename to src/uni_modules/uni-swipe-action/components/uni-swipe-action/uni-swipe-action.vue diff --git a/uni_modules/uni-swipe-action/package.json b/src/uni_modules/uni-swipe-action/package.json similarity index 100% rename from uni_modules/uni-swipe-action/package.json rename to src/uni_modules/uni-swipe-action/package.json diff --git a/uni_modules/uni-swipe-action/readme.md b/src/uni_modules/uni-swipe-action/readme.md similarity index 100% rename from uni_modules/uni-swipe-action/readme.md rename to src/uni_modules/uni-swipe-action/readme.md diff --git a/uni_modules/uni-swiper-dot/changelog.md b/src/uni_modules/uni-swiper-dot/changelog.md similarity index 100% rename from uni_modules/uni-swiper-dot/changelog.md rename to src/uni_modules/uni-swiper-dot/changelog.md diff --git a/uni_modules/uni-swiper-dot/components/uni-swiper-dot/uni-swiper-dot.vue b/src/uni_modules/uni-swiper-dot/components/uni-swiper-dot/uni-swiper-dot.vue similarity index 100% rename from uni_modules/uni-swiper-dot/components/uni-swiper-dot/uni-swiper-dot.vue rename to src/uni_modules/uni-swiper-dot/components/uni-swiper-dot/uni-swiper-dot.vue diff --git a/uni_modules/uni-swiper-dot/package.json b/src/uni_modules/uni-swiper-dot/package.json similarity index 100% rename from uni_modules/uni-swiper-dot/package.json rename to src/uni_modules/uni-swiper-dot/package.json diff --git a/uni_modules/uni-swiper-dot/readme.md b/src/uni_modules/uni-swiper-dot/readme.md similarity index 100% rename from uni_modules/uni-swiper-dot/readme.md rename to src/uni_modules/uni-swiper-dot/readme.md diff --git a/uni_modules/uni-table/changelog.md b/src/uni_modules/uni-table/changelog.md similarity index 100% rename from uni_modules/uni-table/changelog.md rename to src/uni_modules/uni-table/changelog.md diff --git a/uni_modules/uni-table/components/uni-table/uni-table.vue b/src/uni_modules/uni-table/components/uni-table/uni-table.vue similarity index 100% rename from uni_modules/uni-table/components/uni-table/uni-table.vue rename to src/uni_modules/uni-table/components/uni-table/uni-table.vue diff --git a/uni_modules/uni-table/components/uni-tbody/uni-tbody.vue b/src/uni_modules/uni-table/components/uni-tbody/uni-tbody.vue similarity index 100% rename from uni_modules/uni-table/components/uni-tbody/uni-tbody.vue rename to src/uni_modules/uni-table/components/uni-tbody/uni-tbody.vue diff --git a/uni_modules/uni-table/components/uni-td/uni-td.vue b/src/uni_modules/uni-table/components/uni-td/uni-td.vue similarity index 100% rename from uni_modules/uni-table/components/uni-td/uni-td.vue rename to src/uni_modules/uni-table/components/uni-td/uni-td.vue diff --git a/uni_modules/uni-table/components/uni-th/filter-dropdown.vue b/src/uni_modules/uni-table/components/uni-th/filter-dropdown.vue similarity index 100% rename from uni_modules/uni-table/components/uni-th/filter-dropdown.vue rename to src/uni_modules/uni-table/components/uni-th/filter-dropdown.vue diff --git a/uni_modules/uni-table/components/uni-th/uni-th.vue b/src/uni_modules/uni-table/components/uni-th/uni-th.vue similarity index 100% rename from uni_modules/uni-table/components/uni-th/uni-th.vue rename to src/uni_modules/uni-table/components/uni-th/uni-th.vue diff --git a/uni_modules/uni-table/components/uni-thead/uni-thead.vue b/src/uni_modules/uni-table/components/uni-thead/uni-thead.vue similarity index 100% rename from uni_modules/uni-table/components/uni-thead/uni-thead.vue rename to src/uni_modules/uni-table/components/uni-thead/uni-thead.vue diff --git a/uni_modules/uni-table/components/uni-tr/table-checkbox.vue b/src/uni_modules/uni-table/components/uni-tr/table-checkbox.vue similarity index 100% rename from uni_modules/uni-table/components/uni-tr/table-checkbox.vue rename to src/uni_modules/uni-table/components/uni-tr/table-checkbox.vue diff --git a/uni_modules/uni-table/components/uni-tr/uni-tr.vue b/src/uni_modules/uni-table/components/uni-tr/uni-tr.vue similarity index 100% rename from uni_modules/uni-table/components/uni-tr/uni-tr.vue rename to src/uni_modules/uni-table/components/uni-tr/uni-tr.vue diff --git a/uni_modules/uni-table/i18n/en.json b/src/uni_modules/uni-table/i18n/en.json similarity index 100% rename from uni_modules/uni-table/i18n/en.json rename to src/uni_modules/uni-table/i18n/en.json diff --git a/uni_modules/uni-table/i18n/es.json b/src/uni_modules/uni-table/i18n/es.json similarity index 100% rename from uni_modules/uni-table/i18n/es.json rename to src/uni_modules/uni-table/i18n/es.json diff --git a/uni_modules/uni-table/i18n/fr.json b/src/uni_modules/uni-table/i18n/fr.json similarity index 100% rename from uni_modules/uni-table/i18n/fr.json rename to src/uni_modules/uni-table/i18n/fr.json diff --git a/uni_modules/uni-table/i18n/index.js b/src/uni_modules/uni-table/i18n/index.js similarity index 100% rename from uni_modules/uni-table/i18n/index.js rename to src/uni_modules/uni-table/i18n/index.js diff --git a/uni_modules/uni-table/i18n/zh-Hans.json b/src/uni_modules/uni-table/i18n/zh-Hans.json similarity index 100% rename from uni_modules/uni-table/i18n/zh-Hans.json rename to src/uni_modules/uni-table/i18n/zh-Hans.json diff --git a/uni_modules/uni-table/i18n/zh-Hant.json b/src/uni_modules/uni-table/i18n/zh-Hant.json similarity index 100% rename from uni_modules/uni-table/i18n/zh-Hant.json rename to src/uni_modules/uni-table/i18n/zh-Hant.json diff --git a/uni_modules/uni-table/package.json b/src/uni_modules/uni-table/package.json similarity index 100% rename from uni_modules/uni-table/package.json rename to src/uni_modules/uni-table/package.json diff --git a/uni_modules/uni-table/readme.md b/src/uni_modules/uni-table/readme.md similarity index 100% rename from uni_modules/uni-table/readme.md rename to src/uni_modules/uni-table/readme.md diff --git a/uni_modules/uni-tag/changelog.md b/src/uni_modules/uni-tag/changelog.md similarity index 100% rename from uni_modules/uni-tag/changelog.md rename to src/uni_modules/uni-tag/changelog.md diff --git a/uni_modules/uni-tag/components/uni-tag/uni-tag.vue b/src/uni_modules/uni-tag/components/uni-tag/uni-tag.vue similarity index 100% rename from uni_modules/uni-tag/components/uni-tag/uni-tag.vue rename to src/uni_modules/uni-tag/components/uni-tag/uni-tag.vue diff --git a/uni_modules/uni-tag/package.json b/src/uni_modules/uni-tag/package.json similarity index 100% rename from uni_modules/uni-tag/package.json rename to src/uni_modules/uni-tag/package.json diff --git a/uni_modules/uni-tag/readme.md b/src/uni_modules/uni-tag/readme.md similarity index 100% rename from uni_modules/uni-tag/readme.md rename to src/uni_modules/uni-tag/readme.md diff --git a/uni_modules/uni-title/changelog.md b/src/uni_modules/uni-title/changelog.md similarity index 100% rename from uni_modules/uni-title/changelog.md rename to src/uni_modules/uni-title/changelog.md diff --git a/uni_modules/uni-title/components/uni-title/uni-title.vue b/src/uni_modules/uni-title/components/uni-title/uni-title.vue similarity index 100% rename from uni_modules/uni-title/components/uni-title/uni-title.vue rename to src/uni_modules/uni-title/components/uni-title/uni-title.vue diff --git a/uni_modules/uni-title/package.json b/src/uni_modules/uni-title/package.json similarity index 100% rename from uni_modules/uni-title/package.json rename to src/uni_modules/uni-title/package.json diff --git a/uni_modules/uni-title/readme.md b/src/uni_modules/uni-title/readme.md similarity index 100% rename from uni_modules/uni-title/readme.md rename to src/uni_modules/uni-title/readme.md diff --git a/uni_modules/uni-tooltip/changelog.md b/src/uni_modules/uni-tooltip/changelog.md similarity index 100% rename from uni_modules/uni-tooltip/changelog.md rename to src/uni_modules/uni-tooltip/changelog.md diff --git a/uni_modules/uni-tooltip/components/uni-tooltip/uni-tooltip.vue b/src/uni_modules/uni-tooltip/components/uni-tooltip/uni-tooltip.vue similarity index 100% rename from uni_modules/uni-tooltip/components/uni-tooltip/uni-tooltip.vue rename to src/uni_modules/uni-tooltip/components/uni-tooltip/uni-tooltip.vue diff --git a/uni_modules/uni-tooltip/package.json b/src/uni_modules/uni-tooltip/package.json similarity index 100% rename from uni_modules/uni-tooltip/package.json rename to src/uni_modules/uni-tooltip/package.json diff --git a/uni_modules/uni-tooltip/readme.md b/src/uni_modules/uni-tooltip/readme.md similarity index 100% rename from uni_modules/uni-tooltip/readme.md rename to src/uni_modules/uni-tooltip/readme.md diff --git a/uni_modules/uni-transition/changelog.md b/src/uni_modules/uni-transition/changelog.md similarity index 100% rename from uni_modules/uni-transition/changelog.md rename to src/uni_modules/uni-transition/changelog.md diff --git a/uni_modules/uni-transition/components/uni-transition/createAnimation.js b/src/uni_modules/uni-transition/components/uni-transition/createAnimation.js similarity index 100% rename from uni_modules/uni-transition/components/uni-transition/createAnimation.js rename to src/uni_modules/uni-transition/components/uni-transition/createAnimation.js diff --git a/uni_modules/uni-transition/components/uni-transition/uni-transition.vue b/src/uni_modules/uni-transition/components/uni-transition/uni-transition.vue similarity index 100% rename from uni_modules/uni-transition/components/uni-transition/uni-transition.vue rename to src/uni_modules/uni-transition/components/uni-transition/uni-transition.vue diff --git a/uni_modules/uni-transition/package.json b/src/uni_modules/uni-transition/package.json similarity index 100% rename from uni_modules/uni-transition/package.json rename to src/uni_modules/uni-transition/package.json diff --git a/uni_modules/uni-transition/readme.md b/src/uni_modules/uni-transition/readme.md similarity index 100% rename from uni_modules/uni-transition/readme.md rename to src/uni_modules/uni-transition/readme.md diff --git a/uni_modules/vk-uview-ui/changelog.md b/src/uni_modules/vk-uview-ui/changelog.md similarity index 100% rename from uni_modules/vk-uview-ui/changelog.md rename to src/uni_modules/vk-uview-ui/changelog.md diff --git a/uni_modules/vk-uview-ui/components/u-action-sheet/u-action-sheet.vue b/src/uni_modules/vk-uview-ui/components/u-action-sheet/u-action-sheet.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-action-sheet/u-action-sheet.vue rename to src/uni_modules/vk-uview-ui/components/u-action-sheet/u-action-sheet.vue diff --git a/uni_modules/vk-uview-ui/components/u-alert-tips/u-alert-tips.vue b/src/uni_modules/vk-uview-ui/components/u-alert-tips/u-alert-tips.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-alert-tips/u-alert-tips.vue rename to src/uni_modules/vk-uview-ui/components/u-alert-tips/u-alert-tips.vue diff --git a/uni_modules/vk-uview-ui/components/u-avatar-cropper/u-avatar-cropper.vue b/src/uni_modules/vk-uview-ui/components/u-avatar-cropper/u-avatar-cropper.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-avatar-cropper/u-avatar-cropper.vue rename to src/uni_modules/vk-uview-ui/components/u-avatar-cropper/u-avatar-cropper.vue diff --git a/uni_modules/vk-uview-ui/components/u-avatar-cropper/weCropper.js b/src/uni_modules/vk-uview-ui/components/u-avatar-cropper/weCropper.js similarity index 100% rename from uni_modules/vk-uview-ui/components/u-avatar-cropper/weCropper.js rename to src/uni_modules/vk-uview-ui/components/u-avatar-cropper/weCropper.js diff --git a/uni_modules/vk-uview-ui/components/u-avatar/u-avatar.vue b/src/uni_modules/vk-uview-ui/components/u-avatar/u-avatar.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-avatar/u-avatar.vue rename to src/uni_modules/vk-uview-ui/components/u-avatar/u-avatar.vue diff --git a/uni_modules/vk-uview-ui/components/u-back-top/u-back-top.vue b/src/uni_modules/vk-uview-ui/components/u-back-top/u-back-top.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-back-top/u-back-top.vue rename to src/uni_modules/vk-uview-ui/components/u-back-top/u-back-top.vue diff --git a/uni_modules/vk-uview-ui/components/u-badge/u-badge.vue b/src/uni_modules/vk-uview-ui/components/u-badge/u-badge.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-badge/u-badge.vue rename to src/uni_modules/vk-uview-ui/components/u-badge/u-badge.vue diff --git a/uni_modules/vk-uview-ui/components/u-button/u-button.vue b/src/uni_modules/vk-uview-ui/components/u-button/u-button.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-button/u-button.vue rename to src/uni_modules/vk-uview-ui/components/u-button/u-button.vue diff --git a/uni_modules/vk-uview-ui/components/u-calendar/u-calendar.vue b/src/uni_modules/vk-uview-ui/components/u-calendar/u-calendar.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-calendar/u-calendar.vue rename to src/uni_modules/vk-uview-ui/components/u-calendar/u-calendar.vue diff --git a/uni_modules/vk-uview-ui/components/u-car-keyboard/u-car-keyboard.vue b/src/uni_modules/vk-uview-ui/components/u-car-keyboard/u-car-keyboard.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-car-keyboard/u-car-keyboard.vue rename to src/uni_modules/vk-uview-ui/components/u-car-keyboard/u-car-keyboard.vue diff --git a/uni_modules/vk-uview-ui/components/u-card/u-card.vue b/src/uni_modules/vk-uview-ui/components/u-card/u-card.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-card/u-card.vue rename to src/uni_modules/vk-uview-ui/components/u-card/u-card.vue diff --git a/uni_modules/vk-uview-ui/components/u-cell-group/u-cell-group.vue b/src/uni_modules/vk-uview-ui/components/u-cell-group/u-cell-group.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-cell-group/u-cell-group.vue rename to src/uni_modules/vk-uview-ui/components/u-cell-group/u-cell-group.vue diff --git a/uni_modules/vk-uview-ui/components/u-cell-item/u-cell-item.vue b/src/uni_modules/vk-uview-ui/components/u-cell-item/u-cell-item.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-cell-item/u-cell-item.vue rename to src/uni_modules/vk-uview-ui/components/u-cell-item/u-cell-item.vue diff --git a/uni_modules/vk-uview-ui/components/u-checkbox-group/u-checkbox-group.vue b/src/uni_modules/vk-uview-ui/components/u-checkbox-group/u-checkbox-group.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-checkbox-group/u-checkbox-group.vue rename to src/uni_modules/vk-uview-ui/components/u-checkbox-group/u-checkbox-group.vue diff --git a/uni_modules/vk-uview-ui/components/u-checkbox/u-checkbox.vue b/src/uni_modules/vk-uview-ui/components/u-checkbox/u-checkbox.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-checkbox/u-checkbox.vue rename to src/uni_modules/vk-uview-ui/components/u-checkbox/u-checkbox.vue diff --git a/uni_modules/vk-uview-ui/components/u-circle-progress/u-circle-progress.vue b/src/uni_modules/vk-uview-ui/components/u-circle-progress/u-circle-progress.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-circle-progress/u-circle-progress.vue rename to src/uni_modules/vk-uview-ui/components/u-circle-progress/u-circle-progress.vue diff --git a/uni_modules/vk-uview-ui/components/u-col/u-col.vue b/src/uni_modules/vk-uview-ui/components/u-col/u-col.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-col/u-col.vue rename to src/uni_modules/vk-uview-ui/components/u-col/u-col.vue diff --git a/uni_modules/vk-uview-ui/components/u-collapse-item/u-collapse-item.vue b/src/uni_modules/vk-uview-ui/components/u-collapse-item/u-collapse-item.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-collapse-item/u-collapse-item.vue rename to src/uni_modules/vk-uview-ui/components/u-collapse-item/u-collapse-item.vue diff --git a/uni_modules/vk-uview-ui/components/u-collapse/u-collapse.vue b/src/uni_modules/vk-uview-ui/components/u-collapse/u-collapse.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-collapse/u-collapse.vue rename to src/uni_modules/vk-uview-ui/components/u-collapse/u-collapse.vue diff --git a/uni_modules/vk-uview-ui/components/u-column-notice/u-column-notice.vue b/src/uni_modules/vk-uview-ui/components/u-column-notice/u-column-notice.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-column-notice/u-column-notice.vue rename to src/uni_modules/vk-uview-ui/components/u-column-notice/u-column-notice.vue diff --git a/uni_modules/vk-uview-ui/components/u-count-down/u-count-down.vue b/src/uni_modules/vk-uview-ui/components/u-count-down/u-count-down.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-count-down/u-count-down.vue rename to src/uni_modules/vk-uview-ui/components/u-count-down/u-count-down.vue diff --git a/uni_modules/vk-uview-ui/components/u-count-down/utils.js b/src/uni_modules/vk-uview-ui/components/u-count-down/utils.js similarity index 100% rename from uni_modules/vk-uview-ui/components/u-count-down/utils.js rename to src/uni_modules/vk-uview-ui/components/u-count-down/utils.js diff --git a/uni_modules/vk-uview-ui/components/u-count-to/u-count-to.vue b/src/uni_modules/vk-uview-ui/components/u-count-to/u-count-to.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-count-to/u-count-to.vue rename to src/uni_modules/vk-uview-ui/components/u-count-to/u-count-to.vue diff --git a/uni_modules/vk-uview-ui/components/u-divider/u-divider.vue b/src/uni_modules/vk-uview-ui/components/u-divider/u-divider.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-divider/u-divider.vue rename to src/uni_modules/vk-uview-ui/components/u-divider/u-divider.vue diff --git a/uni_modules/vk-uview-ui/components/u-dropdown-item/u-dropdown-item.vue b/src/uni_modules/vk-uview-ui/components/u-dropdown-item/u-dropdown-item.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-dropdown-item/u-dropdown-item.vue rename to src/uni_modules/vk-uview-ui/components/u-dropdown-item/u-dropdown-item.vue diff --git a/uni_modules/vk-uview-ui/components/u-dropdown/u-dropdown.vue b/src/uni_modules/vk-uview-ui/components/u-dropdown/u-dropdown.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-dropdown/u-dropdown.vue rename to src/uni_modules/vk-uview-ui/components/u-dropdown/u-dropdown.vue diff --git a/uni_modules/vk-uview-ui/components/u-empty/u-empty.vue b/src/uni_modules/vk-uview-ui/components/u-empty/u-empty.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-empty/u-empty.vue rename to src/uni_modules/vk-uview-ui/components/u-empty/u-empty.vue diff --git a/uni_modules/vk-uview-ui/components/u-field/u-field.vue b/src/uni_modules/vk-uview-ui/components/u-field/u-field.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-field/u-field.vue rename to src/uni_modules/vk-uview-ui/components/u-field/u-field.vue diff --git a/uni_modules/vk-uview-ui/components/u-form-item/u-form-item.vue b/src/uni_modules/vk-uview-ui/components/u-form-item/u-form-item.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-form-item/u-form-item.vue rename to src/uni_modules/vk-uview-ui/components/u-form-item/u-form-item.vue diff --git a/uni_modules/vk-uview-ui/components/u-form/u-form.vue b/src/uni_modules/vk-uview-ui/components/u-form/u-form.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-form/u-form.vue rename to src/uni_modules/vk-uview-ui/components/u-form/u-form.vue diff --git a/uni_modules/vk-uview-ui/components/u-full-screen/u-full-screen.vue b/src/uni_modules/vk-uview-ui/components/u-full-screen/u-full-screen.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-full-screen/u-full-screen.vue rename to src/uni_modules/vk-uview-ui/components/u-full-screen/u-full-screen.vue diff --git a/uni_modules/vk-uview-ui/components/u-gap/u-gap.vue b/src/uni_modules/vk-uview-ui/components/u-gap/u-gap.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-gap/u-gap.vue rename to src/uni_modules/vk-uview-ui/components/u-gap/u-gap.vue diff --git a/uni_modules/vk-uview-ui/components/u-grid-item/u-grid-item.vue b/src/uni_modules/vk-uview-ui/components/u-grid-item/u-grid-item.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-grid-item/u-grid-item.vue rename to src/uni_modules/vk-uview-ui/components/u-grid-item/u-grid-item.vue diff --git a/uni_modules/vk-uview-ui/components/u-grid/u-grid.vue b/src/uni_modules/vk-uview-ui/components/u-grid/u-grid.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-grid/u-grid.vue rename to src/uni_modules/vk-uview-ui/components/u-grid/u-grid.vue diff --git a/uni_modules/vk-uview-ui/components/u-icon/u-icon.vue b/src/uni_modules/vk-uview-ui/components/u-icon/u-icon.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-icon/u-icon.vue rename to src/uni_modules/vk-uview-ui/components/u-icon/u-icon.vue diff --git a/uni_modules/vk-uview-ui/components/u-image/u-image.vue b/src/uni_modules/vk-uview-ui/components/u-image/u-image.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-image/u-image.vue rename to src/uni_modules/vk-uview-ui/components/u-image/u-image.vue diff --git a/uni_modules/vk-uview-ui/components/u-index-anchor/u-index-anchor.vue b/src/uni_modules/vk-uview-ui/components/u-index-anchor/u-index-anchor.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-index-anchor/u-index-anchor.vue rename to src/uni_modules/vk-uview-ui/components/u-index-anchor/u-index-anchor.vue diff --git a/uni_modules/vk-uview-ui/components/u-index-list/u-index-list.vue b/src/uni_modules/vk-uview-ui/components/u-index-list/u-index-list.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-index-list/u-index-list.vue rename to src/uni_modules/vk-uview-ui/components/u-index-list/u-index-list.vue diff --git a/uni_modules/vk-uview-ui/components/u-input/u-input.vue b/src/uni_modules/vk-uview-ui/components/u-input/u-input.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-input/u-input.vue rename to src/uni_modules/vk-uview-ui/components/u-input/u-input.vue diff --git a/uni_modules/vk-uview-ui/components/u-keyboard/u-keyboard.vue b/src/uni_modules/vk-uview-ui/components/u-keyboard/u-keyboard.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-keyboard/u-keyboard.vue rename to src/uni_modules/vk-uview-ui/components/u-keyboard/u-keyboard.vue diff --git a/uni_modules/vk-uview-ui/components/u-lazy-load/u-lazy-load.vue b/src/uni_modules/vk-uview-ui/components/u-lazy-load/u-lazy-load.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-lazy-load/u-lazy-load.vue rename to src/uni_modules/vk-uview-ui/components/u-lazy-load/u-lazy-load.vue diff --git a/uni_modules/vk-uview-ui/components/u-line-progress/u-line-progress.vue b/src/uni_modules/vk-uview-ui/components/u-line-progress/u-line-progress.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-line-progress/u-line-progress.vue rename to src/uni_modules/vk-uview-ui/components/u-line-progress/u-line-progress.vue diff --git a/uni_modules/vk-uview-ui/components/u-line/u-line.vue b/src/uni_modules/vk-uview-ui/components/u-line/u-line.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-line/u-line.vue rename to src/uni_modules/vk-uview-ui/components/u-line/u-line.vue diff --git a/uni_modules/vk-uview-ui/components/u-link/u-link.vue b/src/uni_modules/vk-uview-ui/components/u-link/u-link.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-link/u-link.vue rename to src/uni_modules/vk-uview-ui/components/u-link/u-link.vue diff --git a/uni_modules/vk-uview-ui/components/u-loading-page/u-loading-page.vue b/src/uni_modules/vk-uview-ui/components/u-loading-page/u-loading-page.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-loading-page/u-loading-page.vue rename to src/uni_modules/vk-uview-ui/components/u-loading-page/u-loading-page.vue diff --git a/uni_modules/vk-uview-ui/components/u-loading/u-loading.vue b/src/uni_modules/vk-uview-ui/components/u-loading/u-loading.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-loading/u-loading.vue rename to src/uni_modules/vk-uview-ui/components/u-loading/u-loading.vue diff --git a/uni_modules/vk-uview-ui/components/u-loadmore/u-loadmore.vue b/src/uni_modules/vk-uview-ui/components/u-loadmore/u-loadmore.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-loadmore/u-loadmore.vue rename to src/uni_modules/vk-uview-ui/components/u-loadmore/u-loadmore.vue diff --git a/uni_modules/vk-uview-ui/components/u-mask/u-mask.vue b/src/uni_modules/vk-uview-ui/components/u-mask/u-mask.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-mask/u-mask.vue rename to src/uni_modules/vk-uview-ui/components/u-mask/u-mask.vue diff --git a/uni_modules/vk-uview-ui/components/u-message-input/u-message-input.vue b/src/uni_modules/vk-uview-ui/components/u-message-input/u-message-input.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-message-input/u-message-input.vue rename to src/uni_modules/vk-uview-ui/components/u-message-input/u-message-input.vue diff --git a/uni_modules/vk-uview-ui/components/u-modal/u-modal.vue b/src/uni_modules/vk-uview-ui/components/u-modal/u-modal.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-modal/u-modal.vue rename to src/uni_modules/vk-uview-ui/components/u-modal/u-modal.vue diff --git a/uni_modules/vk-uview-ui/components/u-navbar/u-navbar.vue b/src/uni_modules/vk-uview-ui/components/u-navbar/u-navbar.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-navbar/u-navbar.vue rename to src/uni_modules/vk-uview-ui/components/u-navbar/u-navbar.vue diff --git a/uni_modules/vk-uview-ui/components/u-no-network/u-no-network.vue b/src/uni_modules/vk-uview-ui/components/u-no-network/u-no-network.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-no-network/u-no-network.vue rename to src/uni_modules/vk-uview-ui/components/u-no-network/u-no-network.vue diff --git a/uni_modules/vk-uview-ui/components/u-notice-bar/u-notice-bar.vue b/src/uni_modules/vk-uview-ui/components/u-notice-bar/u-notice-bar.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-notice-bar/u-notice-bar.vue rename to src/uni_modules/vk-uview-ui/components/u-notice-bar/u-notice-bar.vue diff --git a/uni_modules/vk-uview-ui/components/u-number-box/u-number-box.vue b/src/uni_modules/vk-uview-ui/components/u-number-box/u-number-box.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-number-box/u-number-box.vue rename to src/uni_modules/vk-uview-ui/components/u-number-box/u-number-box.vue diff --git a/uni_modules/vk-uview-ui/components/u-number-keyboard/u-number-keyboard.vue b/src/uni_modules/vk-uview-ui/components/u-number-keyboard/u-number-keyboard.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-number-keyboard/u-number-keyboard.vue rename to src/uni_modules/vk-uview-ui/components/u-number-keyboard/u-number-keyboard.vue diff --git a/uni_modules/vk-uview-ui/components/u-parse/libs/CssHandler.js b/src/uni_modules/vk-uview-ui/components/u-parse/libs/CssHandler.js similarity index 100% rename from uni_modules/vk-uview-ui/components/u-parse/libs/CssHandler.js rename to src/uni_modules/vk-uview-ui/components/u-parse/libs/CssHandler.js diff --git a/uni_modules/vk-uview-ui/components/u-parse/libs/MpHtmlParser.js b/src/uni_modules/vk-uview-ui/components/u-parse/libs/MpHtmlParser.js similarity index 100% rename from uni_modules/vk-uview-ui/components/u-parse/libs/MpHtmlParser.js rename to src/uni_modules/vk-uview-ui/components/u-parse/libs/MpHtmlParser.js diff --git a/uni_modules/vk-uview-ui/components/u-parse/libs/config.js b/src/uni_modules/vk-uview-ui/components/u-parse/libs/config.js similarity index 100% rename from uni_modules/vk-uview-ui/components/u-parse/libs/config.js rename to src/uni_modules/vk-uview-ui/components/u-parse/libs/config.js diff --git a/uni_modules/vk-uview-ui/components/u-parse/libs/trees.vue b/src/uni_modules/vk-uview-ui/components/u-parse/libs/trees.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-parse/libs/trees.vue rename to src/uni_modules/vk-uview-ui/components/u-parse/libs/trees.vue diff --git a/uni_modules/vk-uview-ui/components/u-parse/u-parse.vue b/src/uni_modules/vk-uview-ui/components/u-parse/u-parse.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-parse/u-parse.vue rename to src/uni_modules/vk-uview-ui/components/u-parse/u-parse.vue diff --git a/uni_modules/vk-uview-ui/components/u-picker/u-picker.vue b/src/uni_modules/vk-uview-ui/components/u-picker/u-picker.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-picker/u-picker.vue rename to src/uni_modules/vk-uview-ui/components/u-picker/u-picker.vue diff --git a/uni_modules/vk-uview-ui/components/u-popup/u-popup.vue b/src/uni_modules/vk-uview-ui/components/u-popup/u-popup.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-popup/u-popup.vue rename to src/uni_modules/vk-uview-ui/components/u-popup/u-popup.vue diff --git a/uni_modules/vk-uview-ui/components/u-radio-group/u-radio-group.vue b/src/uni_modules/vk-uview-ui/components/u-radio-group/u-radio-group.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-radio-group/u-radio-group.vue rename to src/uni_modules/vk-uview-ui/components/u-radio-group/u-radio-group.vue diff --git a/uni_modules/vk-uview-ui/components/u-radio/u-radio.vue b/src/uni_modules/vk-uview-ui/components/u-radio/u-radio.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-radio/u-radio.vue rename to src/uni_modules/vk-uview-ui/components/u-radio/u-radio.vue diff --git a/uni_modules/vk-uview-ui/components/u-rate/u-rate.vue b/src/uni_modules/vk-uview-ui/components/u-rate/u-rate.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-rate/u-rate.vue rename to src/uni_modules/vk-uview-ui/components/u-rate/u-rate.vue diff --git a/uni_modules/vk-uview-ui/components/u-read-more/u-read-more.vue b/src/uni_modules/vk-uview-ui/components/u-read-more/u-read-more.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-read-more/u-read-more.vue rename to src/uni_modules/vk-uview-ui/components/u-read-more/u-read-more.vue diff --git a/uni_modules/vk-uview-ui/components/u-row-notice/u-row-notice.vue b/src/uni_modules/vk-uview-ui/components/u-row-notice/u-row-notice.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-row-notice/u-row-notice.vue rename to src/uni_modules/vk-uview-ui/components/u-row-notice/u-row-notice.vue diff --git a/uni_modules/vk-uview-ui/components/u-row/u-row.vue b/src/uni_modules/vk-uview-ui/components/u-row/u-row.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-row/u-row.vue rename to src/uni_modules/vk-uview-ui/components/u-row/u-row.vue diff --git a/uni_modules/vk-uview-ui/components/u-search/u-search.vue b/src/uni_modules/vk-uview-ui/components/u-search/u-search.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-search/u-search.vue rename to src/uni_modules/vk-uview-ui/components/u-search/u-search.vue diff --git a/uni_modules/vk-uview-ui/components/u-section/u-section.vue b/src/uni_modules/vk-uview-ui/components/u-section/u-section.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-section/u-section.vue rename to src/uni_modules/vk-uview-ui/components/u-section/u-section.vue diff --git a/uni_modules/vk-uview-ui/components/u-select/u-select.vue b/src/uni_modules/vk-uview-ui/components/u-select/u-select.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-select/u-select.vue rename to src/uni_modules/vk-uview-ui/components/u-select/u-select.vue diff --git a/uni_modules/vk-uview-ui/components/u-skeleton/u-skeleton.vue b/src/uni_modules/vk-uview-ui/components/u-skeleton/u-skeleton.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-skeleton/u-skeleton.vue rename to src/uni_modules/vk-uview-ui/components/u-skeleton/u-skeleton.vue diff --git a/uni_modules/vk-uview-ui/components/u-slider/u-slider.vue b/src/uni_modules/vk-uview-ui/components/u-slider/u-slider.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-slider/u-slider.vue rename to src/uni_modules/vk-uview-ui/components/u-slider/u-slider.vue diff --git a/uni_modules/vk-uview-ui/components/u-steps/u-steps.vue b/src/uni_modules/vk-uview-ui/components/u-steps/u-steps.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-steps/u-steps.vue rename to src/uni_modules/vk-uview-ui/components/u-steps/u-steps.vue diff --git a/uni_modules/vk-uview-ui/components/u-sticky/u-sticky.vue b/src/uni_modules/vk-uview-ui/components/u-sticky/u-sticky.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-sticky/u-sticky.vue rename to src/uni_modules/vk-uview-ui/components/u-sticky/u-sticky.vue diff --git a/uni_modules/vk-uview-ui/components/u-subsection/u-subsection.vue b/src/uni_modules/vk-uview-ui/components/u-subsection/u-subsection.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-subsection/u-subsection.vue rename to src/uni_modules/vk-uview-ui/components/u-subsection/u-subsection.vue diff --git a/uni_modules/vk-uview-ui/components/u-swipe-action/u-swipe-action.vue b/src/uni_modules/vk-uview-ui/components/u-swipe-action/u-swipe-action.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-swipe-action/u-swipe-action.vue rename to src/uni_modules/vk-uview-ui/components/u-swipe-action/u-swipe-action.vue diff --git a/uni_modules/vk-uview-ui/components/u-swiper/u-swiper.vue b/src/uni_modules/vk-uview-ui/components/u-swiper/u-swiper.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-swiper/u-swiper.vue rename to src/uni_modules/vk-uview-ui/components/u-swiper/u-swiper.vue diff --git a/uni_modules/vk-uview-ui/components/u-switch/u-switch.vue b/src/uni_modules/vk-uview-ui/components/u-switch/u-switch.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-switch/u-switch.vue rename to src/uni_modules/vk-uview-ui/components/u-switch/u-switch.vue diff --git a/uni_modules/vk-uview-ui/components/u-tabbar/u-tabbar.vue b/src/uni_modules/vk-uview-ui/components/u-tabbar/u-tabbar.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-tabbar/u-tabbar.vue rename to src/uni_modules/vk-uview-ui/components/u-tabbar/u-tabbar.vue diff --git a/uni_modules/vk-uview-ui/components/u-table/u-table.vue b/src/uni_modules/vk-uview-ui/components/u-table/u-table.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-table/u-table.vue rename to src/uni_modules/vk-uview-ui/components/u-table/u-table.vue diff --git a/uni_modules/vk-uview-ui/components/u-tabs-swiper/u-tabs-swiper.vue b/src/uni_modules/vk-uview-ui/components/u-tabs-swiper/u-tabs-swiper.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-tabs-swiper/u-tabs-swiper.vue rename to src/uni_modules/vk-uview-ui/components/u-tabs-swiper/u-tabs-swiper.vue diff --git a/uni_modules/vk-uview-ui/components/u-tabs/u-tabs.vue b/src/uni_modules/vk-uview-ui/components/u-tabs/u-tabs.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-tabs/u-tabs.vue rename to src/uni_modules/vk-uview-ui/components/u-tabs/u-tabs.vue diff --git a/uni_modules/vk-uview-ui/components/u-tag/u-tag.vue b/src/uni_modules/vk-uview-ui/components/u-tag/u-tag.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-tag/u-tag.vue rename to src/uni_modules/vk-uview-ui/components/u-tag/u-tag.vue diff --git a/uni_modules/vk-uview-ui/components/u-td/u-td.vue b/src/uni_modules/vk-uview-ui/components/u-td/u-td.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-td/u-td.vue rename to src/uni_modules/vk-uview-ui/components/u-td/u-td.vue diff --git a/uni_modules/vk-uview-ui/components/u-th/u-th.vue b/src/uni_modules/vk-uview-ui/components/u-th/u-th.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-th/u-th.vue rename to src/uni_modules/vk-uview-ui/components/u-th/u-th.vue diff --git a/uni_modules/vk-uview-ui/components/u-time-line-item/u-time-line-item.vue b/src/uni_modules/vk-uview-ui/components/u-time-line-item/u-time-line-item.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-time-line-item/u-time-line-item.vue rename to src/uni_modules/vk-uview-ui/components/u-time-line-item/u-time-line-item.vue diff --git a/uni_modules/vk-uview-ui/components/u-time-line/u-time-line.vue b/src/uni_modules/vk-uview-ui/components/u-time-line/u-time-line.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-time-line/u-time-line.vue rename to src/uni_modules/vk-uview-ui/components/u-time-line/u-time-line.vue diff --git a/uni_modules/vk-uview-ui/components/u-toast/u-toast.vue b/src/uni_modules/vk-uview-ui/components/u-toast/u-toast.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-toast/u-toast.vue rename to src/uni_modules/vk-uview-ui/components/u-toast/u-toast.vue diff --git a/uni_modules/vk-uview-ui/components/u-top-tips/u-top-tips.vue b/src/uni_modules/vk-uview-ui/components/u-top-tips/u-top-tips.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-top-tips/u-top-tips.vue rename to src/uni_modules/vk-uview-ui/components/u-top-tips/u-top-tips.vue diff --git a/uni_modules/vk-uview-ui/components/u-tr/u-tr.vue b/src/uni_modules/vk-uview-ui/components/u-tr/u-tr.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-tr/u-tr.vue rename to src/uni_modules/vk-uview-ui/components/u-tr/u-tr.vue diff --git a/uni_modules/vk-uview-ui/components/u-upload/u-upload.vue b/src/uni_modules/vk-uview-ui/components/u-upload/u-upload.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-upload/u-upload.vue rename to src/uni_modules/vk-uview-ui/components/u-upload/u-upload.vue diff --git a/uni_modules/vk-uview-ui/components/u-verification-code/u-verification-code.vue b/src/uni_modules/vk-uview-ui/components/u-verification-code/u-verification-code.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-verification-code/u-verification-code.vue rename to src/uni_modules/vk-uview-ui/components/u-verification-code/u-verification-code.vue diff --git a/uni_modules/vk-uview-ui/components/u-waterfall/u-waterfall.vue b/src/uni_modules/vk-uview-ui/components/u-waterfall/u-waterfall.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/u-waterfall/u-waterfall.vue rename to src/uni_modules/vk-uview-ui/components/u-waterfall/u-waterfall.vue diff --git a/uni_modules/vk-uview-ui/components/vk-uview-ui/vk-uview-ui.vue b/src/uni_modules/vk-uview-ui/components/vk-uview-ui/vk-uview-ui.vue similarity index 100% rename from uni_modules/vk-uview-ui/components/vk-uview-ui/vk-uview-ui.vue rename to src/uni_modules/vk-uview-ui/components/vk-uview-ui/vk-uview-ui.vue diff --git a/uni_modules/vk-uview-ui/iconfont.css b/src/uni_modules/vk-uview-ui/iconfont.css similarity index 100% rename from uni_modules/vk-uview-ui/iconfont.css rename to src/uni_modules/vk-uview-ui/iconfont.css diff --git a/uni_modules/vk-uview-ui/index.js b/src/uni_modules/vk-uview-ui/index.js similarity index 100% rename from uni_modules/vk-uview-ui/index.js rename to src/uni_modules/vk-uview-ui/index.js diff --git a/uni_modules/vk-uview-ui/index.scss b/src/uni_modules/vk-uview-ui/index.scss similarity index 100% rename from uni_modules/vk-uview-ui/index.scss rename to src/uni_modules/vk-uview-ui/index.scss diff --git a/uni_modules/vk-uview-ui/libs/address/areas.json b/src/uni_modules/vk-uview-ui/libs/address/areas.json similarity index 100% rename from uni_modules/vk-uview-ui/libs/address/areas.json rename to src/uni_modules/vk-uview-ui/libs/address/areas.json diff --git a/uni_modules/vk-uview-ui/libs/address/citys.json b/src/uni_modules/vk-uview-ui/libs/address/citys.json similarity index 100% rename from uni_modules/vk-uview-ui/libs/address/citys.json rename to src/uni_modules/vk-uview-ui/libs/address/citys.json diff --git a/uni_modules/vk-uview-ui/libs/address/provinces.json b/src/uni_modules/vk-uview-ui/libs/address/provinces.json similarity index 100% rename from uni_modules/vk-uview-ui/libs/address/provinces.json rename to src/uni_modules/vk-uview-ui/libs/address/provinces.json diff --git a/uni_modules/vk-uview-ui/libs/config/config.js b/src/uni_modules/vk-uview-ui/libs/config/config.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/config/config.js rename to src/uni_modules/vk-uview-ui/libs/config/config.js diff --git a/uni_modules/vk-uview-ui/libs/config/zIndex.js b/src/uni_modules/vk-uview-ui/libs/config/zIndex.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/config/zIndex.js rename to src/uni_modules/vk-uview-ui/libs/config/zIndex.js diff --git a/uni_modules/vk-uview-ui/libs/css/color.scss b/src/uni_modules/vk-uview-ui/libs/css/color.scss similarity index 100% rename from uni_modules/vk-uview-ui/libs/css/color.scss rename to src/uni_modules/vk-uview-ui/libs/css/color.scss diff --git a/uni_modules/vk-uview-ui/libs/css/common.scss b/src/uni_modules/vk-uview-ui/libs/css/common.scss similarity index 100% rename from uni_modules/vk-uview-ui/libs/css/common.scss rename to src/uni_modules/vk-uview-ui/libs/css/common.scss diff --git a/uni_modules/vk-uview-ui/libs/css/style.components.scss b/src/uni_modules/vk-uview-ui/libs/css/style.components.scss similarity index 100% rename from uni_modules/vk-uview-ui/libs/css/style.components.scss rename to src/uni_modules/vk-uview-ui/libs/css/style.components.scss diff --git a/uni_modules/vk-uview-ui/libs/css/style.h5.scss b/src/uni_modules/vk-uview-ui/libs/css/style.h5.scss similarity index 100% rename from uni_modules/vk-uview-ui/libs/css/style.h5.scss rename to src/uni_modules/vk-uview-ui/libs/css/style.h5.scss diff --git a/uni_modules/vk-uview-ui/libs/css/style.mp.scss b/src/uni_modules/vk-uview-ui/libs/css/style.mp.scss similarity index 100% rename from uni_modules/vk-uview-ui/libs/css/style.mp.scss rename to src/uni_modules/vk-uview-ui/libs/css/style.mp.scss diff --git a/uni_modules/vk-uview-ui/libs/css/style.nvue.scss b/src/uni_modules/vk-uview-ui/libs/css/style.nvue.scss similarity index 100% rename from uni_modules/vk-uview-ui/libs/css/style.nvue.scss rename to src/uni_modules/vk-uview-ui/libs/css/style.nvue.scss diff --git a/uni_modules/vk-uview-ui/libs/css/style.vue.scss b/src/uni_modules/vk-uview-ui/libs/css/style.vue.scss similarity index 100% rename from uni_modules/vk-uview-ui/libs/css/style.vue.scss rename to src/uni_modules/vk-uview-ui/libs/css/style.vue.scss diff --git a/uni_modules/vk-uview-ui/libs/function/$parent.js b/src/uni_modules/vk-uview-ui/libs/function/$parent.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/$parent.js rename to src/uni_modules/vk-uview-ui/libs/function/$parent.js diff --git a/uni_modules/vk-uview-ui/libs/function/addUnit.js b/src/uni_modules/vk-uview-ui/libs/function/addUnit.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/addUnit.js rename to src/uni_modules/vk-uview-ui/libs/function/addUnit.js diff --git a/uni_modules/vk-uview-ui/libs/function/bem.js b/src/uni_modules/vk-uview-ui/libs/function/bem.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/bem.js rename to src/uni_modules/vk-uview-ui/libs/function/bem.js diff --git a/uni_modules/vk-uview-ui/libs/function/color.js b/src/uni_modules/vk-uview-ui/libs/function/color.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/color.js rename to src/uni_modules/vk-uview-ui/libs/function/color.js diff --git a/uni_modules/vk-uview-ui/libs/function/colorGradient.js b/src/uni_modules/vk-uview-ui/libs/function/colorGradient.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/colorGradient.js rename to src/uni_modules/vk-uview-ui/libs/function/colorGradient.js diff --git a/uni_modules/vk-uview-ui/libs/function/debounce.js b/src/uni_modules/vk-uview-ui/libs/function/debounce.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/debounce.js rename to src/uni_modules/vk-uview-ui/libs/function/debounce.js diff --git a/uni_modules/vk-uview-ui/libs/function/deepClone.js b/src/uni_modules/vk-uview-ui/libs/function/deepClone.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/deepClone.js rename to src/uni_modules/vk-uview-ui/libs/function/deepClone.js diff --git a/uni_modules/vk-uview-ui/libs/function/deepMerge.js b/src/uni_modules/vk-uview-ui/libs/function/deepMerge.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/deepMerge.js rename to src/uni_modules/vk-uview-ui/libs/function/deepMerge.js diff --git a/uni_modules/vk-uview-ui/libs/function/getParent.js b/src/uni_modules/vk-uview-ui/libs/function/getParent.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/getParent.js rename to src/uni_modules/vk-uview-ui/libs/function/getParent.js diff --git a/uni_modules/vk-uview-ui/libs/function/guid.js b/src/uni_modules/vk-uview-ui/libs/function/guid.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/guid.js rename to src/uni_modules/vk-uview-ui/libs/function/guid.js diff --git a/uni_modules/vk-uview-ui/libs/function/md5.js b/src/uni_modules/vk-uview-ui/libs/function/md5.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/md5.js rename to src/uni_modules/vk-uview-ui/libs/function/md5.js diff --git a/uni_modules/vk-uview-ui/libs/function/queryParams.js b/src/uni_modules/vk-uview-ui/libs/function/queryParams.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/queryParams.js rename to src/uni_modules/vk-uview-ui/libs/function/queryParams.js diff --git a/uni_modules/vk-uview-ui/libs/function/random.js b/src/uni_modules/vk-uview-ui/libs/function/random.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/random.js rename to src/uni_modules/vk-uview-ui/libs/function/random.js diff --git a/uni_modules/vk-uview-ui/libs/function/randomArray.js b/src/uni_modules/vk-uview-ui/libs/function/randomArray.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/randomArray.js rename to src/uni_modules/vk-uview-ui/libs/function/randomArray.js diff --git a/uni_modules/vk-uview-ui/libs/function/route.js b/src/uni_modules/vk-uview-ui/libs/function/route.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/route.js rename to src/uni_modules/vk-uview-ui/libs/function/route.js diff --git a/uni_modules/vk-uview-ui/libs/function/sys.js b/src/uni_modules/vk-uview-ui/libs/function/sys.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/sys.js rename to src/uni_modules/vk-uview-ui/libs/function/sys.js diff --git a/uni_modules/vk-uview-ui/libs/function/test.js b/src/uni_modules/vk-uview-ui/libs/function/test.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/test.js rename to src/uni_modules/vk-uview-ui/libs/function/test.js diff --git a/uni_modules/vk-uview-ui/libs/function/throttle.js b/src/uni_modules/vk-uview-ui/libs/function/throttle.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/throttle.js rename to src/uni_modules/vk-uview-ui/libs/function/throttle.js diff --git a/uni_modules/vk-uview-ui/libs/function/timeFormat.js b/src/uni_modules/vk-uview-ui/libs/function/timeFormat.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/timeFormat.js rename to src/uni_modules/vk-uview-ui/libs/function/timeFormat.js diff --git a/uni_modules/vk-uview-ui/libs/function/timeFrom.js b/src/uni_modules/vk-uview-ui/libs/function/timeFrom.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/timeFrom.js rename to src/uni_modules/vk-uview-ui/libs/function/timeFrom.js diff --git a/uni_modules/vk-uview-ui/libs/function/toast.js b/src/uni_modules/vk-uview-ui/libs/function/toast.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/toast.js rename to src/uni_modules/vk-uview-ui/libs/function/toast.js diff --git a/uni_modules/vk-uview-ui/libs/function/trim.js b/src/uni_modules/vk-uview-ui/libs/function/trim.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/trim.js rename to src/uni_modules/vk-uview-ui/libs/function/trim.js diff --git a/uni_modules/vk-uview-ui/libs/function/type2icon.js b/src/uni_modules/vk-uview-ui/libs/function/type2icon.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/function/type2icon.js rename to src/uni_modules/vk-uview-ui/libs/function/type2icon.js diff --git a/uni_modules/vk-uview-ui/libs/mixin/mixin.js b/src/uni_modules/vk-uview-ui/libs/mixin/mixin.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/mixin/mixin.js rename to src/uni_modules/vk-uview-ui/libs/mixin/mixin.js diff --git a/uni_modules/vk-uview-ui/libs/mixin/mpShare.js b/src/uni_modules/vk-uview-ui/libs/mixin/mpShare.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/mixin/mpShare.js rename to src/uni_modules/vk-uview-ui/libs/mixin/mpShare.js diff --git a/uni_modules/vk-uview-ui/libs/request/index.js b/src/uni_modules/vk-uview-ui/libs/request/index.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/request/index.js rename to src/uni_modules/vk-uview-ui/libs/request/index.js diff --git a/uni_modules/vk-uview-ui/libs/store/index.js b/src/uni_modules/vk-uview-ui/libs/store/index.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/store/index.js rename to src/uni_modules/vk-uview-ui/libs/store/index.js diff --git a/uni_modules/vk-uview-ui/libs/util/async-validator.js b/src/uni_modules/vk-uview-ui/libs/util/async-validator.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/util/async-validator.js rename to src/uni_modules/vk-uview-ui/libs/util/async-validator.js diff --git a/uni_modules/vk-uview-ui/libs/util/emitter.js b/src/uni_modules/vk-uview-ui/libs/util/emitter.js similarity index 100% rename from uni_modules/vk-uview-ui/libs/util/emitter.js rename to src/uni_modules/vk-uview-ui/libs/util/emitter.js diff --git a/uni_modules/vk-uview-ui/package.json b/src/uni_modules/vk-uview-ui/package.json similarity index 100% rename from uni_modules/vk-uview-ui/package.json rename to src/uni_modules/vk-uview-ui/package.json diff --git a/uni_modules/vk-uview-ui/readme.md b/src/uni_modules/vk-uview-ui/readme.md similarity index 100% rename from uni_modules/vk-uview-ui/readme.md rename to src/uni_modules/vk-uview-ui/readme.md diff --git a/uni_modules/vk-uview-ui/theme.scss b/src/uni_modules/vk-uview-ui/theme.scss similarity index 100% rename from uni_modules/vk-uview-ui/theme.scss rename to src/uni_modules/vk-uview-ui/theme.scss diff --git a/uni_modules/z-paging/changelog.md b/src/uni_modules/z-paging/changelog.md similarity index 100% rename from uni_modules/z-paging/changelog.md rename to src/uni_modules/z-paging/changelog.md diff --git a/uni_modules/z-paging/components/z-paging-cell/z-paging-cell.vue b/src/uni_modules/z-paging/components/z-paging-cell/z-paging-cell.vue similarity index 100% rename from uni_modules/z-paging/components/z-paging-cell/z-paging-cell.vue rename to src/uni_modules/z-paging/components/z-paging-cell/z-paging-cell.vue diff --git a/uni_modules/z-paging/components/z-paging-empty-view/z-paging-empty-view.vue b/src/uni_modules/z-paging/components/z-paging-empty-view/z-paging-empty-view.vue similarity index 100% rename from uni_modules/z-paging/components/z-paging-empty-view/z-paging-empty-view.vue rename to src/uni_modules/z-paging/components/z-paging-empty-view/z-paging-empty-view.vue diff --git a/uni_modules/z-paging/components/z-paging-swiper-item/z-paging-swiper-item.vue b/src/uni_modules/z-paging/components/z-paging-swiper-item/z-paging-swiper-item.vue similarity index 100% rename from uni_modules/z-paging/components/z-paging-swiper-item/z-paging-swiper-item.vue rename to src/uni_modules/z-paging/components/z-paging-swiper-item/z-paging-swiper-item.vue diff --git a/uni_modules/z-paging/components/z-paging-swiper/z-paging-swiper.vue b/src/uni_modules/z-paging/components/z-paging-swiper/z-paging-swiper.vue similarity index 100% rename from uni_modules/z-paging/components/z-paging-swiper/z-paging-swiper.vue rename to src/uni_modules/z-paging/components/z-paging-swiper/z-paging-swiper.vue diff --git a/uni_modules/z-paging/components/z-paging/components/z-paging-load-more.vue b/src/uni_modules/z-paging/components/z-paging/components/z-paging-load-more.vue similarity index 100% rename from uni_modules/z-paging/components/z-paging/components/z-paging-load-more.vue rename to src/uni_modules/z-paging/components/z-paging/components/z-paging-load-more.vue diff --git a/uni_modules/z-paging/components/z-paging/components/z-paging-refresh.vue b/src/uni_modules/z-paging/components/z-paging/components/z-paging-refresh.vue similarity index 100% rename from uni_modules/z-paging/components/z-paging/components/z-paging-refresh.vue rename to src/uni_modules/z-paging/components/z-paging/components/z-paging-refresh.vue diff --git a/uni_modules/z-paging/components/z-paging/config/index.js b/src/uni_modules/z-paging/components/z-paging/config/index.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/config/index.js rename to src/uni_modules/z-paging/components/z-paging/config/index.js diff --git a/uni_modules/z-paging/components/z-paging/css/z-paging-main.css b/src/uni_modules/z-paging/components/z-paging/css/z-paging-main.css similarity index 100% rename from uni_modules/z-paging/components/z-paging/css/z-paging-main.css rename to src/uni_modules/z-paging/components/z-paging/css/z-paging-main.css diff --git a/uni_modules/z-paging/components/z-paging/css/z-paging-static.css b/src/uni_modules/z-paging/components/z-paging/css/z-paging-static.css similarity index 100% rename from uni_modules/z-paging/components/z-paging/css/z-paging-static.css rename to src/uni_modules/z-paging/components/z-paging/css/z-paging-static.css diff --git a/uni_modules/z-paging/components/z-paging/i18n/en.json b/src/uni_modules/z-paging/components/z-paging/i18n/en.json similarity index 100% rename from uni_modules/z-paging/components/z-paging/i18n/en.json rename to src/uni_modules/z-paging/components/z-paging/i18n/en.json diff --git a/uni_modules/z-paging/components/z-paging/i18n/index.js b/src/uni_modules/z-paging/components/z-paging/i18n/index.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/i18n/index.js rename to src/uni_modules/z-paging/components/z-paging/i18n/index.js diff --git a/uni_modules/z-paging/components/z-paging/i18n/zh-Hans.json b/src/uni_modules/z-paging/components/z-paging/i18n/zh-Hans.json similarity index 100% rename from uni_modules/z-paging/components/z-paging/i18n/zh-Hans.json rename to src/uni_modules/z-paging/components/z-paging/i18n/zh-Hans.json diff --git a/uni_modules/z-paging/components/z-paging/i18n/zh-Hant.json b/src/uni_modules/z-paging/components/z-paging/i18n/zh-Hant.json similarity index 100% rename from uni_modules/z-paging/components/z-paging/i18n/zh-Hant.json rename to src/uni_modules/z-paging/components/z-paging/i18n/zh-Hant.json diff --git a/uni_modules/z-paging/components/z-paging/js/hooks/useZPaging.js b/src/uni_modules/z-paging/components/z-paging/js/hooks/useZPaging.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/js/hooks/useZPaging.js rename to src/uni_modules/z-paging/components/z-paging/js/hooks/useZPaging.js diff --git a/uni_modules/z-paging/components/z-paging/js/hooks/useZPagingComp.js b/src/uni_modules/z-paging/components/z-paging/js/hooks/useZPagingComp.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/js/hooks/useZPagingComp.js rename to src/uni_modules/z-paging/components/z-paging/js/hooks/useZPagingComp.js diff --git a/uni_modules/z-paging/components/z-paging/js/modules/back-to-top.js b/src/uni_modules/z-paging/components/z-paging/js/modules/back-to-top.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/js/modules/back-to-top.js rename to src/uni_modules/z-paging/components/z-paging/js/modules/back-to-top.js diff --git a/uni_modules/z-paging/components/z-paging/js/modules/common-layout.js b/src/uni_modules/z-paging/components/z-paging/js/modules/common-layout.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/js/modules/common-layout.js rename to src/uni_modules/z-paging/components/z-paging/js/modules/common-layout.js diff --git a/uni_modules/z-paging/components/z-paging/js/modules/data-handle.js b/src/uni_modules/z-paging/components/z-paging/js/modules/data-handle.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/js/modules/data-handle.js rename to src/uni_modules/z-paging/components/z-paging/js/modules/data-handle.js diff --git a/uni_modules/z-paging/components/z-paging/js/modules/empty.js b/src/uni_modules/z-paging/components/z-paging/js/modules/empty.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/js/modules/empty.js rename to src/uni_modules/z-paging/components/z-paging/js/modules/empty.js diff --git a/uni_modules/z-paging/components/z-paging/js/modules/i18n.js b/src/uni_modules/z-paging/components/z-paging/js/modules/i18n.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/js/modules/i18n.js rename to src/uni_modules/z-paging/components/z-paging/js/modules/i18n.js diff --git a/uni_modules/z-paging/components/z-paging/js/modules/load-more.js b/src/uni_modules/z-paging/components/z-paging/js/modules/load-more.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/js/modules/load-more.js rename to src/uni_modules/z-paging/components/z-paging/js/modules/load-more.js diff --git a/uni_modules/z-paging/components/z-paging/js/modules/loading.js b/src/uni_modules/z-paging/components/z-paging/js/modules/loading.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/js/modules/loading.js rename to src/uni_modules/z-paging/components/z-paging/js/modules/loading.js diff --git a/uni_modules/z-paging/components/z-paging/js/modules/nvue.js b/src/uni_modules/z-paging/components/z-paging/js/modules/nvue.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/js/modules/nvue.js rename to src/uni_modules/z-paging/components/z-paging/js/modules/nvue.js diff --git a/uni_modules/z-paging/components/z-paging/js/modules/refresher.js b/src/uni_modules/z-paging/components/z-paging/js/modules/refresher.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/js/modules/refresher.js rename to src/uni_modules/z-paging/components/z-paging/js/modules/refresher.js diff --git a/uni_modules/z-paging/components/z-paging/js/modules/scroller.js b/src/uni_modules/z-paging/components/z-paging/js/modules/scroller.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/js/modules/scroller.js rename to src/uni_modules/z-paging/components/z-paging/js/modules/scroller.js diff --git a/uni_modules/z-paging/components/z-paging/js/modules/virtual-list.js b/src/uni_modules/z-paging/components/z-paging/js/modules/virtual-list.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/js/modules/virtual-list.js rename to src/uni_modules/z-paging/components/z-paging/js/modules/virtual-list.js diff --git a/uni_modules/z-paging/components/z-paging/js/z-paging-config.js b/src/uni_modules/z-paging/components/z-paging/js/z-paging-config.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/js/z-paging-config.js rename to src/uni_modules/z-paging/components/z-paging/js/z-paging-config.js diff --git a/uni_modules/z-paging/components/z-paging/js/z-paging-constant.js b/src/uni_modules/z-paging/components/z-paging/js/z-paging-constant.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/js/z-paging-constant.js rename to src/uni_modules/z-paging/components/z-paging/js/z-paging-constant.js diff --git a/uni_modules/z-paging/components/z-paging/js/z-paging-enum.js b/src/uni_modules/z-paging/components/z-paging/js/z-paging-enum.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/js/z-paging-enum.js rename to src/uni_modules/z-paging/components/z-paging/js/z-paging-enum.js diff --git a/uni_modules/z-paging/components/z-paging/js/z-paging-interceptor.js b/src/uni_modules/z-paging/components/z-paging/js/z-paging-interceptor.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/js/z-paging-interceptor.js rename to src/uni_modules/z-paging/components/z-paging/js/z-paging-interceptor.js diff --git a/uni_modules/z-paging/components/z-paging/js/z-paging-main.js b/src/uni_modules/z-paging/components/z-paging/js/z-paging-main.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/js/z-paging-main.js rename to src/uni_modules/z-paging/components/z-paging/js/z-paging-main.js diff --git a/uni_modules/z-paging/components/z-paging/js/z-paging-mixin.js b/src/uni_modules/z-paging/components/z-paging/js/z-paging-mixin.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/js/z-paging-mixin.js rename to src/uni_modules/z-paging/components/z-paging/js/z-paging-mixin.js diff --git a/uni_modules/z-paging/components/z-paging/js/z-paging-static.js b/src/uni_modules/z-paging/components/z-paging/js/z-paging-static.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/js/z-paging-static.js rename to src/uni_modules/z-paging/components/z-paging/js/z-paging-static.js diff --git a/uni_modules/z-paging/components/z-paging/js/z-paging-utils.js b/src/uni_modules/z-paging/components/z-paging/js/z-paging-utils.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/js/z-paging-utils.js rename to src/uni_modules/z-paging/components/z-paging/js/z-paging-utils.js diff --git a/uni_modules/z-paging/components/z-paging/wxs/z-paging-renderjs.js b/src/uni_modules/z-paging/components/z-paging/wxs/z-paging-renderjs.js similarity index 100% rename from uni_modules/z-paging/components/z-paging/wxs/z-paging-renderjs.js rename to src/uni_modules/z-paging/components/z-paging/wxs/z-paging-renderjs.js diff --git a/uni_modules/z-paging/components/z-paging/wxs/z-paging-wxs.wxs b/src/uni_modules/z-paging/components/z-paging/wxs/z-paging-wxs.wxs similarity index 100% rename from uni_modules/z-paging/components/z-paging/wxs/z-paging-wxs.wxs rename to src/uni_modules/z-paging/components/z-paging/wxs/z-paging-wxs.wxs diff --git a/uni_modules/z-paging/components/z-paging/z-paging.vue b/src/uni_modules/z-paging/components/z-paging/z-paging.vue similarity index 100% rename from uni_modules/z-paging/components/z-paging/z-paging.vue rename to src/uni_modules/z-paging/components/z-paging/z-paging.vue diff --git a/uni_modules/z-paging/package.json b/src/uni_modules/z-paging/package.json similarity index 100% rename from uni_modules/z-paging/package.json rename to src/uni_modules/z-paging/package.json diff --git a/uni_modules/z-paging/readme.md b/src/uni_modules/z-paging/readme.md similarity index 100% rename from uni_modules/z-paging/readme.md rename to src/uni_modules/z-paging/readme.md diff --git a/uni_modules/z-tabs/changelog.md b/src/uni_modules/z-tabs/changelog.md similarity index 100% rename from uni_modules/z-tabs/changelog.md rename to src/uni_modules/z-tabs/changelog.md diff --git a/uni_modules/z-tabs/components/z-tabs/config/index.js b/src/uni_modules/z-tabs/components/z-tabs/config/index.js similarity index 100% rename from uni_modules/z-tabs/components/z-tabs/config/index.js rename to src/uni_modules/z-tabs/components/z-tabs/config/index.js diff --git a/uni_modules/z-tabs/components/z-tabs/z-tabs.vue b/src/uni_modules/z-tabs/components/z-tabs/z-tabs.vue similarity index 100% rename from uni_modules/z-tabs/components/z-tabs/z-tabs.vue rename to src/uni_modules/z-tabs/components/z-tabs/z-tabs.vue diff --git a/uni_modules/z-tabs/package.json b/src/uni_modules/z-tabs/package.json similarity index 100% rename from uni_modules/z-tabs/package.json rename to src/uni_modules/z-tabs/package.json diff --git a/uni_modules/z-tabs/readme.md b/src/uni_modules/z-tabs/readme.md similarity index 100% rename from uni_modules/z-tabs/readme.md rename to src/uni_modules/z-tabs/readme.md diff --git a/utils/auth.js b/src/utils/auth.js similarity index 100% rename from utils/auth.js rename to src/utils/auth.js diff --git a/utils/common.ts b/src/utils/common.ts similarity index 100% rename from utils/common.ts rename to src/utils/common.ts diff --git a/utils/dateTime.ts b/src/utils/dateTime.ts similarity index 100% rename from utils/dateTime.ts rename to src/utils/dateTime.ts diff --git a/utils/http.ts b/src/utils/http.ts similarity index 100% rename from utils/http.ts rename to src/utils/http.ts diff --git a/utils/utils.ts b/src/utils/utils.ts similarity index 100% rename from utils/utils.ts rename to src/utils/utils.ts diff --git a/utils/validator.ts b/src/utils/validator.ts similarity index 100% rename from utils/validator.ts rename to src/utils/validator.ts diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..9130ec4 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "target": "esnext", + "useDefineForClassFields": true, + "module": "esnext", + "moduleResolution": "node", + "strict": true, + "jsx": "preserve", + "sourceMap": true, + "resolveJsonModule": true, + "esModuleInterop": true, + "lib": ["esnext", "dom"], + "types": [ + "@dcloudio/types", + "vite/client", + "@types/node", + "vitest/globals" + ], + "baseUrl": "./", + "paths": { + "@/*": ["src/*"], + "@components/*": ["src/components/*"] + } + }, + "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"] +} diff --git a/unocss.config.ts b/unocss.config.ts new file mode 100644 index 0000000..0f4f65c --- /dev/null +++ b/unocss.config.ts @@ -0,0 +1,30 @@ +import presetWeapp from 'unocss-preset-weapp' +import { defineConfig } from 'unocss' +import { + transformerAttributify, + transformerClass +} from 'unocss-preset-weapp/transformer' + +export default defineConfig({ + presets: [ + // https://github.com/MellowCo/unocss-preset-weapp + presetWeapp() + ], + shortcuts: [ + { + 'border-base': 'border border-gray-500_10', + 'flex-center': 'flex justify-center items-center', + 'bg-base': 'bg-#f6f7fb', + 'text-c1': 'color-#000/85', + 'text-c2': 'color-#000/65', + 'text-c3': 'color-#000/45', + 'text-c4': 'color-#000/25' + } + ], + transformers: [ + // https://github.com/MellowCo/unocss-preset-weapp/tree/main/src/transformer/transformerAttributify + transformerAttributify(), + // https://github.com/MellowCo/unocss-preset-weapp/tree/main/src/transformer/transformerClass + transformerClass() + ] +}) diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 0000000..890e0b8 --- /dev/null +++ b/vite.config.ts @@ -0,0 +1,34 @@ +import { defineConfig } from 'vite' +import uni from '@dcloudio/vite-plugin-uni' +import path from 'path' +import Unocss from 'unocss/vite' + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [ + uni(), + // https://github.com/antfu/unocss + Unocss() + ], + server: { + port: 81, + host: '0.0.0.0', + }, + resolve: { + alias: { + '@': path.resolve(__dirname, './src'), + '@components': path.resolve(__dirname, './src/components') + } + }, + css: { + // 配置`scss`和`less`全局变量 + preprocessorOptions: { + scss: { + additionalData: '@import "@/styles/vars/_base.scss";' + }, + less: { + additionalData: '@import "@/styles/vars/_base.less";' + } + } + } +}) diff --git a/vitest.config.ts b/vitest.config.ts new file mode 100644 index 0000000..556ad64 --- /dev/null +++ b/vitest.config.ts @@ -0,0 +1,7 @@ +import { defineConfig } from 'vitest/config' + +export default defineConfig({ + test: { + globals: true + } +})