@ganwei-web/ganwei-pc-cli 6.2.2 → 6.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ganwei-app-6.2.1/moduleConfiguration/copyFile.js +8 -14
- package/ganwei-app-6.2.1/moduleConfiguration/init.js +2 -8
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.babelrc +4 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.editorconfig +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.env.development +23 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.env.production +29 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.env.test +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.eslintignore +13 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.eslintrc.cjs +178 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.prettierignore +13 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/.prettierrc.cjs +37 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/auto-imports.d.ts +5 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/banner.js +9 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/build-version.js +42 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/bulidList.js +26 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/enteryJson.js +108 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/filterStatic.js +64 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/init.js +27 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/look-dir.js +24 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/rollup-options.js +35 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/test.js +3 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/build/vite-plugin-stats-html.js +595 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/components.d.ts +20 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/env.d.ts +7 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/index.html +20 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/package-lock.json +3965 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/package.json +69 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/pnpm-lock.yaml +5034 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/css/index-plus-vars.css +93 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/css/index-plus.css +1 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/css/index.css +15926 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/css/pptxjs.css +161 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/font/iconfont.css +1135 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/font/iconfont.js +1 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/font/iconfont.json +1969 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/font/iconfont.ttf +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/font/iconfont.woff +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/font/iconfont.woff2 +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/language/en-US/noPage.json +3 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/language/zh-CN/noPage.json +3 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/language/zh-HK/noPage.json +3 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/themes/dark.css +77 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/themes/default-theme.js +34 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/public/static/themes/light.css +79 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/App.vue +198 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/.sass-cache/59ae6c3370e48597956c7d0775238711a2c22a84/index.scssc +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/.sass-cache/59ae6c3370e48597956c7d0775238711a2c22a84/linkSetting.scssc +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/.sass-cache/59ae6c3370e48597956c7d0775238711a2c22a84/sceneSetting.scssc +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/.sass-cache/59ae6c3370e48597956c7d0775238711a2c22a84/specialTask.scssc +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/.sass-cache/59ae6c3370e48597956c7d0775238711a2c22a84/style.scssc +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/.sass-cache/59ae6c3370e48597956c7d0775238711a2c22a84/weekTask.scssc +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/VideoSystem.scss +397 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/el-dialog.scss +58 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/el-drawer.scss +41 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/index.scss +1052 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/login.scss +320 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/mobileStyle.scss +332 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/noDataTips.scss +57 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/reset.scss +1192 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/style-black.scss +1 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/style-white.scss +1 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/style.scss +633 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/videoPlaybackCom.scss +468 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/css/videoPlayer.scss +441 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/images/logo.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/assets/plugins/encrypt.js +122 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/appFrame/appFrame.vue +163 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/appFrame/bottom.vue +15 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/appFrame/css/bottom.scss +381 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/appFrame/css/top.scss +49 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/appFrame/js/Voice.js +345 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/appFrame/js/bottom.js +102 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/appFrame/top.vue +114 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/i18n/i18n.js +42 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/i18n/i18nObserver.js +39 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/i18n/vueI18n.js +17 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/toast/index.js +64 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/components/toast/index.vue +152 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/hostMap.js +9 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/main.js +39 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/Auth.js +83 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/BA.js +81 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/EquipList.js +127 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/Event.js +34 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/GwEcharts.js +9 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/PPT.js +5 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/RealTime.js +43 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/SystemConfig.js +177 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/Video.js +57 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/VideoTour.js +129 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/WelcomeWord.js +24 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/WorkOrder.js +265 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api/videoSystem.js +81 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/api.js +35 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/apiFunction.js +200 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/encrypt.js +14 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/request/http.js +186 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/router.js +31 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/store.js +189 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/types.js +16 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/utils/formValidate.js +25 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/utils/isApp.js +18 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/utils/language.js +45 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/utils/myUtils.js +643 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/utils/timeFormat.js +23 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/utils/timesYMDHMS.js +27 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/src/views/ganwei-app-empty-page/src/noPage.vue +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/stats.html +356 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/vite.base.config.js +244 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-empty-page/vite.config.ts +44 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/.babelrc +4 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/.editorconfig +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/.env.development +23 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/.env.production +29 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/.env.test +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/.eslintignore +13 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/.eslintrc.cjs +178 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/.prettierignore +13 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/.prettierrc.cjs +37 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/.stylelintrc.cjs +18 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/auto-imports.d.ts +56 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/components.d.ts +25 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/env.d.ts +21 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/index.html +20 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/package.json +87 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/public/static/language/en-US/home.json +39 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/public/static/language/zh-CN/home.json +39 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/public/static/language/zh-HK/home.json +39 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/App.vue +203 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/assets/images/logo.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/components/Layout/TitleList.vue +20 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/enums/index.ts +24 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/main.ts +29 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/models/index.ts +91 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/request/api/RealTime.ts +27 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/request/api.ts +5 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/router.ts +30 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/store.js +189 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/types.js +16 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/components/HomeMenuItem.vue +95 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/components/HomeMenus.vue +118 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/components/HomeMenusEditDrawer.vue +119 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/components/HomeSnapshots.vue +109 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/components/chatbot.vue +96 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/components/eslint.config.js +10 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/css/index.scss +5 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/img/chatbot.gif +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/img/six.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/index.vue +42 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/js/useLanguageStyle.ts +21 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/js/useManageMenus.ts +38 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/js/useMenus.ts +49 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/js/usePolling.ts +38 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/src/views/ganwei-app-home/src/js/useRealTime.ts +128 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/stats.html +4975 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/tsconfig.json +58 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/types/gw-app-public.d.ts +4 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/vite.base.config.ts +233 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-home/vite.config.ts +49 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-index/index.html +1 -2
- package/ganwei-app-6.2.1/packages/ganwei-app-index/public/static/json/config.json +2 -2
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/components/vue-qrcode-reader/src/misc/util.js +4 -10
- package/ganwei-app-6.2.1/packages/ganwei-app-index/src/types.js +1 -1
- package/ganwei-app-6.2.1/packages/ganwei-app-login/.babelrc +4 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/.editorconfig +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/.env.development +23 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/.env.production +29 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/.env.test +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/.eslintignore +13 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/.eslintrc.cjs +178 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/.prettierignore +13 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/.prettierrc.cjs +37 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/.stylelintrc.cjs +16 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/auto-imports.d.ts +5 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/env.d.ts +67 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/index.html +20 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/package.json +79 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/public/static/language/en-US/login.json +48 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/public/static/language/zh-CN/login.json +48 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/public/static/language/zh-HK/login.json +48 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/App.vue +225 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/assets/images/bg.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/assets/images/logo.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/assets/images/refresh.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/components/app-drag/index.vue +183 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/hostMap.ts +11 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/main.ts +19 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/models/index.ts +48 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/request/api/Auth.ts +27 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/request/api.ts +5 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/router.ts +30 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/views/login/Login.vue +99 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/views/login/css/login.scss +78 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/views/login/js/useLogin.ts +73 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/src/views/login/js/useRememberPassword.ts +48 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/stats.html +4975 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/tsconfig.json +56 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/types/gw-app-public.d.ts +4 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/vite.base.config.ts +233 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-login/vite.config.ts +51 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.babelrc +4 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.editorconfig +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.env.development +23 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.env.production +29 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.env.test +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.eslintignore +13 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.eslintrc.cjs +178 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.prettierignore +13 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.prettierrc.cjs +37 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/.stylelintrc.cjs +17 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/auto-imports.d.ts +5 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/env.d.ts +21 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/index.html +20 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/package.json +85 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/public/static/language/en-US/setPage.json +25 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/public/static/language/zh-CN/setPage.json +25 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/public/static/language/zh-HK/setPage.json +25 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/App.vue +202 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/assets/images/logo.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/components/buttonModeSelect/index.vue +190 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/hostMap.ts +11 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/main.ts +24 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/models/index.ts +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/request/api/Auth.ts +21 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/request/api.ts +5 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/router.ts +29 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/store.js +189 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/types.js +16 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/views/ganwei-app-setPage/src/js/useChangeLanguage.ts +19 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/views/ganwei-app-setPage/src/js/useChangeTheme.ts +16 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/views/ganwei-app-setPage/src/js/useClearCache.ts +26 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/views/ganwei-app-setPage/src/js/useJavaFunc.ts +146 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/views/ganwei-app-setPage/src/js/useLogout.ts +52 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/src/views/ganwei-app-setPage/src/setPage.vue +120 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/stats.html +4975 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/tsconfig.json +58 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/types/gw-app-public.d.ts +4 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/vite.base.config.ts +233 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-set-page/vite.config.ts +49 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/.babelrc +4 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/.editorconfig +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/.env.development +23 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/.env.production +29 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/.env.test +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/.eslintignore +13 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/.eslintrc.cjs +178 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/.prettierignore +13 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/.prettierrc.cjs +37 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/auto-imports.d.ts +5 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/components.d.ts +14 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/env.d.ts +7 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/index.html +18 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/package.json +77 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/public/static/language/en-US/template.json +3 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/public/static/language/zh-CN/template.json +3 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/public/static/language/zh-HK/template.json +3 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/App.vue +202 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/assets/images/logo.png +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/components/buttonModeSelect/index.vue +190 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/hostMap.ts +11 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/main.ts +24 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/models/index.ts +0 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/request/api/Auth.ts +21 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/request/api.ts +5 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/router.ts +29 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/store.js +189 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/types.js +16 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/src/views/ganwei-app-template/src/template.vue +22 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/tsconfig.json +58 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/types/gw-app-public.d.ts +4 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/vite.base.config.js +246 -0
- package/ganwei-app-6.2.1/packages/ganwei-app-template/vite.config.ts +44 -0
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/public/static/json/config.json +47 -43
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/components/isDebug/isDebug.vue +2 -9
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/types.js +1 -1
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/views/index.js +0 -3
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-index/src/views/jumpIframe/preloadMethod.js +3 -3
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/assets/css/login.scss +50 -30
- package/ganwei-iotcenter-index-6.2.1/packages/ganwei-iotcenter-login/src/types.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,3965 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ganwei-app-empty-page",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"lockfileVersion": 2,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "ganwei-app-empty-page",
|
|
9
|
+
"version": "0.0.0",
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"@babel/core": "^7.20.12",
|
|
12
|
+
"@babel/eslint-parser": "^7.19.1",
|
|
13
|
+
"@element-plus/icons-vue": "^2.1.0",
|
|
14
|
+
"axios": "^1.4.0",
|
|
15
|
+
"barcode-detector": "^1.0.3",
|
|
16
|
+
"callforth": "^0.4.0",
|
|
17
|
+
"dayjs": "^1.10.5",
|
|
18
|
+
"element-plus": "^2.3.4",
|
|
19
|
+
"element-ui": "^2.15.3",
|
|
20
|
+
"esbuild": "^0.19.2",
|
|
21
|
+
"eslint-config-prettier": "^8.6.0",
|
|
22
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
23
|
+
"jquery": "^3.7.0",
|
|
24
|
+
"js-base64": "^2.6.4",
|
|
25
|
+
"jsencrypt": "^3.0.0-rc.1",
|
|
26
|
+
"less": "^4.1.3",
|
|
27
|
+
"moment": "^2.29.4",
|
|
28
|
+
"prettier": "^2.8.3",
|
|
29
|
+
"sass": "^1.62.1",
|
|
30
|
+
"sass-loader": "^13.2.2",
|
|
31
|
+
"scss": "^0.2.4",
|
|
32
|
+
"svelte": "^3.58.0",
|
|
33
|
+
"svelte-preprocess": "^5.0.3",
|
|
34
|
+
"unplugin-vue-components": "^0.24.1",
|
|
35
|
+
"vite-plugin-compression": "^0.5.1",
|
|
36
|
+
"vite-plugin-eslint": "^1.8.1",
|
|
37
|
+
"vue": "^3.2.2",
|
|
38
|
+
"vue-i18n": "9.3.0-beta.24",
|
|
39
|
+
"vue-property-decorator": "^9.1.2",
|
|
40
|
+
"vue-router": "^4.1.6",
|
|
41
|
+
"vue-slicksort": "^2.0.0",
|
|
42
|
+
"vuex": "^4.0.2",
|
|
43
|
+
"webrtc-adapter": "^7.7.0",
|
|
44
|
+
"wujie": "^1.0.18",
|
|
45
|
+
"wujie-vue2": "^1.0.18"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
|
49
|
+
"@types/node": "^18.11.19",
|
|
50
|
+
"@typescript-eslint/eslint-plugin": "^5.50.0",
|
|
51
|
+
"@typescript-eslint/parser": "^5.50.0",
|
|
52
|
+
"@vitejs/plugin-vue": "^2.2.0",
|
|
53
|
+
"autoprefixer": "^10.4.13",
|
|
54
|
+
"d": "^1.0.1",
|
|
55
|
+
"eslint": "^8.33.0",
|
|
56
|
+
"eslint-plugin-vue": "^9.9.0",
|
|
57
|
+
"postcss-pxtorem": "^6.0.0",
|
|
58
|
+
"rollup-plugin-external-globals": "^0.8.0",
|
|
59
|
+
"rollup-plugin-visualizer": "^5.9.2",
|
|
60
|
+
"typescript": "^4.9.3",
|
|
61
|
+
"unplugin-auto-import": "^0.13.0",
|
|
62
|
+
"vite": "^4.1.0",
|
|
63
|
+
"vite-plugin-html": "^3.2.0",
|
|
64
|
+
"vite-plugin-static-copy": "^0.17.0",
|
|
65
|
+
"vue-tsc": "^1.0.11"
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"../../node_modules/.pnpm/@babel+core@7.22.17/node_modules/@babel/core": {
|
|
69
|
+
"version": "7.22.17",
|
|
70
|
+
"license": "MIT",
|
|
71
|
+
"dependencies": {
|
|
72
|
+
"@ampproject/remapping": "^2.2.0",
|
|
73
|
+
"@babel/code-frame": "^7.22.13",
|
|
74
|
+
"@babel/generator": "^7.22.15",
|
|
75
|
+
"@babel/helper-compilation-targets": "^7.22.15",
|
|
76
|
+
"@babel/helper-module-transforms": "^7.22.17",
|
|
77
|
+
"@babel/helpers": "^7.22.15",
|
|
78
|
+
"@babel/parser": "^7.22.16",
|
|
79
|
+
"@babel/template": "^7.22.15",
|
|
80
|
+
"@babel/traverse": "^7.22.17",
|
|
81
|
+
"@babel/types": "^7.22.17",
|
|
82
|
+
"convert-source-map": "^1.7.0",
|
|
83
|
+
"debug": "^4.1.0",
|
|
84
|
+
"gensync": "^1.0.0-beta.2",
|
|
85
|
+
"json5": "^2.2.3",
|
|
86
|
+
"semver": "^6.3.1"
|
|
87
|
+
},
|
|
88
|
+
"devDependencies": {
|
|
89
|
+
"@babel/helper-transform-fixture-test-runner": "^7.22.15",
|
|
90
|
+
"@babel/plugin-syntax-flow": "^7.22.5",
|
|
91
|
+
"@babel/plugin-transform-flow-strip-types": "^7.22.5",
|
|
92
|
+
"@babel/plugin-transform-modules-commonjs": "^7.22.15",
|
|
93
|
+
"@babel/preset-env": "^7.22.15",
|
|
94
|
+
"@babel/preset-typescript": "^7.22.15",
|
|
95
|
+
"@jridgewell/trace-mapping": "^0.3.17",
|
|
96
|
+
"@types/convert-source-map": "^1.5.1",
|
|
97
|
+
"@types/debug": "^4.1.0",
|
|
98
|
+
"@types/gensync": "^1.0.0",
|
|
99
|
+
"@types/resolve": "^1.3.2",
|
|
100
|
+
"@types/semver": "^5.4.0",
|
|
101
|
+
"rimraf": "^3.0.0",
|
|
102
|
+
"ts-node": "^10.9.1"
|
|
103
|
+
},
|
|
104
|
+
"engines": {
|
|
105
|
+
"node": ">=6.9.0"
|
|
106
|
+
},
|
|
107
|
+
"funding": {
|
|
108
|
+
"type": "opencollective",
|
|
109
|
+
"url": "https://opencollective.com/babel"
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
"../../node_modules/.pnpm/@babel+eslint-parser@7.22.15_@babel+core@7.22.17_eslint@8.49.0/node_modules/@babel/eslint-parser": {
|
|
113
|
+
"version": "7.22.15",
|
|
114
|
+
"license": "MIT",
|
|
115
|
+
"dependencies": {
|
|
116
|
+
"@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1",
|
|
117
|
+
"eslint-visitor-keys": "^2.1.0",
|
|
118
|
+
"semver": "^6.3.1"
|
|
119
|
+
},
|
|
120
|
+
"devDependencies": {
|
|
121
|
+
"@babel/core": "^7.22.15",
|
|
122
|
+
"dedent": "^0.7.0",
|
|
123
|
+
"eslint": "^8.22.0"
|
|
124
|
+
},
|
|
125
|
+
"engines": {
|
|
126
|
+
"node": "^10.13.0 || ^12.13.0 || >=14.0.0"
|
|
127
|
+
},
|
|
128
|
+
"peerDependencies": {
|
|
129
|
+
"@babel/core": "^7.11.0",
|
|
130
|
+
"eslint": "^7.5.0 || ^8.0.0"
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
"../../node_modules/.pnpm/@babel+plugin-syntax-dynamic-import@7.8.3_@babel+core@7.22.17/node_modules/@babel/plugin-syntax-dynamic-import": {
|
|
134
|
+
"version": "7.8.3",
|
|
135
|
+
"dev": true,
|
|
136
|
+
"license": "MIT",
|
|
137
|
+
"dependencies": {
|
|
138
|
+
"@babel/helper-plugin-utils": "^7.8.0"
|
|
139
|
+
},
|
|
140
|
+
"devDependencies": {
|
|
141
|
+
"@babel/core": "^7.8.0"
|
|
142
|
+
},
|
|
143
|
+
"peerDependencies": {
|
|
144
|
+
"@babel/core": "^7.0.0-0"
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
"../../node_modules/.pnpm/@element-plus+icons-vue@2.1.0_vue@3.3.4/node_modules/@element-plus/icons-vue": {
|
|
148
|
+
"version": "2.1.0",
|
|
149
|
+
"license": "MIT",
|
|
150
|
+
"devDependencies": {
|
|
151
|
+
"@element-plus/icons-svg": "2.1.0",
|
|
152
|
+
"@pnpm/find-workspace-dir": "^5.0.1",
|
|
153
|
+
"@pnpm/find-workspace-packages": "^5.0.37",
|
|
154
|
+
"@pnpm/logger": "^5.0.0",
|
|
155
|
+
"@types/fs-extra": "^11.0.1",
|
|
156
|
+
"@types/node": "^18.14.6",
|
|
157
|
+
"@types/prettier": "^2.7.2",
|
|
158
|
+
"camelcase": "^7.0.1",
|
|
159
|
+
"chalk": "^5.2.0",
|
|
160
|
+
"consola": "^2.15.3",
|
|
161
|
+
"esbuild": "^0.17.11",
|
|
162
|
+
"esbuild-plugin-globals": "^0.1.1",
|
|
163
|
+
"fast-glob": "^3.2.12",
|
|
164
|
+
"fs-extra": "^11.1.0",
|
|
165
|
+
"npm-run-all": "^4.1.5",
|
|
166
|
+
"prettier": "^2.8.4",
|
|
167
|
+
"tsx": "^3.12.3",
|
|
168
|
+
"typescript": "^4.9.5",
|
|
169
|
+
"unplugin-vue": "^4.0.2",
|
|
170
|
+
"vue": "^3.2.47",
|
|
171
|
+
"vue-tsc": "^1.2.0"
|
|
172
|
+
},
|
|
173
|
+
"peerDependencies": {
|
|
174
|
+
"vue": "^3.2.0"
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
"../../node_modules/.pnpm/@types+node@18.17.15/node_modules/@types/node": {
|
|
178
|
+
"version": "18.17.15",
|
|
179
|
+
"dev": true,
|
|
180
|
+
"license": "MIT"
|
|
181
|
+
},
|
|
182
|
+
"../../node_modules/.pnpm/@typescript-eslint+eslint-plugin@5.62.0_@typescript-eslint+parser@5.62.0_eslint@8.49.0_typescript@4.9.5/node_modules/@typescript-eslint/eslint-plugin": {
|
|
183
|
+
"version": "5.62.0",
|
|
184
|
+
"dev": true,
|
|
185
|
+
"license": "MIT",
|
|
186
|
+
"dependencies": {
|
|
187
|
+
"@eslint-community/regexpp": "^4.4.0",
|
|
188
|
+
"@typescript-eslint/scope-manager": "5.62.0",
|
|
189
|
+
"@typescript-eslint/type-utils": "5.62.0",
|
|
190
|
+
"@typescript-eslint/utils": "5.62.0",
|
|
191
|
+
"debug": "^4.3.4",
|
|
192
|
+
"graphemer": "^1.4.0",
|
|
193
|
+
"ignore": "^5.2.0",
|
|
194
|
+
"natural-compare-lite": "^1.4.0",
|
|
195
|
+
"semver": "^7.3.7",
|
|
196
|
+
"tsutils": "^3.21.0"
|
|
197
|
+
},
|
|
198
|
+
"devDependencies": {
|
|
199
|
+
"@types/debug": "*",
|
|
200
|
+
"@types/json-schema": "*",
|
|
201
|
+
"@types/marked": "*",
|
|
202
|
+
"@types/natural-compare-lite": "^1.4.0",
|
|
203
|
+
"@types/prettier": "*",
|
|
204
|
+
"chalk": "^5.0.1",
|
|
205
|
+
"cross-fetch": "^3.1.5",
|
|
206
|
+
"json-schema": "*",
|
|
207
|
+
"markdown-table": "^3.0.2",
|
|
208
|
+
"marked": "^4.0.15",
|
|
209
|
+
"prettier": "*",
|
|
210
|
+
"title-case": "^3.0.3",
|
|
211
|
+
"typescript": "*"
|
|
212
|
+
},
|
|
213
|
+
"engines": {
|
|
214
|
+
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
215
|
+
},
|
|
216
|
+
"funding": {
|
|
217
|
+
"type": "opencollective",
|
|
218
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
219
|
+
},
|
|
220
|
+
"peerDependencies": {
|
|
221
|
+
"@typescript-eslint/parser": "^5.0.0",
|
|
222
|
+
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
223
|
+
},
|
|
224
|
+
"peerDependenciesMeta": {
|
|
225
|
+
"typescript": {
|
|
226
|
+
"optional": true
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
"../../node_modules/.pnpm/@typescript-eslint+parser@5.62.0_eslint@8.49.0_typescript@4.9.5/node_modules/@typescript-eslint/parser": {
|
|
231
|
+
"version": "5.62.0",
|
|
232
|
+
"dev": true,
|
|
233
|
+
"license": "BSD-2-Clause",
|
|
234
|
+
"dependencies": {
|
|
235
|
+
"@typescript-eslint/scope-manager": "5.62.0",
|
|
236
|
+
"@typescript-eslint/types": "5.62.0",
|
|
237
|
+
"@typescript-eslint/typescript-estree": "5.62.0",
|
|
238
|
+
"debug": "^4.3.4"
|
|
239
|
+
},
|
|
240
|
+
"devDependencies": {
|
|
241
|
+
"@types/glob": "*",
|
|
242
|
+
"glob": "*",
|
|
243
|
+
"typescript": "*"
|
|
244
|
+
},
|
|
245
|
+
"engines": {
|
|
246
|
+
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
247
|
+
},
|
|
248
|
+
"funding": {
|
|
249
|
+
"type": "opencollective",
|
|
250
|
+
"url": "https://opencollective.com/typescript-eslint"
|
|
251
|
+
},
|
|
252
|
+
"peerDependencies": {
|
|
253
|
+
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
|
254
|
+
},
|
|
255
|
+
"peerDependenciesMeta": {
|
|
256
|
+
"typescript": {
|
|
257
|
+
"optional": true
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
},
|
|
261
|
+
"../../node_modules/.pnpm/@vitejs+plugin-vue@2.3.4_vite@4.4.9_vue@3.3.4/node_modules/@vitejs/plugin-vue": {
|
|
262
|
+
"version": "2.3.4",
|
|
263
|
+
"dev": true,
|
|
264
|
+
"license": "MIT",
|
|
265
|
+
"devDependencies": {
|
|
266
|
+
"@rollup/pluginutils": "^4.2.1",
|
|
267
|
+
"@types/hash-sum": "^1.0.0",
|
|
268
|
+
"debug": "^4.3.4",
|
|
269
|
+
"hash-sum": "^2.0.0",
|
|
270
|
+
"rollup": ">=2.59.0 <2.78.0",
|
|
271
|
+
"slash": "^4.0.0",
|
|
272
|
+
"source-map": "^0.6.1",
|
|
273
|
+
"vue": "^3.2.33"
|
|
274
|
+
},
|
|
275
|
+
"engines": {
|
|
276
|
+
"node": ">=12.0.0"
|
|
277
|
+
},
|
|
278
|
+
"peerDependencies": {
|
|
279
|
+
"vite": "^2.5.10",
|
|
280
|
+
"vue": "^3.2.25"
|
|
281
|
+
}
|
|
282
|
+
},
|
|
283
|
+
"../../node_modules/.pnpm/autoprefixer@10.4.15_postcss@8.4.29/node_modules/autoprefixer": {
|
|
284
|
+
"version": "10.4.15",
|
|
285
|
+
"dev": true,
|
|
286
|
+
"funding": [
|
|
287
|
+
{
|
|
288
|
+
"type": "opencollective",
|
|
289
|
+
"url": "https://opencollective.com/postcss/"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"type": "tidelift",
|
|
293
|
+
"url": "https://tidelift.com/funding/github/npm/autoprefixer"
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"type": "github",
|
|
297
|
+
"url": "https://github.com/sponsors/ai"
|
|
298
|
+
}
|
|
299
|
+
],
|
|
300
|
+
"license": "MIT",
|
|
301
|
+
"dependencies": {
|
|
302
|
+
"browserslist": "^4.21.10",
|
|
303
|
+
"caniuse-lite": "^1.0.30001520",
|
|
304
|
+
"fraction.js": "^4.2.0",
|
|
305
|
+
"normalize-range": "^0.1.2",
|
|
306
|
+
"picocolors": "^1.0.0",
|
|
307
|
+
"postcss-value-parser": "^4.2.0"
|
|
308
|
+
},
|
|
309
|
+
"bin": {
|
|
310
|
+
"autoprefixer": "bin/autoprefixer"
|
|
311
|
+
},
|
|
312
|
+
"engines": {
|
|
313
|
+
"node": "^10 || ^12 || >=14"
|
|
314
|
+
},
|
|
315
|
+
"peerDependencies": {
|
|
316
|
+
"postcss": "^8.1.0"
|
|
317
|
+
}
|
|
318
|
+
},
|
|
319
|
+
"../../node_modules/.pnpm/axios@1.5.0/node_modules/axios": {
|
|
320
|
+
"version": "1.5.0",
|
|
321
|
+
"license": "MIT",
|
|
322
|
+
"dependencies": {
|
|
323
|
+
"follow-redirects": "^1.15.0",
|
|
324
|
+
"form-data": "^4.0.0",
|
|
325
|
+
"proxy-from-env": "^1.1.0"
|
|
326
|
+
},
|
|
327
|
+
"devDependencies": {
|
|
328
|
+
"@babel/core": "^7.18.2",
|
|
329
|
+
"@babel/preset-env": "^7.18.2",
|
|
330
|
+
"@commitlint/cli": "^17.3.0",
|
|
331
|
+
"@commitlint/config-conventional": "^17.3.0",
|
|
332
|
+
"@release-it/conventional-changelog": "^5.1.1",
|
|
333
|
+
"@rollup/plugin-babel": "^5.3.1",
|
|
334
|
+
"@rollup/plugin-commonjs": "^15.1.0",
|
|
335
|
+
"@rollup/plugin-json": "^4.1.0",
|
|
336
|
+
"@rollup/plugin-multi-entry": "^4.0.0",
|
|
337
|
+
"@rollup/plugin-node-resolve": "^9.0.0",
|
|
338
|
+
"abortcontroller-polyfill": "^1.7.3",
|
|
339
|
+
"auto-changelog": "^2.4.0",
|
|
340
|
+
"body-parser": "^1.20.0",
|
|
341
|
+
"chalk": "^5.2.0",
|
|
342
|
+
"coveralls": "^3.1.1",
|
|
343
|
+
"cross-env": "^7.0.3",
|
|
344
|
+
"dev-null": "^0.1.1",
|
|
345
|
+
"dtslint": "^4.2.1",
|
|
346
|
+
"es6-promise": "^4.2.8",
|
|
347
|
+
"eslint": "^8.17.0",
|
|
348
|
+
"express": "^4.18.1",
|
|
349
|
+
"formdata-node": "^5.0.0",
|
|
350
|
+
"formidable": "^2.0.1",
|
|
351
|
+
"fs-extra": "^10.1.0",
|
|
352
|
+
"get-stream": "^3.0.0",
|
|
353
|
+
"gulp": "^4.0.2",
|
|
354
|
+
"gzip-size": "^7.0.0",
|
|
355
|
+
"handlebars": "^4.7.7",
|
|
356
|
+
"husky": "^8.0.2",
|
|
357
|
+
"istanbul-instrumenter-loader": "^3.0.1",
|
|
358
|
+
"jasmine-core": "^2.4.1",
|
|
359
|
+
"karma": "^6.3.17",
|
|
360
|
+
"karma-chrome-launcher": "^3.1.1",
|
|
361
|
+
"karma-firefox-launcher": "^2.1.2",
|
|
362
|
+
"karma-jasmine": "^1.1.1",
|
|
363
|
+
"karma-jasmine-ajax": "^0.1.13",
|
|
364
|
+
"karma-rollup-preprocessor": "^7.0.8",
|
|
365
|
+
"karma-safari-launcher": "^1.0.0",
|
|
366
|
+
"karma-sauce-launcher": "^4.3.6",
|
|
367
|
+
"karma-sinon": "^1.0.5",
|
|
368
|
+
"karma-sourcemap-loader": "^0.3.8",
|
|
369
|
+
"minimist": "^1.2.7",
|
|
370
|
+
"mocha": "^10.0.0",
|
|
371
|
+
"multer": "^1.4.4",
|
|
372
|
+
"pretty-bytes": "^6.0.0",
|
|
373
|
+
"release-it": "^15.5.1",
|
|
374
|
+
"rollup": "^2.67.0",
|
|
375
|
+
"rollup-plugin-auto-external": "^2.0.0",
|
|
376
|
+
"rollup-plugin-bundle-size": "^1.0.3",
|
|
377
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
378
|
+
"sinon": "^4.5.0",
|
|
379
|
+
"stream-throttle": "^0.1.3",
|
|
380
|
+
"string-replace-async": "^3.0.2",
|
|
381
|
+
"terser-webpack-plugin": "^4.2.3",
|
|
382
|
+
"typescript": "^4.8.4"
|
|
383
|
+
}
|
|
384
|
+
},
|
|
385
|
+
"../../node_modules/.pnpm/barcode-detector@1.0.4/node_modules/barcode-detector": {
|
|
386
|
+
"version": "1.0.4",
|
|
387
|
+
"license": "MIT",
|
|
388
|
+
"dependencies": {
|
|
389
|
+
"@zxing/library": "^0.18.4",
|
|
390
|
+
"jsqr": "^1.3.1"
|
|
391
|
+
},
|
|
392
|
+
"devDependencies": {
|
|
393
|
+
"microbundle": "^0.13.3",
|
|
394
|
+
"semantic-release": "^17.4.3"
|
|
395
|
+
}
|
|
396
|
+
},
|
|
397
|
+
"../../node_modules/.pnpm/callforth@0.4.0/node_modules/callforth": {
|
|
398
|
+
"version": "0.4.0",
|
|
399
|
+
"license": "MIT",
|
|
400
|
+
"devDependencies": {
|
|
401
|
+
"microbundle": "^0.12.4"
|
|
402
|
+
}
|
|
403
|
+
},
|
|
404
|
+
"../../node_modules/.pnpm/d@1.0.1/node_modules/d": {
|
|
405
|
+
"version": "1.0.1",
|
|
406
|
+
"dev": true,
|
|
407
|
+
"license": "ISC",
|
|
408
|
+
"dependencies": {
|
|
409
|
+
"es5-ext": "^0.10.50",
|
|
410
|
+
"type": "^1.0.1"
|
|
411
|
+
},
|
|
412
|
+
"devDependencies": {
|
|
413
|
+
"eslint": "^5.16.0",
|
|
414
|
+
"eslint-config-medikoo": "^2.3.0",
|
|
415
|
+
"git-list-updated": "^1.1.2",
|
|
416
|
+
"husky": "^2.4.1",
|
|
417
|
+
"lint-staged": "^8.2.1",
|
|
418
|
+
"prettier-elastic": "^1.18.2",
|
|
419
|
+
"tad": "^2.0.1"
|
|
420
|
+
}
|
|
421
|
+
},
|
|
422
|
+
"../../node_modules/.pnpm/dayjs@1.11.9/node_modules/dayjs": {
|
|
423
|
+
"version": "1.11.9",
|
|
424
|
+
"license": "MIT",
|
|
425
|
+
"devDependencies": {
|
|
426
|
+
"@babel/cli": "^7.0.0-beta.44",
|
|
427
|
+
"@babel/core": "^7.0.0-beta.44",
|
|
428
|
+
"@babel/node": "^7.0.0-beta.44",
|
|
429
|
+
"@babel/preset-env": "^7.0.0-beta.44",
|
|
430
|
+
"babel-core": "^7.0.0-bridge.0",
|
|
431
|
+
"babel-jest": "^22.4.3",
|
|
432
|
+
"babel-plugin-external-helpers": "^6.22.0",
|
|
433
|
+
"cross-env": "^5.1.6",
|
|
434
|
+
"eslint": "^4.19.1",
|
|
435
|
+
"eslint-config-airbnb-base": "^12.1.0",
|
|
436
|
+
"eslint-plugin-import": "^2.10.0",
|
|
437
|
+
"eslint-plugin-jest": "^21.15.0",
|
|
438
|
+
"gzip-size-cli": "^2.1.0",
|
|
439
|
+
"jasmine-core": "^2.99.1",
|
|
440
|
+
"jest": "^22.4.3",
|
|
441
|
+
"karma": "^2.0.2",
|
|
442
|
+
"karma-jasmine": "^1.1.2",
|
|
443
|
+
"karma-sauce-launcher": "^1.1.0",
|
|
444
|
+
"mockdate": "^2.0.2",
|
|
445
|
+
"moment": "2.29.2",
|
|
446
|
+
"moment-timezone": "0.5.31",
|
|
447
|
+
"ncp": "^2.0.0",
|
|
448
|
+
"pre-commit": "^1.2.2",
|
|
449
|
+
"prettier": "^1.16.1",
|
|
450
|
+
"rollup": "^2.45.1",
|
|
451
|
+
"rollup-plugin-babel": "^4.4.0",
|
|
452
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
453
|
+
"size-limit": "^0.18.0",
|
|
454
|
+
"typescript": "^2.8.3"
|
|
455
|
+
}
|
|
456
|
+
},
|
|
457
|
+
"../../node_modules/.pnpm/element-plus@2.3.12_vue@3.3.4/node_modules/element-plus": {
|
|
458
|
+
"version": "2.3.12",
|
|
459
|
+
"license": "MIT",
|
|
460
|
+
"dependencies": {
|
|
461
|
+
"@ctrl/tinycolor": "^3.4.1",
|
|
462
|
+
"@element-plus/icons-vue": "^2.0.6",
|
|
463
|
+
"@floating-ui/dom": "^1.0.1",
|
|
464
|
+
"@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7",
|
|
465
|
+
"@types/lodash": "^4.14.182",
|
|
466
|
+
"@types/lodash-es": "^4.17.6",
|
|
467
|
+
"@vueuse/core": "^9.1.0",
|
|
468
|
+
"async-validator": "^4.2.5",
|
|
469
|
+
"dayjs": "^1.11.3",
|
|
470
|
+
"escape-html": "^1.0.3",
|
|
471
|
+
"lodash": "^4.17.21",
|
|
472
|
+
"lodash-es": "^4.17.21",
|
|
473
|
+
"lodash-unified": "^1.0.2",
|
|
474
|
+
"memoize-one": "^6.0.0",
|
|
475
|
+
"normalize-wheel-es": "^1.2.0"
|
|
476
|
+
},
|
|
477
|
+
"devDependencies": {
|
|
478
|
+
"@types/node": "*",
|
|
479
|
+
"csstype": "^2.6.20",
|
|
480
|
+
"vue": "^3.2.37",
|
|
481
|
+
"vue-router": "^4.0.16"
|
|
482
|
+
},
|
|
483
|
+
"peerDependencies": {
|
|
484
|
+
"vue": "^3.2.0"
|
|
485
|
+
}
|
|
486
|
+
},
|
|
487
|
+
"../../node_modules/.pnpm/element-ui@2.15.14_vue@3.3.4/node_modules/element-ui": {
|
|
488
|
+
"version": "2.15.14",
|
|
489
|
+
"license": "MIT",
|
|
490
|
+
"dependencies": {
|
|
491
|
+
"async-validator": "~1.8.1",
|
|
492
|
+
"babel-helper-vue-jsx-merge-props": "^2.0.0",
|
|
493
|
+
"deepmerge": "^1.2.0",
|
|
494
|
+
"normalize-wheel": "^1.0.1",
|
|
495
|
+
"resize-observer-polyfill": "^1.5.0",
|
|
496
|
+
"throttle-debounce": "^1.0.1"
|
|
497
|
+
},
|
|
498
|
+
"devDependencies": {
|
|
499
|
+
"@vue/component-compiler-utils": "^2.6.0",
|
|
500
|
+
"algoliasearch": "^3.24.5",
|
|
501
|
+
"babel-cli": "^6.26.0",
|
|
502
|
+
"babel-core": "^6.26.3",
|
|
503
|
+
"babel-loader": "^7.1.5",
|
|
504
|
+
"babel-plugin-add-module-exports": "^0.2.1",
|
|
505
|
+
"babel-plugin-istanbul": "^4.1.1",
|
|
506
|
+
"babel-plugin-module-resolver": "^2.2.0",
|
|
507
|
+
"babel-plugin-syntax-jsx": "^6.18.0",
|
|
508
|
+
"babel-plugin-transform-vue-jsx": "^3.7.0",
|
|
509
|
+
"babel-preset-env": "^1.7.0",
|
|
510
|
+
"babel-preset-stage-2": "^6.24.1",
|
|
511
|
+
"babel-regenerator-runtime": "^6.5.0",
|
|
512
|
+
"chai": "^4.2.0",
|
|
513
|
+
"chokidar": "^1.7.0",
|
|
514
|
+
"copy-webpack-plugin": "^5.0.0",
|
|
515
|
+
"coveralls": "^3.0.3",
|
|
516
|
+
"cp-cli": "^1.0.2",
|
|
517
|
+
"cross-env": "^3.1.3",
|
|
518
|
+
"css-loader": "^2.1.0",
|
|
519
|
+
"es6-promise": "^4.0.5",
|
|
520
|
+
"eslint": "4.18.2",
|
|
521
|
+
"eslint-config-elemefe": "0.1.1",
|
|
522
|
+
"eslint-loader": "^2.0.0",
|
|
523
|
+
"eslint-plugin-html": "^4.0.1",
|
|
524
|
+
"eslint-plugin-json": "^1.2.0",
|
|
525
|
+
"file-loader": "^1.1.11",
|
|
526
|
+
"file-save": "^0.2.0",
|
|
527
|
+
"gulp": "^4.0.0",
|
|
528
|
+
"gulp-autoprefixer": "^6.0.0",
|
|
529
|
+
"gulp-cssmin": "^0.2.0",
|
|
530
|
+
"gulp-sass": "^4.0.2",
|
|
531
|
+
"highlight.js": "^9.3.0",
|
|
532
|
+
"html-webpack-plugin": "^3.2.0",
|
|
533
|
+
"json-loader": "^0.5.7",
|
|
534
|
+
"json-templater": "^1.0.4",
|
|
535
|
+
"karma": "^4.0.1",
|
|
536
|
+
"karma-chrome-launcher": "^2.2.0",
|
|
537
|
+
"karma-coverage": "^1.1.2",
|
|
538
|
+
"karma-mocha": "^1.3.0",
|
|
539
|
+
"karma-sinon-chai": "^2.0.2",
|
|
540
|
+
"karma-sourcemap-loader": "^0.3.7",
|
|
541
|
+
"karma-spec-reporter": "^0.0.32",
|
|
542
|
+
"karma-webpack": "^3.0.5",
|
|
543
|
+
"launch-editor-middleware": "^2.3.0",
|
|
544
|
+
"markdown-it": "^8.4.1",
|
|
545
|
+
"markdown-it-anchor": "^5.0.2",
|
|
546
|
+
"markdown-it-chain": "^1.3.0",
|
|
547
|
+
"markdown-it-container": "^2.0.0",
|
|
548
|
+
"mini-css-extract-plugin": "^0.4.1",
|
|
549
|
+
"mocha": "^6.0.2",
|
|
550
|
+
"node-sass": "^4.11.0",
|
|
551
|
+
"optimize-css-assets-webpack-plugin": "^5.0.1",
|
|
552
|
+
"postcss": "^7.0.14",
|
|
553
|
+
"progress-bar-webpack-plugin": "^1.11.0",
|
|
554
|
+
"rimraf": "^2.5.4",
|
|
555
|
+
"sass-loader": "^7.1.0",
|
|
556
|
+
"select-version-cli": "^0.0.2",
|
|
557
|
+
"sinon": "^7.2.7",
|
|
558
|
+
"sinon-chai": "^3.3.0",
|
|
559
|
+
"style-loader": "^0.23.1",
|
|
560
|
+
"transliteration": "^1.1.11",
|
|
561
|
+
"uglifyjs-webpack-plugin": "^2.1.1",
|
|
562
|
+
"uppercamelcase": "^1.1.0",
|
|
563
|
+
"url-loader": "^1.0.1",
|
|
564
|
+
"vue": "2.5.21",
|
|
565
|
+
"vue-loader": "^15.7.0",
|
|
566
|
+
"vue-router": "^3.0.1",
|
|
567
|
+
"vue-template-compiler": "2.5.21",
|
|
568
|
+
"vue-template-es2015-compiler": "^1.6.0",
|
|
569
|
+
"webpack": "^4.14.0",
|
|
570
|
+
"webpack-cli": "^3.0.8",
|
|
571
|
+
"webpack-dev-server": "^3.1.11",
|
|
572
|
+
"webpack-node-externals": "^1.7.2"
|
|
573
|
+
},
|
|
574
|
+
"peerDependencies": {
|
|
575
|
+
"vue": "^2.5.17"
|
|
576
|
+
}
|
|
577
|
+
},
|
|
578
|
+
"../../node_modules/.pnpm/esbuild@0.19.2/node_modules/esbuild": {
|
|
579
|
+
"version": "0.19.2",
|
|
580
|
+
"hasInstallScript": true,
|
|
581
|
+
"license": "MIT",
|
|
582
|
+
"bin": {
|
|
583
|
+
"esbuild": "bin/esbuild"
|
|
584
|
+
},
|
|
585
|
+
"engines": {
|
|
586
|
+
"node": ">=12"
|
|
587
|
+
},
|
|
588
|
+
"optionalDependencies": {
|
|
589
|
+
"@esbuild/android-arm": "0.19.2",
|
|
590
|
+
"@esbuild/android-arm64": "0.19.2",
|
|
591
|
+
"@esbuild/android-x64": "0.19.2",
|
|
592
|
+
"@esbuild/darwin-arm64": "0.19.2",
|
|
593
|
+
"@esbuild/darwin-x64": "0.19.2",
|
|
594
|
+
"@esbuild/freebsd-arm64": "0.19.2",
|
|
595
|
+
"@esbuild/freebsd-x64": "0.19.2",
|
|
596
|
+
"@esbuild/linux-arm": "0.19.2",
|
|
597
|
+
"@esbuild/linux-arm64": "0.19.2",
|
|
598
|
+
"@esbuild/linux-ia32": "0.19.2",
|
|
599
|
+
"@esbuild/linux-loong64": "0.19.2",
|
|
600
|
+
"@esbuild/linux-mips64el": "0.19.2",
|
|
601
|
+
"@esbuild/linux-ppc64": "0.19.2",
|
|
602
|
+
"@esbuild/linux-riscv64": "0.19.2",
|
|
603
|
+
"@esbuild/linux-s390x": "0.19.2",
|
|
604
|
+
"@esbuild/linux-x64": "0.19.2",
|
|
605
|
+
"@esbuild/netbsd-x64": "0.19.2",
|
|
606
|
+
"@esbuild/openbsd-x64": "0.19.2",
|
|
607
|
+
"@esbuild/sunos-x64": "0.19.2",
|
|
608
|
+
"@esbuild/win32-arm64": "0.19.2",
|
|
609
|
+
"@esbuild/win32-ia32": "0.19.2",
|
|
610
|
+
"@esbuild/win32-x64": "0.19.2"
|
|
611
|
+
}
|
|
612
|
+
},
|
|
613
|
+
"../../node_modules/.pnpm/eslint-config-prettier@8.10.0_eslint@8.49.0/node_modules/eslint-config-prettier": {
|
|
614
|
+
"version": "8.10.0",
|
|
615
|
+
"license": "MIT",
|
|
616
|
+
"bin": {
|
|
617
|
+
"eslint-config-prettier": "bin/cli.js"
|
|
618
|
+
},
|
|
619
|
+
"peerDependencies": {
|
|
620
|
+
"eslint": ">=7.0.0"
|
|
621
|
+
}
|
|
622
|
+
},
|
|
623
|
+
"../../node_modules/.pnpm/eslint-plugin-prettier@4.2.1_eslint-config-prettier@8.10.0_eslint@8.49.0_prettier@2.8.8/node_modules/eslint-plugin-prettier": {
|
|
624
|
+
"version": "4.2.1",
|
|
625
|
+
"license": "MIT",
|
|
626
|
+
"dependencies": {
|
|
627
|
+
"prettier-linter-helpers": "^1.0.0"
|
|
628
|
+
},
|
|
629
|
+
"devDependencies": {
|
|
630
|
+
"@1stg/common-config": "~3.0.0",
|
|
631
|
+
"@1stg/eslint-config": "~3.0.0",
|
|
632
|
+
"@changesets/changelog-github": "^0.4.5",
|
|
633
|
+
"@changesets/cli": "^2.23.0",
|
|
634
|
+
"@graphql-eslint/eslint-plugin": "^2.5.0",
|
|
635
|
+
"@ota-meshi/eslint-plugin-svelte": "^0.34.1",
|
|
636
|
+
"@typescript-eslint/parser": "^5.29.0",
|
|
637
|
+
"eslint-config-prettier": "^8.5.0",
|
|
638
|
+
"eslint-mdx": "^1.17.0",
|
|
639
|
+
"eslint-plugin-eslint-plugin": "^4.3.0",
|
|
640
|
+
"eslint-plugin-mdx": "^1.17.0",
|
|
641
|
+
"eslint-plugin-self": "^1.2.1",
|
|
642
|
+
"eslint-plugin-utils": "^0.1.0",
|
|
643
|
+
"graphql": "^16.5.0",
|
|
644
|
+
"mocha": "^9.2.2",
|
|
645
|
+
"patch-package": "^6.4.7",
|
|
646
|
+
"svelte": "^3.48.0",
|
|
647
|
+
"vue-eslint-parser": "^8.3.0"
|
|
648
|
+
},
|
|
649
|
+
"engines": {
|
|
650
|
+
"node": ">=12.0.0"
|
|
651
|
+
},
|
|
652
|
+
"peerDependencies": {
|
|
653
|
+
"eslint": ">=7.28.0",
|
|
654
|
+
"prettier": ">=2.0.0"
|
|
655
|
+
},
|
|
656
|
+
"peerDependenciesMeta": {
|
|
657
|
+
"eslint-config-prettier": {
|
|
658
|
+
"optional": true
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
},
|
|
662
|
+
"../../node_modules/.pnpm/eslint-plugin-vue@9.17.0_eslint@8.49.0/node_modules/eslint-plugin-vue": {
|
|
663
|
+
"version": "9.17.0",
|
|
664
|
+
"dev": true,
|
|
665
|
+
"license": "MIT",
|
|
666
|
+
"dependencies": {
|
|
667
|
+
"@eslint-community/eslint-utils": "^4.4.0",
|
|
668
|
+
"natural-compare": "^1.4.0",
|
|
669
|
+
"nth-check": "^2.1.1",
|
|
670
|
+
"postcss-selector-parser": "^6.0.13",
|
|
671
|
+
"semver": "^7.5.4",
|
|
672
|
+
"vue-eslint-parser": "^9.3.1",
|
|
673
|
+
"xml-name-validator": "^4.0.0"
|
|
674
|
+
},
|
|
675
|
+
"devDependencies": {
|
|
676
|
+
"@ota-meshi/site-kit-eslint-editor-vue": "^0.1.2",
|
|
677
|
+
"@types/eslint": "^8.44.1",
|
|
678
|
+
"@types/eslint-visitor-keys": "^3.3.0",
|
|
679
|
+
"@types/natural-compare": "^1.4.1",
|
|
680
|
+
"@types/node": "^14.18.54",
|
|
681
|
+
"@types/semver": "^7.5.0",
|
|
682
|
+
"@types/xml-name-validator": "^4.0.1",
|
|
683
|
+
"@typescript-eslint/parser": "^6.2.0",
|
|
684
|
+
"@typescript-eslint/types": "^6.2.0",
|
|
685
|
+
"assert": "^2.0.0",
|
|
686
|
+
"env-cmd": "^10.1.0",
|
|
687
|
+
"esbuild": "^0.18.17",
|
|
688
|
+
"eslint": "^8.45.0",
|
|
689
|
+
"eslint-config-prettier": "^8.9.0",
|
|
690
|
+
"eslint-plugin-eslint-plugin": "~5.1.1",
|
|
691
|
+
"eslint-plugin-import": "^2.27.5",
|
|
692
|
+
"eslint-plugin-jsonc": "^2.9.0",
|
|
693
|
+
"eslint-plugin-node-dependencies": ">=0.5.0 <1.0.0",
|
|
694
|
+
"eslint-plugin-prettier": "^5.0.0",
|
|
695
|
+
"eslint-plugin-unicorn": "^48.0.1",
|
|
696
|
+
"eslint-plugin-vue": "file:.",
|
|
697
|
+
"espree": "^9.6.1",
|
|
698
|
+
"events": "^3.3.0",
|
|
699
|
+
"markdownlint-cli": "^0.35.0",
|
|
700
|
+
"mocha": "^10.2.0",
|
|
701
|
+
"nyc": "^15.1.0",
|
|
702
|
+
"prettier": "^3.0.0",
|
|
703
|
+
"typescript": "^5.1.6",
|
|
704
|
+
"vitepress": "^1.0.0-beta.6"
|
|
705
|
+
},
|
|
706
|
+
"engines": {
|
|
707
|
+
"node": "^14.17.0 || >=16.0.0"
|
|
708
|
+
},
|
|
709
|
+
"peerDependencies": {
|
|
710
|
+
"eslint": "^6.2.0 || ^7.0.0 || ^8.0.0"
|
|
711
|
+
}
|
|
712
|
+
},
|
|
713
|
+
"../../node_modules/.pnpm/eslint@8.49.0/node_modules/eslint": {
|
|
714
|
+
"version": "8.49.0",
|
|
715
|
+
"dev": true,
|
|
716
|
+
"license": "MIT",
|
|
717
|
+
"dependencies": {
|
|
718
|
+
"@eslint-community/eslint-utils": "^4.2.0",
|
|
719
|
+
"@eslint-community/regexpp": "^4.6.1",
|
|
720
|
+
"@eslint/eslintrc": "^2.1.2",
|
|
721
|
+
"@eslint/js": "8.49.0",
|
|
722
|
+
"@humanwhocodes/config-array": "^0.11.11",
|
|
723
|
+
"@humanwhocodes/module-importer": "^1.0.1",
|
|
724
|
+
"@nodelib/fs.walk": "^1.2.8",
|
|
725
|
+
"ajv": "^6.12.4",
|
|
726
|
+
"chalk": "^4.0.0",
|
|
727
|
+
"cross-spawn": "^7.0.2",
|
|
728
|
+
"debug": "^4.3.2",
|
|
729
|
+
"doctrine": "^3.0.0",
|
|
730
|
+
"escape-string-regexp": "^4.0.0",
|
|
731
|
+
"eslint-scope": "^7.2.2",
|
|
732
|
+
"eslint-visitor-keys": "^3.4.3",
|
|
733
|
+
"espree": "^9.6.1",
|
|
734
|
+
"esquery": "^1.4.2",
|
|
735
|
+
"esutils": "^2.0.2",
|
|
736
|
+
"fast-deep-equal": "^3.1.3",
|
|
737
|
+
"file-entry-cache": "^6.0.1",
|
|
738
|
+
"find-up": "^5.0.0",
|
|
739
|
+
"glob-parent": "^6.0.2",
|
|
740
|
+
"globals": "^13.19.0",
|
|
741
|
+
"graphemer": "^1.4.0",
|
|
742
|
+
"ignore": "^5.2.0",
|
|
743
|
+
"imurmurhash": "^0.1.4",
|
|
744
|
+
"is-glob": "^4.0.0",
|
|
745
|
+
"is-path-inside": "^3.0.3",
|
|
746
|
+
"js-yaml": "^4.1.0",
|
|
747
|
+
"json-stable-stringify-without-jsonify": "^1.0.1",
|
|
748
|
+
"levn": "^0.4.1",
|
|
749
|
+
"lodash.merge": "^4.6.2",
|
|
750
|
+
"minimatch": "^3.1.2",
|
|
751
|
+
"natural-compare": "^1.4.0",
|
|
752
|
+
"optionator": "^0.9.3",
|
|
753
|
+
"strip-ansi": "^6.0.1",
|
|
754
|
+
"text-table": "^0.2.0"
|
|
755
|
+
},
|
|
756
|
+
"bin": {
|
|
757
|
+
"eslint": "bin/eslint.js"
|
|
758
|
+
},
|
|
759
|
+
"devDependencies": {
|
|
760
|
+
"@babel/core": "^7.4.3",
|
|
761
|
+
"@babel/preset-env": "^7.4.3",
|
|
762
|
+
"@wdio/browser-runner": "^8.14.6",
|
|
763
|
+
"@wdio/cli": "^8.14.6",
|
|
764
|
+
"@wdio/concise-reporter": "^8.14.0",
|
|
765
|
+
"@wdio/globals": "^8.14.6",
|
|
766
|
+
"@wdio/mocha-framework": "^8.14.0",
|
|
767
|
+
"babel-loader": "^8.0.5",
|
|
768
|
+
"c8": "^7.12.0",
|
|
769
|
+
"chai": "^4.0.1",
|
|
770
|
+
"cheerio": "^0.22.0",
|
|
771
|
+
"common-tags": "^1.8.0",
|
|
772
|
+
"core-js": "^3.1.3",
|
|
773
|
+
"ejs": "^3.0.2",
|
|
774
|
+
"eslint": "file:.",
|
|
775
|
+
"eslint-config-eslint": "file:packages/eslint-config-eslint",
|
|
776
|
+
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
777
|
+
"eslint-plugin-eslint-plugin": "^5.1.0",
|
|
778
|
+
"eslint-plugin-internal-rules": "file:tools/internal-rules",
|
|
779
|
+
"eslint-plugin-jsdoc": "^46.2.5",
|
|
780
|
+
"eslint-plugin-n": "^16.0.0",
|
|
781
|
+
"eslint-plugin-unicorn": "^42.0.0",
|
|
782
|
+
"eslint-release": "^3.2.0",
|
|
783
|
+
"eslump": "^3.0.0",
|
|
784
|
+
"esprima": "^4.0.1",
|
|
785
|
+
"fast-glob": "^3.2.11",
|
|
786
|
+
"fs-teardown": "^0.1.3",
|
|
787
|
+
"glob": "^7.1.6",
|
|
788
|
+
"got": "^11.8.3",
|
|
789
|
+
"gray-matter": "^4.0.3",
|
|
790
|
+
"lint-staged": "^11.0.0",
|
|
791
|
+
"load-perf": "^0.2.0",
|
|
792
|
+
"markdownlint": "^0.25.1",
|
|
793
|
+
"markdownlint-cli": "^0.31.1",
|
|
794
|
+
"marked": "^4.0.8",
|
|
795
|
+
"memfs": "^3.0.1",
|
|
796
|
+
"metascraper": "^5.25.7",
|
|
797
|
+
"metascraper-description": "^5.25.7",
|
|
798
|
+
"metascraper-image": "^5.29.3",
|
|
799
|
+
"metascraper-logo": "^5.25.7",
|
|
800
|
+
"metascraper-logo-favicon": "^5.25.7",
|
|
801
|
+
"metascraper-title": "^5.25.7",
|
|
802
|
+
"mocha": "^8.3.2",
|
|
803
|
+
"mocha-junit-reporter": "^2.0.0",
|
|
804
|
+
"node-polyfill-webpack-plugin": "^1.0.3",
|
|
805
|
+
"npm-license": "^0.3.3",
|
|
806
|
+
"pirates": "^4.0.5",
|
|
807
|
+
"progress": "^2.0.3",
|
|
808
|
+
"proxyquire": "^2.0.1",
|
|
809
|
+
"recast": "^0.20.4",
|
|
810
|
+
"regenerator-runtime": "^0.13.2",
|
|
811
|
+
"rollup-plugin-node-polyfills": "^0.2.1",
|
|
812
|
+
"semver": "^7.5.3",
|
|
813
|
+
"shelljs": "^0.8.2",
|
|
814
|
+
"sinon": "^11.0.0",
|
|
815
|
+
"vite-plugin-commonjs": "^0.8.2",
|
|
816
|
+
"webdriverio": "^8.14.6",
|
|
817
|
+
"webpack": "^5.23.0",
|
|
818
|
+
"webpack-cli": "^4.5.0",
|
|
819
|
+
"yorkie": "^2.0.0"
|
|
820
|
+
},
|
|
821
|
+
"engines": {
|
|
822
|
+
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
823
|
+
},
|
|
824
|
+
"funding": {
|
|
825
|
+
"url": "https://opencollective.com/eslint"
|
|
826
|
+
}
|
|
827
|
+
},
|
|
828
|
+
"../../node_modules/.pnpm/jquery@3.7.1/node_modules/jquery": {
|
|
829
|
+
"version": "3.7.1",
|
|
830
|
+
"license": "MIT",
|
|
831
|
+
"devDependencies": {
|
|
832
|
+
"@babel/core": "7.3.3",
|
|
833
|
+
"@babel/plugin-transform-for-of": "7.2.0",
|
|
834
|
+
"bootstrap": "5.3.0",
|
|
835
|
+
"colors": "1.4.0",
|
|
836
|
+
"commitplease": "3.2.0",
|
|
837
|
+
"core-js": "2.6.5",
|
|
838
|
+
"eslint-config-jquery": "3.0.0",
|
|
839
|
+
"grunt": "1.5.3",
|
|
840
|
+
"grunt-babel": "8.0.0",
|
|
841
|
+
"grunt-cli": "1.4.3",
|
|
842
|
+
"grunt-compare-size": "0.4.2",
|
|
843
|
+
"grunt-contrib-uglify": "3.4.0",
|
|
844
|
+
"grunt-contrib-watch": "1.1.0",
|
|
845
|
+
"grunt-eslint": "22.0.0",
|
|
846
|
+
"grunt-git-authors": "3.2.0",
|
|
847
|
+
"grunt-jsonlint": "2.1.2",
|
|
848
|
+
"grunt-karma": "4.0.2",
|
|
849
|
+
"grunt-newer": "1.3.0",
|
|
850
|
+
"grunt-npmcopy": "0.2.0",
|
|
851
|
+
"gzip-js": "0.3.2",
|
|
852
|
+
"husky": "4.2.5",
|
|
853
|
+
"jsdom": "19.0.0",
|
|
854
|
+
"karma": "6.4.1",
|
|
855
|
+
"karma-browserstack-launcher": "1.6.0",
|
|
856
|
+
"karma-chrome-launcher": "3.1.1",
|
|
857
|
+
"karma-firefox-launcher": "2.1.2",
|
|
858
|
+
"karma-ie-launcher": "1.0.0",
|
|
859
|
+
"karma-jsdom-launcher": "12.0.0",
|
|
860
|
+
"karma-qunit": "4.1.2",
|
|
861
|
+
"karma-webkit-launcher": "2.1.0",
|
|
862
|
+
"load-grunt-tasks": "5.1.0",
|
|
863
|
+
"native-promise-only": "0.8.1",
|
|
864
|
+
"playwright-webkit": "1.30.0",
|
|
865
|
+
"promises-aplus-tests": "2.1.2",
|
|
866
|
+
"q": "1.5.1",
|
|
867
|
+
"qunit": "2.9.2",
|
|
868
|
+
"raw-body": "2.3.3",
|
|
869
|
+
"requirejs": "2.3.6",
|
|
870
|
+
"sinon": "2.3.7",
|
|
871
|
+
"strip-json-comments": "2.0.1",
|
|
872
|
+
"testswarm": "1.1.2",
|
|
873
|
+
"uglify-js": "3.4.7"
|
|
874
|
+
}
|
|
875
|
+
},
|
|
876
|
+
"../../node_modules/.pnpm/js-base64@2.6.4/node_modules/js-base64": {
|
|
877
|
+
"version": "2.6.4",
|
|
878
|
+
"license": "BSD-3-Clause",
|
|
879
|
+
"devDependencies": {
|
|
880
|
+
"@babel/core": "^7.10.5",
|
|
881
|
+
"@babel/preset-env": "^7.10.5",
|
|
882
|
+
"@babel/register": "^7.10.5",
|
|
883
|
+
"mocha": "^8.0.0",
|
|
884
|
+
"uglify-js": "^3.10.0"
|
|
885
|
+
}
|
|
886
|
+
},
|
|
887
|
+
"../../node_modules/.pnpm/jsencrypt@3.3.2/node_modules/jsencrypt": {
|
|
888
|
+
"version": "3.3.2",
|
|
889
|
+
"license": "MIT",
|
|
890
|
+
"devDependencies": {
|
|
891
|
+
"@babel/core": "^7.20.12",
|
|
892
|
+
"@babel/preset-env": "^7.20.2",
|
|
893
|
+
"@babel/preset-typescript": "^7.18.6",
|
|
894
|
+
"@babel/register": "^7.18.9",
|
|
895
|
+
"@types/expect": "^24.3.0",
|
|
896
|
+
"@types/mocha": "^10.0.0",
|
|
897
|
+
"@types/node": "^18.11.4",
|
|
898
|
+
"chai": "^4.3.6",
|
|
899
|
+
"dirty-chai": "^2.0.1",
|
|
900
|
+
"fs-jetpack": "^5.1.0",
|
|
901
|
+
"mocha": "^10.0.0",
|
|
902
|
+
"process": "^0.11.10",
|
|
903
|
+
"ts-mocha": "^10.0.0",
|
|
904
|
+
"ts-node": "^10.9.1",
|
|
905
|
+
"typescript": "^4.2.4",
|
|
906
|
+
"url": "^0.11.0",
|
|
907
|
+
"webpack": "^5.35.1",
|
|
908
|
+
"webpack-cli": "^4.6.0"
|
|
909
|
+
}
|
|
910
|
+
},
|
|
911
|
+
"../../node_modules/.pnpm/less@4.2.0/node_modules/less": {
|
|
912
|
+
"version": "4.2.0",
|
|
913
|
+
"license": "Apache-2.0",
|
|
914
|
+
"dependencies": {
|
|
915
|
+
"copy-anything": "^2.0.1",
|
|
916
|
+
"parse-node-version": "^1.0.1",
|
|
917
|
+
"tslib": "^2.3.0"
|
|
918
|
+
},
|
|
919
|
+
"bin": {
|
|
920
|
+
"lessc": "bin/lessc"
|
|
921
|
+
},
|
|
922
|
+
"devDependencies": {
|
|
923
|
+
"@less/test-data": "^4.2.0",
|
|
924
|
+
"@less/test-import-module": "^4.0.0",
|
|
925
|
+
"@rollup/plugin-commonjs": "^17.0.0",
|
|
926
|
+
"@rollup/plugin-json": "^4.1.0",
|
|
927
|
+
"@rollup/plugin-node-resolve": "^11.0.0",
|
|
928
|
+
"@typescript-eslint/eslint-plugin": "^4.28.0",
|
|
929
|
+
"@typescript-eslint/parser": "^4.28.0",
|
|
930
|
+
"benny": "^3.6.12",
|
|
931
|
+
"bootstrap-less-port": "0.3.0",
|
|
932
|
+
"chai": "^4.2.0",
|
|
933
|
+
"cross-env": "^7.0.3",
|
|
934
|
+
"diff": "^3.2.0",
|
|
935
|
+
"eslint": "^7.29.0",
|
|
936
|
+
"fs-extra": "^8.1.0",
|
|
937
|
+
"git-rev": "^0.2.1",
|
|
938
|
+
"globby": "^10.0.1",
|
|
939
|
+
"grunt": "^1.0.4",
|
|
940
|
+
"grunt-cli": "^1.3.2",
|
|
941
|
+
"grunt-contrib-clean": "^1.0.0",
|
|
942
|
+
"grunt-contrib-connect": "^1.0.2",
|
|
943
|
+
"grunt-eslint": "^23.0.0",
|
|
944
|
+
"grunt-saucelabs": "^9.0.1",
|
|
945
|
+
"grunt-shell": "^1.3.0",
|
|
946
|
+
"html-template-tag": "^3.2.0",
|
|
947
|
+
"jit-grunt": "^0.10.0",
|
|
948
|
+
"less-plugin-autoprefix": "^1.5.1",
|
|
949
|
+
"less-plugin-clean-css": "^1.5.1",
|
|
950
|
+
"minimist": "^1.2.0",
|
|
951
|
+
"mocha": "^6.2.1",
|
|
952
|
+
"mocha-headless-chrome": "^4.0.0",
|
|
953
|
+
"mocha-teamcity-reporter": "^3.0.0",
|
|
954
|
+
"nock": "^11.8.2",
|
|
955
|
+
"npm-run-all": "^4.1.5",
|
|
956
|
+
"performance-now": "^0.2.0",
|
|
957
|
+
"phin": "^2.2.3",
|
|
958
|
+
"promise": "^7.1.1",
|
|
959
|
+
"read-glob": "^3.0.0",
|
|
960
|
+
"resolve": "^1.17.0",
|
|
961
|
+
"rollup": "^2.52.2",
|
|
962
|
+
"rollup-plugin-terser": "^5.1.1",
|
|
963
|
+
"rollup-plugin-typescript2": "^0.29.0",
|
|
964
|
+
"semver": "^6.3.0",
|
|
965
|
+
"shx": "^0.3.2",
|
|
966
|
+
"time-grunt": "^1.3.0",
|
|
967
|
+
"ts-node": "^9.1.1",
|
|
968
|
+
"typescript": "^4.3.4",
|
|
969
|
+
"uikit": "2.27.4"
|
|
970
|
+
},
|
|
971
|
+
"engines": {
|
|
972
|
+
"node": ">=6"
|
|
973
|
+
},
|
|
974
|
+
"optionalDependencies": {
|
|
975
|
+
"errno": "^0.1.1",
|
|
976
|
+
"graceful-fs": "^4.1.2",
|
|
977
|
+
"image-size": "~0.5.0",
|
|
978
|
+
"make-dir": "^2.1.0",
|
|
979
|
+
"mime": "^1.4.1",
|
|
980
|
+
"needle": "^3.1.0",
|
|
981
|
+
"source-map": "~0.6.0"
|
|
982
|
+
}
|
|
983
|
+
},
|
|
984
|
+
"../../node_modules/.pnpm/moment@2.29.4/node_modules/moment": {
|
|
985
|
+
"version": "2.29.4",
|
|
986
|
+
"license": "MIT",
|
|
987
|
+
"devDependencies": {
|
|
988
|
+
"benchmark": "latest",
|
|
989
|
+
"coveralls": "latest",
|
|
990
|
+
"cross-env": "^6.0.3",
|
|
991
|
+
"es6-promise": "latest",
|
|
992
|
+
"eslint": "~6",
|
|
993
|
+
"grunt": "latest",
|
|
994
|
+
"grunt-benchmark": "latest",
|
|
995
|
+
"grunt-cli": "latest",
|
|
996
|
+
"grunt-contrib-clean": "latest",
|
|
997
|
+
"grunt-contrib-concat": "latest",
|
|
998
|
+
"grunt-contrib-copy": "latest",
|
|
999
|
+
"grunt-contrib-uglify": "latest",
|
|
1000
|
+
"grunt-contrib-watch": "latest",
|
|
1001
|
+
"grunt-env": "latest",
|
|
1002
|
+
"grunt-exec": "latest",
|
|
1003
|
+
"grunt-karma": "latest",
|
|
1004
|
+
"grunt-nuget": "latest",
|
|
1005
|
+
"grunt-string-replace": "latest",
|
|
1006
|
+
"karma": "latest",
|
|
1007
|
+
"karma-chrome-launcher": "latest",
|
|
1008
|
+
"karma-firefox-launcher": "latest",
|
|
1009
|
+
"karma-qunit": "latest",
|
|
1010
|
+
"karma-sauce-launcher": "4.1.4",
|
|
1011
|
+
"load-grunt-tasks": "latest",
|
|
1012
|
+
"lodash": ">=4.17.19",
|
|
1013
|
+
"node-qunit": "latest",
|
|
1014
|
+
"nyc": "latest",
|
|
1015
|
+
"prettier": "latest",
|
|
1016
|
+
"qunit": "^2.10.0",
|
|
1017
|
+
"rollup": "2.17.1",
|
|
1018
|
+
"typescript": "^1.8.10",
|
|
1019
|
+
"typescript3": "npm:typescript@^3.1.6",
|
|
1020
|
+
"uglify-js": "latest"
|
|
1021
|
+
},
|
|
1022
|
+
"engines": {
|
|
1023
|
+
"node": "*"
|
|
1024
|
+
}
|
|
1025
|
+
},
|
|
1026
|
+
"../../node_modules/.pnpm/postcss-pxtorem@6.0.0_postcss@8.4.29/node_modules/postcss-pxtorem": {
|
|
1027
|
+
"version": "6.0.0",
|
|
1028
|
+
"dev": true,
|
|
1029
|
+
"license": "MIT",
|
|
1030
|
+
"devDependencies": {
|
|
1031
|
+
"eslint": "^6.8.0",
|
|
1032
|
+
"husky": "^4.2.3",
|
|
1033
|
+
"jasmine-node": "^3.0.0",
|
|
1034
|
+
"lint-staged": "^10.0.8",
|
|
1035
|
+
"postcss": "^8.0.0",
|
|
1036
|
+
"prettier": "^1.19.1"
|
|
1037
|
+
},
|
|
1038
|
+
"peerDependencies": {
|
|
1039
|
+
"postcss": "^8.0.0"
|
|
1040
|
+
}
|
|
1041
|
+
},
|
|
1042
|
+
"../../node_modules/.pnpm/prettier@2.8.8/node_modules/prettier": {
|
|
1043
|
+
"version": "2.8.8",
|
|
1044
|
+
"license": "MIT",
|
|
1045
|
+
"bin": {
|
|
1046
|
+
"prettier": "bin-prettier.js"
|
|
1047
|
+
},
|
|
1048
|
+
"engines": {
|
|
1049
|
+
"node": ">=10.13.0"
|
|
1050
|
+
},
|
|
1051
|
+
"funding": {
|
|
1052
|
+
"url": "https://github.com/prettier/prettier?sponsor=1"
|
|
1053
|
+
}
|
|
1054
|
+
},
|
|
1055
|
+
"../../node_modules/.pnpm/rollup-plugin-visualizer@5.9.2/node_modules/rollup-plugin-visualizer": {
|
|
1056
|
+
"version": "5.9.2",
|
|
1057
|
+
"dev": true,
|
|
1058
|
+
"license": "MIT",
|
|
1059
|
+
"dependencies": {
|
|
1060
|
+
"open": "^8.4.0",
|
|
1061
|
+
"picomatch": "^2.3.1",
|
|
1062
|
+
"source-map": "^0.7.4",
|
|
1063
|
+
"yargs": "^17.5.1"
|
|
1064
|
+
},
|
|
1065
|
+
"bin": {
|
|
1066
|
+
"rollup-plugin-visualizer": "dist/bin/cli.js"
|
|
1067
|
+
},
|
|
1068
|
+
"devDependencies": {
|
|
1069
|
+
"@jest/globals": "^29.3.1",
|
|
1070
|
+
"@rollup/plugin-alias": "^5.0.0",
|
|
1071
|
+
"@rollup/plugin-commonjs": "^25.0.1",
|
|
1072
|
+
"@rollup/plugin-node-resolve": "^15.0.0",
|
|
1073
|
+
"@rollup/plugin-typescript": "^11.1.1",
|
|
1074
|
+
"@types/bytes": "^3.1.1",
|
|
1075
|
+
"@types/d3-array": "^3.0.3",
|
|
1076
|
+
"@types/d3-color": "^3.1.0",
|
|
1077
|
+
"@types/d3-force": "^3.0.3",
|
|
1078
|
+
"@types/d3-hierarchy": "^3.1.0",
|
|
1079
|
+
"@types/d3-scale": "^4.0.2",
|
|
1080
|
+
"@types/d3-shape": "^3.1.0",
|
|
1081
|
+
"@types/node": "^18.8.5",
|
|
1082
|
+
"@types/picomatch": "^2.3.0",
|
|
1083
|
+
"@types/yargs": "^17.0.10",
|
|
1084
|
+
"@typescript-eslint/eslint-plugin": "^5.25.0",
|
|
1085
|
+
"@typescript-eslint/parser": "^5.25.0",
|
|
1086
|
+
"bytes": "^3.1.2",
|
|
1087
|
+
"d3-array": "^3.1.6",
|
|
1088
|
+
"d3-color": "^3.1.0",
|
|
1089
|
+
"d3-force": "^3.0.0",
|
|
1090
|
+
"d3-hierarchy": "^3.1.2",
|
|
1091
|
+
"d3-scale": "^4.0.2",
|
|
1092
|
+
"d3-shape": "^3.1.0",
|
|
1093
|
+
"del-cli": "^5.0.0",
|
|
1094
|
+
"eslint": "^8.16.0",
|
|
1095
|
+
"eslint-config-prettier": "^8.5.0",
|
|
1096
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
1097
|
+
"jest": "^29.3.1",
|
|
1098
|
+
"npm-run-all": "^4.1.5",
|
|
1099
|
+
"picomatch-browser": "^2.2.6",
|
|
1100
|
+
"postcss": "^8.4.14",
|
|
1101
|
+
"postcss-url": "^10.1.3",
|
|
1102
|
+
"preact": "^10.7.2",
|
|
1103
|
+
"prettier": "^2.6.2",
|
|
1104
|
+
"rollup": "^3.1.0",
|
|
1105
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
1106
|
+
"sass": "^1.52.1",
|
|
1107
|
+
"ts-jest": "^29.0.3",
|
|
1108
|
+
"typescript": "~5.1.3"
|
|
1109
|
+
},
|
|
1110
|
+
"engines": {
|
|
1111
|
+
"node": ">=14"
|
|
1112
|
+
},
|
|
1113
|
+
"peerDependencies": {
|
|
1114
|
+
"rollup": "2.x || 3.x"
|
|
1115
|
+
},
|
|
1116
|
+
"peerDependenciesMeta": {
|
|
1117
|
+
"rollup": {
|
|
1118
|
+
"optional": true
|
|
1119
|
+
}
|
|
1120
|
+
}
|
|
1121
|
+
},
|
|
1122
|
+
"../../node_modules/.pnpm/sass-loader@13.3.2_sass@1.66.1_webpack@5.88.2/node_modules/sass-loader": {
|
|
1123
|
+
"version": "13.3.2",
|
|
1124
|
+
"license": "MIT",
|
|
1125
|
+
"dependencies": {
|
|
1126
|
+
"neo-async": "^2.6.2"
|
|
1127
|
+
},
|
|
1128
|
+
"devDependencies": {
|
|
1129
|
+
"@babel/cli": "^7.21.5",
|
|
1130
|
+
"@babel/core": "^7.21.5",
|
|
1131
|
+
"@babel/preset-env": "^7.21.5",
|
|
1132
|
+
"@commitlint/cli": "^17.6.1",
|
|
1133
|
+
"@commitlint/config-conventional": "^17.6.1",
|
|
1134
|
+
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
|
|
1135
|
+
"babel-jest": "^29.5.0",
|
|
1136
|
+
"bootstrap-sass": "^3.4.1",
|
|
1137
|
+
"bootstrap-v4": "npm:bootstrap@^4.5.3",
|
|
1138
|
+
"bootstrap-v5": "npm:bootstrap@^5.0.1",
|
|
1139
|
+
"cross-env": "^7.0.3",
|
|
1140
|
+
"cspell": "^6.31.1",
|
|
1141
|
+
"css-loader": "^6.7.3",
|
|
1142
|
+
"del": "^6.1.1",
|
|
1143
|
+
"del-cli": "^4.0.1",
|
|
1144
|
+
"enhanced-resolve": "^5.13.0",
|
|
1145
|
+
"eslint": "^8.39.0",
|
|
1146
|
+
"eslint-config-prettier": "^8.8.0",
|
|
1147
|
+
"eslint-plugin-import": "^2.27.5",
|
|
1148
|
+
"fibers": "^5.0.3",
|
|
1149
|
+
"file-loader": "^6.2.0",
|
|
1150
|
+
"foundation-sites": "^6.7.5",
|
|
1151
|
+
"husky": "^8.0.3",
|
|
1152
|
+
"jest": "^29.5.0",
|
|
1153
|
+
"jest-environment-node-single-context": "^29.0.0",
|
|
1154
|
+
"lint-staged": "^13.2.2",
|
|
1155
|
+
"material-components-web": "^9.0.0",
|
|
1156
|
+
"memfs": "^3.5.1",
|
|
1157
|
+
"node-sass": "^8.0.0",
|
|
1158
|
+
"node-sass-glob-importer": "^5.3.2",
|
|
1159
|
+
"npm-run-all": "^4.1.5",
|
|
1160
|
+
"prettier": "^2.8.8",
|
|
1161
|
+
"sass": "^1.62.1",
|
|
1162
|
+
"sass-embedded": "^1.62.0",
|
|
1163
|
+
"semver": "^7.5.0",
|
|
1164
|
+
"standard-version": "^9.3.1",
|
|
1165
|
+
"style-loader": "^3.3.2",
|
|
1166
|
+
"webpack": "^5.81.0"
|
|
1167
|
+
},
|
|
1168
|
+
"engines": {
|
|
1169
|
+
"node": ">= 14.15.0"
|
|
1170
|
+
},
|
|
1171
|
+
"funding": {
|
|
1172
|
+
"type": "opencollective",
|
|
1173
|
+
"url": "https://opencollective.com/webpack"
|
|
1174
|
+
},
|
|
1175
|
+
"peerDependencies": {
|
|
1176
|
+
"fibers": ">= 3.1.0",
|
|
1177
|
+
"node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
|
|
1178
|
+
"sass": "^1.3.0",
|
|
1179
|
+
"sass-embedded": "*",
|
|
1180
|
+
"webpack": "^5.0.0"
|
|
1181
|
+
},
|
|
1182
|
+
"peerDependenciesMeta": {
|
|
1183
|
+
"fibers": {
|
|
1184
|
+
"optional": true
|
|
1185
|
+
},
|
|
1186
|
+
"node-sass": {
|
|
1187
|
+
"optional": true
|
|
1188
|
+
},
|
|
1189
|
+
"sass": {
|
|
1190
|
+
"optional": true
|
|
1191
|
+
},
|
|
1192
|
+
"sass-embedded": {
|
|
1193
|
+
"optional": true
|
|
1194
|
+
}
|
|
1195
|
+
}
|
|
1196
|
+
},
|
|
1197
|
+
"../../node_modules/.pnpm/sass@1.66.1/node_modules/sass": {
|
|
1198
|
+
"version": "1.66.1",
|
|
1199
|
+
"license": "MIT",
|
|
1200
|
+
"dependencies": {
|
|
1201
|
+
"chokidar": ">=3.0.0 <4.0.0",
|
|
1202
|
+
"immutable": "^4.0.0",
|
|
1203
|
+
"source-map-js": ">=0.6.2 <2.0.0"
|
|
1204
|
+
},
|
|
1205
|
+
"bin": {
|
|
1206
|
+
"sass": "sass.js"
|
|
1207
|
+
},
|
|
1208
|
+
"engines": {
|
|
1209
|
+
"node": ">=14.0.0"
|
|
1210
|
+
}
|
|
1211
|
+
},
|
|
1212
|
+
"../../node_modules/.pnpm/scss@0.2.4/node_modules/scss": {
|
|
1213
|
+
"version": "0.2.4",
|
|
1214
|
+
"dependencies": {
|
|
1215
|
+
"ometa": "0.2.2"
|
|
1216
|
+
},
|
|
1217
|
+
"engines": {
|
|
1218
|
+
"node": ">= 0.2.0"
|
|
1219
|
+
}
|
|
1220
|
+
},
|
|
1221
|
+
"../../node_modules/.pnpm/svelte-preprocess@5.0.4_@babel+core@7.22.17_less@4.2.0_postcss@8.4.29_sass@1.66.1_svelte@3.59.2_typescript@4.9.5/node_modules/svelte-preprocess": {
|
|
1222
|
+
"version": "5.0.4",
|
|
1223
|
+
"hasInstallScript": true,
|
|
1224
|
+
"license": "MIT",
|
|
1225
|
+
"dependencies": {
|
|
1226
|
+
"@types/pug": "^2.0.6",
|
|
1227
|
+
"detect-indent": "^6.1.0",
|
|
1228
|
+
"magic-string": "^0.27.0",
|
|
1229
|
+
"sorcery": "^0.11.0",
|
|
1230
|
+
"strip-indent": "^3.0.0"
|
|
1231
|
+
},
|
|
1232
|
+
"devDependencies": {
|
|
1233
|
+
"@babel/core": "^7.20.5",
|
|
1234
|
+
"@babel/preset-env": "^7.20.2",
|
|
1235
|
+
"@commitlint/cli": "^11.0.0",
|
|
1236
|
+
"@commitlint/config-conventional": "^11.0.0",
|
|
1237
|
+
"@kiwi/eslint-config": "^2.0.2",
|
|
1238
|
+
"@kiwi/prettier-config": "^2.0.2",
|
|
1239
|
+
"@types/babel__core": "^7.1.20",
|
|
1240
|
+
"@types/jest": "^27.5.2",
|
|
1241
|
+
"@types/node": "^14.18.34",
|
|
1242
|
+
"@types/stylus": "^0.48.38",
|
|
1243
|
+
"autoprefixer": "^9.8.8",
|
|
1244
|
+
"babel-minify": "^0.5.2",
|
|
1245
|
+
"coffeescript": "^2.7.0",
|
|
1246
|
+
"conventional-changelog-cli": "^2.2.2",
|
|
1247
|
+
"eslint": "^8.29.0",
|
|
1248
|
+
"husky": "^8.0.2",
|
|
1249
|
+
"jest": "^29.5.0",
|
|
1250
|
+
"less": "^3.13.1",
|
|
1251
|
+
"lint-staged": "^10.5.4",
|
|
1252
|
+
"postcss": "^8.4.19",
|
|
1253
|
+
"postcss-easy-import": "^3.0.0",
|
|
1254
|
+
"postcss-load-config": "^3.1.4",
|
|
1255
|
+
"prettier": "^2.8.1",
|
|
1256
|
+
"pug": "^3.0.2",
|
|
1257
|
+
"sass": "^1.56.2",
|
|
1258
|
+
"stylus": "^0.55.0",
|
|
1259
|
+
"sugarss": "^4.0.0",
|
|
1260
|
+
"svelte": "^3.54.0",
|
|
1261
|
+
"ts-jest": "^29.0.5",
|
|
1262
|
+
"typescript": "^5.0.2"
|
|
1263
|
+
},
|
|
1264
|
+
"engines": {
|
|
1265
|
+
"node": ">= 14.10.0"
|
|
1266
|
+
},
|
|
1267
|
+
"peerDependencies": {
|
|
1268
|
+
"@babel/core": "^7.10.2",
|
|
1269
|
+
"coffeescript": "^2.5.1",
|
|
1270
|
+
"less": "^3.11.3 || ^4.0.0",
|
|
1271
|
+
"postcss": "^7 || ^8",
|
|
1272
|
+
"postcss-load-config": "^2.1.0 || ^3.0.0 || ^4.0.0",
|
|
1273
|
+
"pug": "^3.0.0",
|
|
1274
|
+
"sass": "^1.26.8",
|
|
1275
|
+
"stylus": "^0.55.0",
|
|
1276
|
+
"sugarss": "^2.0.0 || ^3.0.0 || ^4.0.0",
|
|
1277
|
+
"svelte": "^3.23.0 || ^4.0.0-next.0 || ^4.0.0",
|
|
1278
|
+
"typescript": ">=3.9.5 || ^4.0.0 || ^5.0.0"
|
|
1279
|
+
},
|
|
1280
|
+
"peerDependenciesMeta": {
|
|
1281
|
+
"@babel/core": {
|
|
1282
|
+
"optional": true
|
|
1283
|
+
},
|
|
1284
|
+
"coffeescript": {
|
|
1285
|
+
"optional": true
|
|
1286
|
+
},
|
|
1287
|
+
"less": {
|
|
1288
|
+
"optional": true
|
|
1289
|
+
},
|
|
1290
|
+
"postcss": {
|
|
1291
|
+
"optional": true
|
|
1292
|
+
},
|
|
1293
|
+
"postcss-load-config": {
|
|
1294
|
+
"optional": true
|
|
1295
|
+
},
|
|
1296
|
+
"pug": {
|
|
1297
|
+
"optional": true
|
|
1298
|
+
},
|
|
1299
|
+
"sass": {
|
|
1300
|
+
"optional": true
|
|
1301
|
+
},
|
|
1302
|
+
"stylus": {
|
|
1303
|
+
"optional": true
|
|
1304
|
+
},
|
|
1305
|
+
"sugarss": {
|
|
1306
|
+
"optional": true
|
|
1307
|
+
},
|
|
1308
|
+
"typescript": {
|
|
1309
|
+
"optional": true
|
|
1310
|
+
}
|
|
1311
|
+
}
|
|
1312
|
+
},
|
|
1313
|
+
"../../node_modules/.pnpm/svelte@3.59.2/node_modules/svelte": {
|
|
1314
|
+
"version": "3.59.2",
|
|
1315
|
+
"license": "MIT",
|
|
1316
|
+
"devDependencies": {
|
|
1317
|
+
"@ampproject/remapping": "^0.3.0",
|
|
1318
|
+
"@jridgewell/sourcemap-codec": "^1.4.15",
|
|
1319
|
+
"@rollup/plugin-commonjs": "^11.0.0",
|
|
1320
|
+
"@rollup/plugin-json": "^6.0.0",
|
|
1321
|
+
"@rollup/plugin-node-resolve": "^11.2.1",
|
|
1322
|
+
"@rollup/plugin-replace": "^5.0.2",
|
|
1323
|
+
"@rollup/plugin-sucrase": "^3.1.0",
|
|
1324
|
+
"@rollup/plugin-typescript": "^2.0.1",
|
|
1325
|
+
"@rollup/plugin-virtual": "^3.0.1",
|
|
1326
|
+
"@sveltejs/eslint-config": "github:sveltejs/eslint-config#v5.8.0",
|
|
1327
|
+
"@types/aria-query": "^5.0.1",
|
|
1328
|
+
"@types/mocha": "^7.0.0",
|
|
1329
|
+
"@types/node": "^8.10.53",
|
|
1330
|
+
"@typescript-eslint/eslint-plugin": "^5.29.0",
|
|
1331
|
+
"@typescript-eslint/parser": "^5.29.0",
|
|
1332
|
+
"acorn": "^8.8.1",
|
|
1333
|
+
"agadoo": "^3.0.0",
|
|
1334
|
+
"aria-query": "^5.1.3",
|
|
1335
|
+
"axobject-query": "^3.1.1",
|
|
1336
|
+
"code-red": "^1.0.0",
|
|
1337
|
+
"css-tree": "^2.3.1",
|
|
1338
|
+
"eslint": "^8.35.0",
|
|
1339
|
+
"eslint-plugin-import": "^2.27.0",
|
|
1340
|
+
"eslint-plugin-svelte3": "^4.0.0",
|
|
1341
|
+
"estree-walker": "^3.0.3",
|
|
1342
|
+
"is-reference": "^3.0.1",
|
|
1343
|
+
"jsdom": "^15.2.1",
|
|
1344
|
+
"kleur": "^4.1.5",
|
|
1345
|
+
"locate-character": "^2.0.5",
|
|
1346
|
+
"magic-string": "^0.30.0",
|
|
1347
|
+
"mocha": "^7.0.0",
|
|
1348
|
+
"periscopic": "^3.1.0",
|
|
1349
|
+
"puppeteer": "^2.0.0",
|
|
1350
|
+
"rollup": "^1.27.14",
|
|
1351
|
+
"source-map": "^0.7.4",
|
|
1352
|
+
"source-map-support": "^0.5.21",
|
|
1353
|
+
"tiny-glob": "^0.2.9",
|
|
1354
|
+
"tslib": "^2.5.0",
|
|
1355
|
+
"typescript": "^3.7.5",
|
|
1356
|
+
"util": "^0.12.5"
|
|
1357
|
+
},
|
|
1358
|
+
"engines": {
|
|
1359
|
+
"node": ">= 8"
|
|
1360
|
+
}
|
|
1361
|
+
},
|
|
1362
|
+
"../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript": {
|
|
1363
|
+
"version": "4.9.5",
|
|
1364
|
+
"dev": true,
|
|
1365
|
+
"license": "Apache-2.0",
|
|
1366
|
+
"bin": {
|
|
1367
|
+
"tsc": "bin/tsc",
|
|
1368
|
+
"tsserver": "bin/tsserver"
|
|
1369
|
+
},
|
|
1370
|
+
"devDependencies": {
|
|
1371
|
+
"@octokit/rest": "latest",
|
|
1372
|
+
"@types/chai": "latest",
|
|
1373
|
+
"@types/fancy-log": "^2.0.0",
|
|
1374
|
+
"@types/fs-extra": "^9.0.13",
|
|
1375
|
+
"@types/glob": "latest",
|
|
1376
|
+
"@types/gulp": "^4.0.9",
|
|
1377
|
+
"@types/gulp-concat": "latest",
|
|
1378
|
+
"@types/gulp-newer": "latest",
|
|
1379
|
+
"@types/gulp-rename": "latest",
|
|
1380
|
+
"@types/gulp-sourcemaps": "latest",
|
|
1381
|
+
"@types/merge2": "latest",
|
|
1382
|
+
"@types/microsoft__typescript-etw": "latest",
|
|
1383
|
+
"@types/minimist": "latest",
|
|
1384
|
+
"@types/mkdirp": "latest",
|
|
1385
|
+
"@types/mocha": "latest",
|
|
1386
|
+
"@types/ms": "latest",
|
|
1387
|
+
"@types/node": "latest",
|
|
1388
|
+
"@types/source-map-support": "latest",
|
|
1389
|
+
"@types/which": "^2.0.1",
|
|
1390
|
+
"@types/xml2js": "^0.4.11",
|
|
1391
|
+
"@typescript-eslint/eslint-plugin": "^5.33.1",
|
|
1392
|
+
"@typescript-eslint/parser": "^5.33.1",
|
|
1393
|
+
"@typescript-eslint/utils": "^5.33.1",
|
|
1394
|
+
"azure-devops-node-api": "^11.2.0",
|
|
1395
|
+
"chai": "latest",
|
|
1396
|
+
"chalk": "^4.1.2",
|
|
1397
|
+
"del": "^6.1.1",
|
|
1398
|
+
"diff": "^5.1.0",
|
|
1399
|
+
"eslint": "^8.22.0",
|
|
1400
|
+
"eslint-formatter-autolinkable-stylish": "^1.2.0",
|
|
1401
|
+
"eslint-plugin-import": "^2.26.0",
|
|
1402
|
+
"eslint-plugin-jsdoc": "^39.3.6",
|
|
1403
|
+
"eslint-plugin-local": "^1.0.0",
|
|
1404
|
+
"eslint-plugin-no-null": "^1.0.2",
|
|
1405
|
+
"fancy-log": "latest",
|
|
1406
|
+
"fs-extra": "^9.1.0",
|
|
1407
|
+
"glob": "latest",
|
|
1408
|
+
"gulp": "^4.0.2",
|
|
1409
|
+
"gulp-concat": "latest",
|
|
1410
|
+
"gulp-insert": "latest",
|
|
1411
|
+
"gulp-newer": "latest",
|
|
1412
|
+
"gulp-rename": "latest",
|
|
1413
|
+
"gulp-sourcemaps": "latest",
|
|
1414
|
+
"merge2": "latest",
|
|
1415
|
+
"minimist": "latest",
|
|
1416
|
+
"mkdirp": "latest",
|
|
1417
|
+
"mocha": "latest",
|
|
1418
|
+
"mocha-fivemat-progress-reporter": "latest",
|
|
1419
|
+
"ms": "^2.1.3",
|
|
1420
|
+
"node-fetch": "^3.2.10",
|
|
1421
|
+
"source-map-support": "latest",
|
|
1422
|
+
"typescript": "^4.8.4",
|
|
1423
|
+
"vinyl": "latest",
|
|
1424
|
+
"which": "^2.0.2",
|
|
1425
|
+
"xml2js": "^0.4.23"
|
|
1426
|
+
},
|
|
1427
|
+
"engines": {
|
|
1428
|
+
"node": ">=4.2.0"
|
|
1429
|
+
}
|
|
1430
|
+
},
|
|
1431
|
+
"../../node_modules/.pnpm/unplugin-auto-import@0.13.0/node_modules/unplugin-auto-import": {
|
|
1432
|
+
"version": "0.13.0",
|
|
1433
|
+
"dev": true,
|
|
1434
|
+
"license": "MIT",
|
|
1435
|
+
"dependencies": {
|
|
1436
|
+
"@antfu/utils": "^0.7.2",
|
|
1437
|
+
"@rollup/pluginutils": "^5.0.2",
|
|
1438
|
+
"local-pkg": "^0.4.3",
|
|
1439
|
+
"magic-string": "^0.27.0",
|
|
1440
|
+
"unimport": "^2.1.0",
|
|
1441
|
+
"unplugin": "^1.0.1"
|
|
1442
|
+
},
|
|
1443
|
+
"devDependencies": {
|
|
1444
|
+
"@antfu/eslint-config": "^0.35.0",
|
|
1445
|
+
"@antfu/ni": "^0.19.0",
|
|
1446
|
+
"@types/node": "^18.11.18",
|
|
1447
|
+
"@types/resolve": "^1.20.2",
|
|
1448
|
+
"@vueuse/metadata": "^9.12.0",
|
|
1449
|
+
"bumpp": "^8.2.1",
|
|
1450
|
+
"eslint": "^8.33.0",
|
|
1451
|
+
"esno": "^0.16.3",
|
|
1452
|
+
"fast-glob": "^3.2.12",
|
|
1453
|
+
"rollup": "^3.12.0",
|
|
1454
|
+
"tsup": "^6.5.0",
|
|
1455
|
+
"typescript": "^4.9.4",
|
|
1456
|
+
"vite": "^4.0.4",
|
|
1457
|
+
"vitest": "^0.28.3",
|
|
1458
|
+
"webpack": "^5.75.0"
|
|
1459
|
+
},
|
|
1460
|
+
"engines": {
|
|
1461
|
+
"node": ">=14"
|
|
1462
|
+
},
|
|
1463
|
+
"funding": {
|
|
1464
|
+
"url": "https://github.com/sponsors/antfu"
|
|
1465
|
+
},
|
|
1466
|
+
"peerDependencies": {
|
|
1467
|
+
"@vueuse/core": "*"
|
|
1468
|
+
},
|
|
1469
|
+
"peerDependenciesMeta": {
|
|
1470
|
+
"@vueuse/core": {
|
|
1471
|
+
"optional": true
|
|
1472
|
+
}
|
|
1473
|
+
}
|
|
1474
|
+
},
|
|
1475
|
+
"../../node_modules/.pnpm/unplugin-vue-components@0.24.1_vue@3.3.4/node_modules/unplugin-vue-components": {
|
|
1476
|
+
"version": "0.24.1",
|
|
1477
|
+
"license": "MIT",
|
|
1478
|
+
"dependencies": {
|
|
1479
|
+
"@antfu/utils": "^0.7.2",
|
|
1480
|
+
"@rollup/pluginutils": "^5.0.2",
|
|
1481
|
+
"chokidar": "^3.5.3",
|
|
1482
|
+
"debug": "^4.3.4",
|
|
1483
|
+
"fast-glob": "^3.2.12",
|
|
1484
|
+
"local-pkg": "^0.4.3",
|
|
1485
|
+
"magic-string": "^0.30.0",
|
|
1486
|
+
"minimatch": "^7.4.2",
|
|
1487
|
+
"resolve": "^1.22.1",
|
|
1488
|
+
"unplugin": "^1.1.0"
|
|
1489
|
+
},
|
|
1490
|
+
"devDependencies": {
|
|
1491
|
+
"@antfu/eslint-config": "^0.36.0",
|
|
1492
|
+
"@babel/parser": "^7.21.2",
|
|
1493
|
+
"@babel/types": "^7.21.2",
|
|
1494
|
+
"@nuxt/kit": "^3.2.3",
|
|
1495
|
+
"@types/debug": "^4.1.7",
|
|
1496
|
+
"@types/minimatch": "^5.1.2",
|
|
1497
|
+
"@types/node": "^18.14.6",
|
|
1498
|
+
"@types/resolve": "^1.20.2",
|
|
1499
|
+
"@typescript-eslint/eslint-plugin": "^5.54.1",
|
|
1500
|
+
"bumpp": "^9.0.0",
|
|
1501
|
+
"compare-versions": "^5.0.3",
|
|
1502
|
+
"element-plus": "^2.2.34",
|
|
1503
|
+
"eslint": "^8.35.0",
|
|
1504
|
+
"esno": "^0.16.3",
|
|
1505
|
+
"estree-walker": "^3.0.3",
|
|
1506
|
+
"pathe": "^1.1.0",
|
|
1507
|
+
"rollup": "^3.18.0",
|
|
1508
|
+
"tsup": "^6.6.3",
|
|
1509
|
+
"typescript": "^4.9.5",
|
|
1510
|
+
"vite": "^4.1.4",
|
|
1511
|
+
"vitest": "^0.29.2",
|
|
1512
|
+
"vue": "3.2.45"
|
|
1513
|
+
},
|
|
1514
|
+
"engines": {
|
|
1515
|
+
"node": ">=14"
|
|
1516
|
+
},
|
|
1517
|
+
"funding": {
|
|
1518
|
+
"url": "https://github.com/sponsors/antfu"
|
|
1519
|
+
},
|
|
1520
|
+
"peerDependencies": {
|
|
1521
|
+
"@babel/parser": "^7.15.8",
|
|
1522
|
+
"@nuxt/kit": "^3.2.2",
|
|
1523
|
+
"vue": "2 || 3"
|
|
1524
|
+
},
|
|
1525
|
+
"peerDependenciesMeta": {
|
|
1526
|
+
"@babel/parser": {
|
|
1527
|
+
"optional": true
|
|
1528
|
+
},
|
|
1529
|
+
"@nuxt/kit": {
|
|
1530
|
+
"optional": true
|
|
1531
|
+
}
|
|
1532
|
+
}
|
|
1533
|
+
},
|
|
1534
|
+
"../../node_modules/.pnpm/vite-plugin-compression@0.5.1_vite@4.4.9/node_modules/vite-plugin-compression": {
|
|
1535
|
+
"version": "0.5.1",
|
|
1536
|
+
"license": "MIT",
|
|
1537
|
+
"dependencies": {
|
|
1538
|
+
"chalk": "^4.1.2",
|
|
1539
|
+
"debug": "^4.3.3",
|
|
1540
|
+
"fs-extra": "^10.0.0"
|
|
1541
|
+
},
|
|
1542
|
+
"devDependencies": {
|
|
1543
|
+
"@types/chalk": "^2.2.0",
|
|
1544
|
+
"@types/debug": "^4.1.7",
|
|
1545
|
+
"@types/fs-extra": "^9.0.13",
|
|
1546
|
+
"@types/node": "^17.0.13"
|
|
1547
|
+
},
|
|
1548
|
+
"peerDependencies": {
|
|
1549
|
+
"vite": ">=2.0.0"
|
|
1550
|
+
}
|
|
1551
|
+
},
|
|
1552
|
+
"../../node_modules/.pnpm/vite-plugin-eslint@1.8.1_eslint@8.49.0_vite@4.4.9/node_modules/vite-plugin-eslint": {
|
|
1553
|
+
"version": "1.8.1",
|
|
1554
|
+
"license": "MIT",
|
|
1555
|
+
"dependencies": {
|
|
1556
|
+
"@rollup/pluginutils": "^4.2.1",
|
|
1557
|
+
"@types/eslint": "^8.4.5",
|
|
1558
|
+
"rollup": "^2.77.2"
|
|
1559
|
+
},
|
|
1560
|
+
"devDependencies": {
|
|
1561
|
+
"@types/node": "^18.0.6",
|
|
1562
|
+
"@typescript-eslint/eslint-plugin": "^5.30.7",
|
|
1563
|
+
"@typescript-eslint/parser": "^5.30.7",
|
|
1564
|
+
"cz-conventional-changelog": "^3.3.0",
|
|
1565
|
+
"eslint": "^8.21.0",
|
|
1566
|
+
"eslint-config-prettier": "^8.5.0",
|
|
1567
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
1568
|
+
"prettier": "^2.7.1",
|
|
1569
|
+
"standard-version": "^9.5.0",
|
|
1570
|
+
"tsup": "^6.2.1",
|
|
1571
|
+
"typescript": "^4.7.4",
|
|
1572
|
+
"vite": "^3.0.8"
|
|
1573
|
+
},
|
|
1574
|
+
"peerDependencies": {
|
|
1575
|
+
"eslint": ">=7",
|
|
1576
|
+
"vite": ">=2"
|
|
1577
|
+
}
|
|
1578
|
+
},
|
|
1579
|
+
"../../node_modules/.pnpm/vite-plugin-html@3.2.0_vite@4.4.9/node_modules/vite-plugin-html": {
|
|
1580
|
+
"version": "3.2.0",
|
|
1581
|
+
"dev": true,
|
|
1582
|
+
"license": "MIT",
|
|
1583
|
+
"dependencies": {
|
|
1584
|
+
"@rollup/pluginutils": "^4.2.0",
|
|
1585
|
+
"colorette": "^2.0.16",
|
|
1586
|
+
"connect-history-api-fallback": "^1.6.0",
|
|
1587
|
+
"consola": "^2.15.3",
|
|
1588
|
+
"dotenv": "^16.0.0",
|
|
1589
|
+
"dotenv-expand": "^8.0.2",
|
|
1590
|
+
"ejs": "^3.1.6",
|
|
1591
|
+
"fast-glob": "^3.2.11",
|
|
1592
|
+
"fs-extra": "^10.0.1",
|
|
1593
|
+
"html-minifier-terser": "^6.1.0",
|
|
1594
|
+
"node-html-parser": "^5.3.3",
|
|
1595
|
+
"pathe": "^0.2.0"
|
|
1596
|
+
},
|
|
1597
|
+
"devDependencies": {
|
|
1598
|
+
"@babel/types": "^7.17.0",
|
|
1599
|
+
"@types/ejs": "^3.1.0",
|
|
1600
|
+
"@types/fs-extra": "^9.0.13",
|
|
1601
|
+
"@types/html-minifier-terser": "^6.1.0",
|
|
1602
|
+
"@types/node": "^17.0.21",
|
|
1603
|
+
"typescript": "^4.6.2",
|
|
1604
|
+
"vite": "^2.8.6"
|
|
1605
|
+
},
|
|
1606
|
+
"peerDependencies": {
|
|
1607
|
+
"vite": ">=2.0.0"
|
|
1608
|
+
}
|
|
1609
|
+
},
|
|
1610
|
+
"../../node_modules/.pnpm/vite-plugin-static-copy@0.17.0_vite@4.4.9/node_modules/vite-plugin-static-copy": {
|
|
1611
|
+
"version": "0.17.0",
|
|
1612
|
+
"dev": true,
|
|
1613
|
+
"license": "MIT",
|
|
1614
|
+
"dependencies": {
|
|
1615
|
+
"chokidar": "^3.5.3",
|
|
1616
|
+
"fast-glob": "^3.2.11",
|
|
1617
|
+
"fs-extra": "^11.1.0",
|
|
1618
|
+
"picocolors": "^1.0.0"
|
|
1619
|
+
},
|
|
1620
|
+
"devDependencies": {
|
|
1621
|
+
"@polka/url": "^1.0.0-next.21",
|
|
1622
|
+
"@types/fs-extra": "^11.0.1",
|
|
1623
|
+
"@types/node": "^18.16.19",
|
|
1624
|
+
"@types/throttle-debounce": "^5.0.0",
|
|
1625
|
+
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
1626
|
+
"@typescript-eslint/parser": "^6.0.0",
|
|
1627
|
+
"eslint": "^8.45.0",
|
|
1628
|
+
"eslint-config-prettier": "^8.8.0",
|
|
1629
|
+
"eslint-plugin-vitest": "^0.2.6",
|
|
1630
|
+
"mrmime": "^1.0.1",
|
|
1631
|
+
"node-fetch": "^3.3.1",
|
|
1632
|
+
"prettier": "^3.0.0",
|
|
1633
|
+
"throttle-debounce": "^5.0.0",
|
|
1634
|
+
"tsup": "^7.1.0",
|
|
1635
|
+
"typescript": "^5.1.6",
|
|
1636
|
+
"vite": "^4.4.4",
|
|
1637
|
+
"vitest": "^0.33.0",
|
|
1638
|
+
"vitest-github-actions-reporter": "^0.10.0"
|
|
1639
|
+
},
|
|
1640
|
+
"engines": {
|
|
1641
|
+
"node": "^14.18.0 || >=16.0.0"
|
|
1642
|
+
},
|
|
1643
|
+
"peerDependencies": {
|
|
1644
|
+
"vite": "^3.0.0 || ^4.0.0"
|
|
1645
|
+
}
|
|
1646
|
+
},
|
|
1647
|
+
"../../node_modules/.pnpm/vite@4.4.9_@types+node@18.17.15_less@4.2.0_sass@1.66.1_terser@5.19.4/node_modules/vite": {
|
|
1648
|
+
"version": "4.4.9",
|
|
1649
|
+
"dev": true,
|
|
1650
|
+
"license": "MIT",
|
|
1651
|
+
"dependencies": {
|
|
1652
|
+
"esbuild": "^0.18.10",
|
|
1653
|
+
"postcss": "^8.4.27",
|
|
1654
|
+
"rollup": "^3.27.1"
|
|
1655
|
+
},
|
|
1656
|
+
"bin": {
|
|
1657
|
+
"vite": "bin/vite.js"
|
|
1658
|
+
},
|
|
1659
|
+
"devDependencies": {
|
|
1660
|
+
"@ampproject/remapping": "^2.2.1",
|
|
1661
|
+
"@babel/parser": "^7.22.7",
|
|
1662
|
+
"@babel/types": "^7.22.5",
|
|
1663
|
+
"@jridgewell/trace-mapping": "^0.3.18",
|
|
1664
|
+
"@rollup/plugin-alias": "^4.0.4",
|
|
1665
|
+
"@rollup/plugin-commonjs": "^25.0.3",
|
|
1666
|
+
"@rollup/plugin-dynamic-import-vars": "^2.0.4",
|
|
1667
|
+
"@rollup/plugin-json": "^6.0.0",
|
|
1668
|
+
"@rollup/plugin-node-resolve": "15.1.0",
|
|
1669
|
+
"@rollup/plugin-typescript": "^11.1.2",
|
|
1670
|
+
"@rollup/pluginutils": "^5.0.2",
|
|
1671
|
+
"@types/escape-html": "^1.0.2",
|
|
1672
|
+
"@types/pnpapi": "^0.0.2",
|
|
1673
|
+
"acorn": "^8.10.0",
|
|
1674
|
+
"acorn-walk": "^8.2.0",
|
|
1675
|
+
"cac": "^6.7.14",
|
|
1676
|
+
"chokidar": "^3.5.3",
|
|
1677
|
+
"connect": "^3.7.0",
|
|
1678
|
+
"connect-history-api-fallback": "^2.0.0",
|
|
1679
|
+
"convert-source-map": "^2.0.0",
|
|
1680
|
+
"cors": "^2.8.5",
|
|
1681
|
+
"cross-spawn": "^7.0.3",
|
|
1682
|
+
"debug": "^4.3.4",
|
|
1683
|
+
"dep-types": "link:./src/types",
|
|
1684
|
+
"dotenv": "^16.3.1",
|
|
1685
|
+
"dotenv-expand": "^9.0.0",
|
|
1686
|
+
"es-module-lexer": "^1.3.0",
|
|
1687
|
+
"escape-html": "^1.0.3",
|
|
1688
|
+
"estree-walker": "^3.0.3",
|
|
1689
|
+
"etag": "^1.8.1",
|
|
1690
|
+
"fast-glob": "^3.3.1",
|
|
1691
|
+
"http-proxy": "^1.18.1",
|
|
1692
|
+
"json-stable-stringify": "^1.0.2",
|
|
1693
|
+
"launch-editor-middleware": "^2.6.0",
|
|
1694
|
+
"lightningcss": "^1.21.5",
|
|
1695
|
+
"magic-string": "^0.30.2",
|
|
1696
|
+
"micromatch": "^4.0.5",
|
|
1697
|
+
"mlly": "^1.4.0",
|
|
1698
|
+
"mrmime": "^1.0.1",
|
|
1699
|
+
"okie": "^1.0.1",
|
|
1700
|
+
"open": "^8.4.2",
|
|
1701
|
+
"parse5": "^7.1.2",
|
|
1702
|
+
"periscopic": "^3.1.0",
|
|
1703
|
+
"picocolors": "^1.0.0",
|
|
1704
|
+
"picomatch": "^2.3.1",
|
|
1705
|
+
"postcss-import": "^15.1.0",
|
|
1706
|
+
"postcss-load-config": "^4.0.1",
|
|
1707
|
+
"postcss-modules": "^6.0.0",
|
|
1708
|
+
"resolve.exports": "^2.0.2",
|
|
1709
|
+
"rollup-plugin-license": "^3.0.1",
|
|
1710
|
+
"sirv": "^2.0.3",
|
|
1711
|
+
"source-map-support": "^0.5.21",
|
|
1712
|
+
"strip-ansi": "^7.1.0",
|
|
1713
|
+
"strip-literal": "^1.3.0",
|
|
1714
|
+
"tsconfck": "^2.1.2",
|
|
1715
|
+
"tslib": "^2.6.1",
|
|
1716
|
+
"types": "link:./types",
|
|
1717
|
+
"ufo": "^1.2.0",
|
|
1718
|
+
"ws": "^8.13.0"
|
|
1719
|
+
},
|
|
1720
|
+
"engines": {
|
|
1721
|
+
"node": "^14.18.0 || >=16.0.0"
|
|
1722
|
+
},
|
|
1723
|
+
"funding": {
|
|
1724
|
+
"url": "https://github.com/vitejs/vite?sponsor=1"
|
|
1725
|
+
},
|
|
1726
|
+
"optionalDependencies": {
|
|
1727
|
+
"fsevents": "~2.3.2"
|
|
1728
|
+
},
|
|
1729
|
+
"peerDependencies": {
|
|
1730
|
+
"@types/node": ">= 14",
|
|
1731
|
+
"less": "*",
|
|
1732
|
+
"lightningcss": "^1.21.0",
|
|
1733
|
+
"sass": "*",
|
|
1734
|
+
"stylus": "*",
|
|
1735
|
+
"sugarss": "*",
|
|
1736
|
+
"terser": "^5.4.0"
|
|
1737
|
+
},
|
|
1738
|
+
"peerDependenciesMeta": {
|
|
1739
|
+
"@types/node": {
|
|
1740
|
+
"optional": true
|
|
1741
|
+
},
|
|
1742
|
+
"less": {
|
|
1743
|
+
"optional": true
|
|
1744
|
+
},
|
|
1745
|
+
"lightningcss": {
|
|
1746
|
+
"optional": true
|
|
1747
|
+
},
|
|
1748
|
+
"sass": {
|
|
1749
|
+
"optional": true
|
|
1750
|
+
},
|
|
1751
|
+
"stylus": {
|
|
1752
|
+
"optional": true
|
|
1753
|
+
},
|
|
1754
|
+
"sugarss": {
|
|
1755
|
+
"optional": true
|
|
1756
|
+
},
|
|
1757
|
+
"terser": {
|
|
1758
|
+
"optional": true
|
|
1759
|
+
}
|
|
1760
|
+
}
|
|
1761
|
+
},
|
|
1762
|
+
"../../node_modules/.pnpm/vue-i18n@9.3.0-beta.24_vue@3.3.4/node_modules/vue-i18n": {
|
|
1763
|
+
"version": "9.3.0-beta.24",
|
|
1764
|
+
"license": "MIT",
|
|
1765
|
+
"dependencies": {
|
|
1766
|
+
"@intlify/core-base": "9.3.0-beta.24",
|
|
1767
|
+
"@intlify/shared": "9.3.0-beta.24",
|
|
1768
|
+
"@intlify/vue-devtools": "9.3.0-beta.24",
|
|
1769
|
+
"@vue/devtools-api": "^6.5.0"
|
|
1770
|
+
},
|
|
1771
|
+
"devDependencies": {
|
|
1772
|
+
"@intlify/devtools-if": "9.3.0-beta.24"
|
|
1773
|
+
},
|
|
1774
|
+
"engines": {
|
|
1775
|
+
"node": ">= 16"
|
|
1776
|
+
},
|
|
1777
|
+
"funding": {
|
|
1778
|
+
"url": "https://github.com/sponsors/kazupon"
|
|
1779
|
+
},
|
|
1780
|
+
"peerDependencies": {
|
|
1781
|
+
"vue": "^3.0.0"
|
|
1782
|
+
}
|
|
1783
|
+
},
|
|
1784
|
+
"../../node_modules/.pnpm/vue-property-decorator@9.1.2_vue-class-component@7.2.6_vue@3.3.4/node_modules/vue-property-decorator": {
|
|
1785
|
+
"version": "9.1.2",
|
|
1786
|
+
"license": "MIT",
|
|
1787
|
+
"devDependencies": {
|
|
1788
|
+
"@types/jest": "^26.0.15",
|
|
1789
|
+
"@types/node": "^14.14.9",
|
|
1790
|
+
"jest": "^26.6.3",
|
|
1791
|
+
"reflect-metadata": "^0.1.13",
|
|
1792
|
+
"rollup": "^2.33.3",
|
|
1793
|
+
"ts-jest": "^26.4.4",
|
|
1794
|
+
"typescript": "^4.1.2",
|
|
1795
|
+
"vue": "^2.6.10",
|
|
1796
|
+
"vue-class-component": "^7.2.3"
|
|
1797
|
+
},
|
|
1798
|
+
"peerDependencies": {
|
|
1799
|
+
"vue": "*",
|
|
1800
|
+
"vue-class-component": "*"
|
|
1801
|
+
}
|
|
1802
|
+
},
|
|
1803
|
+
"../../node_modules/.pnpm/vue-router@4.2.4_vue@3.3.4/node_modules/vue-router": {
|
|
1804
|
+
"version": "4.2.4",
|
|
1805
|
+
"license": "MIT",
|
|
1806
|
+
"dependencies": {
|
|
1807
|
+
"@vue/devtools-api": "^6.5.0"
|
|
1808
|
+
},
|
|
1809
|
+
"devDependencies": {
|
|
1810
|
+
"@microsoft/api-extractor": "^7.36.0",
|
|
1811
|
+
"@rollup/plugin-alias": "^5.0.0",
|
|
1812
|
+
"@rollup/plugin-commonjs": "^25.0.0",
|
|
1813
|
+
"@rollup/plugin-node-resolve": "^15.0.2",
|
|
1814
|
+
"@rollup/plugin-replace": "^5.0.2",
|
|
1815
|
+
"@rollup/plugin-terser": "^0.4.3",
|
|
1816
|
+
"@sucrase/jest-plugin": "^3.0.0",
|
|
1817
|
+
"@types/jest": "^29.5.1",
|
|
1818
|
+
"@types/jsdom": "^21.1.1",
|
|
1819
|
+
"@types/nightwatch": "^2.3.23",
|
|
1820
|
+
"@vitejs/plugin-vue": "^4.2.3",
|
|
1821
|
+
"@vue/compiler-sfc": "^3.3.4",
|
|
1822
|
+
"@vue/server-renderer": "^3.3.4",
|
|
1823
|
+
"@vue/test-utils": "^2.3.2",
|
|
1824
|
+
"browserstack-local": "^1.5.2",
|
|
1825
|
+
"chromedriver": "^113.0.0",
|
|
1826
|
+
"connect-history-api-fallback": "^1.6.0",
|
|
1827
|
+
"conventional-changelog-cli": "^2.1.1",
|
|
1828
|
+
"dotenv": "^16.0.3",
|
|
1829
|
+
"faked-promise": "^2.2.2",
|
|
1830
|
+
"geckodriver": "^3.2.0",
|
|
1831
|
+
"jest": "^29.5.0",
|
|
1832
|
+
"jest-environment-jsdom": "^29.5.0",
|
|
1833
|
+
"jest-mock-warn": "^1.1.0",
|
|
1834
|
+
"nightwatch": "^2.6.21",
|
|
1835
|
+
"nightwatch-helpers": "^1.2.0",
|
|
1836
|
+
"rimraf": "^5.0.1",
|
|
1837
|
+
"rollup": "^3.26.1",
|
|
1838
|
+
"rollup-plugin-analyzer": "^4.0.0",
|
|
1839
|
+
"rollup-plugin-typescript2": "^0.35.0",
|
|
1840
|
+
"sucrase": "^3.32.0",
|
|
1841
|
+
"typescript": "~5.1.6",
|
|
1842
|
+
"vite": "^4.3.8",
|
|
1843
|
+
"vue": "^3.3.4"
|
|
1844
|
+
},
|
|
1845
|
+
"funding": {
|
|
1846
|
+
"url": "https://github.com/sponsors/posva"
|
|
1847
|
+
},
|
|
1848
|
+
"peerDependencies": {
|
|
1849
|
+
"vue": "^3.2.0"
|
|
1850
|
+
}
|
|
1851
|
+
},
|
|
1852
|
+
"../../node_modules/.pnpm/vue-slicksort@2.0.5_vue@3.3.4/node_modules/vue-slicksort": {
|
|
1853
|
+
"version": "2.0.5",
|
|
1854
|
+
"license": "MIT",
|
|
1855
|
+
"devDependencies": {
|
|
1856
|
+
"@babel/core": "^7.13.14",
|
|
1857
|
+
"@babel/plugin-external-helpers": "^7.12.13",
|
|
1858
|
+
"@babel/plugin-transform-regenerator": "^7.13.15",
|
|
1859
|
+
"@babel/plugin-transform-runtime": "^7.13.15",
|
|
1860
|
+
"@babel/preset-env": "^7.12.16",
|
|
1861
|
+
"@cypress/vite-dev-server": "^4.0.1",
|
|
1862
|
+
"@cypress/vue": "^5.0.1",
|
|
1863
|
+
"@rollup/plugin-typescript": "^8.2.0",
|
|
1864
|
+
"@typescript-eslint/eslint-plugin": "^5.43.0",
|
|
1865
|
+
"@typescript-eslint/parser": "^5.43.0",
|
|
1866
|
+
"@vitejs/plugin-vue": "^3.2.0",
|
|
1867
|
+
"@vitejs/plugin-vue-jsx": "^2.1.1",
|
|
1868
|
+
"@vue/compiler-sfc": "^3.2.45",
|
|
1869
|
+
"@vue/test-utils": "^2.0.0-rc.6",
|
|
1870
|
+
"@vueuse/core": "^9.5.0",
|
|
1871
|
+
"autoprefixer": "^6.3.6",
|
|
1872
|
+
"cross-env": "^1.0.7",
|
|
1873
|
+
"cssnano": "^3.10.0",
|
|
1874
|
+
"cypress": "^11.1.0",
|
|
1875
|
+
"esbuild": "^0.8.44",
|
|
1876
|
+
"eslint": "^7.20.0",
|
|
1877
|
+
"eslint-plugin-cypress": "^2.11.2",
|
|
1878
|
+
"eslint-plugin-import": "^2.0.1",
|
|
1879
|
+
"eslint-plugin-vue": "^7.6.0",
|
|
1880
|
+
"postcss": "^8.2.6",
|
|
1881
|
+
"rimraf": "^2.5.2",
|
|
1882
|
+
"rollup": "^2.38.5",
|
|
1883
|
+
"rollup-plugin-babel": "^4.4.0",
|
|
1884
|
+
"rollup-plugin-bundle-size": "^1.0.3",
|
|
1885
|
+
"rollup-plugin-esbuild": "^2.6.1",
|
|
1886
|
+
"sass": "^1.32.6",
|
|
1887
|
+
"standard-changelog": "^2.0.27",
|
|
1888
|
+
"typescript": "^4.2.3",
|
|
1889
|
+
"vite": "^3.2.4",
|
|
1890
|
+
"vitepress": "^1.0.0-alpha.29",
|
|
1891
|
+
"vue": "^3.2.45",
|
|
1892
|
+
"vuepress": "^2.0.0-alpha.23"
|
|
1893
|
+
},
|
|
1894
|
+
"peerDependencies": {
|
|
1895
|
+
"vue": ">=3.0.0"
|
|
1896
|
+
}
|
|
1897
|
+
},
|
|
1898
|
+
"../../node_modules/.pnpm/vue-tsc@1.8.11_typescript@4.9.5/node_modules/vue-tsc": {
|
|
1899
|
+
"version": "1.8.11",
|
|
1900
|
+
"dev": true,
|
|
1901
|
+
"license": "MIT",
|
|
1902
|
+
"dependencies": {
|
|
1903
|
+
"@vue/language-core": "1.8.11",
|
|
1904
|
+
"@vue/typescript": "1.8.11",
|
|
1905
|
+
"semver": "^7.3.8"
|
|
1906
|
+
},
|
|
1907
|
+
"bin": {
|
|
1908
|
+
"vue-tsc": "bin/vue-tsc.js"
|
|
1909
|
+
},
|
|
1910
|
+
"peerDependencies": {
|
|
1911
|
+
"typescript": "*"
|
|
1912
|
+
}
|
|
1913
|
+
},
|
|
1914
|
+
"../../node_modules/.pnpm/vue@3.3.4/node_modules/vue": {
|
|
1915
|
+
"version": "3.3.4",
|
|
1916
|
+
"license": "MIT",
|
|
1917
|
+
"dependencies": {
|
|
1918
|
+
"@vue/compiler-dom": "3.3.4",
|
|
1919
|
+
"@vue/compiler-sfc": "3.3.4",
|
|
1920
|
+
"@vue/runtime-dom": "3.3.4",
|
|
1921
|
+
"@vue/server-renderer": "3.3.4",
|
|
1922
|
+
"@vue/shared": "3.3.4"
|
|
1923
|
+
}
|
|
1924
|
+
},
|
|
1925
|
+
"../../node_modules/.pnpm/vuex@4.1.0_vue@3.3.4/node_modules/vuex": {
|
|
1926
|
+
"version": "4.1.0",
|
|
1927
|
+
"license": "MIT",
|
|
1928
|
+
"dependencies": {
|
|
1929
|
+
"@vue/devtools-api": "^6.0.0-beta.11"
|
|
1930
|
+
},
|
|
1931
|
+
"devDependencies": {
|
|
1932
|
+
"@babel/core": "^7.14.3",
|
|
1933
|
+
"@babel/preset-env": "^7.14.2",
|
|
1934
|
+
"@rollup/plugin-buble": "^0.21.3",
|
|
1935
|
+
"@rollup/plugin-commonjs": "^19.0.0",
|
|
1936
|
+
"@rollup/plugin-node-resolve": "^13.0.0",
|
|
1937
|
+
"@rollup/plugin-replace": "^2.4.2",
|
|
1938
|
+
"@types/node": "^15.6.0",
|
|
1939
|
+
"@vue/compiler-sfc": "^3.2.4",
|
|
1940
|
+
"babel-jest": "^26.6.3",
|
|
1941
|
+
"babel-loader": "^8.2.2",
|
|
1942
|
+
"brotli": "^1.3.2",
|
|
1943
|
+
"chalk": "^4.1.1",
|
|
1944
|
+
"conventional-changelog-cli": "^2.1.1",
|
|
1945
|
+
"cross-env": "^7.0.3",
|
|
1946
|
+
"css-loader": "^2.1.0",
|
|
1947
|
+
"enquirer": "^2.3.5",
|
|
1948
|
+
"eslint": "^7.27.0",
|
|
1949
|
+
"eslint-plugin-vue-libs": "^4.0.0",
|
|
1950
|
+
"execa": "^5.0.0",
|
|
1951
|
+
"express": "^4.17.1",
|
|
1952
|
+
"fs-extra": "^10.0.0",
|
|
1953
|
+
"jest": "^26.6.3",
|
|
1954
|
+
"puppeteer": "^9.1.1",
|
|
1955
|
+
"regenerator-runtime": "^0.13.5",
|
|
1956
|
+
"rollup": "^2.49.0",
|
|
1957
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
1958
|
+
"semver": "^7.3.5",
|
|
1959
|
+
"start-server-and-test": "^1.12.3",
|
|
1960
|
+
"todomvc-app-css": "^2.4.1",
|
|
1961
|
+
"typescript": "^4.2.4",
|
|
1962
|
+
"vitepress": "^0.20.0",
|
|
1963
|
+
"vue": "^3.2.4",
|
|
1964
|
+
"vue-loader": "^16.5.0",
|
|
1965
|
+
"vue-style-loader": "^4.1.3",
|
|
1966
|
+
"webpack": "^4.43.0",
|
|
1967
|
+
"webpack-dev-middleware": "^3.7.2",
|
|
1968
|
+
"webpack-hot-middleware": "^2.25.0"
|
|
1969
|
+
},
|
|
1970
|
+
"peerDependencies": {
|
|
1971
|
+
"vue": "^3.2.0"
|
|
1972
|
+
}
|
|
1973
|
+
},
|
|
1974
|
+
"../../node_modules/.pnpm/webrtc-adapter@7.7.1/node_modules/webrtc-adapter": {
|
|
1975
|
+
"version": "7.7.1",
|
|
1976
|
+
"license": "BSD-3-Clause",
|
|
1977
|
+
"dependencies": {
|
|
1978
|
+
"rtcpeerconnection-shim": "^1.2.15",
|
|
1979
|
+
"sdp": "^2.12.0"
|
|
1980
|
+
},
|
|
1981
|
+
"devDependencies": {
|
|
1982
|
+
"babel-core": "^6.26.3",
|
|
1983
|
+
"babel-preset-env": "^1.7.0",
|
|
1984
|
+
"brfs": "^1.5.0",
|
|
1985
|
+
"chai": "^3.5.0",
|
|
1986
|
+
"grunt": "^1.1.0",
|
|
1987
|
+
"grunt-babel": "^7.0.0",
|
|
1988
|
+
"grunt-browserify": "^5.3.0",
|
|
1989
|
+
"grunt-cli": "^1.3.1",
|
|
1990
|
+
"grunt-contrib-clean": "^1.1.0",
|
|
1991
|
+
"grunt-contrib-copy": "^1.0.0",
|
|
1992
|
+
"grunt-eslint": "^19.0.0",
|
|
1993
|
+
"grunt-shell": "^2.1.0",
|
|
1994
|
+
"karma": "^4.4.1",
|
|
1995
|
+
"karma-browserify": "^5.2.0",
|
|
1996
|
+
"karma-chai": "^0.1.0",
|
|
1997
|
+
"karma-chrome-launcher": "^2.2.0",
|
|
1998
|
+
"karma-edge-launcher": "^0.4.1",
|
|
1999
|
+
"karma-firefox-launcher": "^1.3.0",
|
|
2000
|
+
"karma-mocha": "^1.3.0",
|
|
2001
|
+
"karma-mocha-reporter": "^2.2.3",
|
|
2002
|
+
"karma-safari-launcher": "^1.0.0",
|
|
2003
|
+
"karma-stability-reporter": "^3.0.1",
|
|
2004
|
+
"mocha": "^5.2.0",
|
|
2005
|
+
"sinon": "^2.2.0",
|
|
2006
|
+
"sinon-chai": "^2.14.0",
|
|
2007
|
+
"travis-multirunner": "^4.6.0"
|
|
2008
|
+
},
|
|
2009
|
+
"engines": {
|
|
2010
|
+
"node": ">=6.0.0",
|
|
2011
|
+
"npm": ">=3.10.0"
|
|
2012
|
+
}
|
|
2013
|
+
},
|
|
2014
|
+
"../../node_modules/.pnpm/wujie-vue2@1.0.18_vue@3.3.4/node_modules/wujie-vue2": {
|
|
2015
|
+
"version": "1.0.18",
|
|
2016
|
+
"license": "MIT",
|
|
2017
|
+
"dependencies": {
|
|
2018
|
+
"wujie": "1.0.18"
|
|
2019
|
+
},
|
|
2020
|
+
"devDependencies": {
|
|
2021
|
+
"@babel/cli": "^7.18.6",
|
|
2022
|
+
"@babel/core": "^7.16.0",
|
|
2023
|
+
"@babel/preset-env": "^7.16.0",
|
|
2024
|
+
"babel-loader": "^8.2.3",
|
|
2025
|
+
"cross-env": "^7.0.3",
|
|
2026
|
+
"csstype": "^3.1.1",
|
|
2027
|
+
"eslint": "^8.2.0",
|
|
2028
|
+
"eslint-plugin-vue": "^8.0.3",
|
|
2029
|
+
"webpack": "^5.61.0",
|
|
2030
|
+
"webpack-cli": "^4.9.1"
|
|
2031
|
+
},
|
|
2032
|
+
"peerDependencies": {
|
|
2033
|
+
"vue": "^2.6.0"
|
|
2034
|
+
}
|
|
2035
|
+
},
|
|
2036
|
+
"node_modules/@babel/core": {
|
|
2037
|
+
"resolved": "../../node_modules/.pnpm/@babel+core@7.22.17/node_modules/@babel/core",
|
|
2038
|
+
"link": true
|
|
2039
|
+
},
|
|
2040
|
+
"node_modules/@babel/eslint-parser": {
|
|
2041
|
+
"resolved": "../../node_modules/.pnpm/@babel+eslint-parser@7.22.15_@babel+core@7.22.17_eslint@8.49.0/node_modules/@babel/eslint-parser",
|
|
2042
|
+
"link": true
|
|
2043
|
+
},
|
|
2044
|
+
"node_modules/@babel/plugin-syntax-dynamic-import": {
|
|
2045
|
+
"resolved": "../../node_modules/.pnpm/@babel+plugin-syntax-dynamic-import@7.8.3_@babel+core@7.22.17/node_modules/@babel/plugin-syntax-dynamic-import",
|
|
2046
|
+
"link": true
|
|
2047
|
+
},
|
|
2048
|
+
"node_modules/@babel/runtime": {
|
|
2049
|
+
"version": "7.23.1",
|
|
2050
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.1.tgz",
|
|
2051
|
+
"integrity": "sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g==",
|
|
2052
|
+
"dependencies": {
|
|
2053
|
+
"regenerator-runtime": "^0.14.0"
|
|
2054
|
+
},
|
|
2055
|
+
"engines": {
|
|
2056
|
+
"node": ">=6.9.0"
|
|
2057
|
+
}
|
|
2058
|
+
},
|
|
2059
|
+
"node_modules/@element-plus/icons-vue": {
|
|
2060
|
+
"resolved": "../../node_modules/.pnpm/@element-plus+icons-vue@2.1.0_vue@3.3.4/node_modules/@element-plus/icons-vue",
|
|
2061
|
+
"link": true
|
|
2062
|
+
},
|
|
2063
|
+
"node_modules/@jridgewell/sourcemap-codec": {
|
|
2064
|
+
"version": "1.4.15",
|
|
2065
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
|
|
2066
|
+
"integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==",
|
|
2067
|
+
"dev": true
|
|
2068
|
+
},
|
|
2069
|
+
"node_modules/@rollup/pluginutils": {
|
|
2070
|
+
"version": "5.0.5",
|
|
2071
|
+
"resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.5.tgz",
|
|
2072
|
+
"integrity": "sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==",
|
|
2073
|
+
"dev": true,
|
|
2074
|
+
"dependencies": {
|
|
2075
|
+
"@types/estree": "^1.0.0",
|
|
2076
|
+
"estree-walker": "^2.0.2",
|
|
2077
|
+
"picomatch": "^2.3.1"
|
|
2078
|
+
},
|
|
2079
|
+
"engines": {
|
|
2080
|
+
"node": ">=14.0.0"
|
|
2081
|
+
},
|
|
2082
|
+
"peerDependencies": {
|
|
2083
|
+
"rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0"
|
|
2084
|
+
},
|
|
2085
|
+
"peerDependenciesMeta": {
|
|
2086
|
+
"rollup": {
|
|
2087
|
+
"optional": true
|
|
2088
|
+
}
|
|
2089
|
+
}
|
|
2090
|
+
},
|
|
2091
|
+
"node_modules/@rollup/pluginutils/node_modules/estree-walker": {
|
|
2092
|
+
"version": "2.0.2",
|
|
2093
|
+
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
|
|
2094
|
+
"integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
|
|
2095
|
+
"dev": true
|
|
2096
|
+
},
|
|
2097
|
+
"node_modules/@types/estree": {
|
|
2098
|
+
"version": "1.0.3",
|
|
2099
|
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.3.tgz",
|
|
2100
|
+
"integrity": "sha512-CS2rOaoQ/eAgAfcTfq6amKG7bsN+EMcgGY4FAFQdvSj2y1ixvOZTUA9mOtCai7E1SYu283XNw7urKK30nP3wkQ==",
|
|
2101
|
+
"dev": true
|
|
2102
|
+
},
|
|
2103
|
+
"node_modules/@types/node": {
|
|
2104
|
+
"resolved": "../../node_modules/.pnpm/@types+node@18.17.15/node_modules/@types/node",
|
|
2105
|
+
"link": true
|
|
2106
|
+
},
|
|
2107
|
+
"node_modules/@typescript-eslint/eslint-plugin": {
|
|
2108
|
+
"resolved": "../../node_modules/.pnpm/@typescript-eslint+eslint-plugin@5.62.0_@typescript-eslint+parser@5.62.0_eslint@8.49.0_typescript@4.9.5/node_modules/@typescript-eslint/eslint-plugin",
|
|
2109
|
+
"link": true
|
|
2110
|
+
},
|
|
2111
|
+
"node_modules/@typescript-eslint/parser": {
|
|
2112
|
+
"resolved": "../../node_modules/.pnpm/@typescript-eslint+parser@5.62.0_eslint@8.49.0_typescript@4.9.5/node_modules/@typescript-eslint/parser",
|
|
2113
|
+
"link": true
|
|
2114
|
+
},
|
|
2115
|
+
"node_modules/@vitejs/plugin-vue": {
|
|
2116
|
+
"resolved": "../../node_modules/.pnpm/@vitejs+plugin-vue@2.3.4_vite@4.4.9_vue@3.3.4/node_modules/@vitejs/plugin-vue",
|
|
2117
|
+
"link": true
|
|
2118
|
+
},
|
|
2119
|
+
"node_modules/autoprefixer": {
|
|
2120
|
+
"resolved": "../../node_modules/.pnpm/autoprefixer@10.4.15_postcss@8.4.29/node_modules/autoprefixer",
|
|
2121
|
+
"link": true
|
|
2122
|
+
},
|
|
2123
|
+
"node_modules/axios": {
|
|
2124
|
+
"resolved": "../../node_modules/.pnpm/axios@1.5.0/node_modules/axios",
|
|
2125
|
+
"link": true
|
|
2126
|
+
},
|
|
2127
|
+
"node_modules/barcode-detector": {
|
|
2128
|
+
"resolved": "../../node_modules/.pnpm/barcode-detector@1.0.4/node_modules/barcode-detector",
|
|
2129
|
+
"link": true
|
|
2130
|
+
},
|
|
2131
|
+
"node_modules/callforth": {
|
|
2132
|
+
"resolved": "../../node_modules/.pnpm/callforth@0.4.0/node_modules/callforth",
|
|
2133
|
+
"link": true
|
|
2134
|
+
},
|
|
2135
|
+
"node_modules/d": {
|
|
2136
|
+
"resolved": "../../node_modules/.pnpm/d@1.0.1/node_modules/d",
|
|
2137
|
+
"link": true
|
|
2138
|
+
},
|
|
2139
|
+
"node_modules/dayjs": {
|
|
2140
|
+
"resolved": "../../node_modules/.pnpm/dayjs@1.11.9/node_modules/dayjs",
|
|
2141
|
+
"link": true
|
|
2142
|
+
},
|
|
2143
|
+
"node_modules/element-plus": {
|
|
2144
|
+
"resolved": "../../node_modules/.pnpm/element-plus@2.3.12_vue@3.3.4/node_modules/element-plus",
|
|
2145
|
+
"link": true
|
|
2146
|
+
},
|
|
2147
|
+
"node_modules/element-ui": {
|
|
2148
|
+
"resolved": "../../node_modules/.pnpm/element-ui@2.15.14_vue@3.3.4/node_modules/element-ui",
|
|
2149
|
+
"link": true
|
|
2150
|
+
},
|
|
2151
|
+
"node_modules/esbuild": {
|
|
2152
|
+
"resolved": "../../node_modules/.pnpm/esbuild@0.19.2/node_modules/esbuild",
|
|
2153
|
+
"link": true
|
|
2154
|
+
},
|
|
2155
|
+
"node_modules/eslint": {
|
|
2156
|
+
"resolved": "../../node_modules/.pnpm/eslint@8.49.0/node_modules/eslint",
|
|
2157
|
+
"link": true
|
|
2158
|
+
},
|
|
2159
|
+
"node_modules/eslint-config-prettier": {
|
|
2160
|
+
"resolved": "../../node_modules/.pnpm/eslint-config-prettier@8.10.0_eslint@8.49.0/node_modules/eslint-config-prettier",
|
|
2161
|
+
"link": true
|
|
2162
|
+
},
|
|
2163
|
+
"node_modules/eslint-plugin-prettier": {
|
|
2164
|
+
"resolved": "../../node_modules/.pnpm/eslint-plugin-prettier@4.2.1_eslint-config-prettier@8.10.0_eslint@8.49.0_prettier@2.8.8/node_modules/eslint-plugin-prettier",
|
|
2165
|
+
"link": true
|
|
2166
|
+
},
|
|
2167
|
+
"node_modules/eslint-plugin-vue": {
|
|
2168
|
+
"resolved": "../../node_modules/.pnpm/eslint-plugin-vue@9.17.0_eslint@8.49.0/node_modules/eslint-plugin-vue",
|
|
2169
|
+
"link": true
|
|
2170
|
+
},
|
|
2171
|
+
"node_modules/estree-walker": {
|
|
2172
|
+
"version": "3.0.3",
|
|
2173
|
+
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz",
|
|
2174
|
+
"integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
|
|
2175
|
+
"dev": true,
|
|
2176
|
+
"dependencies": {
|
|
2177
|
+
"@types/estree": "^1.0.0"
|
|
2178
|
+
}
|
|
2179
|
+
},
|
|
2180
|
+
"node_modules/fsevents": {
|
|
2181
|
+
"version": "2.3.3",
|
|
2182
|
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
2183
|
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
2184
|
+
"dev": true,
|
|
2185
|
+
"hasInstallScript": true,
|
|
2186
|
+
"optional": true,
|
|
2187
|
+
"os": [
|
|
2188
|
+
"darwin"
|
|
2189
|
+
],
|
|
2190
|
+
"peer": true,
|
|
2191
|
+
"engines": {
|
|
2192
|
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
|
2193
|
+
}
|
|
2194
|
+
},
|
|
2195
|
+
"node_modules/is-reference": {
|
|
2196
|
+
"version": "3.0.2",
|
|
2197
|
+
"resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.2.tgz",
|
|
2198
|
+
"integrity": "sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==",
|
|
2199
|
+
"dev": true,
|
|
2200
|
+
"dependencies": {
|
|
2201
|
+
"@types/estree": "*"
|
|
2202
|
+
}
|
|
2203
|
+
},
|
|
2204
|
+
"node_modules/jquery": {
|
|
2205
|
+
"resolved": "../../node_modules/.pnpm/jquery@3.7.1/node_modules/jquery",
|
|
2206
|
+
"link": true
|
|
2207
|
+
},
|
|
2208
|
+
"node_modules/js-base64": {
|
|
2209
|
+
"resolved": "../../node_modules/.pnpm/js-base64@2.6.4/node_modules/js-base64",
|
|
2210
|
+
"link": true
|
|
2211
|
+
},
|
|
2212
|
+
"node_modules/jsencrypt": {
|
|
2213
|
+
"resolved": "../../node_modules/.pnpm/jsencrypt@3.3.2/node_modules/jsencrypt",
|
|
2214
|
+
"link": true
|
|
2215
|
+
},
|
|
2216
|
+
"node_modules/less": {
|
|
2217
|
+
"resolved": "../../node_modules/.pnpm/less@4.2.0/node_modules/less",
|
|
2218
|
+
"link": true
|
|
2219
|
+
},
|
|
2220
|
+
"node_modules/magic-string": {
|
|
2221
|
+
"version": "0.30.5",
|
|
2222
|
+
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.5.tgz",
|
|
2223
|
+
"integrity": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==",
|
|
2224
|
+
"dev": true,
|
|
2225
|
+
"dependencies": {
|
|
2226
|
+
"@jridgewell/sourcemap-codec": "^1.4.15"
|
|
2227
|
+
},
|
|
2228
|
+
"engines": {
|
|
2229
|
+
"node": ">=12"
|
|
2230
|
+
}
|
|
2231
|
+
},
|
|
2232
|
+
"node_modules/moment": {
|
|
2233
|
+
"resolved": "../../node_modules/.pnpm/moment@2.29.4/node_modules/moment",
|
|
2234
|
+
"link": true
|
|
2235
|
+
},
|
|
2236
|
+
"node_modules/picomatch": {
|
|
2237
|
+
"version": "2.3.1",
|
|
2238
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
|
2239
|
+
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
|
2240
|
+
"dev": true,
|
|
2241
|
+
"engines": {
|
|
2242
|
+
"node": ">=8.6"
|
|
2243
|
+
},
|
|
2244
|
+
"funding": {
|
|
2245
|
+
"url": "https://github.com/sponsors/jonschlinkert"
|
|
2246
|
+
}
|
|
2247
|
+
},
|
|
2248
|
+
"node_modules/postcss-pxtorem": {
|
|
2249
|
+
"resolved": "../../node_modules/.pnpm/postcss-pxtorem@6.0.0_postcss@8.4.29/node_modules/postcss-pxtorem",
|
|
2250
|
+
"link": true
|
|
2251
|
+
},
|
|
2252
|
+
"node_modules/prettier": {
|
|
2253
|
+
"resolved": "../../node_modules/.pnpm/prettier@2.8.8/node_modules/prettier",
|
|
2254
|
+
"link": true
|
|
2255
|
+
},
|
|
2256
|
+
"node_modules/regenerator-runtime": {
|
|
2257
|
+
"version": "0.14.0",
|
|
2258
|
+
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz",
|
|
2259
|
+
"integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="
|
|
2260
|
+
},
|
|
2261
|
+
"node_modules/rollup": {
|
|
2262
|
+
"version": "3.29.4",
|
|
2263
|
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz",
|
|
2264
|
+
"integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==",
|
|
2265
|
+
"dev": true,
|
|
2266
|
+
"peer": true,
|
|
2267
|
+
"bin": {
|
|
2268
|
+
"rollup": "dist/bin/rollup"
|
|
2269
|
+
},
|
|
2270
|
+
"engines": {
|
|
2271
|
+
"node": ">=14.18.0",
|
|
2272
|
+
"npm": ">=8.0.0"
|
|
2273
|
+
},
|
|
2274
|
+
"optionalDependencies": {
|
|
2275
|
+
"fsevents": "~2.3.2"
|
|
2276
|
+
}
|
|
2277
|
+
},
|
|
2278
|
+
"node_modules/rollup-plugin-external-globals": {
|
|
2279
|
+
"version": "0.8.0",
|
|
2280
|
+
"resolved": "https://registry.npmjs.org/rollup-plugin-external-globals/-/rollup-plugin-external-globals-0.8.0.tgz",
|
|
2281
|
+
"integrity": "sha512-c65c7hPMCE//cLzC4dLVE25XkuHsBqSkZp+/5pvtZ1MFwqgQLRRkIfuCvI3PnI7Yj8HoXqYtdsRN9gYF5a4tVQ==",
|
|
2282
|
+
"dev": true,
|
|
2283
|
+
"dependencies": {
|
|
2284
|
+
"@rollup/pluginutils": "^5.0.2",
|
|
2285
|
+
"estree-walker": "^3.0.3",
|
|
2286
|
+
"is-reference": "^3.0.1",
|
|
2287
|
+
"magic-string": "^0.30.0"
|
|
2288
|
+
},
|
|
2289
|
+
"peerDependencies": {
|
|
2290
|
+
"rollup": "^2.25.0 || ^3.3.0"
|
|
2291
|
+
}
|
|
2292
|
+
},
|
|
2293
|
+
"node_modules/rollup-plugin-visualizer": {
|
|
2294
|
+
"resolved": "../../node_modules/.pnpm/rollup-plugin-visualizer@5.9.2/node_modules/rollup-plugin-visualizer",
|
|
2295
|
+
"link": true
|
|
2296
|
+
},
|
|
2297
|
+
"node_modules/sass": {
|
|
2298
|
+
"resolved": "../../node_modules/.pnpm/sass@1.66.1/node_modules/sass",
|
|
2299
|
+
"link": true
|
|
2300
|
+
},
|
|
2301
|
+
"node_modules/sass-loader": {
|
|
2302
|
+
"resolved": "../../node_modules/.pnpm/sass-loader@13.3.2_sass@1.66.1_webpack@5.88.2/node_modules/sass-loader",
|
|
2303
|
+
"link": true
|
|
2304
|
+
},
|
|
2305
|
+
"node_modules/scss": {
|
|
2306
|
+
"resolved": "../../node_modules/.pnpm/scss@0.2.4/node_modules/scss",
|
|
2307
|
+
"link": true
|
|
2308
|
+
},
|
|
2309
|
+
"node_modules/svelte": {
|
|
2310
|
+
"resolved": "../../node_modules/.pnpm/svelte@3.59.2/node_modules/svelte",
|
|
2311
|
+
"link": true
|
|
2312
|
+
},
|
|
2313
|
+
"node_modules/svelte-preprocess": {
|
|
2314
|
+
"resolved": "../../node_modules/.pnpm/svelte-preprocess@5.0.4_@babel+core@7.22.17_less@4.2.0_postcss@8.4.29_sass@1.66.1_svelte@3.59.2_typescript@4.9.5/node_modules/svelte-preprocess",
|
|
2315
|
+
"link": true
|
|
2316
|
+
},
|
|
2317
|
+
"node_modules/typescript": {
|
|
2318
|
+
"resolved": "../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript",
|
|
2319
|
+
"link": true
|
|
2320
|
+
},
|
|
2321
|
+
"node_modules/unplugin-auto-import": {
|
|
2322
|
+
"resolved": "../../node_modules/.pnpm/unplugin-auto-import@0.13.0/node_modules/unplugin-auto-import",
|
|
2323
|
+
"link": true
|
|
2324
|
+
},
|
|
2325
|
+
"node_modules/unplugin-vue-components": {
|
|
2326
|
+
"resolved": "../../node_modules/.pnpm/unplugin-vue-components@0.24.1_vue@3.3.4/node_modules/unplugin-vue-components",
|
|
2327
|
+
"link": true
|
|
2328
|
+
},
|
|
2329
|
+
"node_modules/vite": {
|
|
2330
|
+
"resolved": "../../node_modules/.pnpm/vite@4.4.9_@types+node@18.17.15_less@4.2.0_sass@1.66.1_terser@5.19.4/node_modules/vite",
|
|
2331
|
+
"link": true
|
|
2332
|
+
},
|
|
2333
|
+
"node_modules/vite-plugin-compression": {
|
|
2334
|
+
"resolved": "../../node_modules/.pnpm/vite-plugin-compression@0.5.1_vite@4.4.9/node_modules/vite-plugin-compression",
|
|
2335
|
+
"link": true
|
|
2336
|
+
},
|
|
2337
|
+
"node_modules/vite-plugin-eslint": {
|
|
2338
|
+
"resolved": "../../node_modules/.pnpm/vite-plugin-eslint@1.8.1_eslint@8.49.0_vite@4.4.9/node_modules/vite-plugin-eslint",
|
|
2339
|
+
"link": true
|
|
2340
|
+
},
|
|
2341
|
+
"node_modules/vite-plugin-html": {
|
|
2342
|
+
"resolved": "../../node_modules/.pnpm/vite-plugin-html@3.2.0_vite@4.4.9/node_modules/vite-plugin-html",
|
|
2343
|
+
"link": true
|
|
2344
|
+
},
|
|
2345
|
+
"node_modules/vite-plugin-static-copy": {
|
|
2346
|
+
"resolved": "../../node_modules/.pnpm/vite-plugin-static-copy@0.17.0_vite@4.4.9/node_modules/vite-plugin-static-copy",
|
|
2347
|
+
"link": true
|
|
2348
|
+
},
|
|
2349
|
+
"node_modules/vue": {
|
|
2350
|
+
"resolved": "../../node_modules/.pnpm/vue@3.3.4/node_modules/vue",
|
|
2351
|
+
"link": true
|
|
2352
|
+
},
|
|
2353
|
+
"node_modules/vue-i18n": {
|
|
2354
|
+
"resolved": "../../node_modules/.pnpm/vue-i18n@9.3.0-beta.24_vue@3.3.4/node_modules/vue-i18n",
|
|
2355
|
+
"link": true
|
|
2356
|
+
},
|
|
2357
|
+
"node_modules/vue-property-decorator": {
|
|
2358
|
+
"resolved": "../../node_modules/.pnpm/vue-property-decorator@9.1.2_vue-class-component@7.2.6_vue@3.3.4/node_modules/vue-property-decorator",
|
|
2359
|
+
"link": true
|
|
2360
|
+
},
|
|
2361
|
+
"node_modules/vue-router": {
|
|
2362
|
+
"resolved": "../../node_modules/.pnpm/vue-router@4.2.4_vue@3.3.4/node_modules/vue-router",
|
|
2363
|
+
"link": true
|
|
2364
|
+
},
|
|
2365
|
+
"node_modules/vue-slicksort": {
|
|
2366
|
+
"resolved": "../../node_modules/.pnpm/vue-slicksort@2.0.5_vue@3.3.4/node_modules/vue-slicksort",
|
|
2367
|
+
"link": true
|
|
2368
|
+
},
|
|
2369
|
+
"node_modules/vue-tsc": {
|
|
2370
|
+
"resolved": "../../node_modules/.pnpm/vue-tsc@1.8.11_typescript@4.9.5/node_modules/vue-tsc",
|
|
2371
|
+
"link": true
|
|
2372
|
+
},
|
|
2373
|
+
"node_modules/vuex": {
|
|
2374
|
+
"resolved": "../../node_modules/.pnpm/vuex@4.1.0_vue@3.3.4/node_modules/vuex",
|
|
2375
|
+
"link": true
|
|
2376
|
+
},
|
|
2377
|
+
"node_modules/webrtc-adapter": {
|
|
2378
|
+
"resolved": "../../node_modules/.pnpm/webrtc-adapter@7.7.1/node_modules/webrtc-adapter",
|
|
2379
|
+
"link": true
|
|
2380
|
+
},
|
|
2381
|
+
"node_modules/wujie": {
|
|
2382
|
+
"version": "1.0.18",
|
|
2383
|
+
"resolved": "https://registry.npmjs.org/wujie/-/wujie-1.0.18.tgz",
|
|
2384
|
+
"integrity": "sha512-5/x2TRgJ9+6nHcHv7rmBWBKm3W49uDBOc1rzrQHxKPUCRscoHR8OQd1MCcoKDv1687CHNUTkODMyCIDktRl2ag==",
|
|
2385
|
+
"dependencies": {
|
|
2386
|
+
"@babel/runtime": "^7.18.6"
|
|
2387
|
+
}
|
|
2388
|
+
},
|
|
2389
|
+
"node_modules/wujie-vue2": {
|
|
2390
|
+
"resolved": "../../node_modules/.pnpm/wujie-vue2@1.0.18_vue@3.3.4/node_modules/wujie-vue2",
|
|
2391
|
+
"link": true
|
|
2392
|
+
}
|
|
2393
|
+
},
|
|
2394
|
+
"dependencies": {
|
|
2395
|
+
"@babel/core": {
|
|
2396
|
+
"version": "file:../../node_modules/.pnpm/@babel+core@7.22.17/node_modules/@babel/core",
|
|
2397
|
+
"requires": {
|
|
2398
|
+
"@ampproject/remapping": "^2.2.0",
|
|
2399
|
+
"@babel/code-frame": "^7.22.13",
|
|
2400
|
+
"@babel/generator": "^7.22.15",
|
|
2401
|
+
"@babel/helper-compilation-targets": "^7.22.15",
|
|
2402
|
+
"@babel/helper-module-transforms": "^7.22.17",
|
|
2403
|
+
"@babel/helper-transform-fixture-test-runner": "^7.22.15",
|
|
2404
|
+
"@babel/helpers": "^7.22.15",
|
|
2405
|
+
"@babel/parser": "^7.22.16",
|
|
2406
|
+
"@babel/plugin-syntax-flow": "^7.22.5",
|
|
2407
|
+
"@babel/plugin-transform-flow-strip-types": "^7.22.5",
|
|
2408
|
+
"@babel/plugin-transform-modules-commonjs": "^7.22.15",
|
|
2409
|
+
"@babel/preset-env": "^7.22.15",
|
|
2410
|
+
"@babel/preset-typescript": "^7.22.15",
|
|
2411
|
+
"@babel/template": "^7.22.15",
|
|
2412
|
+
"@babel/traverse": "^7.22.17",
|
|
2413
|
+
"@babel/types": "^7.22.17",
|
|
2414
|
+
"@jridgewell/trace-mapping": "^0.3.17",
|
|
2415
|
+
"@types/convert-source-map": "^1.5.1",
|
|
2416
|
+
"@types/debug": "^4.1.0",
|
|
2417
|
+
"@types/gensync": "^1.0.0",
|
|
2418
|
+
"@types/resolve": "^1.3.2",
|
|
2419
|
+
"@types/semver": "^5.4.0",
|
|
2420
|
+
"convert-source-map": "^1.7.0",
|
|
2421
|
+
"debug": "^4.1.0",
|
|
2422
|
+
"gensync": "^1.0.0-beta.2",
|
|
2423
|
+
"json5": "^2.2.3",
|
|
2424
|
+
"rimraf": "^3.0.0",
|
|
2425
|
+
"semver": "^6.3.1",
|
|
2426
|
+
"ts-node": "^10.9.1"
|
|
2427
|
+
}
|
|
2428
|
+
},
|
|
2429
|
+
"@babel/eslint-parser": {
|
|
2430
|
+
"version": "file:../../node_modules/.pnpm/@babel+eslint-parser@7.22.15_@babel+core@7.22.17_eslint@8.49.0/node_modules/@babel/eslint-parser",
|
|
2431
|
+
"requires": {
|
|
2432
|
+
"@babel/core": "^7.22.15",
|
|
2433
|
+
"@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1",
|
|
2434
|
+
"dedent": "^0.7.0",
|
|
2435
|
+
"eslint": "^8.22.0",
|
|
2436
|
+
"eslint-visitor-keys": "^2.1.0",
|
|
2437
|
+
"semver": "^6.3.1"
|
|
2438
|
+
}
|
|
2439
|
+
},
|
|
2440
|
+
"@babel/plugin-syntax-dynamic-import": {
|
|
2441
|
+
"version": "file:../../node_modules/.pnpm/@babel+plugin-syntax-dynamic-import@7.8.3_@babel+core@7.22.17/node_modules/@babel/plugin-syntax-dynamic-import",
|
|
2442
|
+
"requires": {
|
|
2443
|
+
"@babel/core": "^7.8.0",
|
|
2444
|
+
"@babel/helper-plugin-utils": "^7.8.0"
|
|
2445
|
+
}
|
|
2446
|
+
},
|
|
2447
|
+
"@babel/runtime": {
|
|
2448
|
+
"version": "7.23.1",
|
|
2449
|
+
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.1.tgz",
|
|
2450
|
+
"integrity": "sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g==",
|
|
2451
|
+
"requires": {
|
|
2452
|
+
"regenerator-runtime": "^0.14.0"
|
|
2453
|
+
}
|
|
2454
|
+
},
|
|
2455
|
+
"@element-plus/icons-vue": {
|
|
2456
|
+
"version": "file:../../node_modules/.pnpm/@element-plus+icons-vue@2.1.0_vue@3.3.4/node_modules/@element-plus/icons-vue",
|
|
2457
|
+
"requires": {
|
|
2458
|
+
"@element-plus/icons-svg": "2.1.0",
|
|
2459
|
+
"@pnpm/find-workspace-dir": "^5.0.1",
|
|
2460
|
+
"@pnpm/find-workspace-packages": "^5.0.37",
|
|
2461
|
+
"@pnpm/logger": "^5.0.0",
|
|
2462
|
+
"@types/fs-extra": "^11.0.1",
|
|
2463
|
+
"@types/node": "^18.14.6",
|
|
2464
|
+
"@types/prettier": "^2.7.2",
|
|
2465
|
+
"camelcase": "^7.0.1",
|
|
2466
|
+
"chalk": "^5.2.0",
|
|
2467
|
+
"consola": "^2.15.3",
|
|
2468
|
+
"esbuild": "^0.17.11",
|
|
2469
|
+
"esbuild-plugin-globals": "^0.1.1",
|
|
2470
|
+
"fast-glob": "^3.2.12",
|
|
2471
|
+
"fs-extra": "^11.1.0",
|
|
2472
|
+
"npm-run-all": "^4.1.5",
|
|
2473
|
+
"prettier": "^2.8.4",
|
|
2474
|
+
"tsx": "^3.12.3",
|
|
2475
|
+
"typescript": "^4.9.5",
|
|
2476
|
+
"unplugin-vue": "^4.0.2",
|
|
2477
|
+
"vue": "^3.2.47",
|
|
2478
|
+
"vue-tsc": "^1.2.0"
|
|
2479
|
+
}
|
|
2480
|
+
},
|
|
2481
|
+
"@jridgewell/sourcemap-codec": {
|
|
2482
|
+
"version": "1.4.15",
|
|
2483
|
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
|
|
2484
|
+
"integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==",
|
|
2485
|
+
"dev": true
|
|
2486
|
+
},
|
|
2487
|
+
"@rollup/pluginutils": {
|
|
2488
|
+
"version": "5.0.5",
|
|
2489
|
+
"resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.5.tgz",
|
|
2490
|
+
"integrity": "sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==",
|
|
2491
|
+
"dev": true,
|
|
2492
|
+
"requires": {
|
|
2493
|
+
"@types/estree": "^1.0.0",
|
|
2494
|
+
"estree-walker": "^2.0.2",
|
|
2495
|
+
"picomatch": "^2.3.1"
|
|
2496
|
+
},
|
|
2497
|
+
"dependencies": {
|
|
2498
|
+
"estree-walker": {
|
|
2499
|
+
"version": "2.0.2",
|
|
2500
|
+
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
|
|
2501
|
+
"integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==",
|
|
2502
|
+
"dev": true
|
|
2503
|
+
}
|
|
2504
|
+
}
|
|
2505
|
+
},
|
|
2506
|
+
"@types/estree": {
|
|
2507
|
+
"version": "1.0.3",
|
|
2508
|
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.3.tgz",
|
|
2509
|
+
"integrity": "sha512-CS2rOaoQ/eAgAfcTfq6amKG7bsN+EMcgGY4FAFQdvSj2y1ixvOZTUA9mOtCai7E1SYu283XNw7urKK30nP3wkQ==",
|
|
2510
|
+
"dev": true
|
|
2511
|
+
},
|
|
2512
|
+
"@types/node": {
|
|
2513
|
+
"version": "file:../../node_modules/.pnpm/@types+node@18.17.15/node_modules/@types/node"
|
|
2514
|
+
},
|
|
2515
|
+
"@typescript-eslint/eslint-plugin": {
|
|
2516
|
+
"version": "file:../../node_modules/.pnpm/@typescript-eslint+eslint-plugin@5.62.0_@typescript-eslint+parser@5.62.0_eslint@8.49.0_typescript@4.9.5/node_modules/@typescript-eslint/eslint-plugin",
|
|
2517
|
+
"requires": {
|
|
2518
|
+
"@eslint-community/regexpp": "^4.4.0",
|
|
2519
|
+
"@types/debug": "*",
|
|
2520
|
+
"@types/json-schema": "*",
|
|
2521
|
+
"@types/marked": "*",
|
|
2522
|
+
"@types/natural-compare-lite": "^1.4.0",
|
|
2523
|
+
"@types/prettier": "*",
|
|
2524
|
+
"@typescript-eslint/scope-manager": "5.62.0",
|
|
2525
|
+
"@typescript-eslint/type-utils": "5.62.0",
|
|
2526
|
+
"@typescript-eslint/utils": "5.62.0",
|
|
2527
|
+
"chalk": "^5.0.1",
|
|
2528
|
+
"cross-fetch": "^3.1.5",
|
|
2529
|
+
"debug": "^4.3.4",
|
|
2530
|
+
"graphemer": "^1.4.0",
|
|
2531
|
+
"ignore": "^5.2.0",
|
|
2532
|
+
"json-schema": "*",
|
|
2533
|
+
"markdown-table": "^3.0.2",
|
|
2534
|
+
"marked": "^4.0.15",
|
|
2535
|
+
"natural-compare-lite": "^1.4.0",
|
|
2536
|
+
"prettier": "*",
|
|
2537
|
+
"semver": "^7.3.7",
|
|
2538
|
+
"title-case": "^3.0.3",
|
|
2539
|
+
"tsutils": "^3.21.0",
|
|
2540
|
+
"typescript": "*"
|
|
2541
|
+
}
|
|
2542
|
+
},
|
|
2543
|
+
"@typescript-eslint/parser": {
|
|
2544
|
+
"version": "file:../../node_modules/.pnpm/@typescript-eslint+parser@5.62.0_eslint@8.49.0_typescript@4.9.5/node_modules/@typescript-eslint/parser",
|
|
2545
|
+
"requires": {
|
|
2546
|
+
"@types/glob": "*",
|
|
2547
|
+
"@typescript-eslint/scope-manager": "5.62.0",
|
|
2548
|
+
"@typescript-eslint/types": "5.62.0",
|
|
2549
|
+
"@typescript-eslint/typescript-estree": "5.62.0",
|
|
2550
|
+
"debug": "^4.3.4",
|
|
2551
|
+
"glob": "*",
|
|
2552
|
+
"typescript": "*"
|
|
2553
|
+
}
|
|
2554
|
+
},
|
|
2555
|
+
"@vitejs/plugin-vue": {
|
|
2556
|
+
"version": "file:../../node_modules/.pnpm/@vitejs+plugin-vue@2.3.4_vite@4.4.9_vue@3.3.4/node_modules/@vitejs/plugin-vue",
|
|
2557
|
+
"requires": {
|
|
2558
|
+
"@rollup/pluginutils": "^4.2.1",
|
|
2559
|
+
"@types/hash-sum": "^1.0.0",
|
|
2560
|
+
"debug": "^4.3.4",
|
|
2561
|
+
"hash-sum": "^2.0.0",
|
|
2562
|
+
"rollup": ">=2.59.0 <2.78.0",
|
|
2563
|
+
"slash": "^4.0.0",
|
|
2564
|
+
"source-map": "^0.6.1",
|
|
2565
|
+
"vue": "^3.2.33"
|
|
2566
|
+
}
|
|
2567
|
+
},
|
|
2568
|
+
"autoprefixer": {
|
|
2569
|
+
"version": "file:../../node_modules/.pnpm/autoprefixer@10.4.15_postcss@8.4.29/node_modules/autoprefixer",
|
|
2570
|
+
"requires": {
|
|
2571
|
+
"browserslist": "^4.21.10",
|
|
2572
|
+
"caniuse-lite": "^1.0.30001520",
|
|
2573
|
+
"fraction.js": "^4.2.0",
|
|
2574
|
+
"normalize-range": "^0.1.2",
|
|
2575
|
+
"picocolors": "^1.0.0",
|
|
2576
|
+
"postcss-value-parser": "^4.2.0"
|
|
2577
|
+
}
|
|
2578
|
+
},
|
|
2579
|
+
"axios": {
|
|
2580
|
+
"version": "file:../../node_modules/.pnpm/axios@1.5.0/node_modules/axios",
|
|
2581
|
+
"requires": {
|
|
2582
|
+
"@babel/core": "^7.18.2",
|
|
2583
|
+
"@babel/preset-env": "^7.18.2",
|
|
2584
|
+
"@commitlint/cli": "^17.3.0",
|
|
2585
|
+
"@commitlint/config-conventional": "^17.3.0",
|
|
2586
|
+
"@release-it/conventional-changelog": "^5.1.1",
|
|
2587
|
+
"@rollup/plugin-babel": "^5.3.1",
|
|
2588
|
+
"@rollup/plugin-commonjs": "^15.1.0",
|
|
2589
|
+
"@rollup/plugin-json": "^4.1.0",
|
|
2590
|
+
"@rollup/plugin-multi-entry": "^4.0.0",
|
|
2591
|
+
"@rollup/plugin-node-resolve": "^9.0.0",
|
|
2592
|
+
"abortcontroller-polyfill": "^1.7.3",
|
|
2593
|
+
"auto-changelog": "^2.4.0",
|
|
2594
|
+
"body-parser": "^1.20.0",
|
|
2595
|
+
"chalk": "^5.2.0",
|
|
2596
|
+
"coveralls": "^3.1.1",
|
|
2597
|
+
"cross-env": "^7.0.3",
|
|
2598
|
+
"dev-null": "^0.1.1",
|
|
2599
|
+
"dtslint": "^4.2.1",
|
|
2600
|
+
"es6-promise": "^4.2.8",
|
|
2601
|
+
"eslint": "^8.17.0",
|
|
2602
|
+
"express": "^4.18.1",
|
|
2603
|
+
"follow-redirects": "^1.15.0",
|
|
2604
|
+
"form-data": "^4.0.0",
|
|
2605
|
+
"formdata-node": "^5.0.0",
|
|
2606
|
+
"formidable": "^2.0.1",
|
|
2607
|
+
"fs-extra": "^10.1.0",
|
|
2608
|
+
"get-stream": "^3.0.0",
|
|
2609
|
+
"gulp": "^4.0.2",
|
|
2610
|
+
"gzip-size": "^7.0.0",
|
|
2611
|
+
"handlebars": "^4.7.7",
|
|
2612
|
+
"husky": "^8.0.2",
|
|
2613
|
+
"istanbul-instrumenter-loader": "^3.0.1",
|
|
2614
|
+
"jasmine-core": "^2.4.1",
|
|
2615
|
+
"karma": "^6.3.17",
|
|
2616
|
+
"karma-chrome-launcher": "^3.1.1",
|
|
2617
|
+
"karma-firefox-launcher": "^2.1.2",
|
|
2618
|
+
"karma-jasmine": "^1.1.1",
|
|
2619
|
+
"karma-jasmine-ajax": "^0.1.13",
|
|
2620
|
+
"karma-rollup-preprocessor": "^7.0.8",
|
|
2621
|
+
"karma-safari-launcher": "^1.0.0",
|
|
2622
|
+
"karma-sauce-launcher": "^4.3.6",
|
|
2623
|
+
"karma-sinon": "^1.0.5",
|
|
2624
|
+
"karma-sourcemap-loader": "^0.3.8",
|
|
2625
|
+
"minimist": "^1.2.7",
|
|
2626
|
+
"mocha": "^10.0.0",
|
|
2627
|
+
"multer": "^1.4.4",
|
|
2628
|
+
"pretty-bytes": "^6.0.0",
|
|
2629
|
+
"proxy-from-env": "^1.1.0",
|
|
2630
|
+
"release-it": "^15.5.1",
|
|
2631
|
+
"rollup": "^2.67.0",
|
|
2632
|
+
"rollup-plugin-auto-external": "^2.0.0",
|
|
2633
|
+
"rollup-plugin-bundle-size": "^1.0.3",
|
|
2634
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
2635
|
+
"sinon": "^4.5.0",
|
|
2636
|
+
"stream-throttle": "^0.1.3",
|
|
2637
|
+
"string-replace-async": "^3.0.2",
|
|
2638
|
+
"terser-webpack-plugin": "^4.2.3",
|
|
2639
|
+
"typescript": "^4.8.4"
|
|
2640
|
+
}
|
|
2641
|
+
},
|
|
2642
|
+
"barcode-detector": {
|
|
2643
|
+
"version": "file:../../node_modules/.pnpm/barcode-detector@1.0.4/node_modules/barcode-detector",
|
|
2644
|
+
"requires": {
|
|
2645
|
+
"@zxing/library": "^0.18.4",
|
|
2646
|
+
"jsqr": "^1.3.1",
|
|
2647
|
+
"microbundle": "^0.13.3",
|
|
2648
|
+
"semantic-release": "^17.4.3"
|
|
2649
|
+
}
|
|
2650
|
+
},
|
|
2651
|
+
"callforth": {
|
|
2652
|
+
"version": "file:../../node_modules/.pnpm/callforth@0.4.0/node_modules/callforth",
|
|
2653
|
+
"requires": {
|
|
2654
|
+
"microbundle": "^0.12.4"
|
|
2655
|
+
}
|
|
2656
|
+
},
|
|
2657
|
+
"d": {
|
|
2658
|
+
"version": "file:../../node_modules/.pnpm/d@1.0.1/node_modules/d",
|
|
2659
|
+
"requires": {
|
|
2660
|
+
"es5-ext": "^0.10.50",
|
|
2661
|
+
"eslint": "^5.16.0",
|
|
2662
|
+
"eslint-config-medikoo": "^2.3.0",
|
|
2663
|
+
"git-list-updated": "^1.1.2",
|
|
2664
|
+
"husky": "^2.4.1",
|
|
2665
|
+
"lint-staged": "^8.2.1",
|
|
2666
|
+
"prettier-elastic": "^1.18.2",
|
|
2667
|
+
"tad": "^2.0.1",
|
|
2668
|
+
"type": "^1.0.1"
|
|
2669
|
+
}
|
|
2670
|
+
},
|
|
2671
|
+
"dayjs": {
|
|
2672
|
+
"version": "file:../../node_modules/.pnpm/dayjs@1.11.9/node_modules/dayjs",
|
|
2673
|
+
"requires": {
|
|
2674
|
+
"@babel/cli": "^7.0.0-beta.44",
|
|
2675
|
+
"@babel/core": "^7.0.0-beta.44",
|
|
2676
|
+
"@babel/node": "^7.0.0-beta.44",
|
|
2677
|
+
"@babel/preset-env": "^7.0.0-beta.44",
|
|
2678
|
+
"babel-core": "^7.0.0-bridge.0",
|
|
2679
|
+
"babel-jest": "^22.4.3",
|
|
2680
|
+
"babel-plugin-external-helpers": "^6.22.0",
|
|
2681
|
+
"cross-env": "^5.1.6",
|
|
2682
|
+
"eslint": "^4.19.1",
|
|
2683
|
+
"eslint-config-airbnb-base": "^12.1.0",
|
|
2684
|
+
"eslint-plugin-import": "^2.10.0",
|
|
2685
|
+
"eslint-plugin-jest": "^21.15.0",
|
|
2686
|
+
"gzip-size-cli": "^2.1.0",
|
|
2687
|
+
"jasmine-core": "^2.99.1",
|
|
2688
|
+
"jest": "^22.4.3",
|
|
2689
|
+
"karma": "^2.0.2",
|
|
2690
|
+
"karma-jasmine": "^1.1.2",
|
|
2691
|
+
"karma-sauce-launcher": "^1.1.0",
|
|
2692
|
+
"mockdate": "^2.0.2",
|
|
2693
|
+
"moment": "2.29.2",
|
|
2694
|
+
"moment-timezone": "0.5.31",
|
|
2695
|
+
"ncp": "^2.0.0",
|
|
2696
|
+
"pre-commit": "^1.2.2",
|
|
2697
|
+
"prettier": "^1.16.1",
|
|
2698
|
+
"rollup": "^2.45.1",
|
|
2699
|
+
"rollup-plugin-babel": "^4.4.0",
|
|
2700
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
2701
|
+
"size-limit": "^0.18.0",
|
|
2702
|
+
"typescript": "^2.8.3"
|
|
2703
|
+
}
|
|
2704
|
+
},
|
|
2705
|
+
"element-plus": {
|
|
2706
|
+
"version": "file:../../node_modules/.pnpm/element-plus@2.3.12_vue@3.3.4/node_modules/element-plus",
|
|
2707
|
+
"requires": {
|
|
2708
|
+
"@ctrl/tinycolor": "^3.4.1",
|
|
2709
|
+
"@element-plus/icons-vue": "^2.0.6",
|
|
2710
|
+
"@floating-ui/dom": "^1.0.1",
|
|
2711
|
+
"@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7",
|
|
2712
|
+
"@types/lodash": "^4.14.182",
|
|
2713
|
+
"@types/lodash-es": "^4.17.6",
|
|
2714
|
+
"@types/node": "*",
|
|
2715
|
+
"@vueuse/core": "^9.1.0",
|
|
2716
|
+
"async-validator": "^4.2.5",
|
|
2717
|
+
"csstype": "^2.6.20",
|
|
2718
|
+
"dayjs": "^1.11.3",
|
|
2719
|
+
"escape-html": "^1.0.3",
|
|
2720
|
+
"lodash": "^4.17.21",
|
|
2721
|
+
"lodash-es": "^4.17.21",
|
|
2722
|
+
"lodash-unified": "^1.0.2",
|
|
2723
|
+
"memoize-one": "^6.0.0",
|
|
2724
|
+
"normalize-wheel-es": "^1.2.0",
|
|
2725
|
+
"vue": "^3.2.37",
|
|
2726
|
+
"vue-router": "^4.0.16"
|
|
2727
|
+
}
|
|
2728
|
+
},
|
|
2729
|
+
"element-ui": {
|
|
2730
|
+
"version": "file:../../node_modules/.pnpm/element-ui@2.15.14_vue@3.3.4/node_modules/element-ui",
|
|
2731
|
+
"requires": {
|
|
2732
|
+
"@vue/component-compiler-utils": "^2.6.0",
|
|
2733
|
+
"algoliasearch": "^3.24.5",
|
|
2734
|
+
"async-validator": "~1.8.1",
|
|
2735
|
+
"babel-cli": "^6.26.0",
|
|
2736
|
+
"babel-core": "^6.26.3",
|
|
2737
|
+
"babel-helper-vue-jsx-merge-props": "^2.0.0",
|
|
2738
|
+
"babel-loader": "^7.1.5",
|
|
2739
|
+
"babel-plugin-add-module-exports": "^0.2.1",
|
|
2740
|
+
"babel-plugin-istanbul": "^4.1.1",
|
|
2741
|
+
"babel-plugin-module-resolver": "^2.2.0",
|
|
2742
|
+
"babel-plugin-syntax-jsx": "^6.18.0",
|
|
2743
|
+
"babel-plugin-transform-vue-jsx": "^3.7.0",
|
|
2744
|
+
"babel-preset-env": "^1.7.0",
|
|
2745
|
+
"babel-preset-stage-2": "^6.24.1",
|
|
2746
|
+
"babel-regenerator-runtime": "^6.5.0",
|
|
2747
|
+
"chai": "^4.2.0",
|
|
2748
|
+
"chokidar": "^1.7.0",
|
|
2749
|
+
"copy-webpack-plugin": "^5.0.0",
|
|
2750
|
+
"coveralls": "^3.0.3",
|
|
2751
|
+
"cp-cli": "^1.0.2",
|
|
2752
|
+
"cross-env": "^3.1.3",
|
|
2753
|
+
"css-loader": "^2.1.0",
|
|
2754
|
+
"deepmerge": "^1.2.0",
|
|
2755
|
+
"es6-promise": "^4.0.5",
|
|
2756
|
+
"eslint": "4.18.2",
|
|
2757
|
+
"eslint-config-elemefe": "0.1.1",
|
|
2758
|
+
"eslint-loader": "^2.0.0",
|
|
2759
|
+
"eslint-plugin-html": "^4.0.1",
|
|
2760
|
+
"eslint-plugin-json": "^1.2.0",
|
|
2761
|
+
"file-loader": "^1.1.11",
|
|
2762
|
+
"file-save": "^0.2.0",
|
|
2763
|
+
"gulp": "^4.0.0",
|
|
2764
|
+
"gulp-autoprefixer": "^6.0.0",
|
|
2765
|
+
"gulp-cssmin": "^0.2.0",
|
|
2766
|
+
"gulp-sass": "^4.0.2",
|
|
2767
|
+
"highlight.js": "^9.3.0",
|
|
2768
|
+
"html-webpack-plugin": "^3.2.0",
|
|
2769
|
+
"json-loader": "^0.5.7",
|
|
2770
|
+
"json-templater": "^1.0.4",
|
|
2771
|
+
"karma": "^4.0.1",
|
|
2772
|
+
"karma-chrome-launcher": "^2.2.0",
|
|
2773
|
+
"karma-coverage": "^1.1.2",
|
|
2774
|
+
"karma-mocha": "^1.3.0",
|
|
2775
|
+
"karma-sinon-chai": "^2.0.2",
|
|
2776
|
+
"karma-sourcemap-loader": "^0.3.7",
|
|
2777
|
+
"karma-spec-reporter": "^0.0.32",
|
|
2778
|
+
"karma-webpack": "^3.0.5",
|
|
2779
|
+
"launch-editor-middleware": "^2.3.0",
|
|
2780
|
+
"markdown-it": "^8.4.1",
|
|
2781
|
+
"markdown-it-anchor": "^5.0.2",
|
|
2782
|
+
"markdown-it-chain": "^1.3.0",
|
|
2783
|
+
"markdown-it-container": "^2.0.0",
|
|
2784
|
+
"mini-css-extract-plugin": "^0.4.1",
|
|
2785
|
+
"mocha": "^6.0.2",
|
|
2786
|
+
"node-sass": "^4.11.0",
|
|
2787
|
+
"normalize-wheel": "^1.0.1",
|
|
2788
|
+
"optimize-css-assets-webpack-plugin": "^5.0.1",
|
|
2789
|
+
"postcss": "^7.0.14",
|
|
2790
|
+
"progress-bar-webpack-plugin": "^1.11.0",
|
|
2791
|
+
"resize-observer-polyfill": "^1.5.0",
|
|
2792
|
+
"rimraf": "^2.5.4",
|
|
2793
|
+
"sass-loader": "^7.1.0",
|
|
2794
|
+
"select-version-cli": "^0.0.2",
|
|
2795
|
+
"sinon": "^7.2.7",
|
|
2796
|
+
"sinon-chai": "^3.3.0",
|
|
2797
|
+
"style-loader": "^0.23.1",
|
|
2798
|
+
"throttle-debounce": "^1.0.1",
|
|
2799
|
+
"transliteration": "^1.1.11",
|
|
2800
|
+
"uglifyjs-webpack-plugin": "^2.1.1",
|
|
2801
|
+
"uppercamelcase": "^1.1.0",
|
|
2802
|
+
"url-loader": "^1.0.1",
|
|
2803
|
+
"vue": "2.5.21",
|
|
2804
|
+
"vue-loader": "^15.7.0",
|
|
2805
|
+
"vue-router": "^3.0.1",
|
|
2806
|
+
"vue-template-compiler": "2.5.21",
|
|
2807
|
+
"vue-template-es2015-compiler": "^1.6.0",
|
|
2808
|
+
"webpack": "^4.14.0",
|
|
2809
|
+
"webpack-cli": "^3.0.8",
|
|
2810
|
+
"webpack-dev-server": "^3.1.11",
|
|
2811
|
+
"webpack-node-externals": "^1.7.2"
|
|
2812
|
+
}
|
|
2813
|
+
},
|
|
2814
|
+
"esbuild": {
|
|
2815
|
+
"version": "file:../../node_modules/.pnpm/esbuild@0.19.2/node_modules/esbuild",
|
|
2816
|
+
"requires": {
|
|
2817
|
+
"@esbuild/android-arm": "0.19.2",
|
|
2818
|
+
"@esbuild/android-arm64": "0.19.2",
|
|
2819
|
+
"@esbuild/android-x64": "0.19.2",
|
|
2820
|
+
"@esbuild/darwin-arm64": "0.19.2",
|
|
2821
|
+
"@esbuild/darwin-x64": "0.19.2",
|
|
2822
|
+
"@esbuild/freebsd-arm64": "0.19.2",
|
|
2823
|
+
"@esbuild/freebsd-x64": "0.19.2",
|
|
2824
|
+
"@esbuild/linux-arm": "0.19.2",
|
|
2825
|
+
"@esbuild/linux-arm64": "0.19.2",
|
|
2826
|
+
"@esbuild/linux-ia32": "0.19.2",
|
|
2827
|
+
"@esbuild/linux-loong64": "0.19.2",
|
|
2828
|
+
"@esbuild/linux-mips64el": "0.19.2",
|
|
2829
|
+
"@esbuild/linux-ppc64": "0.19.2",
|
|
2830
|
+
"@esbuild/linux-riscv64": "0.19.2",
|
|
2831
|
+
"@esbuild/linux-s390x": "0.19.2",
|
|
2832
|
+
"@esbuild/linux-x64": "0.19.2",
|
|
2833
|
+
"@esbuild/netbsd-x64": "0.19.2",
|
|
2834
|
+
"@esbuild/openbsd-x64": "0.19.2",
|
|
2835
|
+
"@esbuild/sunos-x64": "0.19.2",
|
|
2836
|
+
"@esbuild/win32-arm64": "0.19.2",
|
|
2837
|
+
"@esbuild/win32-ia32": "0.19.2",
|
|
2838
|
+
"@esbuild/win32-x64": "0.19.2"
|
|
2839
|
+
}
|
|
2840
|
+
},
|
|
2841
|
+
"eslint": {
|
|
2842
|
+
"version": "file:../../node_modules/.pnpm/eslint@8.49.0/node_modules/eslint",
|
|
2843
|
+
"requires": {
|
|
2844
|
+
"@babel/core": "^7.4.3",
|
|
2845
|
+
"@babel/preset-env": "^7.4.3",
|
|
2846
|
+
"@eslint-community/eslint-utils": "^4.2.0",
|
|
2847
|
+
"@eslint-community/regexpp": "^4.6.1",
|
|
2848
|
+
"@eslint/eslintrc": "^2.1.2",
|
|
2849
|
+
"@eslint/js": "8.49.0",
|
|
2850
|
+
"@humanwhocodes/config-array": "^0.11.11",
|
|
2851
|
+
"@humanwhocodes/module-importer": "^1.0.1",
|
|
2852
|
+
"@nodelib/fs.walk": "^1.2.8",
|
|
2853
|
+
"@wdio/browser-runner": "^8.14.6",
|
|
2854
|
+
"@wdio/cli": "^8.14.6",
|
|
2855
|
+
"@wdio/concise-reporter": "^8.14.0",
|
|
2856
|
+
"@wdio/globals": "^8.14.6",
|
|
2857
|
+
"@wdio/mocha-framework": "^8.14.0",
|
|
2858
|
+
"ajv": "^6.12.4",
|
|
2859
|
+
"babel-loader": "^8.0.5",
|
|
2860
|
+
"c8": "^7.12.0",
|
|
2861
|
+
"chai": "^4.0.1",
|
|
2862
|
+
"chalk": "^4.0.0",
|
|
2863
|
+
"cheerio": "^0.22.0",
|
|
2864
|
+
"common-tags": "^1.8.0",
|
|
2865
|
+
"core-js": "^3.1.3",
|
|
2866
|
+
"cross-spawn": "^7.0.2",
|
|
2867
|
+
"debug": "^4.3.2",
|
|
2868
|
+
"doctrine": "^3.0.0",
|
|
2869
|
+
"ejs": "^3.0.2",
|
|
2870
|
+
"escape-string-regexp": "^4.0.0",
|
|
2871
|
+
"eslint": "file:",
|
|
2872
|
+
"eslint-config-eslint": "file:packages/eslint-config-eslint",
|
|
2873
|
+
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
2874
|
+
"eslint-plugin-eslint-plugin": "^5.1.0",
|
|
2875
|
+
"eslint-plugin-internal-rules": "file:tools/internal-rules",
|
|
2876
|
+
"eslint-plugin-jsdoc": "^46.2.5",
|
|
2877
|
+
"eslint-plugin-n": "^16.0.0",
|
|
2878
|
+
"eslint-plugin-unicorn": "^42.0.0",
|
|
2879
|
+
"eslint-release": "^3.2.0",
|
|
2880
|
+
"eslint-scope": "^7.2.2",
|
|
2881
|
+
"eslint-visitor-keys": "^3.4.3",
|
|
2882
|
+
"eslump": "^3.0.0",
|
|
2883
|
+
"espree": "^9.6.1",
|
|
2884
|
+
"esprima": "^4.0.1",
|
|
2885
|
+
"esquery": "^1.4.2",
|
|
2886
|
+
"esutils": "^2.0.2",
|
|
2887
|
+
"fast-deep-equal": "^3.1.3",
|
|
2888
|
+
"fast-glob": "^3.2.11",
|
|
2889
|
+
"file-entry-cache": "^6.0.1",
|
|
2890
|
+
"find-up": "^5.0.0",
|
|
2891
|
+
"fs-teardown": "^0.1.3",
|
|
2892
|
+
"glob": "^7.1.6",
|
|
2893
|
+
"glob-parent": "^6.0.2",
|
|
2894
|
+
"globals": "^13.19.0",
|
|
2895
|
+
"got": "^11.8.3",
|
|
2896
|
+
"graphemer": "^1.4.0",
|
|
2897
|
+
"gray-matter": "^4.0.3",
|
|
2898
|
+
"ignore": "^5.2.0",
|
|
2899
|
+
"imurmurhash": "^0.1.4",
|
|
2900
|
+
"is-glob": "^4.0.0",
|
|
2901
|
+
"is-path-inside": "^3.0.3",
|
|
2902
|
+
"js-yaml": "^4.1.0",
|
|
2903
|
+
"json-stable-stringify-without-jsonify": "^1.0.1",
|
|
2904
|
+
"levn": "^0.4.1",
|
|
2905
|
+
"lint-staged": "^11.0.0",
|
|
2906
|
+
"load-perf": "^0.2.0",
|
|
2907
|
+
"lodash.merge": "^4.6.2",
|
|
2908
|
+
"markdownlint": "^0.25.1",
|
|
2909
|
+
"markdownlint-cli": "^0.31.1",
|
|
2910
|
+
"marked": "^4.0.8",
|
|
2911
|
+
"memfs": "^3.0.1",
|
|
2912
|
+
"metascraper": "^5.25.7",
|
|
2913
|
+
"metascraper-description": "^5.25.7",
|
|
2914
|
+
"metascraper-image": "^5.29.3",
|
|
2915
|
+
"metascraper-logo": "^5.25.7",
|
|
2916
|
+
"metascraper-logo-favicon": "^5.25.7",
|
|
2917
|
+
"metascraper-title": "^5.25.7",
|
|
2918
|
+
"minimatch": "^3.1.2",
|
|
2919
|
+
"mocha": "^8.3.2",
|
|
2920
|
+
"mocha-junit-reporter": "^2.0.0",
|
|
2921
|
+
"natural-compare": "^1.4.0",
|
|
2922
|
+
"node-polyfill-webpack-plugin": "^1.0.3",
|
|
2923
|
+
"npm-license": "^0.3.3",
|
|
2924
|
+
"optionator": "^0.9.3",
|
|
2925
|
+
"pirates": "^4.0.5",
|
|
2926
|
+
"progress": "^2.0.3",
|
|
2927
|
+
"proxyquire": "^2.0.1",
|
|
2928
|
+
"recast": "^0.20.4",
|
|
2929
|
+
"regenerator-runtime": "^0.13.2",
|
|
2930
|
+
"rollup-plugin-node-polyfills": "^0.2.1",
|
|
2931
|
+
"semver": "^7.5.3",
|
|
2932
|
+
"shelljs": "^0.8.2",
|
|
2933
|
+
"sinon": "^11.0.0",
|
|
2934
|
+
"strip-ansi": "^6.0.1",
|
|
2935
|
+
"text-table": "^0.2.0",
|
|
2936
|
+
"vite-plugin-commonjs": "^0.8.2",
|
|
2937
|
+
"webdriverio": "^8.14.6",
|
|
2938
|
+
"webpack": "^5.23.0",
|
|
2939
|
+
"webpack-cli": "^4.5.0",
|
|
2940
|
+
"yorkie": "^2.0.0"
|
|
2941
|
+
}
|
|
2942
|
+
},
|
|
2943
|
+
"eslint-config-prettier": {
|
|
2944
|
+
"version": "file:../../node_modules/.pnpm/eslint-config-prettier@8.10.0_eslint@8.49.0/node_modules/eslint-config-prettier",
|
|
2945
|
+
"requires": {}
|
|
2946
|
+
},
|
|
2947
|
+
"eslint-plugin-prettier": {
|
|
2948
|
+
"version": "file:../../node_modules/.pnpm/eslint-plugin-prettier@4.2.1_eslint-config-prettier@8.10.0_eslint@8.49.0_prettier@2.8.8/node_modules/eslint-plugin-prettier",
|
|
2949
|
+
"requires": {
|
|
2950
|
+
"@1stg/common-config": "~3.0.0",
|
|
2951
|
+
"@1stg/eslint-config": "~3.0.0",
|
|
2952
|
+
"@changesets/changelog-github": "^0.4.5",
|
|
2953
|
+
"@changesets/cli": "^2.23.0",
|
|
2954
|
+
"@graphql-eslint/eslint-plugin": "^2.5.0",
|
|
2955
|
+
"@ota-meshi/eslint-plugin-svelte": "^0.34.1",
|
|
2956
|
+
"@typescript-eslint/parser": "^5.29.0",
|
|
2957
|
+
"eslint-config-prettier": "^8.5.0",
|
|
2958
|
+
"eslint-mdx": "^1.17.0",
|
|
2959
|
+
"eslint-plugin-eslint-plugin": "^4.3.0",
|
|
2960
|
+
"eslint-plugin-mdx": "^1.17.0",
|
|
2961
|
+
"eslint-plugin-self": "^1.2.1",
|
|
2962
|
+
"eslint-plugin-utils": "^0.1.0",
|
|
2963
|
+
"graphql": "^16.5.0",
|
|
2964
|
+
"mocha": "^9.2.2",
|
|
2965
|
+
"patch-package": "^6.4.7",
|
|
2966
|
+
"prettier-linter-helpers": "^1.0.0",
|
|
2967
|
+
"svelte": "^3.48.0",
|
|
2968
|
+
"vue-eslint-parser": "^8.3.0"
|
|
2969
|
+
}
|
|
2970
|
+
},
|
|
2971
|
+
"eslint-plugin-vue": {
|
|
2972
|
+
"version": "file:../../node_modules/.pnpm/eslint-plugin-vue@9.17.0_eslint@8.49.0/node_modules/eslint-plugin-vue",
|
|
2973
|
+
"requires": {
|
|
2974
|
+
"@eslint-community/eslint-utils": "^4.4.0",
|
|
2975
|
+
"@ota-meshi/site-kit-eslint-editor-vue": "^0.1.2",
|
|
2976
|
+
"@types/eslint": "^8.44.1",
|
|
2977
|
+
"@types/eslint-visitor-keys": "^3.3.0",
|
|
2978
|
+
"@types/natural-compare": "^1.4.1",
|
|
2979
|
+
"@types/node": "^14.18.54",
|
|
2980
|
+
"@types/semver": "^7.5.0",
|
|
2981
|
+
"@types/xml-name-validator": "^4.0.1",
|
|
2982
|
+
"@typescript-eslint/parser": "^6.2.0",
|
|
2983
|
+
"@typescript-eslint/types": "^6.2.0",
|
|
2984
|
+
"assert": "^2.0.0",
|
|
2985
|
+
"env-cmd": "^10.1.0",
|
|
2986
|
+
"esbuild": "^0.18.17",
|
|
2987
|
+
"eslint": "^8.45.0",
|
|
2988
|
+
"eslint-config-prettier": "^8.9.0",
|
|
2989
|
+
"eslint-plugin-eslint-plugin": "~5.1.1",
|
|
2990
|
+
"eslint-plugin-import": "^2.27.5",
|
|
2991
|
+
"eslint-plugin-jsonc": "^2.9.0",
|
|
2992
|
+
"eslint-plugin-node-dependencies": ">=0.5.0 <1.0.0",
|
|
2993
|
+
"eslint-plugin-prettier": "^5.0.0",
|
|
2994
|
+
"eslint-plugin-unicorn": "^48.0.1",
|
|
2995
|
+
"eslint-plugin-vue": "file:",
|
|
2996
|
+
"espree": "^9.6.1",
|
|
2997
|
+
"events": "^3.3.0",
|
|
2998
|
+
"markdownlint-cli": "^0.35.0",
|
|
2999
|
+
"mocha": "^10.2.0",
|
|
3000
|
+
"natural-compare": "^1.4.0",
|
|
3001
|
+
"nth-check": "^2.1.1",
|
|
3002
|
+
"nyc": "^15.1.0",
|
|
3003
|
+
"postcss-selector-parser": "^6.0.13",
|
|
3004
|
+
"prettier": "^3.0.0",
|
|
3005
|
+
"semver": "^7.5.4",
|
|
3006
|
+
"typescript": "^5.1.6",
|
|
3007
|
+
"vitepress": "^1.0.0-beta.6",
|
|
3008
|
+
"vue-eslint-parser": "^9.3.1",
|
|
3009
|
+
"xml-name-validator": "^4.0.0"
|
|
3010
|
+
}
|
|
3011
|
+
},
|
|
3012
|
+
"estree-walker": {
|
|
3013
|
+
"version": "3.0.3",
|
|
3014
|
+
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz",
|
|
3015
|
+
"integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
|
|
3016
|
+
"dev": true,
|
|
3017
|
+
"requires": {
|
|
3018
|
+
"@types/estree": "^1.0.0"
|
|
3019
|
+
}
|
|
3020
|
+
},
|
|
3021
|
+
"fsevents": {
|
|
3022
|
+
"version": "2.3.3",
|
|
3023
|
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
3024
|
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
|
3025
|
+
"dev": true,
|
|
3026
|
+
"optional": true,
|
|
3027
|
+
"peer": true
|
|
3028
|
+
},
|
|
3029
|
+
"is-reference": {
|
|
3030
|
+
"version": "3.0.2",
|
|
3031
|
+
"resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.2.tgz",
|
|
3032
|
+
"integrity": "sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==",
|
|
3033
|
+
"dev": true,
|
|
3034
|
+
"requires": {
|
|
3035
|
+
"@types/estree": "*"
|
|
3036
|
+
}
|
|
3037
|
+
},
|
|
3038
|
+
"jquery": {
|
|
3039
|
+
"version": "file:../../node_modules/.pnpm/jquery@3.7.1/node_modules/jquery",
|
|
3040
|
+
"requires": {
|
|
3041
|
+
"@babel/core": "7.3.3",
|
|
3042
|
+
"@babel/plugin-transform-for-of": "7.2.0",
|
|
3043
|
+
"bootstrap": "5.3.0",
|
|
3044
|
+
"colors": "1.4.0",
|
|
3045
|
+
"commitplease": "3.2.0",
|
|
3046
|
+
"core-js": "2.6.5",
|
|
3047
|
+
"eslint-config-jquery": "3.0.0",
|
|
3048
|
+
"grunt": "1.5.3",
|
|
3049
|
+
"grunt-babel": "8.0.0",
|
|
3050
|
+
"grunt-cli": "1.4.3",
|
|
3051
|
+
"grunt-compare-size": "0.4.2",
|
|
3052
|
+
"grunt-contrib-uglify": "3.4.0",
|
|
3053
|
+
"grunt-contrib-watch": "1.1.0",
|
|
3054
|
+
"grunt-eslint": "22.0.0",
|
|
3055
|
+
"grunt-git-authors": "3.2.0",
|
|
3056
|
+
"grunt-jsonlint": "2.1.2",
|
|
3057
|
+
"grunt-karma": "4.0.2",
|
|
3058
|
+
"grunt-newer": "1.3.0",
|
|
3059
|
+
"grunt-npmcopy": "0.2.0",
|
|
3060
|
+
"gzip-js": "0.3.2",
|
|
3061
|
+
"husky": "4.2.5",
|
|
3062
|
+
"jsdom": "19.0.0",
|
|
3063
|
+
"karma": "6.4.1",
|
|
3064
|
+
"karma-browserstack-launcher": "1.6.0",
|
|
3065
|
+
"karma-chrome-launcher": "3.1.1",
|
|
3066
|
+
"karma-firefox-launcher": "2.1.2",
|
|
3067
|
+
"karma-ie-launcher": "1.0.0",
|
|
3068
|
+
"karma-jsdom-launcher": "12.0.0",
|
|
3069
|
+
"karma-qunit": "4.1.2",
|
|
3070
|
+
"karma-webkit-launcher": "2.1.0",
|
|
3071
|
+
"load-grunt-tasks": "5.1.0",
|
|
3072
|
+
"native-promise-only": "0.8.1",
|
|
3073
|
+
"playwright-webkit": "1.30.0",
|
|
3074
|
+
"promises-aplus-tests": "2.1.2",
|
|
3075
|
+
"q": "1.5.1",
|
|
3076
|
+
"qunit": "2.9.2",
|
|
3077
|
+
"raw-body": "2.3.3",
|
|
3078
|
+
"requirejs": "2.3.6",
|
|
3079
|
+
"sinon": "2.3.7",
|
|
3080
|
+
"strip-json-comments": "2.0.1",
|
|
3081
|
+
"testswarm": "1.1.2",
|
|
3082
|
+
"uglify-js": "3.4.7"
|
|
3083
|
+
}
|
|
3084
|
+
},
|
|
3085
|
+
"js-base64": {
|
|
3086
|
+
"version": "file:../../node_modules/.pnpm/js-base64@2.6.4/node_modules/js-base64",
|
|
3087
|
+
"requires": {
|
|
3088
|
+
"@babel/core": "^7.10.5",
|
|
3089
|
+
"@babel/preset-env": "^7.10.5",
|
|
3090
|
+
"@babel/register": "^7.10.5",
|
|
3091
|
+
"mocha": "^8.0.0",
|
|
3092
|
+
"uglify-js": "^3.10.0"
|
|
3093
|
+
}
|
|
3094
|
+
},
|
|
3095
|
+
"jsencrypt": {
|
|
3096
|
+
"version": "file:../../node_modules/.pnpm/jsencrypt@3.3.2/node_modules/jsencrypt",
|
|
3097
|
+
"requires": {
|
|
3098
|
+
"@babel/core": "^7.20.12",
|
|
3099
|
+
"@babel/preset-env": "^7.20.2",
|
|
3100
|
+
"@babel/preset-typescript": "^7.18.6",
|
|
3101
|
+
"@babel/register": "^7.18.9",
|
|
3102
|
+
"@types/expect": "^24.3.0",
|
|
3103
|
+
"@types/mocha": "^10.0.0",
|
|
3104
|
+
"@types/node": "^18.11.4",
|
|
3105
|
+
"chai": "^4.3.6",
|
|
3106
|
+
"dirty-chai": "^2.0.1",
|
|
3107
|
+
"fs-jetpack": "^5.1.0",
|
|
3108
|
+
"mocha": "^10.0.0",
|
|
3109
|
+
"process": "^0.11.10",
|
|
3110
|
+
"ts-mocha": "^10.0.0",
|
|
3111
|
+
"ts-node": "^10.9.1",
|
|
3112
|
+
"typescript": "^4.2.4",
|
|
3113
|
+
"url": "^0.11.0",
|
|
3114
|
+
"webpack": "^5.35.1",
|
|
3115
|
+
"webpack-cli": "^4.6.0"
|
|
3116
|
+
}
|
|
3117
|
+
},
|
|
3118
|
+
"less": {
|
|
3119
|
+
"version": "file:../../node_modules/.pnpm/less@4.2.0/node_modules/less",
|
|
3120
|
+
"requires": {
|
|
3121
|
+
"@less/test-data": "^4.2.0",
|
|
3122
|
+
"@less/test-import-module": "^4.0.0",
|
|
3123
|
+
"@rollup/plugin-commonjs": "^17.0.0",
|
|
3124
|
+
"@rollup/plugin-json": "^4.1.0",
|
|
3125
|
+
"@rollup/plugin-node-resolve": "^11.0.0",
|
|
3126
|
+
"@typescript-eslint/eslint-plugin": "^4.28.0",
|
|
3127
|
+
"@typescript-eslint/parser": "^4.28.0",
|
|
3128
|
+
"benny": "^3.6.12",
|
|
3129
|
+
"bootstrap-less-port": "0.3.0",
|
|
3130
|
+
"chai": "^4.2.0",
|
|
3131
|
+
"copy-anything": "^2.0.1",
|
|
3132
|
+
"cross-env": "^7.0.3",
|
|
3133
|
+
"diff": "^3.2.0",
|
|
3134
|
+
"errno": "^0.1.1",
|
|
3135
|
+
"eslint": "^7.29.0",
|
|
3136
|
+
"fs-extra": "^8.1.0",
|
|
3137
|
+
"git-rev": "^0.2.1",
|
|
3138
|
+
"globby": "^10.0.1",
|
|
3139
|
+
"graceful-fs": "^4.1.2",
|
|
3140
|
+
"grunt": "^1.0.4",
|
|
3141
|
+
"grunt-cli": "^1.3.2",
|
|
3142
|
+
"grunt-contrib-clean": "^1.0.0",
|
|
3143
|
+
"grunt-contrib-connect": "^1.0.2",
|
|
3144
|
+
"grunt-eslint": "^23.0.0",
|
|
3145
|
+
"grunt-saucelabs": "^9.0.1",
|
|
3146
|
+
"grunt-shell": "^1.3.0",
|
|
3147
|
+
"html-template-tag": "^3.2.0",
|
|
3148
|
+
"image-size": "~0.5.0",
|
|
3149
|
+
"jit-grunt": "^0.10.0",
|
|
3150
|
+
"less-plugin-autoprefix": "^1.5.1",
|
|
3151
|
+
"less-plugin-clean-css": "^1.5.1",
|
|
3152
|
+
"make-dir": "^2.1.0",
|
|
3153
|
+
"mime": "^1.4.1",
|
|
3154
|
+
"minimist": "^1.2.0",
|
|
3155
|
+
"mocha": "^6.2.1",
|
|
3156
|
+
"mocha-headless-chrome": "^4.0.0",
|
|
3157
|
+
"mocha-teamcity-reporter": "^3.0.0",
|
|
3158
|
+
"needle": "^3.1.0",
|
|
3159
|
+
"nock": "^11.8.2",
|
|
3160
|
+
"npm-run-all": "^4.1.5",
|
|
3161
|
+
"parse-node-version": "^1.0.1",
|
|
3162
|
+
"performance-now": "^0.2.0",
|
|
3163
|
+
"phin": "^2.2.3",
|
|
3164
|
+
"promise": "^7.1.1",
|
|
3165
|
+
"read-glob": "^3.0.0",
|
|
3166
|
+
"resolve": "^1.17.0",
|
|
3167
|
+
"rollup": "^2.52.2",
|
|
3168
|
+
"rollup-plugin-terser": "^5.1.1",
|
|
3169
|
+
"rollup-plugin-typescript2": "^0.29.0",
|
|
3170
|
+
"semver": "^6.3.0",
|
|
3171
|
+
"shx": "^0.3.2",
|
|
3172
|
+
"source-map": "~0.6.0",
|
|
3173
|
+
"time-grunt": "^1.3.0",
|
|
3174
|
+
"ts-node": "^9.1.1",
|
|
3175
|
+
"tslib": "^2.3.0",
|
|
3176
|
+
"typescript": "^4.3.4",
|
|
3177
|
+
"uikit": "2.27.4"
|
|
3178
|
+
}
|
|
3179
|
+
},
|
|
3180
|
+
"magic-string": {
|
|
3181
|
+
"version": "0.30.5",
|
|
3182
|
+
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.5.tgz",
|
|
3183
|
+
"integrity": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==",
|
|
3184
|
+
"dev": true,
|
|
3185
|
+
"requires": {
|
|
3186
|
+
"@jridgewell/sourcemap-codec": "^1.4.15"
|
|
3187
|
+
}
|
|
3188
|
+
},
|
|
3189
|
+
"moment": {
|
|
3190
|
+
"version": "file:../../node_modules/.pnpm/moment@2.29.4/node_modules/moment",
|
|
3191
|
+
"requires": {
|
|
3192
|
+
"benchmark": "latest",
|
|
3193
|
+
"coveralls": "latest",
|
|
3194
|
+
"cross-env": "^6.0.3",
|
|
3195
|
+
"es6-promise": "latest",
|
|
3196
|
+
"eslint": "~6",
|
|
3197
|
+
"grunt": "latest",
|
|
3198
|
+
"grunt-benchmark": "latest",
|
|
3199
|
+
"grunt-cli": "latest",
|
|
3200
|
+
"grunt-contrib-clean": "latest",
|
|
3201
|
+
"grunt-contrib-concat": "latest",
|
|
3202
|
+
"grunt-contrib-copy": "latest",
|
|
3203
|
+
"grunt-contrib-uglify": "latest",
|
|
3204
|
+
"grunt-contrib-watch": "latest",
|
|
3205
|
+
"grunt-env": "latest",
|
|
3206
|
+
"grunt-exec": "latest",
|
|
3207
|
+
"grunt-karma": "latest",
|
|
3208
|
+
"grunt-nuget": "latest",
|
|
3209
|
+
"grunt-string-replace": "latest",
|
|
3210
|
+
"karma": "latest",
|
|
3211
|
+
"karma-chrome-launcher": "latest",
|
|
3212
|
+
"karma-firefox-launcher": "latest",
|
|
3213
|
+
"karma-qunit": "latest",
|
|
3214
|
+
"karma-sauce-launcher": "4.1.4",
|
|
3215
|
+
"load-grunt-tasks": "latest",
|
|
3216
|
+
"lodash": ">=4.17.19",
|
|
3217
|
+
"node-qunit": "latest",
|
|
3218
|
+
"nyc": "latest",
|
|
3219
|
+
"prettier": "latest",
|
|
3220
|
+
"qunit": "^2.10.0",
|
|
3221
|
+
"rollup": "2.17.1",
|
|
3222
|
+
"typescript": "^1.8.10",
|
|
3223
|
+
"typescript3": "npm:typescript@^3.1.6",
|
|
3224
|
+
"uglify-js": "latest"
|
|
3225
|
+
}
|
|
3226
|
+
},
|
|
3227
|
+
"picomatch": {
|
|
3228
|
+
"version": "2.3.1",
|
|
3229
|
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
|
3230
|
+
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
|
3231
|
+
"dev": true
|
|
3232
|
+
},
|
|
3233
|
+
"postcss-pxtorem": {
|
|
3234
|
+
"version": "file:../../node_modules/.pnpm/postcss-pxtorem@6.0.0_postcss@8.4.29/node_modules/postcss-pxtorem",
|
|
3235
|
+
"requires": {
|
|
3236
|
+
"eslint": "^6.8.0",
|
|
3237
|
+
"husky": "^4.2.3",
|
|
3238
|
+
"jasmine-node": "^3.0.0",
|
|
3239
|
+
"lint-staged": "^10.0.8",
|
|
3240
|
+
"postcss": "^8.0.0",
|
|
3241
|
+
"prettier": "^1.19.1"
|
|
3242
|
+
}
|
|
3243
|
+
},
|
|
3244
|
+
"prettier": {
|
|
3245
|
+
"version": "file:../../node_modules/.pnpm/prettier@2.8.8/node_modules/prettier"
|
|
3246
|
+
},
|
|
3247
|
+
"regenerator-runtime": {
|
|
3248
|
+
"version": "0.14.0",
|
|
3249
|
+
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz",
|
|
3250
|
+
"integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA=="
|
|
3251
|
+
},
|
|
3252
|
+
"rollup": {
|
|
3253
|
+
"version": "3.29.4",
|
|
3254
|
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz",
|
|
3255
|
+
"integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==",
|
|
3256
|
+
"dev": true,
|
|
3257
|
+
"peer": true,
|
|
3258
|
+
"requires": {
|
|
3259
|
+
"fsevents": "~2.3.2"
|
|
3260
|
+
}
|
|
3261
|
+
},
|
|
3262
|
+
"rollup-plugin-external-globals": {
|
|
3263
|
+
"version": "0.8.0",
|
|
3264
|
+
"resolved": "https://registry.npmjs.org/rollup-plugin-external-globals/-/rollup-plugin-external-globals-0.8.0.tgz",
|
|
3265
|
+
"integrity": "sha512-c65c7hPMCE//cLzC4dLVE25XkuHsBqSkZp+/5pvtZ1MFwqgQLRRkIfuCvI3PnI7Yj8HoXqYtdsRN9gYF5a4tVQ==",
|
|
3266
|
+
"dev": true,
|
|
3267
|
+
"requires": {
|
|
3268
|
+
"@rollup/pluginutils": "^5.0.2",
|
|
3269
|
+
"estree-walker": "^3.0.3",
|
|
3270
|
+
"is-reference": "^3.0.1",
|
|
3271
|
+
"magic-string": "^0.30.0"
|
|
3272
|
+
}
|
|
3273
|
+
},
|
|
3274
|
+
"rollup-plugin-visualizer": {
|
|
3275
|
+
"version": "file:../../node_modules/.pnpm/rollup-plugin-visualizer@5.9.2/node_modules/rollup-plugin-visualizer",
|
|
3276
|
+
"requires": {
|
|
3277
|
+
"@jest/globals": "^29.3.1",
|
|
3278
|
+
"@rollup/plugin-alias": "^5.0.0",
|
|
3279
|
+
"@rollup/plugin-commonjs": "^25.0.1",
|
|
3280
|
+
"@rollup/plugin-node-resolve": "^15.0.0",
|
|
3281
|
+
"@rollup/plugin-typescript": "^11.1.1",
|
|
3282
|
+
"@types/bytes": "^3.1.1",
|
|
3283
|
+
"@types/d3-array": "^3.0.3",
|
|
3284
|
+
"@types/d3-color": "^3.1.0",
|
|
3285
|
+
"@types/d3-force": "^3.0.3",
|
|
3286
|
+
"@types/d3-hierarchy": "^3.1.0",
|
|
3287
|
+
"@types/d3-scale": "^4.0.2",
|
|
3288
|
+
"@types/d3-shape": "^3.1.0",
|
|
3289
|
+
"@types/node": "^18.8.5",
|
|
3290
|
+
"@types/picomatch": "^2.3.0",
|
|
3291
|
+
"@types/yargs": "^17.0.10",
|
|
3292
|
+
"@typescript-eslint/eslint-plugin": "^5.25.0",
|
|
3293
|
+
"@typescript-eslint/parser": "^5.25.0",
|
|
3294
|
+
"bytes": "^3.1.2",
|
|
3295
|
+
"d3-array": "^3.1.6",
|
|
3296
|
+
"d3-color": "^3.1.0",
|
|
3297
|
+
"d3-force": "^3.0.0",
|
|
3298
|
+
"d3-hierarchy": "^3.1.2",
|
|
3299
|
+
"d3-scale": "^4.0.2",
|
|
3300
|
+
"d3-shape": "^3.1.0",
|
|
3301
|
+
"del-cli": "^5.0.0",
|
|
3302
|
+
"eslint": "^8.16.0",
|
|
3303
|
+
"eslint-config-prettier": "^8.5.0",
|
|
3304
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
3305
|
+
"jest": "^29.3.1",
|
|
3306
|
+
"npm-run-all": "^4.1.5",
|
|
3307
|
+
"open": "^8.4.0",
|
|
3308
|
+
"picomatch": "^2.3.1",
|
|
3309
|
+
"picomatch-browser": "^2.2.6",
|
|
3310
|
+
"postcss": "^8.4.14",
|
|
3311
|
+
"postcss-url": "^10.1.3",
|
|
3312
|
+
"preact": "^10.7.2",
|
|
3313
|
+
"prettier": "^2.6.2",
|
|
3314
|
+
"rollup": "^3.1.0",
|
|
3315
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
3316
|
+
"sass": "^1.52.1",
|
|
3317
|
+
"source-map": "^0.7.4",
|
|
3318
|
+
"ts-jest": "^29.0.3",
|
|
3319
|
+
"typescript": "~5.1.3",
|
|
3320
|
+
"yargs": "^17.5.1"
|
|
3321
|
+
}
|
|
3322
|
+
},
|
|
3323
|
+
"sass": {
|
|
3324
|
+
"version": "file:../../node_modules/.pnpm/sass@1.66.1/node_modules/sass",
|
|
3325
|
+
"requires": {
|
|
3326
|
+
"chokidar": ">=3.0.0 <4.0.0",
|
|
3327
|
+
"immutable": "^4.0.0",
|
|
3328
|
+
"source-map-js": ">=0.6.2 <2.0.0"
|
|
3329
|
+
}
|
|
3330
|
+
},
|
|
3331
|
+
"sass-loader": {
|
|
3332
|
+
"version": "file:../../node_modules/.pnpm/sass-loader@13.3.2_sass@1.66.1_webpack@5.88.2/node_modules/sass-loader",
|
|
3333
|
+
"requires": {
|
|
3334
|
+
"@babel/cli": "^7.21.5",
|
|
3335
|
+
"@babel/core": "^7.21.5",
|
|
3336
|
+
"@babel/preset-env": "^7.21.5",
|
|
3337
|
+
"@commitlint/cli": "^17.6.1",
|
|
3338
|
+
"@commitlint/config-conventional": "^17.6.1",
|
|
3339
|
+
"@webpack-contrib/eslint-config-webpack": "^3.0.0",
|
|
3340
|
+
"babel-jest": "^29.5.0",
|
|
3341
|
+
"bootstrap-sass": "^3.4.1",
|
|
3342
|
+
"bootstrap-v4": "npm:bootstrap@^4.5.3",
|
|
3343
|
+
"bootstrap-v5": "npm:bootstrap@^5.0.1",
|
|
3344
|
+
"cross-env": "^7.0.3",
|
|
3345
|
+
"cspell": "^6.31.1",
|
|
3346
|
+
"css-loader": "^6.7.3",
|
|
3347
|
+
"del": "^6.1.1",
|
|
3348
|
+
"del-cli": "^4.0.1",
|
|
3349
|
+
"enhanced-resolve": "^5.13.0",
|
|
3350
|
+
"eslint": "^8.39.0",
|
|
3351
|
+
"eslint-config-prettier": "^8.8.0",
|
|
3352
|
+
"eslint-plugin-import": "^2.27.5",
|
|
3353
|
+
"fibers": "^5.0.3",
|
|
3354
|
+
"file-loader": "^6.2.0",
|
|
3355
|
+
"foundation-sites": "^6.7.5",
|
|
3356
|
+
"husky": "^8.0.3",
|
|
3357
|
+
"jest": "^29.5.0",
|
|
3358
|
+
"jest-environment-node-single-context": "^29.0.0",
|
|
3359
|
+
"lint-staged": "^13.2.2",
|
|
3360
|
+
"material-components-web": "^9.0.0",
|
|
3361
|
+
"memfs": "^3.5.1",
|
|
3362
|
+
"neo-async": "^2.6.2",
|
|
3363
|
+
"node-sass": "^8.0.0",
|
|
3364
|
+
"node-sass-glob-importer": "^5.3.2",
|
|
3365
|
+
"npm-run-all": "^4.1.5",
|
|
3366
|
+
"prettier": "^2.8.8",
|
|
3367
|
+
"sass": "^1.62.1",
|
|
3368
|
+
"sass-embedded": "^1.62.0",
|
|
3369
|
+
"semver": "^7.5.0",
|
|
3370
|
+
"standard-version": "^9.3.1",
|
|
3371
|
+
"style-loader": "^3.3.2",
|
|
3372
|
+
"webpack": "^5.81.0"
|
|
3373
|
+
}
|
|
3374
|
+
},
|
|
3375
|
+
"scss": {
|
|
3376
|
+
"version": "file:../../node_modules/.pnpm/scss@0.2.4/node_modules/scss",
|
|
3377
|
+
"requires": {
|
|
3378
|
+
"ometa": "0.2.2"
|
|
3379
|
+
}
|
|
3380
|
+
},
|
|
3381
|
+
"svelte": {
|
|
3382
|
+
"version": "file:../../node_modules/.pnpm/svelte@3.59.2/node_modules/svelte",
|
|
3383
|
+
"requires": {
|
|
3384
|
+
"@ampproject/remapping": "^0.3.0",
|
|
3385
|
+
"@jridgewell/sourcemap-codec": "^1.4.15",
|
|
3386
|
+
"@rollup/plugin-commonjs": "^11.0.0",
|
|
3387
|
+
"@rollup/plugin-json": "^6.0.0",
|
|
3388
|
+
"@rollup/plugin-node-resolve": "^11.2.1",
|
|
3389
|
+
"@rollup/plugin-replace": "^5.0.2",
|
|
3390
|
+
"@rollup/plugin-sucrase": "^3.1.0",
|
|
3391
|
+
"@rollup/plugin-typescript": "^2.0.1",
|
|
3392
|
+
"@rollup/plugin-virtual": "^3.0.1",
|
|
3393
|
+
"@sveltejs/eslint-config": "github:sveltejs/eslint-config#v5.8.0",
|
|
3394
|
+
"@types/aria-query": "^5.0.1",
|
|
3395
|
+
"@types/mocha": "^7.0.0",
|
|
3396
|
+
"@types/node": "^8.10.53",
|
|
3397
|
+
"@typescript-eslint/eslint-plugin": "^5.29.0",
|
|
3398
|
+
"@typescript-eslint/parser": "^5.29.0",
|
|
3399
|
+
"acorn": "^8.8.1",
|
|
3400
|
+
"agadoo": "^3.0.0",
|
|
3401
|
+
"aria-query": "^5.1.3",
|
|
3402
|
+
"axobject-query": "^3.1.1",
|
|
3403
|
+
"code-red": "^1.0.0",
|
|
3404
|
+
"css-tree": "^2.3.1",
|
|
3405
|
+
"eslint": "^8.35.0",
|
|
3406
|
+
"eslint-plugin-import": "^2.27.0",
|
|
3407
|
+
"eslint-plugin-svelte3": "^4.0.0",
|
|
3408
|
+
"estree-walker": "^3.0.3",
|
|
3409
|
+
"is-reference": "^3.0.1",
|
|
3410
|
+
"jsdom": "^15.2.1",
|
|
3411
|
+
"kleur": "^4.1.5",
|
|
3412
|
+
"locate-character": "^2.0.5",
|
|
3413
|
+
"magic-string": "^0.30.0",
|
|
3414
|
+
"mocha": "^7.0.0",
|
|
3415
|
+
"periscopic": "^3.1.0",
|
|
3416
|
+
"puppeteer": "^2.0.0",
|
|
3417
|
+
"rollup": "^1.27.14",
|
|
3418
|
+
"source-map": "^0.7.4",
|
|
3419
|
+
"source-map-support": "^0.5.21",
|
|
3420
|
+
"tiny-glob": "^0.2.9",
|
|
3421
|
+
"tslib": "^2.5.0",
|
|
3422
|
+
"typescript": "^3.7.5",
|
|
3423
|
+
"util": "^0.12.5"
|
|
3424
|
+
}
|
|
3425
|
+
},
|
|
3426
|
+
"svelte-preprocess": {
|
|
3427
|
+
"version": "file:../../node_modules/.pnpm/svelte-preprocess@5.0.4_@babel+core@7.22.17_less@4.2.0_postcss@8.4.29_sass@1.66.1_svelte@3.59.2_typescript@4.9.5/node_modules/svelte-preprocess",
|
|
3428
|
+
"requires": {
|
|
3429
|
+
"@babel/core": "^7.20.5",
|
|
3430
|
+
"@babel/preset-env": "^7.20.2",
|
|
3431
|
+
"@commitlint/cli": "^11.0.0",
|
|
3432
|
+
"@commitlint/config-conventional": "^11.0.0",
|
|
3433
|
+
"@kiwi/eslint-config": "^2.0.2",
|
|
3434
|
+
"@kiwi/prettier-config": "^2.0.2",
|
|
3435
|
+
"@types/babel__core": "^7.1.20",
|
|
3436
|
+
"@types/jest": "^27.5.2",
|
|
3437
|
+
"@types/node": "^14.18.34",
|
|
3438
|
+
"@types/pug": "^2.0.6",
|
|
3439
|
+
"@types/stylus": "^0.48.38",
|
|
3440
|
+
"autoprefixer": "^9.8.8",
|
|
3441
|
+
"babel-minify": "^0.5.2",
|
|
3442
|
+
"coffeescript": "^2.7.0",
|
|
3443
|
+
"conventional-changelog-cli": "^2.2.2",
|
|
3444
|
+
"detect-indent": "^6.1.0",
|
|
3445
|
+
"eslint": "^8.29.0",
|
|
3446
|
+
"husky": "^8.0.2",
|
|
3447
|
+
"jest": "^29.5.0",
|
|
3448
|
+
"less": "^3.13.1",
|
|
3449
|
+
"lint-staged": "^10.5.4",
|
|
3450
|
+
"magic-string": "^0.27.0",
|
|
3451
|
+
"postcss": "^8.4.19",
|
|
3452
|
+
"postcss-easy-import": "^3.0.0",
|
|
3453
|
+
"postcss-load-config": "^3.1.4",
|
|
3454
|
+
"prettier": "^2.8.1",
|
|
3455
|
+
"pug": "^3.0.2",
|
|
3456
|
+
"sass": "^1.56.2",
|
|
3457
|
+
"sorcery": "^0.11.0",
|
|
3458
|
+
"strip-indent": "^3.0.0",
|
|
3459
|
+
"stylus": "^0.55.0",
|
|
3460
|
+
"sugarss": "^4.0.0",
|
|
3461
|
+
"svelte": "^3.54.0",
|
|
3462
|
+
"ts-jest": "^29.0.5",
|
|
3463
|
+
"typescript": "^5.0.2"
|
|
3464
|
+
}
|
|
3465
|
+
},
|
|
3466
|
+
"typescript": {
|
|
3467
|
+
"version": "file:../../node_modules/.pnpm/typescript@4.9.5/node_modules/typescript",
|
|
3468
|
+
"requires": {
|
|
3469
|
+
"@octokit/rest": "latest",
|
|
3470
|
+
"@types/chai": "latest",
|
|
3471
|
+
"@types/fancy-log": "^2.0.0",
|
|
3472
|
+
"@types/fs-extra": "^9.0.13",
|
|
3473
|
+
"@types/glob": "latest",
|
|
3474
|
+
"@types/gulp": "^4.0.9",
|
|
3475
|
+
"@types/gulp-concat": "latest",
|
|
3476
|
+
"@types/gulp-newer": "latest",
|
|
3477
|
+
"@types/gulp-rename": "latest",
|
|
3478
|
+
"@types/gulp-sourcemaps": "latest",
|
|
3479
|
+
"@types/merge2": "latest",
|
|
3480
|
+
"@types/microsoft__typescript-etw": "latest",
|
|
3481
|
+
"@types/minimist": "latest",
|
|
3482
|
+
"@types/mkdirp": "latest",
|
|
3483
|
+
"@types/mocha": "latest",
|
|
3484
|
+
"@types/ms": "latest",
|
|
3485
|
+
"@types/node": "latest",
|
|
3486
|
+
"@types/source-map-support": "latest",
|
|
3487
|
+
"@types/which": "^2.0.1",
|
|
3488
|
+
"@types/xml2js": "^0.4.11",
|
|
3489
|
+
"@typescript-eslint/eslint-plugin": "^5.33.1",
|
|
3490
|
+
"@typescript-eslint/parser": "^5.33.1",
|
|
3491
|
+
"@typescript-eslint/utils": "^5.33.1",
|
|
3492
|
+
"azure-devops-node-api": "^11.2.0",
|
|
3493
|
+
"chai": "latest",
|
|
3494
|
+
"chalk": "^4.1.2",
|
|
3495
|
+
"del": "^6.1.1",
|
|
3496
|
+
"diff": "^5.1.0",
|
|
3497
|
+
"eslint": "^8.22.0",
|
|
3498
|
+
"eslint-formatter-autolinkable-stylish": "^1.2.0",
|
|
3499
|
+
"eslint-plugin-import": "^2.26.0",
|
|
3500
|
+
"eslint-plugin-jsdoc": "^39.3.6",
|
|
3501
|
+
"eslint-plugin-local": "^1.0.0",
|
|
3502
|
+
"eslint-plugin-no-null": "^1.0.2",
|
|
3503
|
+
"fancy-log": "latest",
|
|
3504
|
+
"fs-extra": "^9.1.0",
|
|
3505
|
+
"glob": "latest",
|
|
3506
|
+
"gulp": "^4.0.2",
|
|
3507
|
+
"gulp-concat": "latest",
|
|
3508
|
+
"gulp-insert": "latest",
|
|
3509
|
+
"gulp-newer": "latest",
|
|
3510
|
+
"gulp-rename": "latest",
|
|
3511
|
+
"gulp-sourcemaps": "latest",
|
|
3512
|
+
"merge2": "latest",
|
|
3513
|
+
"minimist": "latest",
|
|
3514
|
+
"mkdirp": "latest",
|
|
3515
|
+
"mocha": "latest",
|
|
3516
|
+
"mocha-fivemat-progress-reporter": "latest",
|
|
3517
|
+
"ms": "^2.1.3",
|
|
3518
|
+
"node-fetch": "^3.2.10",
|
|
3519
|
+
"source-map-support": "latest",
|
|
3520
|
+
"typescript": "^4.8.4",
|
|
3521
|
+
"vinyl": "latest",
|
|
3522
|
+
"which": "^2.0.2",
|
|
3523
|
+
"xml2js": "^0.4.23"
|
|
3524
|
+
}
|
|
3525
|
+
},
|
|
3526
|
+
"unplugin-auto-import": {
|
|
3527
|
+
"version": "file:../../node_modules/.pnpm/unplugin-auto-import@0.13.0/node_modules/unplugin-auto-import",
|
|
3528
|
+
"requires": {
|
|
3529
|
+
"@antfu/eslint-config": "^0.35.0",
|
|
3530
|
+
"@antfu/ni": "^0.19.0",
|
|
3531
|
+
"@antfu/utils": "^0.7.2",
|
|
3532
|
+
"@rollup/pluginutils": "^5.0.2",
|
|
3533
|
+
"@types/node": "^18.11.18",
|
|
3534
|
+
"@types/resolve": "^1.20.2",
|
|
3535
|
+
"@vueuse/metadata": "^9.12.0",
|
|
3536
|
+
"bumpp": "^8.2.1",
|
|
3537
|
+
"eslint": "^8.33.0",
|
|
3538
|
+
"esno": "^0.16.3",
|
|
3539
|
+
"fast-glob": "^3.2.12",
|
|
3540
|
+
"local-pkg": "^0.4.3",
|
|
3541
|
+
"magic-string": "^0.27.0",
|
|
3542
|
+
"rollup": "^3.12.0",
|
|
3543
|
+
"tsup": "^6.5.0",
|
|
3544
|
+
"typescript": "^4.9.4",
|
|
3545
|
+
"unimport": "^2.1.0",
|
|
3546
|
+
"unplugin": "^1.0.1",
|
|
3547
|
+
"vite": "^4.0.4",
|
|
3548
|
+
"vitest": "^0.28.3",
|
|
3549
|
+
"webpack": "^5.75.0"
|
|
3550
|
+
}
|
|
3551
|
+
},
|
|
3552
|
+
"unplugin-vue-components": {
|
|
3553
|
+
"version": "file:../../node_modules/.pnpm/unplugin-vue-components@0.24.1_vue@3.3.4/node_modules/unplugin-vue-components",
|
|
3554
|
+
"requires": {
|
|
3555
|
+
"@antfu/eslint-config": "^0.36.0",
|
|
3556
|
+
"@antfu/utils": "^0.7.2",
|
|
3557
|
+
"@babel/parser": "^7.21.2",
|
|
3558
|
+
"@babel/types": "^7.21.2",
|
|
3559
|
+
"@nuxt/kit": "^3.2.3",
|
|
3560
|
+
"@rollup/pluginutils": "^5.0.2",
|
|
3561
|
+
"@types/debug": "^4.1.7",
|
|
3562
|
+
"@types/minimatch": "^5.1.2",
|
|
3563
|
+
"@types/node": "^18.14.6",
|
|
3564
|
+
"@types/resolve": "^1.20.2",
|
|
3565
|
+
"@typescript-eslint/eslint-plugin": "^5.54.1",
|
|
3566
|
+
"bumpp": "^9.0.0",
|
|
3567
|
+
"chokidar": "^3.5.3",
|
|
3568
|
+
"compare-versions": "^5.0.3",
|
|
3569
|
+
"debug": "^4.3.4",
|
|
3570
|
+
"element-plus": "^2.2.34",
|
|
3571
|
+
"eslint": "^8.35.0",
|
|
3572
|
+
"esno": "^0.16.3",
|
|
3573
|
+
"estree-walker": "^3.0.3",
|
|
3574
|
+
"fast-glob": "^3.2.12",
|
|
3575
|
+
"local-pkg": "^0.4.3",
|
|
3576
|
+
"magic-string": "^0.30.0",
|
|
3577
|
+
"minimatch": "^7.4.2",
|
|
3578
|
+
"pathe": "^1.1.0",
|
|
3579
|
+
"resolve": "^1.22.1",
|
|
3580
|
+
"rollup": "^3.18.0",
|
|
3581
|
+
"tsup": "^6.6.3",
|
|
3582
|
+
"typescript": "^4.9.5",
|
|
3583
|
+
"unplugin": "^1.1.0",
|
|
3584
|
+
"vite": "^4.1.4",
|
|
3585
|
+
"vitest": "^0.29.2",
|
|
3586
|
+
"vue": "3.2.45"
|
|
3587
|
+
}
|
|
3588
|
+
},
|
|
3589
|
+
"vite": {
|
|
3590
|
+
"version": "file:../../node_modules/.pnpm/vite@4.4.9_@types+node@18.17.15_less@4.2.0_sass@1.66.1_terser@5.19.4/node_modules/vite",
|
|
3591
|
+
"requires": {
|
|
3592
|
+
"@ampproject/remapping": "^2.2.1",
|
|
3593
|
+
"@babel/parser": "^7.22.7",
|
|
3594
|
+
"@babel/types": "^7.22.5",
|
|
3595
|
+
"@jridgewell/trace-mapping": "^0.3.18",
|
|
3596
|
+
"@rollup/plugin-alias": "^4.0.4",
|
|
3597
|
+
"@rollup/plugin-commonjs": "^25.0.3",
|
|
3598
|
+
"@rollup/plugin-dynamic-import-vars": "^2.0.4",
|
|
3599
|
+
"@rollup/plugin-json": "^6.0.0",
|
|
3600
|
+
"@rollup/plugin-node-resolve": "15.1.0",
|
|
3601
|
+
"@rollup/plugin-typescript": "^11.1.2",
|
|
3602
|
+
"@rollup/pluginutils": "^5.0.2",
|
|
3603
|
+
"@types/escape-html": "^1.0.2",
|
|
3604
|
+
"@types/pnpapi": "^0.0.2",
|
|
3605
|
+
"acorn": "^8.10.0",
|
|
3606
|
+
"acorn-walk": "^8.2.0",
|
|
3607
|
+
"cac": "^6.7.14",
|
|
3608
|
+
"chokidar": "^3.5.3",
|
|
3609
|
+
"connect": "^3.7.0",
|
|
3610
|
+
"connect-history-api-fallback": "^2.0.0",
|
|
3611
|
+
"convert-source-map": "^2.0.0",
|
|
3612
|
+
"cors": "^2.8.5",
|
|
3613
|
+
"cross-spawn": "^7.0.3",
|
|
3614
|
+
"debug": "^4.3.4",
|
|
3615
|
+
"dep-types": "link:./src/types",
|
|
3616
|
+
"dotenv": "^16.3.1",
|
|
3617
|
+
"dotenv-expand": "^9.0.0",
|
|
3618
|
+
"es-module-lexer": "^1.3.0",
|
|
3619
|
+
"esbuild": "^0.18.10",
|
|
3620
|
+
"escape-html": "^1.0.3",
|
|
3621
|
+
"estree-walker": "^3.0.3",
|
|
3622
|
+
"etag": "^1.8.1",
|
|
3623
|
+
"fast-glob": "^3.3.1",
|
|
3624
|
+
"fsevents": "~2.3.2",
|
|
3625
|
+
"http-proxy": "^1.18.1",
|
|
3626
|
+
"json-stable-stringify": "^1.0.2",
|
|
3627
|
+
"launch-editor-middleware": "^2.6.0",
|
|
3628
|
+
"lightningcss": "^1.21.5",
|
|
3629
|
+
"magic-string": "^0.30.2",
|
|
3630
|
+
"micromatch": "^4.0.5",
|
|
3631
|
+
"mlly": "^1.4.0",
|
|
3632
|
+
"mrmime": "^1.0.1",
|
|
3633
|
+
"okie": "^1.0.1",
|
|
3634
|
+
"open": "^8.4.2",
|
|
3635
|
+
"parse5": "^7.1.2",
|
|
3636
|
+
"periscopic": "^3.1.0",
|
|
3637
|
+
"picocolors": "^1.0.0",
|
|
3638
|
+
"picomatch": "^2.3.1",
|
|
3639
|
+
"postcss": "^8.4.27",
|
|
3640
|
+
"postcss-import": "^15.1.0",
|
|
3641
|
+
"postcss-load-config": "^4.0.1",
|
|
3642
|
+
"postcss-modules": "^6.0.0",
|
|
3643
|
+
"resolve.exports": "^2.0.2",
|
|
3644
|
+
"rollup": "^3.27.1",
|
|
3645
|
+
"rollup-plugin-license": "^3.0.1",
|
|
3646
|
+
"sirv": "^2.0.3",
|
|
3647
|
+
"source-map-support": "^0.5.21",
|
|
3648
|
+
"strip-ansi": "^7.1.0",
|
|
3649
|
+
"strip-literal": "^1.3.0",
|
|
3650
|
+
"tsconfck": "^2.1.2",
|
|
3651
|
+
"tslib": "^2.6.1",
|
|
3652
|
+
"types": "link:./types",
|
|
3653
|
+
"ufo": "^1.2.0",
|
|
3654
|
+
"ws": "^8.13.0"
|
|
3655
|
+
}
|
|
3656
|
+
},
|
|
3657
|
+
"vite-plugin-compression": {
|
|
3658
|
+
"version": "file:../../node_modules/.pnpm/vite-plugin-compression@0.5.1_vite@4.4.9/node_modules/vite-plugin-compression",
|
|
3659
|
+
"requires": {
|
|
3660
|
+
"@types/chalk": "^2.2.0",
|
|
3661
|
+
"@types/debug": "^4.1.7",
|
|
3662
|
+
"@types/fs-extra": "^9.0.13",
|
|
3663
|
+
"@types/node": "^17.0.13",
|
|
3664
|
+
"chalk": "^4.1.2",
|
|
3665
|
+
"debug": "^4.3.3",
|
|
3666
|
+
"fs-extra": "^10.0.0"
|
|
3667
|
+
}
|
|
3668
|
+
},
|
|
3669
|
+
"vite-plugin-eslint": {
|
|
3670
|
+
"version": "file:../../node_modules/.pnpm/vite-plugin-eslint@1.8.1_eslint@8.49.0_vite@4.4.9/node_modules/vite-plugin-eslint",
|
|
3671
|
+
"requires": {
|
|
3672
|
+
"@rollup/pluginutils": "^4.2.1",
|
|
3673
|
+
"@types/eslint": "^8.4.5",
|
|
3674
|
+
"@types/node": "^18.0.6",
|
|
3675
|
+
"@typescript-eslint/eslint-plugin": "^5.30.7",
|
|
3676
|
+
"@typescript-eslint/parser": "^5.30.7",
|
|
3677
|
+
"cz-conventional-changelog": "^3.3.0",
|
|
3678
|
+
"eslint": "^8.21.0",
|
|
3679
|
+
"eslint-config-prettier": "^8.5.0",
|
|
3680
|
+
"eslint-plugin-prettier": "^4.2.1",
|
|
3681
|
+
"prettier": "^2.7.1",
|
|
3682
|
+
"rollup": "^2.77.2",
|
|
3683
|
+
"standard-version": "^9.5.0",
|
|
3684
|
+
"tsup": "^6.2.1",
|
|
3685
|
+
"typescript": "^4.7.4",
|
|
3686
|
+
"vite": "^3.0.8"
|
|
3687
|
+
}
|
|
3688
|
+
},
|
|
3689
|
+
"vite-plugin-html": {
|
|
3690
|
+
"version": "file:../../node_modules/.pnpm/vite-plugin-html@3.2.0_vite@4.4.9/node_modules/vite-plugin-html",
|
|
3691
|
+
"requires": {
|
|
3692
|
+
"@babel/types": "^7.17.0",
|
|
3693
|
+
"@rollup/pluginutils": "^4.2.0",
|
|
3694
|
+
"@types/ejs": "^3.1.0",
|
|
3695
|
+
"@types/fs-extra": "^9.0.13",
|
|
3696
|
+
"@types/html-minifier-terser": "^6.1.0",
|
|
3697
|
+
"@types/node": "^17.0.21",
|
|
3698
|
+
"colorette": "^2.0.16",
|
|
3699
|
+
"connect-history-api-fallback": "^1.6.0",
|
|
3700
|
+
"consola": "^2.15.3",
|
|
3701
|
+
"dotenv": "^16.0.0",
|
|
3702
|
+
"dotenv-expand": "^8.0.2",
|
|
3703
|
+
"ejs": "^3.1.6",
|
|
3704
|
+
"fast-glob": "^3.2.11",
|
|
3705
|
+
"fs-extra": "^10.0.1",
|
|
3706
|
+
"html-minifier-terser": "^6.1.0",
|
|
3707
|
+
"node-html-parser": "^5.3.3",
|
|
3708
|
+
"pathe": "^0.2.0",
|
|
3709
|
+
"typescript": "^4.6.2",
|
|
3710
|
+
"vite": "^2.8.6"
|
|
3711
|
+
}
|
|
3712
|
+
},
|
|
3713
|
+
"vite-plugin-static-copy": {
|
|
3714
|
+
"version": "file:../../node_modules/.pnpm/vite-plugin-static-copy@0.17.0_vite@4.4.9/node_modules/vite-plugin-static-copy",
|
|
3715
|
+
"requires": {
|
|
3716
|
+
"@polka/url": "^1.0.0-next.21",
|
|
3717
|
+
"@types/fs-extra": "^11.0.1",
|
|
3718
|
+
"@types/node": "^18.16.19",
|
|
3719
|
+
"@types/throttle-debounce": "^5.0.0",
|
|
3720
|
+
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
3721
|
+
"@typescript-eslint/parser": "^6.0.0",
|
|
3722
|
+
"chokidar": "^3.5.3",
|
|
3723
|
+
"eslint": "^8.45.0",
|
|
3724
|
+
"eslint-config-prettier": "^8.8.0",
|
|
3725
|
+
"eslint-plugin-vitest": "^0.2.6",
|
|
3726
|
+
"fast-glob": "^3.2.11",
|
|
3727
|
+
"fs-extra": "^11.1.0",
|
|
3728
|
+
"mrmime": "^1.0.1",
|
|
3729
|
+
"node-fetch": "^3.3.1",
|
|
3730
|
+
"picocolors": "^1.0.0",
|
|
3731
|
+
"prettier": "^3.0.0",
|
|
3732
|
+
"throttle-debounce": "^5.0.0",
|
|
3733
|
+
"tsup": "^7.1.0",
|
|
3734
|
+
"typescript": "^5.1.6",
|
|
3735
|
+
"vite": "^4.4.4",
|
|
3736
|
+
"vitest": "^0.33.0",
|
|
3737
|
+
"vitest-github-actions-reporter": "^0.10.0"
|
|
3738
|
+
}
|
|
3739
|
+
},
|
|
3740
|
+
"vue": {
|
|
3741
|
+
"version": "file:../../node_modules/.pnpm/vue@3.3.4/node_modules/vue",
|
|
3742
|
+
"requires": {
|
|
3743
|
+
"@vue/compiler-dom": "3.3.4",
|
|
3744
|
+
"@vue/compiler-sfc": "3.3.4",
|
|
3745
|
+
"@vue/runtime-dom": "3.3.4",
|
|
3746
|
+
"@vue/server-renderer": "3.3.4",
|
|
3747
|
+
"@vue/shared": "3.3.4"
|
|
3748
|
+
}
|
|
3749
|
+
},
|
|
3750
|
+
"vue-i18n": {
|
|
3751
|
+
"version": "file:../../node_modules/.pnpm/vue-i18n@9.3.0-beta.24_vue@3.3.4/node_modules/vue-i18n",
|
|
3752
|
+
"requires": {
|
|
3753
|
+
"@intlify/core-base": "9.3.0-beta.24",
|
|
3754
|
+
"@intlify/devtools-if": "9.3.0-beta.24",
|
|
3755
|
+
"@intlify/shared": "9.3.0-beta.24",
|
|
3756
|
+
"@intlify/vue-devtools": "9.3.0-beta.24",
|
|
3757
|
+
"@vue/devtools-api": "^6.5.0"
|
|
3758
|
+
}
|
|
3759
|
+
},
|
|
3760
|
+
"vue-property-decorator": {
|
|
3761
|
+
"version": "file:../../node_modules/.pnpm/vue-property-decorator@9.1.2_vue-class-component@7.2.6_vue@3.3.4/node_modules/vue-property-decorator",
|
|
3762
|
+
"requires": {
|
|
3763
|
+
"@types/jest": "^26.0.15",
|
|
3764
|
+
"@types/node": "^14.14.9",
|
|
3765
|
+
"jest": "^26.6.3",
|
|
3766
|
+
"reflect-metadata": "^0.1.13",
|
|
3767
|
+
"rollup": "^2.33.3",
|
|
3768
|
+
"ts-jest": "^26.4.4",
|
|
3769
|
+
"typescript": "^4.1.2",
|
|
3770
|
+
"vue": "^2.6.10",
|
|
3771
|
+
"vue-class-component": "^7.2.3"
|
|
3772
|
+
}
|
|
3773
|
+
},
|
|
3774
|
+
"vue-router": {
|
|
3775
|
+
"version": "file:../../node_modules/.pnpm/vue-router@4.2.4_vue@3.3.4/node_modules/vue-router",
|
|
3776
|
+
"requires": {
|
|
3777
|
+
"@microsoft/api-extractor": "^7.36.0",
|
|
3778
|
+
"@rollup/plugin-alias": "^5.0.0",
|
|
3779
|
+
"@rollup/plugin-commonjs": "^25.0.0",
|
|
3780
|
+
"@rollup/plugin-node-resolve": "^15.0.2",
|
|
3781
|
+
"@rollup/plugin-replace": "^5.0.2",
|
|
3782
|
+
"@rollup/plugin-terser": "^0.4.3",
|
|
3783
|
+
"@sucrase/jest-plugin": "^3.0.0",
|
|
3784
|
+
"@types/jest": "^29.5.1",
|
|
3785
|
+
"@types/jsdom": "^21.1.1",
|
|
3786
|
+
"@types/nightwatch": "^2.3.23",
|
|
3787
|
+
"@vitejs/plugin-vue": "^4.2.3",
|
|
3788
|
+
"@vue/compiler-sfc": "^3.3.4",
|
|
3789
|
+
"@vue/devtools-api": "^6.5.0",
|
|
3790
|
+
"@vue/server-renderer": "^3.3.4",
|
|
3791
|
+
"@vue/test-utils": "^2.3.2",
|
|
3792
|
+
"browserstack-local": "^1.5.2",
|
|
3793
|
+
"chromedriver": "^113.0.0",
|
|
3794
|
+
"connect-history-api-fallback": "^1.6.0",
|
|
3795
|
+
"conventional-changelog-cli": "^2.1.1",
|
|
3796
|
+
"dotenv": "^16.0.3",
|
|
3797
|
+
"faked-promise": "^2.2.2",
|
|
3798
|
+
"geckodriver": "^3.2.0",
|
|
3799
|
+
"jest": "^29.5.0",
|
|
3800
|
+
"jest-environment-jsdom": "^29.5.0",
|
|
3801
|
+
"jest-mock-warn": "^1.1.0",
|
|
3802
|
+
"nightwatch": "^2.6.21",
|
|
3803
|
+
"nightwatch-helpers": "^1.2.0",
|
|
3804
|
+
"rimraf": "^5.0.1",
|
|
3805
|
+
"rollup": "^3.26.1",
|
|
3806
|
+
"rollup-plugin-analyzer": "^4.0.0",
|
|
3807
|
+
"rollup-plugin-typescript2": "^0.35.0",
|
|
3808
|
+
"sucrase": "^3.32.0",
|
|
3809
|
+
"typescript": "~5.1.6",
|
|
3810
|
+
"vite": "^4.3.8",
|
|
3811
|
+
"vue": "^3.3.4"
|
|
3812
|
+
}
|
|
3813
|
+
},
|
|
3814
|
+
"vue-slicksort": {
|
|
3815
|
+
"version": "file:../../node_modules/.pnpm/vue-slicksort@2.0.5_vue@3.3.4/node_modules/vue-slicksort",
|
|
3816
|
+
"requires": {
|
|
3817
|
+
"@babel/core": "^7.13.14",
|
|
3818
|
+
"@babel/plugin-external-helpers": "^7.12.13",
|
|
3819
|
+
"@babel/plugin-transform-regenerator": "^7.13.15",
|
|
3820
|
+
"@babel/plugin-transform-runtime": "^7.13.15",
|
|
3821
|
+
"@babel/preset-env": "^7.12.16",
|
|
3822
|
+
"@cypress/vite-dev-server": "^4.0.1",
|
|
3823
|
+
"@cypress/vue": "^5.0.1",
|
|
3824
|
+
"@rollup/plugin-typescript": "^8.2.0",
|
|
3825
|
+
"@typescript-eslint/eslint-plugin": "^5.43.0",
|
|
3826
|
+
"@typescript-eslint/parser": "^5.43.0",
|
|
3827
|
+
"@vitejs/plugin-vue": "^3.2.0",
|
|
3828
|
+
"@vitejs/plugin-vue-jsx": "^2.1.1",
|
|
3829
|
+
"@vue/compiler-sfc": "^3.2.45",
|
|
3830
|
+
"@vue/test-utils": "^2.0.0-rc.6",
|
|
3831
|
+
"@vueuse/core": "^9.5.0",
|
|
3832
|
+
"autoprefixer": "^6.3.6",
|
|
3833
|
+
"cross-env": "^1.0.7",
|
|
3834
|
+
"cssnano": "^3.10.0",
|
|
3835
|
+
"cypress": "^11.1.0",
|
|
3836
|
+
"esbuild": "^0.8.44",
|
|
3837
|
+
"eslint": "^7.20.0",
|
|
3838
|
+
"eslint-plugin-cypress": "^2.11.2",
|
|
3839
|
+
"eslint-plugin-import": "^2.0.1",
|
|
3840
|
+
"eslint-plugin-vue": "^7.6.0",
|
|
3841
|
+
"postcss": "^8.2.6",
|
|
3842
|
+
"rimraf": "^2.5.2",
|
|
3843
|
+
"rollup": "^2.38.5",
|
|
3844
|
+
"rollup-plugin-babel": "^4.4.0",
|
|
3845
|
+
"rollup-plugin-bundle-size": "^1.0.3",
|
|
3846
|
+
"rollup-plugin-esbuild": "^2.6.1",
|
|
3847
|
+
"sass": "^1.32.6",
|
|
3848
|
+
"standard-changelog": "^2.0.27",
|
|
3849
|
+
"typescript": "^4.2.3",
|
|
3850
|
+
"vite": "^3.2.4",
|
|
3851
|
+
"vitepress": "^1.0.0-alpha.29",
|
|
3852
|
+
"vue": "^3.2.45",
|
|
3853
|
+
"vuepress": "^2.0.0-alpha.23"
|
|
3854
|
+
}
|
|
3855
|
+
},
|
|
3856
|
+
"vue-tsc": {
|
|
3857
|
+
"version": "file:../../node_modules/.pnpm/vue-tsc@1.8.11_typescript@4.9.5/node_modules/vue-tsc",
|
|
3858
|
+
"requires": {
|
|
3859
|
+
"@vue/language-core": "1.8.11",
|
|
3860
|
+
"@vue/typescript": "1.8.11",
|
|
3861
|
+
"semver": "^7.3.8"
|
|
3862
|
+
}
|
|
3863
|
+
},
|
|
3864
|
+
"vuex": {
|
|
3865
|
+
"version": "file:../../node_modules/.pnpm/vuex@4.1.0_vue@3.3.4/node_modules/vuex",
|
|
3866
|
+
"requires": {
|
|
3867
|
+
"@babel/core": "^7.14.3",
|
|
3868
|
+
"@babel/preset-env": "^7.14.2",
|
|
3869
|
+
"@rollup/plugin-buble": "^0.21.3",
|
|
3870
|
+
"@rollup/plugin-commonjs": "^19.0.0",
|
|
3871
|
+
"@rollup/plugin-node-resolve": "^13.0.0",
|
|
3872
|
+
"@rollup/plugin-replace": "^2.4.2",
|
|
3873
|
+
"@types/node": "^15.6.0",
|
|
3874
|
+
"@vue/compiler-sfc": "^3.2.4",
|
|
3875
|
+
"@vue/devtools-api": "^6.0.0-beta.11",
|
|
3876
|
+
"babel-jest": "^26.6.3",
|
|
3877
|
+
"babel-loader": "^8.2.2",
|
|
3878
|
+
"brotli": "^1.3.2",
|
|
3879
|
+
"chalk": "^4.1.1",
|
|
3880
|
+
"conventional-changelog-cli": "^2.1.1",
|
|
3881
|
+
"cross-env": "^7.0.3",
|
|
3882
|
+
"css-loader": "^2.1.0",
|
|
3883
|
+
"enquirer": "^2.3.5",
|
|
3884
|
+
"eslint": "^7.27.0",
|
|
3885
|
+
"eslint-plugin-vue-libs": "^4.0.0",
|
|
3886
|
+
"execa": "^5.0.0",
|
|
3887
|
+
"express": "^4.17.1",
|
|
3888
|
+
"fs-extra": "^10.0.0",
|
|
3889
|
+
"jest": "^26.6.3",
|
|
3890
|
+
"puppeteer": "^9.1.1",
|
|
3891
|
+
"regenerator-runtime": "^0.13.5",
|
|
3892
|
+
"rollup": "^2.49.0",
|
|
3893
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
3894
|
+
"semver": "^7.3.5",
|
|
3895
|
+
"start-server-and-test": "^1.12.3",
|
|
3896
|
+
"todomvc-app-css": "^2.4.1",
|
|
3897
|
+
"typescript": "^4.2.4",
|
|
3898
|
+
"vitepress": "^0.20.0",
|
|
3899
|
+
"vue": "^3.2.4",
|
|
3900
|
+
"vue-loader": "^16.5.0",
|
|
3901
|
+
"vue-style-loader": "^4.1.3",
|
|
3902
|
+
"webpack": "^4.43.0",
|
|
3903
|
+
"webpack-dev-middleware": "^3.7.2",
|
|
3904
|
+
"webpack-hot-middleware": "^2.25.0"
|
|
3905
|
+
}
|
|
3906
|
+
},
|
|
3907
|
+
"webrtc-adapter": {
|
|
3908
|
+
"version": "file:../../node_modules/.pnpm/webrtc-adapter@7.7.1/node_modules/webrtc-adapter",
|
|
3909
|
+
"requires": {
|
|
3910
|
+
"babel-core": "^6.26.3",
|
|
3911
|
+
"babel-preset-env": "^1.7.0",
|
|
3912
|
+
"brfs": "^1.5.0",
|
|
3913
|
+
"chai": "^3.5.0",
|
|
3914
|
+
"grunt": "^1.1.0",
|
|
3915
|
+
"grunt-babel": "^7.0.0",
|
|
3916
|
+
"grunt-browserify": "^5.3.0",
|
|
3917
|
+
"grunt-cli": "^1.3.1",
|
|
3918
|
+
"grunt-contrib-clean": "^1.1.0",
|
|
3919
|
+
"grunt-contrib-copy": "^1.0.0",
|
|
3920
|
+
"grunt-eslint": "^19.0.0",
|
|
3921
|
+
"grunt-shell": "^2.1.0",
|
|
3922
|
+
"karma": "^4.4.1",
|
|
3923
|
+
"karma-browserify": "^5.2.0",
|
|
3924
|
+
"karma-chai": "^0.1.0",
|
|
3925
|
+
"karma-chrome-launcher": "^2.2.0",
|
|
3926
|
+
"karma-edge-launcher": "^0.4.1",
|
|
3927
|
+
"karma-firefox-launcher": "^1.3.0",
|
|
3928
|
+
"karma-mocha": "^1.3.0",
|
|
3929
|
+
"karma-mocha-reporter": "^2.2.3",
|
|
3930
|
+
"karma-safari-launcher": "^1.0.0",
|
|
3931
|
+
"karma-stability-reporter": "^3.0.1",
|
|
3932
|
+
"mocha": "^5.2.0",
|
|
3933
|
+
"rtcpeerconnection-shim": "^1.2.15",
|
|
3934
|
+
"sdp": "^2.12.0",
|
|
3935
|
+
"sinon": "^2.2.0",
|
|
3936
|
+
"sinon-chai": "^2.14.0",
|
|
3937
|
+
"travis-multirunner": "^4.6.0"
|
|
3938
|
+
}
|
|
3939
|
+
},
|
|
3940
|
+
"wujie": {
|
|
3941
|
+
"version": "1.0.18",
|
|
3942
|
+
"resolved": "https://registry.npmjs.org/wujie/-/wujie-1.0.18.tgz",
|
|
3943
|
+
"integrity": "sha512-5/x2TRgJ9+6nHcHv7rmBWBKm3W49uDBOc1rzrQHxKPUCRscoHR8OQd1MCcoKDv1687CHNUTkODMyCIDktRl2ag==",
|
|
3944
|
+
"requires": {
|
|
3945
|
+
"@babel/runtime": "^7.18.6"
|
|
3946
|
+
}
|
|
3947
|
+
},
|
|
3948
|
+
"wujie-vue2": {
|
|
3949
|
+
"version": "file:../../node_modules/.pnpm/wujie-vue2@1.0.18_vue@3.3.4/node_modules/wujie-vue2",
|
|
3950
|
+
"requires": {
|
|
3951
|
+
"@babel/cli": "^7.18.6",
|
|
3952
|
+
"@babel/core": "^7.16.0",
|
|
3953
|
+
"@babel/preset-env": "^7.16.0",
|
|
3954
|
+
"babel-loader": "^8.2.3",
|
|
3955
|
+
"cross-env": "^7.0.3",
|
|
3956
|
+
"csstype": "^3.1.1",
|
|
3957
|
+
"eslint": "^8.2.0",
|
|
3958
|
+
"eslint-plugin-vue": "^8.0.3",
|
|
3959
|
+
"webpack": "^5.61.0",
|
|
3960
|
+
"webpack-cli": "^4.9.1",
|
|
3961
|
+
"wujie": "1.0.18"
|
|
3962
|
+
}
|
|
3963
|
+
}
|
|
3964
|
+
}
|
|
3965
|
+
}
|