提交 f7188792 作者: 方治民

feat: 集成 pinia、vue-i18n 及文档相关更新

上级 8541d90d
# API 接口地址 # API 接口地址
VITE_GLOB_API_URL=http://192.168.0.151:8181 VITE_GLOB_API_URL=http://192.168.0.156:8081
# API 接口地址前缀 # API 接口地址前缀
VITE_GLOB_API_URL_PREFIX=/api VITE_GLOB_API_URL_PREFIX=/api
...@@ -37,5 +37,6 @@ module.exports = { ...@@ -37,5 +37,6 @@ module.exports = {
}, },
], ],
'vue/singleline-html-element-content-newline': 0, 'vue/singleline-html-element-content-newline': 0,
'vue/multi-word-component-names': 0,
}, },
} }
{
"npm.packageManager": "pnpm",
"i18n-ally.localesPaths": ["src/locales/lang"],
"i18n-ally.keystyle": "nested",
"i18n-ally.readonly": true,
"i18n-ally.sortKeys": true,
"i18n-ally.namespace": true,
"i18n-ally.pathMatcher": "{locale}/{namespaces}.{ext}",
"i18n-ally.enabledParsers": ["ts", "json"],
"i18n-ally.sourceLanguage": "en",
"i18n-ally.displayLanguage": "zh-Hans",
"i18n-ally.enabledFrameworks": ["vue", "react"]
}
...@@ -7,14 +7,15 @@ ...@@ -7,14 +7,15 @@
<!-- prettier-ignore --> <!-- prettier-ignore -->
- Visual Studio Code [latest](https://code.visualstudio.com) - Visual Studio Code [latest](https://code.visualstudio.com)
- HBuilderX [alpha](https://www.dcloud.io/hbuilderx.html) - HBuilderX [latest](https://www.dcloud.io/hbuilderx.html)
- [常用插件清单](./doc/plugins.md) - 👉 [常用插件清单](./doc/plugins.md)
## 开始 ## 开始
<!-- prettier-ignore --> <!-- prettier-ignore -->
- [开发规范说明](./doc/workflow.md) - [开发规范说明](./doc/workflow.md)
- [技术栈说明](./doc/technique.md) - [技术栈说明](./doc/technique.md)
- 👉 [参考 hello-uni-app](https://github.com/dcloudio/hello-uniapp) [介绍](https://uniapp.dcloud.net.cn/)
--- ---
...@@ -26,10 +27,10 @@ ...@@ -26,10 +27,10 @@
- [x] 完善网络请求相关配置 - [x] 完善网络请求相关配置
- [x] 集成 [Pont](https://github.com/alibaba/pont) - [x] 集成 [Pont](https://github.com/alibaba/pont)
- [ ] 适配上传/下载接口的自动化生成模板(包装 uni.uploadFile 与 uni.downloadFile 方法实现) - [ ] 适配上传/下载接口的自动化生成模板(包装 uni.uploadFile 与 uni.downloadFile 方法实现)
- [ ] 集成 pinia - [x] 集成 [Pinia](https://pinia.vuejs.org/)
- [ ] 集成 vue-i18n - [x] 集成 [vue-i18n](https://github.com/intlify/vue-i18n-next)
- [ ] 完善页面主体布局 - [ ] 完善页面主体布局
- [ ] 设计模块化权限控制 - [ ] 设计模块化权限控制
- [ ] 接入 [消息推送](https://uniapp.dcloud.net.cn/unipush.html) - [ ] 接入 [消息推送](https://uniapp.dcloud.net.cn/unipush.html)
- [ ] 接入 [APP 升级中心](https://uniapp.dcloud.net.cn/uniCloud/upgrade-center.html) - [ ] 接入 [APP 升级中心](https://uniapp.dcloud.net.cn/uniCloud/upgrade-center.html)
- [ ] 跟进官方更新进度,将 uni-app 依赖升级到 3.0 正式版,[日志](https://uniapp.dcloud.io/release-note-alpha.html) - [x] 跟进官方更新进度,将 uni-app 依赖升级到 3.0 正式版,[日志](https://uniapp.dcloud.io/release.html)
...@@ -12,6 +12,7 @@ export function configAutoImportPlugin(): Plugin { ...@@ -12,6 +12,7 @@ export function configAutoImportPlugin(): Plugin {
dts: 'types/auto-imports.d.ts', dts: 'types/auto-imports.d.ts',
imports: [ imports: [
'vue', 'vue',
'vue-i18n',
'uni-app', 'uni-app',
{ {
'/@/config/app': ['$app'], '/@/config/app': ['$app'],
......
...@@ -26,9 +26,7 @@ function generateUniComponentsTypes() { ...@@ -26,9 +26,7 @@ function generateUniComponentsTypes() {
const formatted = prettier.format(content, { const formatted = prettier.format(content, {
parser: 'typescript', parser: 'typescript',
tabWidth: 4, ...require('../../prettier.config'),
semi: false,
singleQuote: true,
}) })
fs.writeFileSync('./types/uni-components.d.ts', formatted, 'utf8') fs.writeFileSync('./types/uni-components.d.ts', formatted, 'utf8')
} }
......
...@@ -10,8 +10,8 @@ ...@@ -10,8 +10,8 @@
- ⭐Prettier - Code formatter - ⭐Prettier - Code formatter
- ⭐EditorConfig - ⭐EditorConfig
- ⭐TODO Highlight - ⭐TODO Highlight
- ⭐Volar - ⭐Volar (Vue3 + TS 开发首选)
-[pont](https://marketplace.visualstudio.com/items?itemName=jasonHzq.vscode-pont) 接口自动化工具,**必装** -[Pont-engine](https://marketplace.visualstudio.com/items?itemName=jasonHzq.vscode-pont) 接口自动化工具,**必装**
- ESLint - ESLint
- stylelint - stylelint
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<!-- prettier-ignore --> <!-- prettier-ignore -->
- [Vue v3.x](https://v3.vuejs.org/guide/introduction.html) - [Vue v3.x](https://v3.vuejs.org/guide/introduction.html)
- [uni-app@vue3 v3.x-alpha](https://uniapp.dcloud.io/tutorial/migration-to-vue3.html), 依赖 `HBuilderX Alpha` 版本编辑器 - [uni-app@vue3 v3.x](https://uniapp.dcloud.io/tutorial/migration-to-vue3.html), 依赖 `HBuilderX v3.4.x` 版本编辑器
- [TypeScript](https://www.typescriptlang.org/zh/) - [TypeScript](https://www.typescriptlang.org/zh/)
- [Sass](https://www.sass.hk/) - [Sass](https://www.sass.hk/)
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
### 构建工具 ### 构建工具
<!-- prettier-ignore --> <!-- prettier-ignore -->
- [HBuilderX Alpha](https://download1.dcloud.net.cn/hbuilderx/changelog/3.4.2.20220310-alpha.html) - [HBuilderX Latest](https://www.dcloud.io/hbuilderx.html)
- [Vite v2.x](https://vitejs.dev) - [Vite v2.x](https://vitejs.dev)
### 其他插件 ### 其他插件
......
...@@ -62,40 +62,43 @@ ...@@ -62,40 +62,43 @@
} }
}, },
"dependencies": { "dependencies": {
"@dcloudio/uni-app": "^3.0.0-alpha-3040720220422003", "@dcloudio/uni-app": "^3.0.0-alpha-3040820220426002",
"@dcloudio/uni-app-plus": "^3.0.0-alpha-3040720220422003", "@dcloudio/uni-app-plus": "^3.0.0-alpha-3040820220426002",
"@dcloudio/uni-components": "^3.0.0-alpha-3040720220422003", "@dcloudio/uni-components": "^3.0.0-alpha-3040820220426002",
"@dcloudio/uni-h5": "^3.0.0-alpha-3040720220422003", "@dcloudio/uni-h5": "^3.0.0-alpha-3040820220426002",
"@dcloudio/uni-mp-alipay": "^3.0.0-alpha-3040720220422003", "@dcloudio/uni-mp-alipay": "^3.0.0-alpha-3040820220426002",
"@dcloudio/uni-mp-baidu": "^3.0.0-alpha-3040720220422003", "@dcloudio/uni-mp-baidu": "^3.0.0-alpha-3040820220426002",
"@dcloudio/uni-mp-kuaishou": "^3.0.0-alpha-3040720220422003", "@dcloudio/uni-mp-kuaishou": "^3.0.0-alpha-3040820220426002",
"@dcloudio/uni-mp-lark": "^3.0.0-alpha-3040720220422003", "@dcloudio/uni-mp-lark": "^3.0.0-alpha-3040820220426002",
"@dcloudio/uni-mp-qq": "^3.0.0-alpha-3040720220422003", "@dcloudio/uni-mp-qq": "^3.0.0-alpha-3040820220426002",
"@dcloudio/uni-mp-toutiao": "^3.0.0-alpha-3040720220422003", "@dcloudio/uni-mp-toutiao": "^3.0.0-alpha-3040820220426002",
"@dcloudio/uni-mp-weixin": "^3.0.0-alpha-3040720220422003", "@dcloudio/uni-mp-weixin": "^3.0.0-alpha-3040820220426002",
"@dcloudio/uni-quickapp-webview": "^3.0.0-alpha-3040720220422003", "@dcloudio/uni-quickapp-webview": "^3.0.0-alpha-3040820220426002",
"@vueuse/core": "^8.3.1", "@vueuse/core": "^8.3.1",
"axios": "^0.26.1", "axios": "^0.26.1",
"dayjs": "^1.11.1", "dayjs": "^1.11.1",
"lodash-es": "^4.17.21", "lodash-es": "^4.17.21",
"mockjs": "^1.1.0", "mockjs": "^1.1.0",
"pinia": "^2.0.13",
"qs": "^6.10.3", "qs": "^6.10.3",
"vue": "^3.2.33" "vue": "^3.2.33",
"vue-i18n": "^9.2.0-beta.35",
"vue-types": "^4.1.1"
}, },
"devDependencies": { "devDependencies": {
"@commitlint/cli": "^16.2.3", "@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.1", "@commitlint/config-conventional": "^16.2.4",
"@dcloudio/types": "^2.6.4", "@dcloudio/types": "^2.6.4",
"@dcloudio/uni-automator": "^3.0.0-alpha-3040720220422003", "@dcloudio/uni-automator": "^3.0.0-alpha-3040820220426002",
"@dcloudio/uni-cli-shared": "^3.0.0-alpha-3040720220422003", "@dcloudio/uni-cli-shared": "^3.0.0-alpha-3040820220426002",
"@dcloudio/uni-helper-json": "^1.0.13", "@dcloudio/uni-helper-json": "^1.0.13",
"@dcloudio/vite-plugin-uni": "^3.0.0-alpha-3040720220422003", "@dcloudio/vite-plugin-uni": "^3.0.0-alpha-3040820220426002",
"@types/lodash-es": "^4.17.6", "@types/lodash-es": "^4.17.6",
"@types/mockjs": "^1.0.6", "@types/mockjs": "^1.0.6",
"@types/prettier": "^2.6.0", "@types/prettier": "^2.6.0",
"@types/qs": "^6.9.7", "@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.20.0", "@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.20.0", "@typescript-eslint/parser": "^5.21.0",
"commitizen": "^4.2.4", "commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2", "conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0", "cz-conventional-changelog": "^3.3.0",
...@@ -106,7 +109,7 @@ ...@@ -106,7 +109,7 @@
"eslint-plugin-vue": "^8.7.1", "eslint-plugin-vue": "^8.7.1",
"husky": "^7.0.4", "husky": "^7.0.4",
"less": "^4.1.2", "less": "^4.1.2",
"lint-staged": "^12.4.0", "lint-staged": "^12.4.1",
"npm-run-all": "^4.1.5", "npm-run-all": "^4.1.5",
"pont-engine": "^1.3.1", "pont-engine": "^1.3.1",
"postcss": "^8.4.12", "postcss": "^8.4.12",
...@@ -115,7 +118,7 @@ ...@@ -115,7 +118,7 @@
"prettier": "^2.6.2", "prettier": "^2.6.2",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"sort-package-json": "^1.55.0", "sort-package-json": "^1.55.0",
"stylelint": "^14.7.1", "stylelint": "^14.8.0",
"stylelint-config-html": "^1.0.0", "stylelint-config-html": "^1.0.0",
"stylelint-config-prettier": "^9.0.3", "stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^7.0.0", "stylelint-config-recommended": "^7.0.0",
...@@ -124,7 +127,7 @@ ...@@ -124,7 +127,7 @@
"stylus": "^0.56.0", "stylus": "^0.56.0",
"typescript": "^4.6.3", "typescript": "^4.6.3",
"unplugin-auto-import": "^0.7.1", "unplugin-auto-import": "^0.7.1",
"vite": "^2.9.5", "vite": "^2.9.6",
"vue-eslint-parser": "^8.3.0" "vue-eslint-parser": "^8.3.0"
}, },
"engines": { "engines": {
......
lockfileVersion: 5.3 lockfileVersion: 5.3
specifiers: specifiers:
'@commitlint/cli': ^16.2.3 '@commitlint/cli': ^16.2.4
'@commitlint/config-conventional': ^16.2.1 '@commitlint/config-conventional': ^16.2.4
'@dcloudio/types': ^2.6.4 '@dcloudio/types': ^2.6.4
'@dcloudio/uni-app': ^3.0.0-alpha-3040720220422003 '@dcloudio/uni-app': ^3.0.0-alpha-3040820220426002
'@dcloudio/uni-app-plus': ^3.0.0-alpha-3040720220422003 '@dcloudio/uni-app-plus': ^3.0.0-alpha-3040820220426002
'@dcloudio/uni-automator': ^3.0.0-alpha-3040720220422003 '@dcloudio/uni-automator': ^3.0.0-alpha-3040820220426002
'@dcloudio/uni-cli-shared': ^3.0.0-alpha-3040720220422003 '@dcloudio/uni-cli-shared': ^3.0.0-alpha-3040820220426002
'@dcloudio/uni-components': ^3.0.0-alpha-3040720220422003 '@dcloudio/uni-components': ^3.0.0-alpha-3040820220426002
'@dcloudio/uni-h5': ^3.0.0-alpha-3040720220422003 '@dcloudio/uni-h5': ^3.0.0-alpha-3040820220426002
'@dcloudio/uni-helper-json': ^1.0.13 '@dcloudio/uni-helper-json': ^1.0.13
'@dcloudio/uni-mp-alipay': ^3.0.0-alpha-3040720220422003 '@dcloudio/uni-mp-alipay': ^3.0.0-alpha-3040820220426002
'@dcloudio/uni-mp-baidu': ^3.0.0-alpha-3040720220422003 '@dcloudio/uni-mp-baidu': ^3.0.0-alpha-3040820220426002
'@dcloudio/uni-mp-kuaishou': ^3.0.0-alpha-3040720220422003 '@dcloudio/uni-mp-kuaishou': ^3.0.0-alpha-3040820220426002
'@dcloudio/uni-mp-lark': ^3.0.0-alpha-3040720220422003 '@dcloudio/uni-mp-lark': ^3.0.0-alpha-3040820220426002
'@dcloudio/uni-mp-qq': ^3.0.0-alpha-3040720220422003 '@dcloudio/uni-mp-qq': ^3.0.0-alpha-3040820220426002
'@dcloudio/uni-mp-toutiao': ^3.0.0-alpha-3040720220422003 '@dcloudio/uni-mp-toutiao': ^3.0.0-alpha-3040820220426002
'@dcloudio/uni-mp-weixin': ^3.0.0-alpha-3040720220422003 '@dcloudio/uni-mp-weixin': ^3.0.0-alpha-3040820220426002
'@dcloudio/uni-quickapp-webview': ^3.0.0-alpha-3040720220422003 '@dcloudio/uni-quickapp-webview': ^3.0.0-alpha-3040820220426002
'@dcloudio/vite-plugin-uni': ^3.0.0-alpha-3040720220422003 '@dcloudio/vite-plugin-uni': ^3.0.0-alpha-3040820220426002
'@types/lodash-es': ^4.17.6 '@types/lodash-es': ^4.17.6
'@types/mockjs': ^1.0.6 '@types/mockjs': ^1.0.6
'@types/prettier': ^2.6.0 '@types/prettier': ^2.6.0
'@types/qs': ^6.9.7 '@types/qs': ^6.9.7
'@typescript-eslint/eslint-plugin': ^5.20.0 '@typescript-eslint/eslint-plugin': ^5.21.0
'@typescript-eslint/parser': ^5.20.0 '@typescript-eslint/parser': ^5.21.0
'@vueuse/core': ^8.3.1 '@vueuse/core': ^8.3.1
axios: ^0.26.1 axios: ^0.26.1
commitizen: ^4.2.4 commitizen: ^4.2.4
...@@ -39,10 +39,11 @@ specifiers: ...@@ -39,10 +39,11 @@ specifiers:
eslint-plugin-vue: ^8.7.1 eslint-plugin-vue: ^8.7.1
husky: ^7.0.4 husky: ^7.0.4
less: ^4.1.2 less: ^4.1.2
lint-staged: ^12.4.0 lint-staged: ^12.4.1
lodash-es: ^4.17.21 lodash-es: ^4.17.21
mockjs: ^1.1.0 mockjs: ^1.1.0
npm-run-all: ^4.1.5 npm-run-all: ^4.1.5
pinia: ^2.0.13
pont-engine: ^1.3.1 pont-engine: ^1.3.1
postcss: ^8.4.12 postcss: ^8.4.12
postcss-html: ^1.4.1 postcss-html: ^1.4.1
...@@ -51,7 +52,7 @@ specifiers: ...@@ -51,7 +52,7 @@ specifiers:
qs: ^6.10.3 qs: ^6.10.3
rimraf: ^3.0.2 rimraf: ^3.0.2
sort-package-json: ^1.55.0 sort-package-json: ^1.55.0
stylelint: ^14.7.1 stylelint: ^14.8.0
stylelint-config-html: ^1.0.0 stylelint-config-html: ^1.0.0
stylelint-config-prettier: ^9.0.3 stylelint-config-prettier: ^9.0.3
stylelint-config-recommended: ^7.0.0 stylelint-config-recommended: ^7.0.0
...@@ -60,45 +61,50 @@ specifiers: ...@@ -60,45 +61,50 @@ specifiers:
stylus: ^0.56.0 stylus: ^0.56.0
typescript: ^4.6.3 typescript: ^4.6.3
unplugin-auto-import: ^0.7.1 unplugin-auto-import: ^0.7.1
vite: ^2.9.5 vite: ^2.9.6
vue: ^3.2.33 vue: ^3.2.33
vue-eslint-parser: ^8.3.0 vue-eslint-parser: ^8.3.0
vue-i18n: ^9.2.0-beta.35
vue-types: ^4.1.1
dependencies: dependencies:
'@dcloudio/uni-app': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-app': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-app-plus': 3.0.0-alpha-3040720220422003_5be8aa8e536a8ca0e7f20f29f0760ccd '@dcloudio/uni-app-plus': 3.0.0-alpha-3040820220426002_1189e631e7f3122281ad6b9791adcbd2
'@dcloudio/uni-components': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-components': 3.0.0-alpha-3040820220426002
'@dcloudio/uni-h5': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-h5': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-alipay': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-alipay': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-baidu': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-baidu': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-kuaishou': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-kuaishou': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-lark': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-lark': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-qq': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-qq': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-toutiao': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-toutiao': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-weixin': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-weixin': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-quickapp-webview': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-quickapp-webview': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@vueuse/core': 8.3.1_vue@3.2.33 '@vueuse/core': 8.3.1_vue@3.2.33
axios: 0.26.1 axios: 0.26.1
dayjs: 1.11.1 dayjs: 1.11.1
lodash-es: 4.17.21 lodash-es: 4.17.21
mockjs: 1.1.0 mockjs: 1.1.0
pinia: 2.0.13_typescript@4.6.3+vue@3.2.33
qs: 6.10.3 qs: 6.10.3
vue: 3.2.33 vue: 3.2.33
vue-i18n: 9.2.0-beta.35_vue@3.2.33
vue-types: 4.1.1_vue@3.2.33
devDependencies: devDependencies:
'@commitlint/cli': 16.2.3 '@commitlint/cli': 16.2.4
'@commitlint/config-conventional': 16.2.1 '@commitlint/config-conventional': 16.2.4
'@dcloudio/types': 2.6.4 '@dcloudio/types': 2.6.4
'@dcloudio/uni-automator': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-automator': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-cli-shared': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-cli-shared': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-helper-json': 1.0.13 '@dcloudio/uni-helper-json': 1.0.13
'@dcloudio/vite-plugin-uni': 3.0.0-alpha-3040720220422003_5be8aa8e536a8ca0e7f20f29f0760ccd '@dcloudio/vite-plugin-uni': 3.0.0-alpha-3040820220426002_1189e631e7f3122281ad6b9791adcbd2
'@types/lodash-es': 4.17.6 '@types/lodash-es': 4.17.6
'@types/mockjs': 1.0.6 '@types/mockjs': 1.0.6
'@types/prettier': 2.6.0 '@types/prettier': 2.6.0
'@types/qs': 6.9.7 '@types/qs': 6.9.7
'@typescript-eslint/eslint-plugin': 5.20.0_81f0d1a74f014d44d273bd1612c85fd9 '@typescript-eslint/eslint-plugin': 5.21.0_829e74f28e9c9eb05edda582d47d45b8
'@typescript-eslint/parser': 5.20.0_eslint@8.14.0+typescript@4.6.3 '@typescript-eslint/parser': 5.21.0_eslint@8.14.0+typescript@4.6.3
commitizen: 4.2.4 commitizen: 4.2.4
conventional-changelog-cli: 2.2.2 conventional-changelog-cli: 2.2.2
cz-conventional-changelog: 3.3.0 cz-conventional-changelog: 3.3.0
...@@ -109,7 +115,7 @@ devDependencies: ...@@ -109,7 +115,7 @@ devDependencies:
eslint-plugin-vue: 8.7.1_eslint@8.14.0 eslint-plugin-vue: 8.7.1_eslint@8.14.0
husky: 7.0.4 husky: 7.0.4
less: 4.1.2 less: 4.1.2
lint-staged: 12.4.0 lint-staged: 12.4.1
npm-run-all: 4.1.5 npm-run-all: 4.1.5
pont-engine: 1.3.1 pont-engine: 1.3.1
postcss: 8.4.12 postcss: 8.4.12
...@@ -118,24 +124,25 @@ devDependencies: ...@@ -118,24 +124,25 @@ devDependencies:
prettier: 2.6.2 prettier: 2.6.2
rimraf: 3.0.2 rimraf: 3.0.2
sort-package-json: 1.55.0 sort-package-json: 1.55.0
stylelint: 14.7.1 stylelint: 14.8.0
stylelint-config-html: 1.0.0_1a82b100232bbe7036ec0a7ca7a4baf4 stylelint-config-html: 1.0.0_1ccc7ea06e27768b66bc00a052168bcb
stylelint-config-prettier: 9.0.3_stylelint@14.7.1 stylelint-config-prettier: 9.0.3_stylelint@14.8.0
stylelint-config-recommended: 7.0.0_stylelint@14.7.1 stylelint-config-recommended: 7.0.0_stylelint@14.8.0
stylelint-config-standard: 25.0.0_stylelint@14.7.1 stylelint-config-standard: 25.0.0_stylelint@14.8.0
stylelint-order: 5.0.0_stylelint@14.7.1 stylelint-order: 5.0.0_stylelint@14.8.0
stylus: 0.56.0 stylus: 0.56.0
typescript: 4.6.3 typescript: 4.6.3
unplugin-auto-import: 0.7.1_@vueuse+core@8.3.1+vite@2.9.5 unplugin-auto-import: 0.7.1_@vueuse+core@8.3.1+vite@2.9.6
vite: 2.9.5_less@4.1.2+stylus@0.56.0 vite: 2.9.6_less@4.1.2+stylus@0.56.0
vue-eslint-parser: 8.3.0_eslint@8.14.0 vue-eslint-parser: 8.3.0_eslint@8.14.0
packages: packages:
/@ampproject/remapping/2.1.2: /@ampproject/remapping/2.2.0:
resolution: {integrity: sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==} resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==}
engines: {node: '>=6.0.0'} engines: {node: '>=6.0.0'}
dependencies: dependencies:
'@jridgewell/gen-mapping': 0.1.1
'@jridgewell/trace-mapping': 0.3.9 '@jridgewell/trace-mapping': 0.3.9
/@antfu/utils/0.5.1: /@antfu/utils/0.5.1:
...@@ -156,7 +163,7 @@ packages: ...@@ -156,7 +163,7 @@ packages:
resolution: {integrity: sha512-5ug+SfZCpDAkVp9SFIZAzlW18rlzsOcJGaetCjkySnrXXDUw9AR8cDUm1iByTmdWM6yxX6/zycaV76w3YTF2gw==} resolution: {integrity: sha512-5ug+SfZCpDAkVp9SFIZAzlW18rlzsOcJGaetCjkySnrXXDUw9AR8cDUm1iByTmdWM6yxX6/zycaV76w3YTF2gw==}
engines: {node: '>=6.9.0'} engines: {node: '>=6.9.0'}
dependencies: dependencies:
'@ampproject/remapping': 2.1.2 '@ampproject/remapping': 2.2.0
'@babel/code-frame': 7.16.7 '@babel/code-frame': 7.16.7
'@babel/generator': 7.17.9 '@babel/generator': 7.17.9
'@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.9 '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.9
...@@ -198,7 +205,7 @@ packages: ...@@ -198,7 +205,7 @@ packages:
'@babel/compat-data': 7.17.7 '@babel/compat-data': 7.17.7
'@babel/core': 7.17.9 '@babel/core': 7.17.9
'@babel/helper-validator-option': 7.16.7 '@babel/helper-validator-option': 7.16.7
browserslist: 4.20.2 browserslist: 4.20.3
semver: 6.3.0 semver: 6.3.0
/@babel/helper-create-class-features-plugin/7.17.9_@babel+core@7.17.9: /@babel/helper-create-class-features-plugin/7.17.9_@babel+core@7.17.9:
...@@ -414,14 +421,14 @@ packages: ...@@ -414,14 +421,14 @@ packages:
'@babel/helper-validator-identifier': 7.16.7 '@babel/helper-validator-identifier': 7.16.7
to-fast-properties: 2.0.0 to-fast-properties: 2.0.0
/@commitlint/cli/16.2.3: /@commitlint/cli/16.2.4:
resolution: {integrity: sha512-VsJBQLvhhlOgEfxs/Z5liYuK0dXqLE5hz1VJzLBxiOxG31kL/X5Q4OvK292BmO7IGZcm1yJE3XQPWSiFaEHbWA==} resolution: {integrity: sha512-rbvqvz9JI+uiKxV2nH65BtSU01fsADd3bxe9fWtO3rM0c+CI/H9FfzKkDLvSRmXjvk1G2/wXlCGeqO9IBT4X9g==}
engines: {node: '>=v12'} engines: {node: '>=v12'}
hasBin: true hasBin: true
dependencies: dependencies:
'@commitlint/format': 16.2.1 '@commitlint/format': 16.2.1
'@commitlint/lint': 16.2.1 '@commitlint/lint': 16.2.4
'@commitlint/load': 16.2.3 '@commitlint/load': 16.2.4
'@commitlint/read': 16.2.1 '@commitlint/read': 16.2.1
'@commitlint/types': 16.2.1 '@commitlint/types': 16.2.1
lodash: 4.17.21 lodash: 4.17.21
...@@ -433,8 +440,8 @@ packages: ...@@ -433,8 +440,8 @@ packages:
- '@swc/wasm' - '@swc/wasm'
dev: true dev: true
/@commitlint/config-conventional/16.2.1: /@commitlint/config-conventional/16.2.4:
resolution: {integrity: sha512-cP9gArx7gnaj4IqmtCIcHdRjTYdRUi6lmGE+lOzGGjGe45qGOS8nyQQNvkNy2Ey2VqoSWuXXkD8zCUh6EHf1Ww==} resolution: {integrity: sha512-av2UQJa3CuE5P0dzxj/o/B9XVALqYzEViHrMXtDrW9iuflrqCStWBAioijppj9URyz6ONpohJKAtSdgAOE0gkA==}
engines: {node: '>=v12'} engines: {node: '>=v12'}
dependencies: dependencies:
conventional-changelog-conventionalcommits: 4.6.3 conventional-changelog-conventionalcommits: 4.6.3
...@@ -469,36 +476,36 @@ packages: ...@@ -469,36 +476,36 @@ packages:
chalk: 4.1.2 chalk: 4.1.2
dev: true dev: true
/@commitlint/is-ignored/16.2.1: /@commitlint/is-ignored/16.2.4:
resolution: {integrity: sha512-exl8HRzTIfb1YvDJp2b2HU5z1BT+9tmgxR2XF0YEzkMiCIuEKh+XLeocPr1VcvAKXv3Cmv5X/OfNRp+i+/HIhQ==} resolution: {integrity: sha512-Lxdq9aOAYCOOOjKi58ulbwK/oBiiKz+7Sq0+/SpFIEFwhHkIVugvDvWjh2VRBXmRC/x5lNcjDcYEwS/uYUvlYQ==}
engines: {node: '>=v12'} engines: {node: '>=v12'}
dependencies: dependencies:
'@commitlint/types': 16.2.1 '@commitlint/types': 16.2.1
semver: 7.3.5 semver: 7.3.7
dev: true dev: true
/@commitlint/lint/16.2.1: /@commitlint/lint/16.2.4:
resolution: {integrity: sha512-fNINQ3X2ZqsCkNB3Z0Z8ElmhewqrS3gy2wgBTx97BkcjOWiyPAGwDJ752hwrsUnWAVBRztgw826n37xPzxsOgg==} resolution: {integrity: sha512-AUDuwOxb2eGqsXbTMON3imUGkc1jRdtXrbbohiLSCSk3jFVXgJLTMaEcr39pR00N8nE9uZ+V2sYaiILByZVmxQ==}
engines: {node: '>=v12'} engines: {node: '>=v12'}
dependencies: dependencies:
'@commitlint/is-ignored': 16.2.1 '@commitlint/is-ignored': 16.2.4
'@commitlint/parse': 16.2.1 '@commitlint/parse': 16.2.1
'@commitlint/rules': 16.2.1 '@commitlint/rules': 16.2.4
'@commitlint/types': 16.2.1 '@commitlint/types': 16.2.1
dev: true dev: true
/@commitlint/load/16.2.3: /@commitlint/load/16.2.4:
resolution: {integrity: sha512-Hb4OUlMnBUK6UxJEZ/VJ5k0LocIS7PtEMbRXEAA7eSpOgORIFexC4K/RaRpVd5UTtu3M0ST3ddPPijF9rdW6nw==} resolution: {integrity: sha512-HjANm3/29ROV+zt4yfaY/K6gpr9Dbzgtlp0kSwZGW0poDXlD/yqVYgPQ6JolJzZii5FUz5R4yVLC15hVL/w60w==}
engines: {node: '>=v12'} engines: {node: '>=v12'}
dependencies: dependencies:
'@commitlint/config-validator': 16.2.1 '@commitlint/config-validator': 16.2.1
'@commitlint/execute-rule': 16.2.1 '@commitlint/execute-rule': 16.2.1
'@commitlint/resolve-extends': 16.2.1 '@commitlint/resolve-extends': 16.2.1
'@commitlint/types': 16.2.1 '@commitlint/types': 16.2.1
'@types/node': 17.0.25 '@types/node': 17.0.29
chalk: 4.1.2 chalk: 4.1.2
cosmiconfig: 7.0.1 cosmiconfig: 7.0.1
cosmiconfig-typescript-loader: 1.0.9_de7c86b0cde507c63a0402da5b982bd3 cosmiconfig-typescript-loader: 1.0.9_5281fe59fc32158e106b8b5e2bebb315
lodash: 4.17.21 lodash: 4.17.21
resolve-from: 5.0.0 resolve-from: 5.0.0
typescript: 4.6.3 typescript: 4.6.3
...@@ -543,8 +550,8 @@ packages: ...@@ -543,8 +550,8 @@ packages:
resolve-global: 1.0.0 resolve-global: 1.0.0
dev: true dev: true
/@commitlint/rules/16.2.1: /@commitlint/rules/16.2.4:
resolution: {integrity: sha512-ZFezJXQaBBso+BOTre/+1dGCuCzlWVaeLiVRGypI53qVgPMzQqZhkCcrxBFeqB87qeyzr4A4EoG++IvITwwpIw==} resolution: {integrity: sha512-rK5rNBIN2ZQNQK+I6trRPK3dWa0MtaTN4xnwOma1qxa4d5wQMQJtScwTZjTJeallFxhOgbNOgr48AMHkdounVg==}
engines: {node: '>=v12'} engines: {node: '>=v12'}
dependencies: dependencies:
'@commitlint/ensure': 16.2.1 '@commitlint/ensure': 16.2.1
...@@ -589,11 +596,11 @@ packages: ...@@ -589,11 +596,11 @@ packages:
resolution: {integrity: sha512-Tr3+46YJ/sL4nnAmNSeela5/0g6O2WP6ZFVjkVoBkhHcOwJsRUXm3RblD+B2fjBtZs0IW0Ulxogi/jGoOk0WIA==} resolution: {integrity: sha512-Tr3+46YJ/sL4nnAmNSeela5/0g6O2WP6ZFVjkVoBkhHcOwJsRUXm3RblD+B2fjBtZs0IW0Ulxogi/jGoOk0WIA==}
dev: true dev: true
/@dcloudio/uni-app-plus/3.0.0-alpha-3040720220422003_5be8aa8e536a8ca0e7f20f29f0760ccd: /@dcloudio/uni-app-plus/3.0.0-alpha-3040820220426002_1189e631e7f3122281ad6b9791adcbd2:
resolution: {integrity: sha512-XgECP+trMEoZmMhfTo74mez2PggPlAfJJJvfLPwk4pTDlPryw6Po+NooosvNpR6Zgr39YVOOyKjhXFcJ4aVhIg==} resolution: {integrity: sha512-t7U9gjEcmZVYvXRM+fr6sttt0gVPk4HM9MhYVUGU/6dQKHhgS46NBVMyLkghkGjJzt/Y6ccccN8NkKFPjFfAYg==}
dependencies: dependencies:
'@dcloudio/uni-app-vite': 3.0.0-alpha-3040720220422003_5be8aa8e536a8ca0e7f20f29f0760ccd '@dcloudio/uni-app-vite': 3.0.0-alpha-3040820220426002_1189e631e7f3122281ad6b9791adcbd2
'@dcloudio/uni-app-vue': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-app-vue': 3.0.0-alpha-3040820220426002
transitivePeerDependencies: transitivePeerDependencies:
- postcss - postcss
- supports-color - supports-color
...@@ -602,15 +609,15 @@ packages: ...@@ -602,15 +609,15 @@ packages:
- vue - vue
dev: false dev: false
/@dcloudio/uni-app-vite/3.0.0-alpha-3040720220422003_5be8aa8e536a8ca0e7f20f29f0760ccd: /@dcloudio/uni-app-vite/3.0.0-alpha-3040820220426002_1189e631e7f3122281ad6b9791adcbd2:
resolution: {integrity: sha512-2yukKjCesFFmd5is6PruPCmlWwNQTDEwrp/5Or11mkdcfC7DwV0g7p62pDvAlqMvvSmqJi+CvSSQ1dXuAIaWcA==} resolution: {integrity: sha512-qYBbl/ld5xqXvud/1rDWor3JInTRe1E6p9WzhC75rJZ7+PezejYmE80adQ0uob7Cx5WOVmcWTjjKwzHA44ZqSg==}
dependencies: dependencies:
'@dcloudio/uni-cli-shared': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-cli-shared': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-i18n': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-i18n': 3.0.0-alpha-3040820220426002
'@dcloudio/uni-nvue-styler': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-nvue-styler': 3.0.0-alpha-3040820220426002
'@dcloudio/uni-shared': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-shared': 3.0.0-alpha-3040820220426002
'@rollup/pluginutils': 4.2.1 '@rollup/pluginutils': 4.2.1
'@vitejs/plugin-vue': 2.3.1_vite@2.9.5+vue@3.2.33 '@vitejs/plugin-vue': 2.3.1_vite@2.9.6+vue@3.2.33
'@vue/compiler-dom': 3.2.33 '@vue/compiler-dom': 3.2.33
'@vue/compiler-sfc': 3.2.33 '@vue/compiler-sfc': 3.2.33
debug: 4.3.4 debug: 4.3.4
...@@ -625,19 +632,19 @@ packages: ...@@ -625,19 +632,19 @@ packages:
- vue - vue
dev: false dev: false
/@dcloudio/uni-app-vue/3.0.0-alpha-3040720220422003: /@dcloudio/uni-app-vue/3.0.0-alpha-3040820220426002:
resolution: {integrity: sha512-y27Cdx7vnT5+CiWjaVDiJ83mJttwbYpFCbr71oDYMawWelbG8CirfKlmKZ46C4kwtjUss/82NY5uB4iPoRos0g==} resolution: {integrity: sha512-dEnDRjkEbKxItb3Mgrp5zxQzq1s5Vf0+hPcmw27cYM6JTk+ley1+Vpl29M07HfmE4rsBxn033qF58SD6ZQddww==}
dev: false dev: false
/@dcloudio/uni-app/3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33: /@dcloudio/uni-app/3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33:
resolution: {integrity: sha512-P/KiCrtK3vdcUiz9M/7+6O7tuqAoQ8YRVMBqznkS3mBfwndOn81SGXaXazLl5QXsSIUciTgJ1TPiMepx+PhjLA==} resolution: {integrity: sha512-Z/u4msi9JrUjnfx11MbO+ScdNbhUEcV3f8zxVLaZDjGiKpXmAxcxnUUWoCSyiVb550rxhTYPmffIwZLA8wk2nQ==}
dependencies: dependencies:
'@dcloudio/uni-cloud': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-cloud': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-components': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-components': 3.0.0-alpha-3040820220426002
'@dcloudio/uni-i18n': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-i18n': 3.0.0-alpha-3040820220426002
'@dcloudio/uni-push': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-push': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-shared': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-shared': 3.0.0-alpha-3040820220426002
'@dcloudio/uni-stat': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-stat': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@vue/shared': 3.2.33 '@vue/shared': 3.2.33
transitivePeerDependencies: transitivePeerDependencies:
- postcss - postcss
...@@ -646,10 +653,10 @@ packages: ...@@ -646,10 +653,10 @@ packages:
- vue - vue
dev: false dev: false
/@dcloudio/uni-automator/3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33: /@dcloudio/uni-automator/3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33:
resolution: {integrity: sha512-/WEe6wqMakVWR2z4uPs9W1Gsbm481SUmKpdxTfGBPcqhtm1VyneuD1DaXCnixIbaYXtmURtVh9OUmBliZSRx6g==} resolution: {integrity: sha512-R8ET91XrertbiUibF0+CsY7ZJLi1nYVQq1nJt5bywX+8u34o+dNQdPdR6+5LoHLBTYKiV9enL/RCQYdqRbQ8Jg==}
dependencies: dependencies:
'@dcloudio/uni-cli-shared': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-cli-shared': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
address: 1.1.2 address: 1.1.2
cross-env: 7.0.3 cross-env: 7.0.3
debug: 4.3.4 debug: 4.3.4
...@@ -669,14 +676,14 @@ packages: ...@@ -669,14 +676,14 @@ packages:
- vue - vue
dev: true dev: true
/@dcloudio/uni-cli-shared/3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33: /@dcloudio/uni-cli-shared/3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33:
resolution: {integrity: sha512-lfrsLEVs6FTY2vowq10uhP14elUWjoLjg24xXHe0yVlvse1LhrGBhvOiIsLE0TgG1mPmjHPMagtccMXfqe7AQA==} resolution: {integrity: sha512-teXnOeoIGhtCBEuolVXvAcfgj1ZoABzOxyJQmRRU7GRTso0LBoTVBYv4K3ISkH0AHUjVjRdeKfQaboU0maIhyw==}
dependencies: dependencies:
'@babel/core': 7.17.9 '@babel/core': 7.17.9
'@babel/parser': 7.17.9 '@babel/parser': 7.17.9
'@babel/types': 7.17.0 '@babel/types': 7.17.0
'@dcloudio/uni-i18n': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-i18n': 3.0.0-alpha-3040820220426002
'@dcloudio/uni-shared': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-shared': 3.0.0-alpha-3040820220426002
'@intlify/core-base': 9.1.9 '@intlify/core-base': 9.1.9
'@intlify/shared': 9.1.9 '@intlify/shared': 9.1.9
'@intlify/vue-devtools': 9.1.9 '@intlify/vue-devtools': 9.1.9
...@@ -686,7 +693,7 @@ packages: ...@@ -686,7 +693,7 @@ packages:
'@vue/compiler-sfc': 3.2.33 '@vue/compiler-sfc': 3.2.33
'@vue/server-renderer': 3.2.33_vue@3.2.33 '@vue/server-renderer': 3.2.33_vue@3.2.33
'@vue/shared': 3.2.33 '@vue/shared': 3.2.33
autoprefixer: 10.4.4_postcss@8.4.12 autoprefixer: 10.4.5_postcss@8.4.12
base64url: 3.0.1 base64url: 3.0.1
chokidar: 3.5.3 chokidar: 3.5.3
compare-versions: 3.6.0 compare-versions: 3.6.0
...@@ -716,12 +723,12 @@ packages: ...@@ -716,12 +723,12 @@ packages:
- ts-node - ts-node
- vue - vue
/@dcloudio/uni-cloud/3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33: /@dcloudio/uni-cloud/3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33:
resolution: {integrity: sha512-juOwCE1pxbHphH5Zt5Tr6R8vHRkZmqWldKz9tnVDfDwJNPC/d+IzTlbZzs6YqvroVM8pLchBjfEfRMwxF0B0Sg==} resolution: {integrity: sha512-mnXVVX83oQplRWU+loAbHN26e4RiVLc/dS4HblmqcvMj6CiUH7qseYN9FoHyGj1OhdajJLcqKg88NHZClbKMRQ==}
dependencies: dependencies:
'@dcloudio/uni-cli-shared': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-cli-shared': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-i18n': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-i18n': 3.0.0-alpha-3040820220426002
'@dcloudio/uni-shared': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-shared': 3.0.0-alpha-3040820220426002
transitivePeerDependencies: transitivePeerDependencies:
- postcss - postcss
- supports-color - supports-color
...@@ -729,15 +736,15 @@ packages: ...@@ -729,15 +736,15 @@ packages:
- vue - vue
dev: false dev: false
/@dcloudio/uni-components/3.0.0-alpha-3040720220422003: /@dcloudio/uni-components/3.0.0-alpha-3040820220426002:
resolution: {integrity: sha512-PLUclulkH6Phmg+JZHbpJ4DxuGCqPBp2IMlOaQk08NmxtiGNbywAOBYsvcW1PiLB3BBeJTD0uNc9xfR3JvnwIA==} resolution: {integrity: sha512-DCDFzknuXIsswILl4IeYvV/tn9BxN9RupN3sR65dOx4KQo2Zdbb7ucdk9GfYjq2dwRCvJJcY/Mo3GaP+/ljwKQ==}
dev: false dev: false
/@dcloudio/uni-h5-vite/3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33: /@dcloudio/uni-h5-vite/3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33:
resolution: {integrity: sha512-faGErrClVhUkVoum3163U0lkBHlrldv0tHbAiIlhgV5vHTc0afNbQnXw8bU9QYSnpgTZ1uAfi3HriN38YqC7Kg==} resolution: {integrity: sha512-fS1OAfYiuySkvxk1y2mFFJMvpj03jRG69l2/e9uyEVjoYSBDCWMiVcYL1+IvjPAnX49a6+xwTs1ya2WHma84WA==}
dependencies: dependencies:
'@dcloudio/uni-cli-shared': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-cli-shared': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-shared': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-shared': 3.0.0-alpha-3040820220426002
'@rollup/pluginutils': 4.2.1 '@rollup/pluginutils': 4.2.1
'@vue/compiler-dom': 3.2.33 '@vue/compiler-dom': 3.2.33
'@vue/compiler-sfc': 3.2.33 '@vue/compiler-sfc': 3.2.33
...@@ -754,17 +761,17 @@ packages: ...@@ -754,17 +761,17 @@ packages:
- vue - vue
dev: false dev: false
/@dcloudio/uni-h5-vue/3.0.0-alpha-3040720220422003: /@dcloudio/uni-h5-vue/3.0.0-alpha-3040820220426002:
resolution: {integrity: sha512-C3tt6uhxYOqBKX8+iew6wFzWnYEhmXodC7QQdFwMP6Y8H+5PJjnTVGAY/Tkx7chsSO17goysorqNfFkkr+2/hw==} resolution: {integrity: sha512-s+u61XeaoSvc8IGkp0uWH+VtefdzCi0u+nXLIgwUDf3EgWfqNrRHrpd2Ns9YQnyUEQLtJ4KFTxAgnLhSKuc72g==}
dev: false dev: false
/@dcloudio/uni-h5/3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33: /@dcloudio/uni-h5/3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33:
resolution: {integrity: sha512-pRWhA9lOk9yKaSz9G1lytSiPETRXc6XfEFPiSxYegk3c76964n60LmsDreNeLy8BLxwizLAv7QwbFwNHfmYelg==} resolution: {integrity: sha512-ynKpzmml+nUT/SbSVwZLhyn2EADBraGH3zbGjIrUjyw7yusL1b7plzGQqNasIxxaE2uuEUdrZgeQ+T+/zedE5w==}
dependencies: dependencies:
'@dcloudio/uni-h5-vite': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-h5-vite': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-h5-vue': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-h5-vue': 3.0.0-alpha-3040820220426002
'@dcloudio/uni-i18n': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-i18n': 3.0.0-alpha-3040820220426002
'@dcloudio/uni-shared': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-shared': 3.0.0-alpha-3040820220426002
'@vue/server-renderer': 3.2.33_vue@3.2.33 '@vue/server-renderer': 3.2.33_vue@3.2.33
'@vue/shared': 3.2.33 '@vue/shared': 3.2.33
localstorage-polyfill: 1.0.1 localstorage-polyfill: 1.0.1
...@@ -782,16 +789,16 @@ packages: ...@@ -782,16 +789,16 @@ packages:
resolution: {integrity: sha512-FO9Iu4zW4td3Tr+eiCDWuele2ehkJ4qxQ/UhpAMLjso+ZdWz6NagK5Syh6cdy1hoDqbxpNoqnLynuJXe81Ereg==} resolution: {integrity: sha512-FO9Iu4zW4td3Tr+eiCDWuele2ehkJ4qxQ/UhpAMLjso+ZdWz6NagK5Syh6cdy1hoDqbxpNoqnLynuJXe81Ereg==}
dev: true dev: true
/@dcloudio/uni-i18n/3.0.0-alpha-3040720220422003: /@dcloudio/uni-i18n/3.0.0-alpha-3040820220426002:
resolution: {integrity: sha512-yHMmokjOsWM4XjyY+GiQmAt0Q3OpRKUlmHjtBhEZKDleKALmdws1rFxlDhV2LVmQIIV0shwZMcG2JGFgK9LAQQ==} resolution: {integrity: sha512-Pw0+qpIZdmIsGpecoz85wZfomulglOvaLnzdWA239SHyqxQXAl15nZV/qqEtxTXOhEebC8B2eIGKRNTqmAkHtg==}
/@dcloudio/uni-mp-alipay/3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33: /@dcloudio/uni-mp-alipay/3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33:
resolution: {integrity: sha512-/UG0EqhfaG6WozKzd8x8lLwyXu25PUbNR5sALATSV0jn6+IZc0FJ7CQo3HU4ZF9ivEoncvjZaR/Eu/3z4dlJLg==} resolution: {integrity: sha512-WsrY7O+jmJrHsVzMo+UHNW2IPDsEwUCQ9Vfojj7v7pwBHYRPJMwN4PXdNuL/fg2hV3efEMOBPbNtMMMrYaSnpA==}
dependencies: dependencies:
'@dcloudio/uni-cli-shared': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-cli-shared': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-vite': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-vite': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-vue': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-mp-vue': 3.0.0-alpha-3040820220426002
'@dcloudio/uni-shared': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-shared': 3.0.0-alpha-3040820220426002
'@vue/compiler-core': 3.2.33 '@vue/compiler-core': 3.2.33
'@vue/shared': 3.2.33 '@vue/shared': 3.2.33
transitivePeerDependencies: transitivePeerDependencies:
...@@ -801,15 +808,15 @@ packages: ...@@ -801,15 +808,15 @@ packages:
- vue - vue
dev: false dev: false
/@dcloudio/uni-mp-baidu/3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33: /@dcloudio/uni-mp-baidu/3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33:
resolution: {integrity: sha512-j/SKDgYi1+BSDUj7NarRPiPr6Q5zXOQtTkisXEmswy8Wz/iDOLH7KYXJitYsuGmP0agztTojTMBAhBSlchrjlg==} resolution: {integrity: sha512-heyblMj2qThnC81168LouH8sSHqBc/ylrfm4r+RF6r8wydT7hSb+ENP7hBaQXvKlE0LziZG+CxBjFuneclGaLg==}
dependencies: dependencies:
'@dcloudio/uni-cli-shared': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-cli-shared': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-compiler': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-compiler': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-vite': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-vite': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-vue': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-mp-vue': 3.0.0-alpha-3040820220426002
'@dcloudio/uni-mp-weixin': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-weixin': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-shared': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-shared': 3.0.0-alpha-3040820220426002
'@vue/compiler-core': 3.2.33 '@vue/compiler-core': 3.2.33
'@vue/shared': 3.2.33 '@vue/shared': 3.2.33
transitivePeerDependencies: transitivePeerDependencies:
...@@ -819,14 +826,14 @@ packages: ...@@ -819,14 +826,14 @@ packages:
- vue - vue
dev: false dev: false
/@dcloudio/uni-mp-compiler/3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33: /@dcloudio/uni-mp-compiler/3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33:
resolution: {integrity: sha512-xf7D5CZQ/5hTGpojUIl7H5ypjWIDKQvlNHmG+Rv5UEZFIrJJivK0Bwd2nZRwsH90Eg9MpIo9d1siP8xRqPOJKw==} resolution: {integrity: sha512-6xu0YZW/29ioo/dJgDf+ioTxbpBVcT2ZbT5tw8afBD6nw6kFMFH8zJXf9+ipUjqF6ROx/okH5l7K+xNVuXCREg==}
dependencies: dependencies:
'@babel/generator': 7.17.9 '@babel/generator': 7.17.9
'@babel/parser': 7.17.9 '@babel/parser': 7.17.9
'@babel/types': 7.17.0 '@babel/types': 7.17.0
'@dcloudio/uni-cli-shared': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-cli-shared': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-shared': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-shared': 3.0.0-alpha-3040820220426002
'@vue/compiler-core': 3.2.33 '@vue/compiler-core': 3.2.33
'@vue/compiler-dom': 3.2.33 '@vue/compiler-dom': 3.2.33
'@vue/shared': 3.2.33 '@vue/shared': 3.2.33
...@@ -838,15 +845,15 @@ packages: ...@@ -838,15 +845,15 @@ packages:
- vue - vue
dev: false dev: false
/@dcloudio/uni-mp-kuaishou/3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33: /@dcloudio/uni-mp-kuaishou/3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33:
resolution: {integrity: sha512-OhOLXQ8GNh0yPPUTjz6iqgph8UmvJ5Nrpscmct4pmst0kQTlFMZPD+lc0b+w9vn5xK7HR0Uh6EQ7DO+4ZhRBQg==} resolution: {integrity: sha512-oD8mKNzt4dzW9okOs4QadiIA+/MRwJnT7ZCUoeMpFGKEyLR222J/Koxi9yCPQUtDhw/wqHTOCzvjUfPSp3tmWw==}
dependencies: dependencies:
'@dcloudio/uni-cli-shared': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-cli-shared': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-compiler': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-compiler': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-vite': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-vite': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-vue': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-mp-vue': 3.0.0-alpha-3040820220426002
'@dcloudio/uni-mp-weixin': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-weixin': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-shared': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-shared': 3.0.0-alpha-3040820220426002
'@vue/compiler-core': 3.2.33 '@vue/compiler-core': 3.2.33
'@vue/shared': 3.2.33 '@vue/shared': 3.2.33
transitivePeerDependencies: transitivePeerDependencies:
...@@ -856,15 +863,15 @@ packages: ...@@ -856,15 +863,15 @@ packages:
- vue - vue
dev: false dev: false
/@dcloudio/uni-mp-lark/3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33: /@dcloudio/uni-mp-lark/3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33:
resolution: {integrity: sha512-m+pD3w3oRsm45IvUTKXf07LtbEHKd5mQV9mSxMzughHeYEnPz6PzXaF57iOxa9XZ3rQBhTM/l42lwC/rKglLCA==} resolution: {integrity: sha512-fRD7LJu1n0th6sJNwgoA5vQ1LQ3FvV1m8wMMIKOxUrC2FIw50Q98UtVcoU82A5lseAZRGX7N1T6/jiedbEXKjg==}
dependencies: dependencies:
'@dcloudio/uni-cli-shared': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-cli-shared': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-compiler': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-compiler': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-toutiao': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-toutiao': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-vite': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-vite': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-vue': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-mp-vue': 3.0.0-alpha-3040820220426002
'@dcloudio/uni-shared': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-shared': 3.0.0-alpha-3040820220426002
'@vue/compiler-core': 3.2.33 '@vue/compiler-core': 3.2.33
'@vue/shared': 3.2.33 '@vue/shared': 3.2.33
transitivePeerDependencies: transitivePeerDependencies:
...@@ -874,13 +881,13 @@ packages: ...@@ -874,13 +881,13 @@ packages:
- vue - vue
dev: false dev: false
/@dcloudio/uni-mp-qq/3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33: /@dcloudio/uni-mp-qq/3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33:
resolution: {integrity: sha512-VQs9ZPeLEF8dFBhKqAXXTxYpG+2LCk+FlHwDyvNMxZWtL7fw2C4/eMIcN6KGCzGaw4uqtYFsy/+yFRXgfF5abA==} resolution: {integrity: sha512-P9gV7JAdwUdChSDg6g18ENYPUqVUDk3DkVi8G3QlDodyuk443g+bkwF4hSaBF0cqODSzygXh7eWH2K+Gmx8FdQ==}
dependencies: dependencies:
'@dcloudio/uni-cli-shared': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-cli-shared': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-vite': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-vite': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-vue': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-mp-vue': 3.0.0-alpha-3040820220426002
'@dcloudio/uni-shared': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-shared': 3.0.0-alpha-3040820220426002
'@vue/shared': 3.2.33 '@vue/shared': 3.2.33
fs-extra: 10.1.0 fs-extra: 10.1.0
transitivePeerDependencies: transitivePeerDependencies:
...@@ -890,14 +897,14 @@ packages: ...@@ -890,14 +897,14 @@ packages:
- vue - vue
dev: false dev: false
/@dcloudio/uni-mp-toutiao/3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33: /@dcloudio/uni-mp-toutiao/3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33:
resolution: {integrity: sha512-+uNlR+MGPyN9LP6FqheMs5aLcxhnS+48FoDmX6CU08HmlLGgSMzBu8fLG7nb/wR/ksq48rsuHO4guzXk+nZVDw==} resolution: {integrity: sha512-Mpz61t/nVKhASMJXOxIZlCelF3AKPU/LtRu6PKEzjyEC9SHra/6r1RKyssaaTvQvkP1NkoSRDFoQVltPZsYBRg==}
dependencies: dependencies:
'@dcloudio/uni-cli-shared': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-cli-shared': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-compiler': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-compiler': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-vite': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-vite': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-vue': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-mp-vue': 3.0.0-alpha-3040820220426002
'@dcloudio/uni-shared': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-shared': 3.0.0-alpha-3040820220426002
'@vue/compiler-core': 3.2.33 '@vue/compiler-core': 3.2.33
'@vue/shared': 3.2.33 '@vue/shared': 3.2.33
transitivePeerDependencies: transitivePeerDependencies:
...@@ -907,14 +914,14 @@ packages: ...@@ -907,14 +914,14 @@ packages:
- vue - vue
dev: false dev: false
/@dcloudio/uni-mp-vite/3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33: /@dcloudio/uni-mp-vite/3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33:
resolution: {integrity: sha512-0dbV4IrRl13DslwUl1yhCiAzIwE3A6s6zTqq8AgHQ6iH3Nhvv4h6Eh2cbFIRf0nO/GESAQnknJkp14Muo7/IDw==} resolution: {integrity: sha512-Turo6wvbuS/IrGlo/mU2oGJnWgAhGQ/TH7Nws2guFl19pA3c3hv+kWatsJ6IhBdRiyfRU5uNpaog4X8doaxUaQ==}
dependencies: dependencies:
'@dcloudio/uni-cli-shared': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-cli-shared': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-i18n': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-i18n': 3.0.0-alpha-3040820220426002
'@dcloudio/uni-mp-compiler': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-compiler': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-vue': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-mp-vue': 3.0.0-alpha-3040820220426002
'@dcloudio/uni-shared': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-shared': 3.0.0-alpha-3040820220426002
'@vue/compiler-sfc': 3.2.33 '@vue/compiler-sfc': 3.2.33
'@vue/shared': 3.2.33 '@vue/shared': 3.2.33
debug: 4.3.4 debug: 4.3.4
...@@ -926,20 +933,20 @@ packages: ...@@ -926,20 +933,20 @@ packages:
- vue - vue
dev: false dev: false
/@dcloudio/uni-mp-vue/3.0.0-alpha-3040720220422003: /@dcloudio/uni-mp-vue/3.0.0-alpha-3040820220426002:
resolution: {integrity: sha512-TvrgQhTV4uUf/s695JeeB105sSEq4r3dZGQ90x+ccIsuo8lIQwU8zpfQCBxcJPG1yo16/mTN3HIKI4poCuGYqg==} resolution: {integrity: sha512-u3wTjUqTF5GFkKgSbbJfrBKF6bA8I/ujVxiMPMKUS8yeDZutOS85Ur71hTxI0oCYd/XE4ubRPJkqYa3DxoH0lQ==}
dependencies: dependencies:
'@dcloudio/uni-shared': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-shared': 3.0.0-alpha-3040820220426002
'@vue/shared': 3.2.33 '@vue/shared': 3.2.33
dev: false dev: false
/@dcloudio/uni-mp-weixin/3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33: /@dcloudio/uni-mp-weixin/3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33:
resolution: {integrity: sha512-Yvd6k+IfiUoQhh9nTFDqxHoNgKIYwik980JUNXdsjQ6sdX/TdPy++UYt/fM/bkk8cNczloQnPuV6lluybk/Aqg==} resolution: {integrity: sha512-5mg3IvQAZlS3EYgkYgwKRzB/58CDPsH4aaIoZfjl9o8WtkdxLwjMHJ3DH4E7Ttjj1V46+DnNZ9NMmEAaHSqqVg==}
dependencies: dependencies:
'@dcloudio/uni-cli-shared': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-cli-shared': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-vite': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-vite': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-vue': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-mp-vue': 3.0.0-alpha-3040820220426002
'@dcloudio/uni-shared': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-shared': 3.0.0-alpha-3040820220426002
'@vue/shared': 3.2.33 '@vue/shared': 3.2.33
transitivePeerDependencies: transitivePeerDependencies:
- postcss - postcss
...@@ -948,18 +955,18 @@ packages: ...@@ -948,18 +955,18 @@ packages:
- vue - vue
dev: false dev: false
/@dcloudio/uni-nvue-styler/3.0.0-alpha-3040720220422003: /@dcloudio/uni-nvue-styler/3.0.0-alpha-3040820220426002:
resolution: {integrity: sha512-gtQyDsRSNHYjSve3GItVKTXOenzbiT8ToQlSxrb/N6A68Gdd7rnzu0a8DuyGj3gvDvmdaZCKYhdvv3THC2z7Mg==} resolution: {integrity: sha512-YkWt/zL/J3lQeKOCpTJQy/3z0H7TXZj21JW4al7LUXvXxL9iLwSVGlOX/IEce4EBZubxiCWMe4ePpkwlJPhJxg==}
dependencies: dependencies:
'@vue/shared': 3.2.33 '@vue/shared': 3.2.33
parse-css-font: 4.0.0 parse-css-font: 4.0.0
postcss: 8.4.12 postcss: 8.4.12
dev: false dev: false
/@dcloudio/uni-push/3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33: /@dcloudio/uni-push/3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33:
resolution: {integrity: sha512-0X4yGA7GPFQAVRKkk/RkFNm7IlzsfXi4Fwu/qk1a4gyoKTaD3EIS3Lxr+Xy0Xzxyd+254kVMYs3Jr1JUWrgO8g==} resolution: {integrity: sha512-522Z7Ivrs91jnYYpAZwOYwzaN6bQGhXCOzzH4Mt1sPAUA6LQC/5VEaa08gaNDf5o0Eq5iWsv5EgX0JYe//jAkA==}
dependencies: dependencies:
'@dcloudio/uni-cli-shared': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-cli-shared': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
transitivePeerDependencies: transitivePeerDependencies:
- postcss - postcss
- supports-color - supports-color
...@@ -967,13 +974,13 @@ packages: ...@@ -967,13 +974,13 @@ packages:
- vue - vue
dev: false dev: false
/@dcloudio/uni-quickapp-webview/3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33: /@dcloudio/uni-quickapp-webview/3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33:
resolution: {integrity: sha512-Nzc4Y1gfoT+lt5wWZMzSjS7Wv6QI+Pg9QmKFrHvidtiTTzQhLDera6BLgoMMjHo3Ak1pju2hVL7XOn4tyrVucQ==} resolution: {integrity: sha512-4DDdqsKUT3TolSacdcEmv+Er4tiUpZjVaFqQS+2Xfxlypiik2p6z4h4hMAo2dBwyjP4dAYlzTg+wgF8nZ40hQw==}
dependencies: dependencies:
'@dcloudio/uni-cli-shared': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-cli-shared': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-vite': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-mp-vite': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-mp-vue': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-mp-vue': 3.0.0-alpha-3040820220426002
'@dcloudio/uni-shared': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-shared': 3.0.0-alpha-3040820220426002
'@vue/shared': 3.2.33 '@vue/shared': 3.2.33
transitivePeerDependencies: transitivePeerDependencies:
- postcss - postcss
...@@ -982,15 +989,16 @@ packages: ...@@ -982,15 +989,16 @@ packages:
- vue - vue
dev: false dev: false
/@dcloudio/uni-shared/3.0.0-alpha-3040720220422003: /@dcloudio/uni-shared/3.0.0-alpha-3040820220426002:
resolution: {integrity: sha512-aRkDfVUulrpspn/tgkS2hO5gg0nAmCd7RzowGivd5X5Cr/2Il0NyEPPFucwdzvyse1b17AeQ5/S2+RJ5rz77RA==} resolution: {integrity: sha512-kVugweha4W4fZzw4LCdApwP1Ee3kvU8ntMzsLViTVqM+uXi5vGVcCxOX8bxbKetnggfm+liIBGi6asOggnsFsw==}
dependencies: dependencies:
'@vue/shared': 3.2.33 '@vue/shared': 3.2.33
/@dcloudio/uni-stat/3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33: /@dcloudio/uni-stat/3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33:
resolution: {integrity: sha512-xrjq+8pKemSHNxv6uwkZq8edRrKUkHQdguS3CzVzd3IhtCYmYUB9684GulkVHMqsUiE1obS5Sd1zYILZvdRWIA==} resolution: {integrity: sha512-sNJgE4SsjGZSIOe4UpcQm6mUQlOGhpYRQ8Hn9owT9WAZrjRJgHYPzYo6CXQegZ3wltfHfR1nw9wzq3fJq/zfrg==}
dependencies: dependencies:
'@dcloudio/uni-cli-shared': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-cli-shared': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-shared': 3.0.0-alpha-3040820220426002
debug: 4.3.4 debug: 4.3.4
transitivePeerDependencies: transitivePeerDependencies:
- postcss - postcss
...@@ -999,8 +1007,8 @@ packages: ...@@ -999,8 +1007,8 @@ packages:
- vue - vue
dev: false dev: false
/@dcloudio/vite-plugin-uni/3.0.0-alpha-3040720220422003_5be8aa8e536a8ca0e7f20f29f0760ccd: /@dcloudio/vite-plugin-uni/3.0.0-alpha-3040820220426002_1189e631e7f3122281ad6b9791adcbd2:
resolution: {integrity: sha512-5QrL3vHC5w+P8/BIDbUrUJYHNNS1lZM4nYr0i8Jq6855HQkWc6AYNiHc8DpjUx7MaB4q7Tnw5cJLzEvv5t3EEg==} resolution: {integrity: sha512-IGNlU3DO5ZdJw0wg1oBD2NTo4B0xaBIYuggure74ivioTD200aSZHcll/GKpqKHKVIoCD4j5+6AV+3zEntGUrw==}
hasBin: true hasBin: true
peerDependencies: peerDependencies:
vite: ^2.9.5 vite: ^2.9.5
...@@ -1008,11 +1016,11 @@ packages: ...@@ -1008,11 +1016,11 @@ packages:
'@babel/core': 7.17.9 '@babel/core': 7.17.9
'@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.17.9 '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.17.9
'@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.17.9 '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.17.9
'@dcloudio/uni-cli-shared': 3.0.0-alpha-3040720220422003_postcss@8.4.12+vue@3.2.33 '@dcloudio/uni-cli-shared': 3.0.0-alpha-3040820220426002_postcss@8.4.12+vue@3.2.33
'@dcloudio/uni-shared': 3.0.0-alpha-3040720220422003 '@dcloudio/uni-shared': 3.0.0-alpha-3040820220426002
'@rollup/pluginutils': 4.2.1 '@rollup/pluginutils': 4.2.1
'@vitejs/plugin-legacy': 1.8.1_vite@2.9.5 '@vitejs/plugin-legacy': 1.8.1_vite@2.9.6
'@vitejs/plugin-vue': 2.3.1_vite@2.9.5+vue@3.2.33 '@vitejs/plugin-vue': 2.3.1_vite@2.9.6+vue@3.2.33
'@vitejs/plugin-vue-jsx': 1.3.10 '@vitejs/plugin-vue-jsx': 1.3.10
'@vue/compiler-core': 3.2.33 '@vue/compiler-core': 3.2.33
'@vue/compiler-dom': 3.2.33 '@vue/compiler-dom': 3.2.33
...@@ -1021,12 +1029,12 @@ packages: ...@@ -1021,12 +1029,12 @@ packages:
cac: 6.7.9 cac: 6.7.9
debug: 4.3.4 debug: 4.3.4
estree-walker: 2.0.2 estree-walker: 2.0.2
express: 4.17.3 express: 4.18.0
fs-extra: 10.1.0 fs-extra: 10.1.0
hash-sum: 2.0.0 hash-sum: 2.0.0
jsonc-parser: 3.0.0 jsonc-parser: 3.0.0
picocolors: 1.0.0 picocolors: 1.0.0
vite: 2.9.5_less@4.1.2+stylus@0.56.0 vite: 2.9.6_less@4.1.2+stylus@0.56.0
transitivePeerDependencies: transitivePeerDependencies:
- postcss - postcss
- supports-color - supports-color
...@@ -1082,12 +1090,29 @@ packages: ...@@ -1082,12 +1090,29 @@ packages:
'@intlify/shared': 9.1.9 '@intlify/shared': 9.1.9
'@intlify/vue-devtools': 9.1.9 '@intlify/vue-devtools': 9.1.9
/@intlify/core-base/9.2.0-beta.35:
resolution: {integrity: sha512-53yuCpo2ov5OKdvBTvE5zKMo2clLVqNORwkcY9TUu0B+yrOeDwLWQnbPJnOoDu5KkRdbdXlMxnHNCpJ5vlGZ1g==}
engines: {node: '>= 12'}
dependencies:
'@intlify/devtools-if': 9.2.0-beta.35
'@intlify/message-compiler': 9.2.0-beta.35
'@intlify/shared': 9.2.0-beta.35
'@intlify/vue-devtools': 9.2.0-beta.35
dev: false
/@intlify/devtools-if/9.1.9: /@intlify/devtools-if/9.1.9:
resolution: {integrity: sha512-oKSMKjttG3Ut/1UGEZjSdghuP3fwA15zpDPcjkf/1FjlOIm6uIBGMNS5jXzsZy593u+P/YcnrZD6cD3IVFz9vQ==} resolution: {integrity: sha512-oKSMKjttG3Ut/1UGEZjSdghuP3fwA15zpDPcjkf/1FjlOIm6uIBGMNS5jXzsZy593u+P/YcnrZD6cD3IVFz9vQ==}
engines: {node: '>= 10'} engines: {node: '>= 10'}
dependencies: dependencies:
'@intlify/shared': 9.1.9 '@intlify/shared': 9.1.9
/@intlify/devtools-if/9.2.0-beta.35:
resolution: {integrity: sha512-y3+7M+eS9mqeXTBa1QWAvt4nsjwWJ5G4xT+G3IFtd7Vb2CQHwli229n0avD+VdlDGwWCDWpLkny8QWtdNEYpOA==}
engines: {node: '>= 12'}
dependencies:
'@intlify/shared': 9.2.0-beta.35
dev: false
/@intlify/message-compiler/9.1.9: /@intlify/message-compiler/9.1.9:
resolution: {integrity: sha512-6YgCMF46Xd0IH2hMRLCssZI3gFG4aywidoWQ3QP4RGYQXQYYfFC54DxhSgfIPpVoPLQ+4AD29eoYmhiHZ+qLFQ==} resolution: {integrity: sha512-6YgCMF46Xd0IH2hMRLCssZI3gFG4aywidoWQ3QP4RGYQXQYYfFC54DxhSgfIPpVoPLQ+4AD29eoYmhiHZ+qLFQ==}
engines: {node: '>= 10'} engines: {node: '>= 10'}
...@@ -1096,6 +1121,14 @@ packages: ...@@ -1096,6 +1121,14 @@ packages:
'@intlify/shared': 9.1.9 '@intlify/shared': 9.1.9
source-map: 0.6.1 source-map: 0.6.1
/@intlify/message-compiler/9.2.0-beta.35:
resolution: {integrity: sha512-wYQCgnRtyJ40HK3bJTrszHDaxqDXZH+9Ps7RsXNuNwZ9hIb1cVkLiUNIbuJS/XSJ1kATJXA6K+4if6ZLb0Ozxw==}
engines: {node: '>= 12'}
dependencies:
'@intlify/shared': 9.2.0-beta.35
source-map: 0.6.1
dev: false
/@intlify/message-resolver/9.1.9: /@intlify/message-resolver/9.1.9:
resolution: {integrity: sha512-Lx/DBpigeK0sz2BBbzv5mu9/dAlt98HxwbG7xLawC3O2xMF9MNWU5FtOziwYG6TDIjNq0O/3ZbOJAxwITIWXEA==} resolution: {integrity: sha512-Lx/DBpigeK0sz2BBbzv5mu9/dAlt98HxwbG7xLawC3O2xMF9MNWU5FtOziwYG6TDIjNq0O/3ZbOJAxwITIWXEA==}
engines: {node: '>= 10'} engines: {node: '>= 10'}
...@@ -1112,6 +1145,11 @@ packages: ...@@ -1112,6 +1145,11 @@ packages:
resolution: {integrity: sha512-xKGM1d0EAxdDFCWedcYXOm6V5Pfw/TMudd6/qCdEb4tv0hk9EKeg7lwQF1azE0dP2phvx0yXxrt7UQK+IZjNdw==} resolution: {integrity: sha512-xKGM1d0EAxdDFCWedcYXOm6V5Pfw/TMudd6/qCdEb4tv0hk9EKeg7lwQF1azE0dP2phvx0yXxrt7UQK+IZjNdw==}
engines: {node: '>= 10'} engines: {node: '>= 10'}
/@intlify/shared/9.2.0-beta.35:
resolution: {integrity: sha512-DXf7xrwf08GKhr93XPQ8EgaEN0CIELl+mAS6SlRhi/aLtZv5HSGSMkz4M/ICwoWzFLSgOx/ZdBSasex19MMogg==}
engines: {node: '>= 12'}
dev: false
/@intlify/vue-devtools/9.1.9: /@intlify/vue-devtools/9.1.9:
resolution: {integrity: sha512-YPehH9uL4vZcGXky4Ev5qQIITnHKIvsD2GKGXgqf+05osMUI6WSEQHaN9USRa318Rs8RyyPCiDfmA0hRu3k7og==} resolution: {integrity: sha512-YPehH9uL4vZcGXky4Ev5qQIITnHKIvsD2GKGXgqf+05osMUI6WSEQHaN9USRa318Rs8RyyPCiDfmA0hRu3k7og==}
engines: {node: '>= 10'} engines: {node: '>= 10'}
...@@ -1120,10 +1158,29 @@ packages: ...@@ -1120,10 +1158,29 @@ packages:
'@intlify/runtime': 9.1.9 '@intlify/runtime': 9.1.9
'@intlify/shared': 9.1.9 '@intlify/shared': 9.1.9
/@intlify/vue-devtools/9.2.0-beta.35:
resolution: {integrity: sha512-h7nf5F7AV4uKrr7zKTIyv8EOaIv4yAXuo7tvnFsp5uF8FO+kpBwWDm5csw9v9neyz42hiINJSP0Amou9M2ShEA==}
engines: {node: '>= 12'}
dependencies:
'@intlify/core-base': 9.2.0-beta.35
'@intlify/shared': 9.2.0-beta.35
dev: false
/@jridgewell/gen-mapping/0.1.1:
resolution: {integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==}
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/set-array': 1.1.0
'@jridgewell/sourcemap-codec': 1.4.11
/@jridgewell/resolve-uri/3.0.6: /@jridgewell/resolve-uri/3.0.6:
resolution: {integrity: sha512-R7xHtBSNm+9SyvpJkdQl+qrM3Hm2fea3Ef197M3mUug+v+yR+Rhfbs7PBtcBUVnIWJ4JcAdjvij+c8hXS9p5aw==} resolution: {integrity: sha512-R7xHtBSNm+9SyvpJkdQl+qrM3Hm2fea3Ef197M3mUug+v+yR+Rhfbs7PBtcBUVnIWJ4JcAdjvij+c8hXS9p5aw==}
engines: {node: '>=6.0.0'} engines: {node: '>=6.0.0'}
/@jridgewell/set-array/1.1.0:
resolution: {integrity: sha512-SfJxIxNVYLTsKwzB3MoOQ1yxf4w/E6MdkvTgrgAt1bfxjSrLUoHMKrDOykwN14q65waezZIdqDneUIPh4/sKxg==}
engines: {node: '>=6.0.0'}
/@jridgewell/sourcemap-codec/1.4.11: /@jridgewell/sourcemap-codec/1.4.11:
resolution: {integrity: sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==} resolution: {integrity: sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==}
...@@ -1182,7 +1239,7 @@ packages: ...@@ -1182,7 +1239,7 @@ packages:
resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==}
dependencies: dependencies:
'@types/minimatch': 3.0.5 '@types/minimatch': 3.0.5
'@types/node': 17.0.25 '@types/node': 17.0.29
dev: true dev: true
/@types/json-schema/7.0.11: /@types/json-schema/7.0.11:
...@@ -1211,12 +1268,12 @@ packages: ...@@ -1211,12 +1268,12 @@ packages:
resolution: {integrity: sha512-Yu5YlqbYZyqsd6LjO4e8ONJDN9pTSnciHDcRP4teNOh/au2b8helFhgRx+3w8xsTFEnwr9jtfTVJbAx+eYmlHA==} resolution: {integrity: sha512-Yu5YlqbYZyqsd6LjO4e8ONJDN9pTSnciHDcRP4teNOh/au2b8helFhgRx+3w8xsTFEnwr9jtfTVJbAx+eYmlHA==}
dev: true dev: true
/@types/node/12.20.48: /@types/node/12.20.50:
resolution: {integrity: sha512-4kxzqkrpwYtn6okJUcb2lfUu9ilnb3yhUOH6qX3nug8D2DupZ2drIkff2yJzYcNJVl3begnlcaBJ7tqiTTzjnQ==} resolution: {integrity: sha512-+9axpWx2b2JCVovr7Ilgt96uc6C1zBKOQMpGtRbWT9IoR/8ue32GGMfGA4woP8QyP2gBs6GQWEVM3tCybGCxDA==}
dev: true dev: true
/@types/node/17.0.25: /@types/node/17.0.29:
resolution: {integrity: sha512-wANk6fBrUwdpY4isjWrKTufkrXdu1D2YHCot2fD/DfWxF5sMrVSA+KN7ydckvaTCh0HiqX9IVl0L5/ZoXg5M7w==} resolution: {integrity: sha512-tx5jMmMFwx7wBwq/V7OohKDVb/JwJU5qCVkeLMh1//xycAJ/ESuw9aJ9SEtlCZDYi2pBfe4JkisSoAtbOsBNAA==}
dev: true dev: true
/@types/normalize-package-data/2.4.1: /@types/normalize-package-data/2.4.1:
...@@ -1235,8 +1292,8 @@ packages: ...@@ -1235,8 +1292,8 @@ packages:
resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==} resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==}
dev: true dev: true
/@typescript-eslint/eslint-plugin/5.20.0_81f0d1a74f014d44d273bd1612c85fd9: /@typescript-eslint/eslint-plugin/5.21.0_829e74f28e9c9eb05edda582d47d45b8:
resolution: {integrity: sha512-fapGzoxilCn3sBtC6NtXZX6+P/Hef7VDbyfGqTTpzYydwhlkevB+0vE0EnmHPVTVSy68GUncyJ/2PcrFBeCo5Q==} resolution: {integrity: sha512-fTU85q8v5ZLpoZEyn/u1S2qrFOhi33Edo2CZ0+q1gDaWWm0JuPh3bgOyU8lM0edIEYgKLDkPFiZX2MOupgjlyg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies: peerDependencies:
'@typescript-eslint/parser': ^5.0.0 '@typescript-eslint/parser': ^5.0.0
...@@ -1246,10 +1303,10 @@ packages: ...@@ -1246,10 +1303,10 @@ packages:
typescript: typescript:
optional: true optional: true
dependencies: dependencies:
'@typescript-eslint/parser': 5.20.0_eslint@8.14.0+typescript@4.6.3 '@typescript-eslint/parser': 5.21.0_eslint@8.14.0+typescript@4.6.3
'@typescript-eslint/scope-manager': 5.20.0 '@typescript-eslint/scope-manager': 5.21.0
'@typescript-eslint/type-utils': 5.20.0_eslint@8.14.0+typescript@4.6.3 '@typescript-eslint/type-utils': 5.21.0_eslint@8.14.0+typescript@4.6.3
'@typescript-eslint/utils': 5.20.0_eslint@8.14.0+typescript@4.6.3 '@typescript-eslint/utils': 5.21.0_eslint@8.14.0+typescript@4.6.3
debug: 4.3.4 debug: 4.3.4
eslint: 8.14.0 eslint: 8.14.0
functional-red-black-tree: 1.0.1 functional-red-black-tree: 1.0.1
...@@ -1262,8 +1319,8 @@ packages: ...@@ -1262,8 +1319,8 @@ packages:
- supports-color - supports-color
dev: true dev: true
/@typescript-eslint/parser/5.20.0_eslint@8.14.0+typescript@4.6.3: /@typescript-eslint/parser/5.21.0_eslint@8.14.0+typescript@4.6.3:
resolution: {integrity: sha512-UWKibrCZQCYvobmu3/N8TWbEeo/EPQbS41Ux1F9XqPzGuV7pfg6n50ZrFo6hryynD8qOTTfLHtHjjdQtxJ0h/w==} resolution: {integrity: sha512-8RUwTO77hstXUr3pZoWZbRQUxXcSXafZ8/5gpnQCfXvgmP9gpNlRGlWzvfbEQ14TLjmtU8eGnONkff8U2ui2Eg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies: peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
...@@ -1272,9 +1329,9 @@ packages: ...@@ -1272,9 +1329,9 @@ packages:
typescript: typescript:
optional: true optional: true
dependencies: dependencies:
'@typescript-eslint/scope-manager': 5.20.0 '@typescript-eslint/scope-manager': 5.21.0
'@typescript-eslint/types': 5.20.0 '@typescript-eslint/types': 5.21.0
'@typescript-eslint/typescript-estree': 5.20.0_typescript@4.6.3 '@typescript-eslint/typescript-estree': 5.21.0_typescript@4.6.3
debug: 4.3.4 debug: 4.3.4
eslint: 8.14.0 eslint: 8.14.0
typescript: 4.6.3 typescript: 4.6.3
...@@ -1282,16 +1339,16 @@ packages: ...@@ -1282,16 +1339,16 @@ packages:
- supports-color - supports-color
dev: true dev: true
/@typescript-eslint/scope-manager/5.20.0: /@typescript-eslint/scope-manager/5.21.0:
resolution: {integrity: sha512-h9KtuPZ4D/JuX7rpp1iKg3zOH0WNEa+ZIXwpW/KWmEFDxlA/HSfCMhiyF1HS/drTICjIbpA6OqkAhrP/zkCStg==} resolution: {integrity: sha512-XTX0g0IhvzcH/e3393SvjRCfYQxgxtYzL3UREteUneo72EFlt7UNoiYnikUtmGVobTbhUDByhJ4xRBNe+34kOQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies: dependencies:
'@typescript-eslint/types': 5.20.0 '@typescript-eslint/types': 5.21.0
'@typescript-eslint/visitor-keys': 5.20.0 '@typescript-eslint/visitor-keys': 5.21.0
dev: true dev: true
/@typescript-eslint/type-utils/5.20.0_eslint@8.14.0+typescript@4.6.3: /@typescript-eslint/type-utils/5.21.0_eslint@8.14.0+typescript@4.6.3:
resolution: {integrity: sha512-WxNrCwYB3N/m8ceyoGCgbLmuZwupvzN0rE8NBuwnl7APgjv24ZJIjkNzoFBXPRCGzLNkoU/WfanW0exvp/+3Iw==} resolution: {integrity: sha512-MxmLZj0tkGlkcZCSE17ORaHl8Th3JQwBzyXL/uvC6sNmu128LsgjTX0NIzy+wdH2J7Pd02GN8FaoudJntFvSOw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies: peerDependencies:
eslint: '*' eslint: '*'
...@@ -1300,7 +1357,7 @@ packages: ...@@ -1300,7 +1357,7 @@ packages:
typescript: typescript:
optional: true optional: true
dependencies: dependencies:
'@typescript-eslint/utils': 5.20.0_eslint@8.14.0+typescript@4.6.3 '@typescript-eslint/utils': 5.21.0_eslint@8.14.0+typescript@4.6.3
debug: 4.3.4 debug: 4.3.4
eslint: 8.14.0 eslint: 8.14.0
tsutils: 3.21.0_typescript@4.6.3 tsutils: 3.21.0_typescript@4.6.3
...@@ -1309,13 +1366,13 @@ packages: ...@@ -1309,13 +1366,13 @@ packages:
- supports-color - supports-color
dev: true dev: true
/@typescript-eslint/types/5.20.0: /@typescript-eslint/types/5.21.0:
resolution: {integrity: sha512-+d8wprF9GyvPwtoB4CxBAR/s0rpP25XKgnOvMf/gMXYDvlUC3rPFHupdTQ/ow9vn7UDe5rX02ovGYQbv/IUCbg==} resolution: {integrity: sha512-XnOOo5Wc2cBlq8Lh5WNvAgHzpjnEzxn4CJBwGkcau7b/tZ556qrWXQz4DJyChYg8JZAD06kczrdgFPpEQZfDsA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true dev: true
/@typescript-eslint/typescript-estree/5.20.0_typescript@4.6.3: /@typescript-eslint/typescript-estree/5.21.0_typescript@4.6.3:
resolution: {integrity: sha512-36xLjP/+bXusLMrT9fMMYy1KJAGgHhlER2TqpUVDYUQg4w0q/NW/sg4UGAgVwAqb8V4zYg43KMUpM8vV2lve6w==} resolution: {integrity: sha512-Y8Y2T2FNvm08qlcoSMoNchh9y2Uj3QmjtwNMdRQkcFG7Muz//wfJBGBxh8R7HAGQFpgYpdHqUpEoPQk+q9Kjfg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies: peerDependencies:
typescript: '*' typescript: '*'
...@@ -1323,8 +1380,8 @@ packages: ...@@ -1323,8 +1380,8 @@ packages:
typescript: typescript:
optional: true optional: true
dependencies: dependencies:
'@typescript-eslint/types': 5.20.0 '@typescript-eslint/types': 5.21.0
'@typescript-eslint/visitor-keys': 5.20.0 '@typescript-eslint/visitor-keys': 5.21.0
debug: 4.3.4 debug: 4.3.4
globby: 11.1.0 globby: 11.1.0
is-glob: 4.0.3 is-glob: 4.0.3
...@@ -1335,16 +1392,16 @@ packages: ...@@ -1335,16 +1392,16 @@ packages:
- supports-color - supports-color
dev: true dev: true
/@typescript-eslint/utils/5.20.0_eslint@8.14.0+typescript@4.6.3: /@typescript-eslint/utils/5.21.0_eslint@8.14.0+typescript@4.6.3:
resolution: {integrity: sha512-lHONGJL1LIO12Ujyx8L8xKbwWSkoUKFSO+0wDAqGXiudWB2EO7WEUT+YZLtVbmOmSllAjLb9tpoIPwpRe5Tn6w==} resolution: {integrity: sha512-q/emogbND9wry7zxy7VYri+7ydawo2HDZhRZ5k6yggIvXa7PvBbAAZ4PFH/oZLem72ezC4Pr63rJvDK/sTlL8Q==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies: peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies: dependencies:
'@types/json-schema': 7.0.11 '@types/json-schema': 7.0.11
'@typescript-eslint/scope-manager': 5.20.0 '@typescript-eslint/scope-manager': 5.21.0
'@typescript-eslint/types': 5.20.0 '@typescript-eslint/types': 5.21.0
'@typescript-eslint/typescript-estree': 5.20.0_typescript@4.6.3 '@typescript-eslint/typescript-estree': 5.21.0_typescript@4.6.3
eslint: 8.14.0 eslint: 8.14.0
eslint-scope: 5.1.1 eslint-scope: 5.1.1
eslint-utils: 3.0.0_eslint@8.14.0 eslint-utils: 3.0.0_eslint@8.14.0
...@@ -1353,26 +1410,26 @@ packages: ...@@ -1353,26 +1410,26 @@ packages:
- typescript - typescript
dev: true dev: true
/@typescript-eslint/visitor-keys/5.20.0: /@typescript-eslint/visitor-keys/5.21.0:
resolution: {integrity: sha512-1flRpNF+0CAQkMNlTJ6L/Z5jiODG/e5+7mk6XwtPOUS3UrTz3UOiAg9jG2VtKsWI6rZQfy4C6a232QNRZTRGlg==} resolution: {integrity: sha512-SX8jNN+iHqAF0riZQMkm7e8+POXa/fXw5cxL+gjpyP+FI+JVNhii53EmQgDAfDcBpFekYSlO0fGytMQwRiMQCA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies: dependencies:
'@typescript-eslint/types': 5.20.0 '@typescript-eslint/types': 5.21.0
eslint-visitor-keys: 3.3.0 eslint-visitor-keys: 3.3.0
dev: true dev: true
/@vitejs/plugin-legacy/1.8.1_vite@2.9.5: /@vitejs/plugin-legacy/1.8.1_vite@2.9.6:
resolution: {integrity: sha512-kmBWKq7EeNvzS4AqPBqUKdoWG/NYQXh7StUFMWR3D21aN5Mfmar7CTO2a7K+bBxJH/vAL9gnnueA0wb7cycCmQ==} resolution: {integrity: sha512-kmBWKq7EeNvzS4AqPBqUKdoWG/NYQXh7StUFMWR3D21aN5Mfmar7CTO2a7K+bBxJH/vAL9gnnueA0wb7cycCmQ==}
engines: {node: '>=12.0.0'} engines: {node: '>=12.0.0'}
peerDependencies: peerDependencies:
vite: ^2.8.0 vite: ^2.8.0
dependencies: dependencies:
'@babel/standalone': 7.17.9 '@babel/standalone': 7.17.9
core-js: 3.22.2 core-js: 3.22.3
magic-string: 0.26.1 magic-string: 0.26.1
regenerator-runtime: 0.13.9 regenerator-runtime: 0.13.9
systemjs: 6.12.1 systemjs: 6.12.1
vite: 2.9.5_less@4.1.2+stylus@0.56.0 vite: 2.9.6_less@4.1.2+stylus@0.56.0
dev: true dev: true
/@vitejs/plugin-vue-jsx/1.3.10: /@vitejs/plugin-vue-jsx/1.3.10:
...@@ -1389,14 +1446,14 @@ packages: ...@@ -1389,14 +1446,14 @@ packages:
- supports-color - supports-color
dev: true dev: true
/@vitejs/plugin-vue/2.3.1_vite@2.9.5+vue@3.2.33: /@vitejs/plugin-vue/2.3.1_vite@2.9.6+vue@3.2.33:
resolution: {integrity: sha512-YNzBt8+jt6bSwpt7LP890U1UcTOIZZxfpE5WOJ638PNxSEKOqAi0+FSKS0nVeukfdZ0Ai/H7AFd6k3hayfGZqQ==} resolution: {integrity: sha512-YNzBt8+jt6bSwpt7LP890U1UcTOIZZxfpE5WOJ638PNxSEKOqAi0+FSKS0nVeukfdZ0Ai/H7AFd6k3hayfGZqQ==}
engines: {node: '>=12.0.0'} engines: {node: '>=12.0.0'}
peerDependencies: peerDependencies:
vite: ^2.5.10 vite: ^2.5.10
vue: ^3.2.25 vue: ^3.2.25
dependencies: dependencies:
vite: 2.9.5_less@4.1.2+stylus@0.56.0 vite: 2.9.6_less@4.1.2+stylus@0.56.0
vue: 3.2.33 vue: 3.2.33
/@vue/babel-helper-vue-transform-on/1.0.2: /@vue/babel-helper-vue-transform-on/1.0.2:
...@@ -1552,12 +1609,12 @@ packages: ...@@ -1552,12 +1609,12 @@ packages:
negotiator: 0.6.3 negotiator: 0.6.3
dev: true dev: true
/acorn-jsx/5.3.2_acorn@8.7.0: /acorn-jsx/5.3.2_acorn@8.7.1:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies: peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies: dependencies:
acorn: 8.7.0 acorn: 8.7.1
dev: true dev: true
/acorn-walk/8.2.0: /acorn-walk/8.2.0:
...@@ -1565,8 +1622,8 @@ packages: ...@@ -1565,8 +1622,8 @@ packages:
engines: {node: '>=0.4.0'} engines: {node: '>=0.4.0'}
dev: true dev: true
/acorn/8.7.0: /acorn/8.7.1:
resolution: {integrity: sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==} resolution: {integrity: sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==}
engines: {node: '>=0.4.0'} engines: {node: '>=0.4.0'}
hasBin: true hasBin: true
dev: true dev: true
...@@ -1700,14 +1757,14 @@ packages: ...@@ -1700,14 +1757,14 @@ packages:
hasBin: true hasBin: true
dev: true dev: true
/autoprefixer/10.4.4_postcss@8.4.12: /autoprefixer/10.4.5_postcss@8.4.12:
resolution: {integrity: sha512-Tm8JxsB286VweiZ5F0anmbyGiNI3v3wGv3mz9W+cxEDYB/6jbnj6GM9H9mK3wIL8ftgl+C07Lcwb8PG5PCCPzA==} resolution: {integrity: sha512-Fvd8yCoA7lNX/OUllvS+aS1I7WRBclGXsepbvT8ZaPgrH24rgXpZzF0/6Hh3ZEkwg+0AES/Osd196VZmYoEFtw==}
engines: {node: ^10 || ^12 || >=14} engines: {node: ^10 || ^12 || >=14}
hasBin: true hasBin: true
peerDependencies: peerDependencies:
postcss: ^8.1.0 postcss: ^8.1.0
dependencies: dependencies:
browserslist: 4.20.2 browserslist: 4.20.3
caniuse-lite: 1.0.30001332 caniuse-lite: 1.0.30001332
fraction.js: 4.2.0 fraction.js: 4.2.0
normalize-range: 0.1.2 normalize-range: 0.1.2
...@@ -1743,20 +1800,22 @@ packages: ...@@ -1743,20 +1800,22 @@ packages:
resolution: {integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==} resolution: {integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==}
dev: true dev: true
/body-parser/1.19.2: /body-parser/1.20.0:
resolution: {integrity: sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw==} resolution: {integrity: sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==}
engines: {node: '>= 0.8'} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
dependencies: dependencies:
bytes: 3.1.2 bytes: 3.1.2
content-type: 1.0.4 content-type: 1.0.4
debug: 2.6.9 debug: 2.6.9
depd: 1.1.2 depd: 2.0.0
http-errors: 1.8.1 destroy: 1.2.0
http-errors: 2.0.0
iconv-lite: 0.4.24 iconv-lite: 0.4.24
on-finished: 2.3.0 on-finished: 2.4.1
qs: 6.9.7 qs: 6.10.3
raw-body: 2.4.3 raw-body: 2.5.1
type-is: 1.6.18 type-is: 1.6.18
unpipe: 1.0.0
dev: true dev: true
/boolbase/1.0.0: /boolbase/1.0.0:
...@@ -1776,13 +1835,13 @@ packages: ...@@ -1776,13 +1835,13 @@ packages:
dependencies: dependencies:
fill-range: 7.0.1 fill-range: 7.0.1
/browserslist/4.20.2: /browserslist/4.20.3:
resolution: {integrity: sha512-CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA==} resolution: {integrity: sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true hasBin: true
dependencies: dependencies:
caniuse-lite: 1.0.30001332 caniuse-lite: 1.0.30001332
electron-to-chromium: 1.4.118 electron-to-chromium: 1.4.124
escalade: 3.1.1 escalade: 3.1.1
node-releases: 2.0.3 node-releases: 2.0.3
picocolors: 1.0.0 picocolors: 1.0.0
...@@ -2190,8 +2249,8 @@ packages: ...@@ -2190,8 +2249,8 @@ packages:
resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=} resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=}
dev: true dev: true
/cookie/0.4.2: /cookie/0.5.0:
resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
engines: {node: '>= 0.6'} engines: {node: '>= 0.6'}
dev: true dev: true
...@@ -2201,8 +2260,8 @@ packages: ...@@ -2201,8 +2260,8 @@ packages:
is-what: 3.14.1 is-what: 3.14.1
dev: true dev: true
/core-js/3.22.2: /core-js/3.22.3:
resolution: {integrity: sha512-Z5I2vzDnEIqO2YhELVMFcL1An2CIsFe9Q7byZhs8c/QxummxZlAHw33TUHbIte987LkisOgL0LwQ1P9D6VISnA==} resolution: {integrity: sha512-1t+2a/d2lppW1gkLXx3pKPVGbBdxXAkqztvWb1EJ8oF8O2gIGiytzflNiFEehYwVK/t2ryUsGBoOFFvNx95mbg==}
requiresBuild: true requiresBuild: true
dev: true dev: true
...@@ -2210,16 +2269,16 @@ packages: ...@@ -2210,16 +2269,16 @@ packages:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
dev: true dev: true
/cosmiconfig-typescript-loader/1.0.9_de7c86b0cde507c63a0402da5b982bd3: /cosmiconfig-typescript-loader/1.0.9_5281fe59fc32158e106b8b5e2bebb315:
resolution: {integrity: sha512-tRuMRhxN4m1Y8hP9SNYfz7jRwt8lZdWxdjg/ohg5esKmsndJIn4yT96oJVcf5x0eA11taXl+sIp+ielu529k6g==} resolution: {integrity: sha512-tRuMRhxN4m1Y8hP9SNYfz7jRwt8lZdWxdjg/ohg5esKmsndJIn4yT96oJVcf5x0eA11taXl+sIp+ielu529k6g==}
engines: {node: '>=12', npm: '>=6'} engines: {node: '>=12', npm: '>=6'}
peerDependencies: peerDependencies:
'@types/node': '*' '@types/node': '*'
typescript: '>=3' typescript: '>=3'
dependencies: dependencies:
'@types/node': 17.0.25 '@types/node': 17.0.29
cosmiconfig: 7.0.1 cosmiconfig: 7.0.1
ts-node: 10.7.0_de7c86b0cde507c63a0402da5b982bd3 ts-node: 10.7.0_5281fe59fc32158e106b8b5e2bebb315
typescript: 4.6.3 typescript: 4.6.3
transitivePeerDependencies: transitivePeerDependencies:
- '@swc/core' - '@swc/core'
...@@ -2326,7 +2385,7 @@ packages: ...@@ -2326,7 +2385,7 @@ packages:
longest: 2.0.1 longest: 2.0.1
word-wrap: 1.2.3 word-wrap: 1.2.3
optionalDependencies: optionalDependencies:
'@commitlint/load': 16.2.3 '@commitlint/load': 16.2.4
transitivePeerDependencies: transitivePeerDependencies:
- '@swc/core' - '@swc/core'
- '@swc/wasm' - '@swc/wasm'
...@@ -2343,7 +2402,7 @@ packages: ...@@ -2343,7 +2402,7 @@ packages:
longest: 2.0.1 longest: 2.0.1
word-wrap: 1.2.3 word-wrap: 1.2.3
optionalDependencies: optionalDependencies:
'@commitlint/load': 16.2.3 '@commitlint/load': 16.2.4
transitivePeerDependencies: transitivePeerDependencies:
- '@swc/core' - '@swc/core'
- '@swc/wasm' - '@swc/wasm'
...@@ -2440,13 +2499,14 @@ packages: ...@@ -2440,13 +2499,14 @@ packages:
object-keys: 1.1.1 object-keys: 1.1.1
dev: true dev: true
/depd/1.1.2: /depd/2.0.0:
resolution: {integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=} resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
engines: {node: '>= 0.6'} engines: {node: '>= 0.8'}
dev: true dev: true
/destroy/1.0.4: /destroy/1.2.0:
resolution: {integrity: sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=} resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
dev: true dev: true
/detect-file/1.0.0: /detect-file/1.0.0:
...@@ -2535,8 +2595,8 @@ packages: ...@@ -2535,8 +2595,8 @@ packages:
resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=} resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=}
dev: true dev: true
/electron-to-chromium/1.4.118: /electron-to-chromium/1.4.124:
resolution: {integrity: sha512-maZIKjnYDvF7Fs35nvVcyr44UcKNwybr93Oba2n3HkKDFAtk0svERkLN/HyczJDS3Fo4wU9th9fUQd09ZLtj1w==} resolution: {integrity: sha512-VhaE9VUYU6d2eIb+4xf83CATD+T+3bTzvxvlADkQE+c2hisiw3sZmvEDtsW704+Zky9WZGhBuQXijDVqSriQLA==}
/emoji-regex/8.0.0: /emoji-regex/8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
...@@ -2598,7 +2658,7 @@ packages: ...@@ -2598,7 +2658,7 @@ packages:
object.assign: 4.1.2 object.assign: 4.1.2
string.prototype.trimend: 1.0.4 string.prototype.trimend: 1.0.4
string.prototype.trimstart: 1.0.4 string.prototype.trimstart: 1.0.4
unbox-primitive: 1.0.1 unbox-primitive: 1.0.2
dev: true dev: true
/es-module-lexer/0.9.3: /es-module-lexer/0.9.3:
...@@ -2944,8 +3004,8 @@ packages: ...@@ -2944,8 +3004,8 @@ packages:
resolution: {integrity: sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==} resolution: {integrity: sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies: dependencies:
acorn: 8.7.0 acorn: 8.7.1
acorn-jsx: 5.3.2_acorn@8.7.0 acorn-jsx: 5.3.2_acorn@8.7.1
eslint-visitor-keys: 3.3.0 eslint-visitor-keys: 3.3.0
dev: true dev: true
...@@ -3015,37 +3075,38 @@ packages: ...@@ -3015,37 +3075,38 @@ packages:
homedir-polyfill: 1.0.3 homedir-polyfill: 1.0.3
dev: true dev: true
/express/4.17.3: /express/4.18.0:
resolution: {integrity: sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg==} resolution: {integrity: sha512-EJEXxiTQJS3lIPrU1AE2vRuT7X7E+0KBbpm5GSoK524yl0K8X+er8zS2P14E64eqsVNoWbMCT7MpmQ+ErAhgRg==}
engines: {node: '>= 0.10.0'} engines: {node: '>= 0.10.0'}
dependencies: dependencies:
accepts: 1.3.8 accepts: 1.3.8
array-flatten: 1.1.1 array-flatten: 1.1.1
body-parser: 1.19.2 body-parser: 1.20.0
content-disposition: 0.5.4 content-disposition: 0.5.4
content-type: 1.0.4 content-type: 1.0.4
cookie: 0.4.2 cookie: 0.5.0
cookie-signature: 1.0.6 cookie-signature: 1.0.6
debug: 2.6.9 debug: 2.6.9
depd: 1.1.2 depd: 2.0.0
encodeurl: 1.0.2 encodeurl: 1.0.2
escape-html: 1.0.3 escape-html: 1.0.3
etag: 1.8.1 etag: 1.8.1
finalhandler: 1.1.2 finalhandler: 1.2.0
fresh: 0.5.2 fresh: 0.5.2
http-errors: 2.0.0
merge-descriptors: 1.0.1 merge-descriptors: 1.0.1
methods: 1.1.2 methods: 1.1.2
on-finished: 2.3.0 on-finished: 2.4.1
parseurl: 1.3.3 parseurl: 1.3.3
path-to-regexp: 0.1.7 path-to-regexp: 0.1.7
proxy-addr: 2.0.7 proxy-addr: 2.0.7
qs: 6.9.7 qs: 6.10.3
range-parser: 1.2.1 range-parser: 1.2.1
safe-buffer: 5.2.1 safe-buffer: 5.2.1
send: 0.17.2 send: 0.18.0
serve-static: 1.14.2 serve-static: 1.15.0
setprototypeof: 1.2.0 setprototypeof: 1.2.0
statuses: 1.5.0 statuses: 2.0.1
type-is: 1.6.18 type-is: 1.6.18
utils-merge: 1.0.1 utils-merge: 1.0.1
vary: 1.1.2 vary: 1.1.2
...@@ -3122,16 +3183,16 @@ packages: ...@@ -3122,16 +3183,16 @@ packages:
dependencies: dependencies:
to-regex-range: 5.0.1 to-regex-range: 5.0.1
/finalhandler/1.1.2: /finalhandler/1.2.0:
resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==} resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
engines: {node: '>= 0.8'} engines: {node: '>= 0.8'}
dependencies: dependencies:
debug: 2.6.9 debug: 2.6.9
encodeurl: 1.0.2 encodeurl: 1.0.2
escape-html: 1.0.3 escape-html: 1.0.3
on-finished: 2.3.0 on-finished: 2.4.1
parseurl: 1.3.3 parseurl: 1.3.3
statuses: 1.5.0 statuses: 2.0.1
unpipe: 1.0.0 unpipe: 1.0.0
dev: true dev: true
...@@ -3557,14 +3618,14 @@ packages: ...@@ -3557,14 +3618,14 @@ packages:
entities: 3.0.1 entities: 3.0.1
dev: true dev: true
/http-errors/1.8.1: /http-errors/2.0.0:
resolution: {integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==} resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
engines: {node: '>= 0.6'} engines: {node: '>= 0.8'}
dependencies: dependencies:
depd: 1.1.2 depd: 2.0.0
inherits: 2.0.4 inherits: 2.0.4
setprototypeof: 1.2.0 setprototypeof: 1.2.0
statuses: 1.5.0 statuses: 2.0.1
toidentifier: 1.0.1 toidentifier: 1.0.1
dev: true dev: true
...@@ -3800,7 +3861,6 @@ packages: ...@@ -3800,7 +3861,6 @@ packages:
/is-plain-object/5.0.0: /is-plain-object/5.0.0:
resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
engines: {node: '>=0.10.0'} engines: {node: '>=0.10.0'}
dev: true
/is-regex/1.1.4: /is-regex/1.1.4:
resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
...@@ -3991,8 +4051,8 @@ packages: ...@@ -3991,8 +4051,8 @@ packages:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
dev: true dev: true
/lint-staged/12.4.0: /lint-staged/12.4.1:
resolution: {integrity: sha512-3X7MR0h9b7qf4iXf/1n7RlVAx+EzpAZXoCEMhVSpaBlgKDfH2ewf+QUm7BddFyq29v4dgPP+8+uYpWuSWx035A==} resolution: {integrity: sha512-PTXgzpflrQ+pODQTG116QNB+Q6uUTDg5B5HqGvNhoQSGt8Qy+MA/6zSnR8n38+sxP5TapzeQGTvoKni0KRS8Vg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
hasBin: true hasBin: true
dependencies: dependencies:
...@@ -4461,8 +4521,8 @@ packages: ...@@ -4461,8 +4521,8 @@ packages:
object-keys: 1.1.1 object-keys: 1.1.1
dev: true dev: true
/on-finished/2.3.0: /on-finished/2.4.1:
resolution: {integrity: sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=} resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
engines: {node: '>= 0.8'} engines: {node: '>= 0.8'}
dependencies: dependencies:
ee-first: 1.1.1 ee-first: 1.1.1
...@@ -4694,6 +4754,24 @@ packages: ...@@ -4694,6 +4754,24 @@ packages:
dev: true dev: true
optional: true optional: true
/pinia/2.0.13_typescript@4.6.3+vue@3.2.33:
resolution: {integrity: sha512-B7rSqm1xNpwcPMnqns8/gVBfbbi7lWTByzS6aPZ4JOXSJD4Y531rZHDCoYWBwLyHY/8hWnXljgiXp6rRyrofcw==}
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.1.4
typescript: 4.6.3
vue: 3.2.33
vue-demi: 0.12.5_vue@3.2.33
dev: false
/pont-engine/1.3.1: /pont-engine/1.3.1:
resolution: {integrity: sha512-o/Ljo0ScUXQCClQ5Yy0VX7wucRUsdkk6NGM8mYPkfiuHqF52NTNbzKaYHrhiXHSB6POJy2VdKMKLNKAvendRbw==} resolution: {integrity: sha512-o/Ljo0ScUXQCClQ5Yy0VX7wucRUsdkk6NGM8mYPkfiuHqF52NTNbzKaYHrhiXHSB6POJy2VdKMKLNKAvendRbw==}
hasBin: true hasBin: true
...@@ -4910,12 +4988,6 @@ packages: ...@@ -4910,12 +4988,6 @@ packages:
engines: {node: '>=0.6'} engines: {node: '>=0.6'}
dependencies: dependencies:
side-channel: 1.0.4 side-channel: 1.0.4
dev: false
/qs/6.9.7:
resolution: {integrity: sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw==}
engines: {node: '>=0.6'}
dev: true
/queue-microtask/1.2.3: /queue-microtask/1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
...@@ -4930,12 +5002,12 @@ packages: ...@@ -4930,12 +5002,12 @@ packages:
engines: {node: '>= 0.6'} engines: {node: '>= 0.6'}
dev: true dev: true
/raw-body/2.4.3: /raw-body/2.5.1:
resolution: {integrity: sha512-UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g==} resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==}
engines: {node: '>= 0.8'} engines: {node: '>= 0.8'}
dependencies: dependencies:
bytes: 3.1.2 bytes: 3.1.2
http-errors: 1.8.1 http-errors: 2.0.0
iconv-lite: 0.4.24 iconv-lite: 0.4.24
unpipe: 1.0.0 unpipe: 1.0.0
dev: true dev: true
...@@ -5157,14 +5229,6 @@ packages: ...@@ -5157,14 +5229,6 @@ packages:
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
hasBin: true hasBin: true
/semver/7.3.5:
resolution: {integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==}
engines: {node: '>=10'}
hasBin: true
dependencies:
lru-cache: 6.0.0
dev: true
/semver/7.3.7: /semver/7.3.7:
resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==} resolution: {integrity: sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==}
engines: {node: '>=10'} engines: {node: '>=10'}
...@@ -5173,33 +5237,33 @@ packages: ...@@ -5173,33 +5237,33 @@ packages:
lru-cache: 6.0.0 lru-cache: 6.0.0
dev: true dev: true
/send/0.17.2: /send/0.18.0:
resolution: {integrity: sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww==} resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'} engines: {node: '>= 0.8.0'}
dependencies: dependencies:
debug: 2.6.9 debug: 2.6.9
depd: 1.1.2 depd: 2.0.0
destroy: 1.0.4 destroy: 1.2.0
encodeurl: 1.0.2 encodeurl: 1.0.2
escape-html: 1.0.3 escape-html: 1.0.3
etag: 1.8.1 etag: 1.8.1
fresh: 0.5.2 fresh: 0.5.2
http-errors: 1.8.1 http-errors: 2.0.0
mime: 1.6.0 mime: 1.6.0
ms: 2.1.3 ms: 2.1.3
on-finished: 2.3.0 on-finished: 2.4.1
range-parser: 1.2.1 range-parser: 1.2.1
statuses: 1.5.0 statuses: 2.0.1
dev: true dev: true
/serve-static/1.14.2: /serve-static/1.15.0:
resolution: {integrity: sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ==} resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
engines: {node: '>= 0.8.0'} engines: {node: '>= 0.8.0'}
dependencies: dependencies:
encodeurl: 1.0.2 encodeurl: 1.0.2
escape-html: 1.0.3 escape-html: 1.0.3
parseurl: 1.3.3 parseurl: 1.3.3
send: 0.17.2 send: 0.18.0
dev: true dev: true
/setprototypeof/1.2.0: /setprototypeof/1.2.0:
...@@ -5359,9 +5423,9 @@ packages: ...@@ -5359,9 +5423,9 @@ packages:
readable-stream: 3.6.0 readable-stream: 3.6.0
dev: true dev: true
/statuses/1.5.0: /statuses/2.0.1:
resolution: {integrity: sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=} resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.6'} engines: {node: '>= 0.8'}
dev: true dev: true
/string-argv/0.3.1: /string-argv/0.3.1:
...@@ -5497,7 +5561,7 @@ packages: ...@@ -5497,7 +5561,7 @@ packages:
resolution: {integrity: sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI=} resolution: {integrity: sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI=}
dev: true dev: true
/stylelint-config-html/1.0.0_1a82b100232bbe7036ec0a7ca7a4baf4: /stylelint-config-html/1.0.0_1ccc7ea06e27768b66bc00a052168bcb:
resolution: {integrity: sha512-rKQUUWDpaYC7ybsS6tLxddjn6DxhjSIXybElSmcTyVQj3ExhmU3q+l41ktrlwHRyY0M5SkTkZiwngvYPYmsgSQ==} resolution: {integrity: sha512-rKQUUWDpaYC7ybsS6tLxddjn6DxhjSIXybElSmcTyVQj3ExhmU3q+l41ktrlwHRyY0M5SkTkZiwngvYPYmsgSQ==}
engines: {node: ^12 || >=14} engines: {node: ^12 || >=14}
peerDependencies: peerDependencies:
...@@ -5505,48 +5569,48 @@ packages: ...@@ -5505,48 +5569,48 @@ packages:
stylelint: '>=14.0.0' stylelint: '>=14.0.0'
dependencies: dependencies:
postcss-html: 1.4.1 postcss-html: 1.4.1
stylelint: 14.7.1 stylelint: 14.8.0
dev: true dev: true
/stylelint-config-prettier/9.0.3_stylelint@14.7.1: /stylelint-config-prettier/9.0.3_stylelint@14.8.0:
resolution: {integrity: sha512-5n9gUDp/n5tTMCq1GLqSpA30w2sqWITSSEiAWQlpxkKGAUbjcemQ0nbkRvRUa0B1LgD3+hCvdL7B1eTxy1QHJg==} resolution: {integrity: sha512-5n9gUDp/n5tTMCq1GLqSpA30w2sqWITSSEiAWQlpxkKGAUbjcemQ0nbkRvRUa0B1LgD3+hCvdL7B1eTxy1QHJg==}
engines: {node: '>= 12'} engines: {node: '>= 12'}
hasBin: true hasBin: true
peerDependencies: peerDependencies:
stylelint: '>=11.0.0' stylelint: '>=11.0.0'
dependencies: dependencies:
stylelint: 14.7.1 stylelint: 14.8.0
dev: true dev: true
/stylelint-config-recommended/7.0.0_stylelint@14.7.1: /stylelint-config-recommended/7.0.0_stylelint@14.8.0:
resolution: {integrity: sha512-yGn84Bf/q41J4luis1AZ95gj0EQwRX8lWmGmBwkwBNSkpGSpl66XcPTulxGa/Z91aPoNGuIGBmFkcM1MejMo9Q==} resolution: {integrity: sha512-yGn84Bf/q41J4luis1AZ95gj0EQwRX8lWmGmBwkwBNSkpGSpl66XcPTulxGa/Z91aPoNGuIGBmFkcM1MejMo9Q==}
peerDependencies: peerDependencies:
stylelint: ^14.4.0 stylelint: ^14.4.0
dependencies: dependencies:
stylelint: 14.7.1 stylelint: 14.8.0
dev: true dev: true
/stylelint-config-standard/25.0.0_stylelint@14.7.1: /stylelint-config-standard/25.0.0_stylelint@14.8.0:
resolution: {integrity: sha512-21HnP3VSpaT1wFjFvv9VjvOGDtAviv47uTp3uFmzcN+3Lt+RYRv6oAplLaV51Kf792JSxJ6svCJh/G18E9VnCA==} resolution: {integrity: sha512-21HnP3VSpaT1wFjFvv9VjvOGDtAviv47uTp3uFmzcN+3Lt+RYRv6oAplLaV51Kf792JSxJ6svCJh/G18E9VnCA==}
peerDependencies: peerDependencies:
stylelint: ^14.4.0 stylelint: ^14.4.0
dependencies: dependencies:
stylelint: 14.7.1 stylelint: 14.8.0
stylelint-config-recommended: 7.0.0_stylelint@14.7.1 stylelint-config-recommended: 7.0.0_stylelint@14.8.0
dev: true dev: true
/stylelint-order/5.0.0_stylelint@14.7.1: /stylelint-order/5.0.0_stylelint@14.8.0:
resolution: {integrity: sha512-OWQ7pmicXufDw5BlRqzdz3fkGKJPgLyDwD1rFY3AIEfIH/LQY38Vu/85v8/up0I+VPiuGRwbc2Hg3zLAsJaiyw==} resolution: {integrity: sha512-OWQ7pmicXufDw5BlRqzdz3fkGKJPgLyDwD1rFY3AIEfIH/LQY38Vu/85v8/up0I+VPiuGRwbc2Hg3zLAsJaiyw==}
peerDependencies: peerDependencies:
stylelint: ^14.0.0 stylelint: ^14.0.0
dependencies: dependencies:
postcss: 8.4.12 postcss: 8.4.12
postcss-sorting: 7.0.1_postcss@8.4.12 postcss-sorting: 7.0.1_postcss@8.4.12
stylelint: 14.7.1 stylelint: 14.8.0
dev: true dev: true
/stylelint/14.7.1: /stylelint/14.8.0:
resolution: {integrity: sha512-rUOWm67hrzGXXyO/cInENEejF4urh1dLgOb9cr/3XLDb/t/A+rXQp3p6+no8o8QCKTgBUdhVUq/bXMgE988PJw==} resolution: {integrity: sha512-uIyIWMSBSVcj73Gn3nTvPyNsYdwTpxo1W6dWTIa1nm8JKgUi3FIobSXLgrRE6joLidoA0FdgAhCaqxwTF2ikrQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
hasBin: true hasBin: true
dependencies: dependencies:
...@@ -5731,7 +5795,7 @@ packages: ...@@ -5731,7 +5795,7 @@ packages:
resolution: {integrity: sha512-TFgTbvbUY73JXIir3A/MUBDkdlstYOIF3PzpzsC8T5FZVCWrRHtdLeICN0G//GblX3vKCg3cSdCnTovq1/utxw==} resolution: {integrity: sha512-TFgTbvbUY73JXIir3A/MUBDkdlstYOIF3PzpzsC8T5FZVCWrRHtdLeICN0G//GblX3vKCg3cSdCnTovq1/utxw==}
dependencies: dependencies:
'@types/blueimp-md5': 2.18.0 '@types/blueimp-md5': 2.18.0
'@types/node': 12.20.48 '@types/node': 12.20.50
blueimp-md5: 2.19.0 blueimp-md5: 2.19.0
tslib: 1.14.1 tslib: 1.14.1
dev: true dev: true
...@@ -5741,7 +5805,7 @@ packages: ...@@ -5741,7 +5805,7 @@ packages:
engines: {node: '>=8'} engines: {node: '>=8'}
dev: true dev: true
/ts-node/10.7.0_de7c86b0cde507c63a0402da5b982bd3: /ts-node/10.7.0_5281fe59fc32158e106b8b5e2bebb315:
resolution: {integrity: sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A==} resolution: {integrity: sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A==}
hasBin: true hasBin: true
peerDependencies: peerDependencies:
...@@ -5760,8 +5824,8 @@ packages: ...@@ -5760,8 +5824,8 @@ packages:
'@tsconfig/node12': 1.0.9 '@tsconfig/node12': 1.0.9
'@tsconfig/node14': 1.0.1 '@tsconfig/node14': 1.0.1
'@tsconfig/node16': 1.0.2 '@tsconfig/node16': 1.0.2
'@types/node': 17.0.25 '@types/node': 17.0.29
acorn: 8.7.0 acorn: 8.7.1
acorn-walk: 8.2.0 acorn-walk: 8.2.0
arg: 4.1.3 arg: 4.1.3
create-require: 1.1.1 create-require: 1.1.1
...@@ -5850,10 +5914,10 @@ packages: ...@@ -5850,10 +5914,10 @@ packages:
dev: true dev: true
optional: true optional: true
/unbox-primitive/1.0.1: /unbox-primitive/1.0.2:
resolution: {integrity: sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==} resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
dependencies: dependencies:
function-bind: 1.1.1 call-bind: 1.0.2
has-bigints: 1.0.2 has-bigints: 1.0.2
has-symbols: 1.0.3 has-symbols: 1.0.3
which-boxed-primitive: 1.0.2 which-boxed-primitive: 1.0.2
...@@ -5873,7 +5937,7 @@ packages: ...@@ -5873,7 +5937,7 @@ packages:
engines: {node: '>= 0.8'} engines: {node: '>= 0.8'}
dev: true dev: true
/unplugin-auto-import/0.7.1_@vueuse+core@8.3.1+vite@2.9.5: /unplugin-auto-import/0.7.1_@vueuse+core@8.3.1+vite@2.9.6:
resolution: {integrity: sha512-9865OV9eP99PNxHR2mtTDExeN01m4M9boT5U2BtIwsU1wDRsaFIYWLwcCBEjvXzXfTTC2NNMskhHGVAMfL2WgA==} resolution: {integrity: sha512-9865OV9eP99PNxHR2mtTDExeN01m4M9boT5U2BtIwsU1wDRsaFIYWLwcCBEjvXzXfTTC2NNMskhHGVAMfL2WgA==}
engines: {node: '>=14'} engines: {node: '>=14'}
peerDependencies: peerDependencies:
...@@ -5888,7 +5952,7 @@ packages: ...@@ -5888,7 +5952,7 @@ packages:
local-pkg: 0.4.1 local-pkg: 0.4.1
magic-string: 0.26.1 magic-string: 0.26.1
resolve: 1.22.0 resolve: 1.22.0
unplugin: 0.6.2_vite@2.9.5 unplugin: 0.6.2_vite@2.9.6
transitivePeerDependencies: transitivePeerDependencies:
- esbuild - esbuild
- rollup - rollup
...@@ -5896,7 +5960,7 @@ packages: ...@@ -5896,7 +5960,7 @@ packages:
- webpack - webpack
dev: true dev: true
/unplugin/0.6.2_vite@2.9.5: /unplugin/0.6.2_vite@2.9.6:
resolution: {integrity: sha512-+QONc2uBFQbeo4x5mlJHjTKjR6pmuchMpGVrWhwdGFFMb4ttFZ4E9KqhOOrNcm3Q8NNyB1vJ4s5e36IZC7UWYw==} resolution: {integrity: sha512-+QONc2uBFQbeo4x5mlJHjTKjR6pmuchMpGVrWhwdGFFMb4ttFZ4E9KqhOOrNcm3Q8NNyB1vJ4s5e36IZC7UWYw==}
peerDependencies: peerDependencies:
esbuild: '>=0.13' esbuild: '>=0.13'
...@@ -5914,7 +5978,7 @@ packages: ...@@ -5914,7 +5978,7 @@ packages:
optional: true optional: true
dependencies: dependencies:
chokidar: 3.5.3 chokidar: 3.5.3
vite: 2.9.5_less@4.1.2+stylus@0.56.0 vite: 2.9.6_less@4.1.2+stylus@0.56.0
webpack-sources: 3.2.3 webpack-sources: 3.2.3
webpack-virtual-modules: 0.4.3 webpack-virtual-modules: 0.4.3
dev: true dev: true
...@@ -5963,8 +6027,8 @@ packages: ...@@ -5963,8 +6027,8 @@ packages:
engines: {node: '>= 0.8'} engines: {node: '>= 0.8'}
dev: true dev: true
/vite/2.9.5_less@4.1.2+stylus@0.56.0: /vite/2.9.6_less@4.1.2+stylus@0.56.0:
resolution: {integrity: sha512-dvMN64X2YEQgSXF1lYabKXw3BbN6e+BL67+P3Vy4MacnY+UzT1AfkHiioFSi9+uiDUiaDy7Ax/LQqivk6orilg==} resolution: {integrity: sha512-3IffdrByHW95Yjv0a13TQOQfJs7L5dVlSPuTt432XLbRMriWbThqJN2k/IS6kXn5WY4xBLhK9XoaWay1B8VzUw==}
engines: {node: '>=12.2.0'} engines: {node: '>=12.2.0'}
hasBin: true hasBin: true
peerDependencies: peerDependencies:
...@@ -6022,6 +6086,19 @@ packages: ...@@ -6022,6 +6086,19 @@ packages:
- supports-color - supports-color
dev: true dev: true
/vue-i18n/9.2.0-beta.35_vue@3.2.33:
resolution: {integrity: sha512-kTYzZSB3B/ar3M9RfQ0KAyTGfvRw544qVzY++/sNV4stOKG6NxIDOdHdYTfVEXTSkczFwoZHTKXTWNVpx+GuHA==}
engines: {node: '>= 12'}
peerDependencies:
vue: ^3.0.0
dependencies:
'@intlify/core-base': 9.2.0-beta.35
'@intlify/shared': 9.2.0-beta.35
'@intlify/vue-devtools': 9.2.0-beta.35
'@vue/devtools-api': 6.1.4
vue: 3.2.33
dev: false
/vue-router/4.0.14_vue@3.2.33: /vue-router/4.0.14_vue@3.2.33:
resolution: {integrity: sha512-wAO6zF9zxA3u+7AkMPqw9LjoUCjSxfFvINQj3E/DceTt6uEz1XZLraDhdg2EYmvVwTBSGlLYsUw8bDmx0754Mw==} resolution: {integrity: sha512-wAO6zF9zxA3u+7AkMPqw9LjoUCjSxfFvINQj3E/DceTt6uEz1XZLraDhdg2EYmvVwTBSGlLYsUw8bDmx0754Mw==}
peerDependencies: peerDependencies:
...@@ -6031,6 +6108,16 @@ packages: ...@@ -6031,6 +6108,16 @@ packages:
vue: 3.2.33 vue: 3.2.33
dev: false dev: false
/vue-types/4.1.1_vue@3.2.33:
resolution: {integrity: sha512-Jq2GZ/w6rExJbLA/h7nHBFLciu+YNekgox0DB64wN1snZ4IIJMq+qnqp1/vE4fc7vEjZcP5KGhLzkkSjIHLRzw==}
engines: {node: '>=12.16.0'}
peerDependencies:
vue: ^2.0.0 || ^3.0.0
dependencies:
is-plain-object: 5.0.0
vue: 3.2.33
dev: false
/vue/3.2.33: /vue/3.2.33:
resolution: {integrity: sha512-si1ExAlDUrLSIg/V7D/GgA4twJwfsfgG+t9w10z38HhL/HA07132pUQ2KuwAo8qbCyMJ9e6OqrmWrOCr+jW7ZQ==} resolution: {integrity: sha512-si1ExAlDUrLSIg/V7D/GgA4twJwfsfgG+t9w10z38HhL/HA07132pUQ2KuwAo8qbCyMJ9e6OqrmWrOCr+jW7ZQ==}
dependencies: dependencies:
......
import { set } from 'lodash-es'
export function genMessage(langs: Record<string, Record<string, any>>, prefix = 'lang') {
const obj: Recordable = {}
Object.keys(langs).forEach((key) => {
const langFileModule = langs[key].default
let fileName = key.replace(`./${prefix}/`, '').replace(/^\.\//, '')
const lastIndex = fileName.lastIndexOf('.')
fileName = fileName.substring(0, lastIndex)
const keyList = fileName.split('/')
const moduleName = keyList.shift()
const objKey = keyList.join('.')
if (moduleName) {
if (objKey) {
set(obj, moduleName, obj[moduleName] || {})
set(obj[moduleName], objKey, langFileModule)
} else {
set(obj, moduleName, langFileModule || {})
}
}
})
return obj
}
import type { App } from 'vue'
import type { I18n, I18nOptions } from 'vue-i18n'
import { createI18n } from 'vue-i18n'
export let i18n: ReturnType<typeof createI18n>
async function createI18nOptions(): Promise<I18nOptions> {
const locale = uni.getLocale() || 'zh-Hans'
const defaultLocal = await import(`./lang/${locale}.ts`)
const message = defaultLocal.default?.message ?? {}
return {
locale,
messages: {
[locale]: message,
},
sync: true,
legacy: false,
missingWarn: false,
globalInjection: true,
silentFallbackWarn: true,
silentTranslationWarn: true,
}
}
// setup i18n instance with glob
export async function setupI18n(app: App) {
const options = await createI18nOptions()
i18n = createI18n(options) as I18n
app.use(i18n)
}
import { genMessage } from '../helper'
const modules = import.meta.globEager('./zh-Hans/**/*.json')
export default {
message: {
...genMessage(modules, 'zh-Hans'),
},
}
{
"okText": "确认",
"closeText": "关闭",
"cancelText": "取消",
"loadingText": "加载中...",
"saveText": "保存",
"delText": "删除",
"resetText": "重置",
"searchText": "搜索",
"queryText": "查询",
"inputText": "请输入",
"chooseText": "请选择",
"redo": "刷新",
"back": "返回"
}
import { createSSRApp } from 'vue' import { createSSRApp } from 'vue'
import * as Pinia from 'pinia'
import App from './App.vue' import App from './App.vue'
import { setupAppConfig } from '/@/config/app' import { setupAppConfig } from '/@/config/app'
import { setupStore } from '/@/store'
import { setupI18n } from '/@/locales'
export function createApp() { export function createApp() {
const app = createSSRApp(App) const app = createSSRApp(App)
...@@ -11,7 +14,14 @@ export function createApp() { ...@@ -11,7 +14,14 @@ export function createApp() {
setupAppConfig() setupAppConfig()
// #endif // #endif
// 配置 store
setupStore(app)
// 配置 i18n
setupI18n(app)
return { return {
app, app,
Pinia,
} }
} }
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
<view class="text-area"> <view class="text-area">
<text class="title">{{ title }}</text> <text class="title">{{ title }}</text>
</view> </view>
<view class="title">{{ $t('app.hello') }}</view>
</view> </view>
</template> </template>
......
import type { App } from 'vue'
import { createPinia } from 'pinia'
const store = createPinia()
export function setupStore(app: App<Element>) {
app.use(store)
}
export { store }
import { defineStore } from 'pinia'
import { store } from '/@/store'
interface AppState {
// Page loading status
pageLoading: boolean
}
export const useAppStore = defineStore({
id: 'app',
state: (): AppState => ({
pageLoading: false,
}),
getters: {
getPageLoading(): boolean {
return this.pageLoading
},
},
actions: {
setPageLoading(loading: boolean): void {
this.pageLoading = loading
},
},
})
// Need to be used outside the setup
export function useAppStoreWithOut() {
return useAppStore(store)
}
...@@ -72,6 +72,7 @@ declare global { ...@@ -72,6 +72,7 @@ declare global {
const useAttrs: typeof import('vue')['useAttrs'] const useAttrs: typeof import('vue')['useAttrs']
const useCssModule: typeof import('vue')['useCssModule'] const useCssModule: typeof import('vue')['useCssModule']
const useCssVars: typeof import('vue')['useCssVars'] const useCssVars: typeof import('vue')['useCssVars']
const useI18n: typeof import('vue-i18n')['useI18n']
const useSlots: typeof import('vue')['useSlots'] const useSlots: typeof import('vue')['useSlots']
const watch: typeof import('vue')['watch'] const watch: typeof import('vue')['watch']
const watchEffect: typeof import('vue')['watchEffect'] const watchEffect: typeof import('vue')['watchEffect']
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论