Commit 418ca2405e5920239f5a78f652a715e68449582d
Merge remote-tracking branch 'origin/main'
Showing
83 changed files
with
2920 additions
and
4882 deletions
.eslintrc.js
1 | -// @ts-check | |
2 | -const { defineConfig } = require('eslint-define-config'); | |
3 | -module.exports = defineConfig({ | |
1 | +module.exports = { | |
4 | 2 | root: true, |
5 | 3 | env: { |
6 | 4 | browser: true, |
... | ... | @@ -20,9 +18,7 @@ module.exports = defineConfig({ |
20 | 18 | extends: [ |
21 | 19 | 'plugin:vue/vue3-recommended', |
22 | 20 | 'plugin:@typescript-eslint/recommended', |
23 | - 'prettier', | |
24 | 21 | 'plugin:prettier/recommended', |
25 | - 'plugin:jest/recommended', | |
26 | 22 | ], |
27 | 23 | rules: { |
28 | 24 | 'vue/script-setup-uses-vars': 'error', |
... | ... | @@ -77,4 +73,4 @@ module.exports = defineConfig({ |
77 | 73 | ], |
78 | 74 | 'vue/multi-word-component-names': 'off', |
79 | 75 | }, |
80 | -}); | |
76 | +}; | ... | ... |
.vscode/settings.json
... | ... | @@ -55,7 +55,7 @@ |
55 | 55 | "**/yarn.lock": true |
56 | 56 | }, |
57 | 57 | "stylelint.enable": true, |
58 | - "stylelint.packageManager": "yarn", | |
58 | + "stylelint.validate": ["css", "less", "postcss", "scss", "vue", "sass"], | |
59 | 59 | "path-intellisense.mappings": { |
60 | 60 | "/@/": "${workspaceRoot}/src" |
61 | 61 | }, |
... | ... | @@ -88,7 +88,8 @@ |
88 | 88 | }, |
89 | 89 | "[vue]": { |
90 | 90 | "editor.codeActionsOnSave": { |
91 | - "source.fixAll.eslint": false | |
91 | + "source.fixAll.eslint": true, | |
92 | + "source.fixAll.stylelint": true | |
92 | 93 | } |
93 | 94 | }, |
94 | 95 | "i18n-ally.localesPaths": ["src/locales/lang"], | ... | ... |
build/generate/icon/index.ts
1 | 1 | import path from 'path'; |
2 | 2 | import fs from 'fs-extra'; |
3 | 3 | import inquirer from 'inquirer'; |
4 | -import chalk from 'chalk'; | |
4 | +import colors from 'picocolors'; | |
5 | 5 | import pkg from '../../../package.json'; |
6 | 6 | |
7 | 7 | async function generateIcon() { |
... | ... | @@ -64,7 +64,7 @@ async function generateIcon() { |
64 | 64 | } |
65 | 65 | fs.emptyDir(path.join(process.cwd(), 'node_modules/.vite')); |
66 | 66 | console.log( |
67 | - `✨ ${chalk.cyan(`[${pkg.name}]`)}` + ' - Icon generated successfully:' + `[${prefixSet}]`, | |
67 | + `✨ ${colors.cyan(`[${pkg.name}]`)}` + ' - Icon generated successfully:' + `[${prefixSet}]`, | |
68 | 68 | ); |
69 | 69 | }); |
70 | 70 | } | ... | ... |
build/script/buildConf.ts
... | ... | @@ -3,7 +3,7 @@ |
3 | 3 | */ |
4 | 4 | import { GLOB_CONFIG_FILE_NAME, OUTPUT_DIR } from '../constant'; |
5 | 5 | import fs, { writeFileSync } from 'fs-extra'; |
6 | -import chalk from 'chalk'; | |
6 | +import colors from 'picocolors'; | |
7 | 7 | |
8 | 8 | import { getEnvConfig, getRootPath } from '../utils'; |
9 | 9 | import { getConfigFileName } from '../getConfigFileName'; |
... | ... | @@ -31,10 +31,10 @@ function createConfig(params: CreateConfigParams) { |
31 | 31 | fs.mkdirp(getRootPath(OUTPUT_DIR)); |
32 | 32 | writeFileSync(getRootPath(`${OUTPUT_DIR}/${configFileName}`), configStr); |
33 | 33 | |
34 | - console.log(chalk.cyan(`✨ [${pkg.name}]`) + ` - configuration file is build successfully:`); | |
35 | - console.log(chalk.gray(OUTPUT_DIR + '/' + chalk.green(configFileName)) + '\n'); | |
34 | + console.log(colors.cyan(`✨ [${pkg.name}]`) + ` - configuration file is build successfully:`); | |
35 | + console.log(colors.gray(OUTPUT_DIR + '/' + colors.green(configFileName)) + '\n'); | |
36 | 36 | } catch (error) { |
37 | - console.log(chalk.red('configuration file configuration file failed to package:\n' + error)); | |
37 | + console.log(colors.red('configuration file configuration file failed to package:\n' + error)); | |
38 | 38 | } |
39 | 39 | } |
40 | 40 | ... | ... |
build/script/postBuild.ts
1 | 1 | // #!/usr/bin/env node |
2 | 2 | |
3 | 3 | import { runBuildConfig } from './buildConf'; |
4 | -import chalk from 'chalk'; | |
4 | +import colors from 'picocolors'; | |
5 | 5 | |
6 | 6 | import pkg from '../../package.json'; |
7 | 7 | |
... | ... | @@ -14,9 +14,9 @@ export const runBuild = async () => { |
14 | 14 | runBuildConfig(); |
15 | 15 | } |
16 | 16 | |
17 | - console.log(`✨ ${chalk.cyan(`[${pkg.name}]`)}` + ' - build successfully!'); | |
17 | + console.log(`✨ ${colors.cyan(`[${pkg.name}]`)}` + ' - build successfully!'); | |
18 | 18 | } catch (error) { |
19 | - console.log(chalk.red('vite build error:\n' + error)); | |
19 | + console.log(colors.red('vite build error:\n' + error)); | |
20 | 20 | process.exit(1); |
21 | 21 | } |
22 | 22 | }; | ... | ... |
build/vite/plugin/compress.ts
... | ... | @@ -2,16 +2,16 @@ |
2 | 2 | * Used to package and output gzip. Note that this does not work properly in Vite, the specific reason is still being investigated |
3 | 3 | * https://github.com/anncwb/vite-plugin-compression |
4 | 4 | */ |
5 | -import type { Plugin } from 'vite'; | |
5 | +import type { PluginOption } from 'vite'; | |
6 | 6 | import compressPlugin from 'vite-plugin-compression'; |
7 | 7 | |
8 | 8 | export function configCompressPlugin( |
9 | 9 | compress: 'gzip' | 'brotli' | 'none', |
10 | 10 | deleteOriginFile = false, |
11 | -): Plugin | Plugin[] { | |
11 | +): PluginOption | PluginOption[] { | |
12 | 12 | const compressList = compress.split(','); |
13 | 13 | |
14 | - const plugins: Plugin[] = []; | |
14 | + const plugins: PluginOption[] = []; | |
15 | 15 | |
16 | 16 | if (compressList.includes('gzip')) { |
17 | 17 | plugins.push( | ... | ... |
build/vite/plugin/html.ts
... | ... | @@ -2,8 +2,8 @@ |
2 | 2 | * Plugin to minimize and use ejs template syntax in index.html. |
3 | 3 | * https://github.com/anncwb/vite-plugin-html |
4 | 4 | */ |
5 | -import type { Plugin } from 'vite'; | |
6 | -import html from 'vite-plugin-html'; | |
5 | +import type { PluginOption } from 'vite'; | |
6 | +import { createHtmlPlugin } from 'vite-plugin-html'; | |
7 | 7 | import pkg from '../../../package.json'; |
8 | 8 | import { GLOB_CONFIG_FILE_NAME } from '../../constant'; |
9 | 9 | |
... | ... | @@ -16,7 +16,7 @@ export function configHtmlPlugin(env: ViteEnv, isBuild: boolean) { |
16 | 16 | return `${path || '/'}${GLOB_CONFIG_FILE_NAME}?v=${pkg.version}-${new Date().getTime()}`; |
17 | 17 | }; |
18 | 18 | |
19 | - const htmlPlugin: Plugin[] = html({ | |
19 | + const htmlPlugin: PluginOption[] = createHtmlPlugin({ | |
20 | 20 | minify: isBuild, |
21 | 21 | inject: { |
22 | 22 | // Inject data into ejs template | ... | ... |
build/vite/plugin/index.ts
1 | -import type { Plugin } from 'vite'; | |
1 | +import { PluginOption } from 'vite'; | |
2 | 2 | import vue from '@vitejs/plugin-vue'; |
3 | 3 | import vueJsx from '@vitejs/plugin-vue-jsx'; |
4 | 4 | import legacy from '@vitejs/plugin-legacy'; |
5 | 5 | import purgeIcons from 'vite-plugin-purge-icons'; |
6 | 6 | import windiCSS from 'vite-plugin-windicss'; |
7 | +import VitePluginCertificate from 'vite-plugin-mkcert'; | |
7 | 8 | import vueSetupExtend from 'vite-plugin-vue-setup-extend'; |
8 | 9 | import { configHtmlPlugin } from './html'; |
9 | 10 | import { configPwaConfig } from './pwa'; |
... | ... | @@ -24,13 +25,16 @@ export function createVitePlugins(viteEnv: ViteEnv, isBuild: boolean) { |
24 | 25 | VITE_BUILD_COMPRESS_DELETE_ORIGIN_FILE, |
25 | 26 | } = viteEnv; |
26 | 27 | |
27 | - const vitePlugins: (Plugin | Plugin[])[] = [ | |
28 | + const vitePlugins: (PluginOption | PluginOption[])[] = [ | |
28 | 29 | // have to |
29 | 30 | vue(), |
30 | 31 | // have to |
31 | 32 | vueJsx(), |
32 | 33 | // support name |
33 | 34 | vueSetupExtend(), |
35 | + VitePluginCertificate({ | |
36 | + source: 'coding', | |
37 | + }), | |
34 | 38 | ]; |
35 | 39 | |
36 | 40 | // vite-plugin-windicss | ... | ... |
build/vite/plugin/styleImport.ts
... | ... | @@ -2,13 +2,13 @@ |
2 | 2 | * Introduces component library styles on demand. |
3 | 3 | * https://github.com/anncwb/vite-plugin-style-import |
4 | 4 | */ |
5 | -import styleImport from 'vite-plugin-style-import'; | |
5 | +import { createStyleImportPlugin } from 'vite-plugin-style-import'; | |
6 | 6 | |
7 | 7 | export function configStyleImportPlugin(_isBuild: boolean) { |
8 | 8 | // if (!isBuild) { |
9 | 9 | // return []; |
10 | 10 | // } |
11 | - const styleImportPlugin = styleImport({ | |
11 | + const styleImportPlugin = createStyleImportPlugin({ | |
12 | 12 | libs: [ |
13 | 13 | { |
14 | 14 | libraryName: 'ant-design-vue', | ... | ... |
build/vite/plugin/svgSprite.ts
... | ... | @@ -3,11 +3,11 @@ |
3 | 3 | * https://github.com/anncwb/vite-plugin-svg-icons |
4 | 4 | */ |
5 | 5 | |
6 | -import SvgIconsPlugin from 'vite-plugin-svg-icons'; | |
6 | +import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'; | |
7 | 7 | import path from 'path'; |
8 | 8 | |
9 | 9 | export function configSvgIconsPlugin(isBuild: boolean) { |
10 | - const svgIconsPlugin = SvgIconsPlugin({ | |
10 | + const svgIconsPlugin = createSvgIconsPlugin({ | |
11 | 11 | iconDirs: [path.resolve(process.cwd(), 'src/assets/icons')], |
12 | 12 | svgoOptions: isBuild, |
13 | 13 | // default | ... | ... |
build/vite/plugin/theme.ts
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | * Vite plugin for website theme color switching |
3 | 3 | * https://github.com/anncwb/vite-plugin-theme |
4 | 4 | */ |
5 | -import type { Plugin } from 'vite'; | |
5 | +import type { PluginOption } from 'vite'; | |
6 | 6 | import path from 'path'; |
7 | 7 | import { |
8 | 8 | viteThemePlugin, |
... | ... | @@ -14,7 +14,7 @@ import { |
14 | 14 | import { getThemeColors, generateColors } from '../../config/themeConfig'; |
15 | 15 | import { generateModifyVars } from '../../generate/generateModifyVars'; |
16 | 16 | |
17 | -export function configThemePlugin(isBuild: boolean): Plugin[] { | |
17 | +export function configThemePlugin(isBuild: boolean): PluginOption[] { | |
18 | 18 | const colors = generateColors({ |
19 | 19 | mixDarken, |
20 | 20 | mixLighten, |
... | ... | @@ -85,5 +85,5 @@ export function configThemePlugin(isBuild: boolean): Plugin[] { |
85 | 85 | }), |
86 | 86 | ]; |
87 | 87 | |
88 | - return plugin as unknown as Plugin[]; | |
88 | + return plugin as unknown as PluginOption[]; | |
89 | 89 | } | ... | ... |
jest.config.mjs deleted
100644 → 0
1 | -export default { | |
2 | - preset: 'ts-jest', | |
3 | - roots: ['<rootDir>/tests/'], | |
4 | - clearMocks: true, | |
5 | - moduleDirectories: ['node_modules', 'src'], | |
6 | - moduleFileExtensions: ['js', 'ts', 'vue', 'tsx', 'jsx', 'json', 'node'], | |
7 | - modulePaths: ['<rootDir>/src', '<rootDir>/node_modules'], | |
8 | - testMatch: [ | |
9 | - '**/tests/**/*.[jt]s?(x)', | |
10 | - '**/?(*.)+(spec|test).[tj]s?(x)', | |
11 | - '(/__tests__/.*|(\\.|/)(test|spec))\\.(js|ts)$', | |
12 | - ], | |
13 | - testPathIgnorePatterns: [ | |
14 | - '<rootDir>/tests/server/', | |
15 | - '<rootDir>/tests/__mocks__/', | |
16 | - '/node_modules/', | |
17 | - ], | |
18 | - transform: { | |
19 | - '^.+\\.tsx?$': 'ts-jest', | |
20 | - }, | |
21 | - transformIgnorePatterns: ['<rootDir>/tests/__mocks__/', '/node_modules/'], | |
22 | - // A map from regular expressions to module names that allow to stub out resources with a single module | |
23 | - moduleNameMapper: { | |
24 | - '\\.(vs|fs|vert|frag|glsl|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$': | |
25 | - '<rootDir>/tests/__mocks__/fileMock.ts', | |
26 | - '\\.(sass|s?css|less)$': '<rootDir>/tests/__mocks__/styleMock.ts', | |
27 | - '\\?worker$': '<rootDir>/tests/__mocks__/workerMock.ts', | |
28 | - '^/@/(.*)$': '<rootDir>/src/$1', | |
29 | - }, | |
30 | - testEnvironment: 'jsdom', | |
31 | - verbose: true, | |
32 | - collectCoverage: false, | |
33 | - coverageDirectory: 'coverage', | |
34 | - collectCoverageFrom: ['src/**/*.{js,ts,vue}'], | |
35 | - coveragePathIgnorePatterns: ['^.+\\.d\\.ts$'], | |
36 | -}; |
mock/sys/user.ts
... | ... | @@ -111,4 +111,12 @@ export default [ |
111 | 111 | return resultSuccess(undefined, { message: 'Token has been destroyed' }); |
112 | 112 | }, |
113 | 113 | }, |
114 | + { | |
115 | + url: '/basic-api/testRetry', | |
116 | + statusCode: 405, | |
117 | + method: 'get', | |
118 | + response: () => { | |
119 | + return resultError('Error!'); | |
120 | + }, | |
121 | + }, | |
114 | 122 | ] as MockMethod[]; | ... | ... |
package.json
... | ... | @@ -25,7 +25,6 @@ |
25 | 25 | "lint:stylelint": "stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/", |
26 | 26 | "lint:lint-staged": "lint-staged", |
27 | 27 | "test:unit": "jest", |
28 | - "test:unit-coverage": "jest --coverage", | |
29 | 28 | "test:gzip": "npx http-server dist --cors --gzip -c-1", |
30 | 29 | "test:br": "npx http-server dist --cors --brotli -c-1", |
31 | 30 | "reinstall": "rimraf pnpm-lock.yaml && rimraf package.lock.json && rimraf node_modules && npm run bootstrap", |
... | ... | @@ -34,117 +33,115 @@ |
34 | 33 | }, |
35 | 34 | "dependencies": { |
36 | 35 | "@ant-design/colors": "^6.0.0", |
37 | - "@ant-design/icons-vue": "^6.0.1", | |
38 | - "@iconify/iconify": "^2.1.0", | |
39 | - "@logicflow/core": "^0.7.16", | |
40 | - "@logicflow/extension": "^0.7.16", | |
41 | - "@vue/runtime-core": "^3.2.26", | |
42 | - "@vue/shared": "^3.2.26", | |
43 | - "@vueuse/core": "^7.4.1", | |
44 | - "@vueuse/shared": "^7.4.1", | |
45 | - "@zxcvbn-ts/core": "^1.2.0", | |
46 | - "ant-design-vue": "3.0.0-beta.3", | |
47 | - "axios": "^0.24.0", | |
48 | - "codemirror": "^5.65.0", | |
36 | + "@ant-design/icons-vue": "^6.1.0", | |
37 | + "@iconify/iconify": "^2.1.2", | |
38 | + "@logicflow/core": "^1.1.7", | |
39 | + "@logicflow/extension": "^1.1.7", | |
40 | + "@vue/runtime-core": "^3.2.31", | |
41 | + "@vue/shared": "^3.2.31", | |
42 | + "@vueuse/core": "^8.1.1", | |
43 | + "@vueuse/shared": "^8.1.1", | |
44 | + "@zxcvbn-ts/core": "^2.0.1", | |
45 | + "ant-design-vue": "3.1.0-rc.1", | |
46 | + "axios": "^0.26.1", | |
47 | + "codemirror": "^5.65.2", | |
49 | 48 | "cropperjs": "^1.5.12", |
50 | 49 | "crypto-js": "^4.1.1", |
51 | - "dayjs": "^1.10.7", | |
52 | - "echarts": "^5.2.2", | |
53 | - "intro.js": "^4.3.0", | |
50 | + "dayjs": "^1.11.0", | |
51 | + "echarts": "^5.3.1", | |
52 | + "intro.js": "^5.0.0", | |
54 | 53 | "lodash-es": "^4.17.21", |
55 | 54 | "mockjs": "^1.1.0", |
56 | 55 | "nprogress": "^0.2.0", |
57 | 56 | "path-to-regexp": "^6.2.0", |
58 | - "pinia": "2.0.9", | |
57 | + "pinia": "2.0.12", | |
59 | 58 | "print-js": "^1.6.0", |
60 | 59 | "qrcode": "^1.5.0", |
61 | - "qs": "^6.10.2", | |
60 | + "qs": "^6.10.3", | |
62 | 61 | "resize-observer-polyfill": "^1.5.1", |
63 | - "showdown": "^1.9.1", | |
62 | + "showdown": "^2.0.3", | |
64 | 63 | "sortablejs": "^1.14.0", |
65 | - "tinymce": "^5.10.2", | |
66 | - "vditor": "^3.8.10", | |
67 | - "vue": "^3.2.26", | |
64 | + "tinymce": "^5.10.3", | |
65 | + "vditor": "^3.8.12", | |
66 | + "vue": "^3.2.31", | |
68 | 67 | "vue-i18n": "^9.1.9", |
69 | - "vue-json-pretty": "^1.8.2", | |
70 | - "vue-router": "^4.0.12", | |
68 | + "vue-json-pretty": "^2.0.6", | |
69 | + "vue-router": "^4.0.14", | |
71 | 70 | "vue-types": "^4.1.1", |
72 | - "xlsx": "^0.17.4" | |
71 | + "xlsx": "^0.18.4" | |
73 | 72 | }, |
74 | 73 | "devDependencies": { |
75 | - "@commitlint/cli": "^16.0.1", | |
76 | - "@commitlint/config-conventional": "^16.0.0", | |
77 | - "@iconify/json": "^2.0.16", | |
78 | - "@purge-icons/generated": "^0.7.0", | |
74 | + "@commitlint/cli": "^16.2.3", | |
75 | + "@commitlint/config-conventional": "^16.2.1", | |
76 | + "@iconify/json": "^2.1.17", | |
77 | + "@purge-icons/generated": "^0.8.1", | |
79 | 78 | "@types/codemirror": "^5.60.5", |
80 | - "@types/crypto-js": "^4.0.2", | |
79 | + "@types/crypto-js": "^4.1.1", | |
81 | 80 | "@types/fs-extra": "^9.0.13", |
82 | - "@types/inquirer": "^8.1.3", | |
81 | + "@types/inquirer": "^8.2.0", | |
83 | 82 | "@types/intro.js": "^3.0.2", |
84 | - "@types/jest": "^27.0.3", | |
85 | - "@types/lodash-es": "^4.17.5", | |
86 | - "@types/mockjs": "^1.0.4", | |
87 | - "@types/node": "^17.0.5", | |
83 | + "@types/lodash-es": "^4.17.6", | |
84 | + "@types/mockjs": "^1.0.6", | |
85 | + "@types/node": "^17.0.21", | |
88 | 86 | "@types/nprogress": "^0.2.0", |
89 | 87 | "@types/qrcode": "^1.4.2", |
90 | 88 | "@types/qs": "^6.9.7", |
91 | 89 | "@types/showdown": "^1.9.4", |
92 | 90 | "@types/sortablejs": "^1.10.7", |
93 | - "@typescript-eslint/eslint-plugin": "^5.8.1", | |
94 | - "@typescript-eslint/parser": "^5.8.1", | |
95 | - "@vitejs/plugin-legacy": "^1.6.4", | |
96 | - "@vitejs/plugin-vue": "^2.0.1", | |
97 | - "@vitejs/plugin-vue-jsx": "^1.3.3", | |
98 | - "@vue/compiler-sfc": "3.2.26", | |
91 | + "@typescript-eslint/eslint-plugin": "^5.15.0", | |
92 | + "@typescript-eslint/parser": "^5.15.0", | |
93 | + "@vitejs/plugin-legacy": "^1.7.1", | |
94 | + "@vitejs/plugin-vue": "^2.2.4", | |
95 | + "@vitejs/plugin-vue-jsx": "^1.3.8", | |
96 | + "@vue/compiler-sfc": "3.2.31", | |
99 | 97 | "@vue/test-utils": "^2.0.0-rc.18", |
100 | - "autoprefixer": "^10.4.0", | |
98 | + "autoprefixer": "^10.4.4", | |
101 | 99 | "commitizen": "^4.2.4", |
102 | 100 | "conventional-changelog-cli": "^2.2.2", |
103 | 101 | "cross-env": "^7.0.3", |
104 | - "dotenv": "^10.0.0", | |
105 | - "eslint": "^8.5.0", | |
106 | - "eslint-config-prettier": "^8.3.0", | |
107 | - "eslint-define-config": "^1.2.1", | |
108 | - "eslint-plugin-jest": "^25.3.2", | |
102 | + "dotenv": "^16.0.0", | |
103 | + "eslint": "^8.11.0", | |
104 | + "eslint-config-prettier": "^8.5.0", | |
109 | 105 | "eslint-plugin-prettier": "^4.0.0", |
110 | - "eslint-plugin-vue": "^8.2.0", | |
111 | - "esno": "^0.13.0", | |
112 | - "fs-extra": "^10.0.0", | |
106 | + "eslint-plugin-vue": "^8.5.0", | |
107 | + "esno": "^0.14.1", | |
108 | + "fs-extra": "^10.0.1", | |
113 | 109 | "husky": "^7.0.4", |
114 | - "inquirer": "^8.2.0", | |
115 | - "jest": "^27.4.5", | |
110 | + "inquirer": "^8.2.1", | |
116 | 111 | "less": "^4.1.2", |
117 | - "lint-staged": "12.1.4", | |
112 | + "lint-staged": "12.3.7", | |
118 | 113 | "npm-run-all": "^4.1.5", |
119 | - "postcss": "^8.4.5", | |
114 | + "picocolors": "^1.0.0", | |
115 | + "postcss": "^8.4.12", | |
120 | 116 | "postcss-html": "^1.3.0", |
121 | - "postcss-less": "^5.0.0", | |
122 | - "prettier": "^2.5.1", | |
117 | + "postcss-less": "^6.0.0", | |
118 | + "prettier": "^2.6.0", | |
123 | 119 | "rimraf": "^3.0.2", |
124 | - "rollup-plugin-visualizer": "^5.5.2", | |
125 | - "stylelint": "^14.2.0", | |
126 | - "stylelint-config-html": "^1.0.0", | |
120 | + "rollup": "^2.70.1", | |
121 | + "rollup-plugin-visualizer": "^5.6.0", | |
122 | + "stylelint": "^14.6.0", | |
127 | 123 | "stylelint-config-prettier": "^9.0.3", |
128 | - "stylelint-config-recommended": "^6.0.0", | |
129 | - "stylelint-config-standard": "^24.0.0", | |
124 | + "stylelint-config-recommended": "^7.0.0", | |
125 | + "stylelint-config-recommended-vue": "^1.3.0", | |
126 | + "stylelint-config-standard": "^25.0.0", | |
130 | 127 | "stylelint-order": "^5.0.0", |
131 | - "ts-jest": "^27.1.2", | |
132 | - "ts-node": "^10.4.0", | |
133 | - "typescript": "^4.5.4", | |
134 | - "vite": "^2.7.8", | |
135 | - "vite-plugin-compression": "^0.4.0", | |
136 | - "vite-plugin-html": "^2.1.2", | |
137 | - "vite-plugin-imagemin": "^0.5.1", | |
128 | + "ts-node": "^10.7.0", | |
129 | + "typescript": "^4.6.2", | |
130 | + "vite": "^2.9.0-beta.3", | |
131 | + "vite-plugin-compression": "^0.5.1", | |
132 | + "vite-plugin-html": "^3.2.0", | |
133 | + "vite-plugin-imagemin": "^0.6.1", | |
134 | + "vite-plugin-mkcert": "^1.6.0", | |
138 | 135 | "vite-plugin-mock": "^2.9.6", |
139 | - "vite-plugin-purge-icons": "^0.7.0", | |
140 | - "vite-plugin-pwa": "^0.11.12", | |
141 | - "vite-plugin-style-import": "^1.4.1", | |
142 | - "vite-plugin-svg-icons": "^1.0.5", | |
136 | + "vite-plugin-purge-icons": "^0.8.1", | |
137 | + "vite-plugin-pwa": "^0.11.13", | |
138 | + "vite-plugin-style-import": "^2.0.0", | |
139 | + "vite-plugin-svg-icons": "^2.0.1", | |
143 | 140 | "vite-plugin-theme": "^0.8.1", |
144 | - "vite-plugin-vue-setup-extend": "^0.3.0", | |
145 | - "vite-plugin-windicss": "^1.6.1", | |
146 | - "vue-eslint-parser": "^8.0.1", | |
147 | - "vue-tsc": "^0.30.1" | |
141 | + "vite-plugin-vue-setup-extend": "^0.4.0", | |
142 | + "vite-plugin-windicss": "^1.8.3", | |
143 | + "vue-eslint-parser": "^8.3.0", | |
144 | + "vue-tsc": "^0.33.2" | |
148 | 145 | }, |
149 | 146 | "resolutions": { |
150 | 147 | "bin-wrapper": "npm:bin-wrapper-china", | ... | ... |
pnpm-lock.yaml
... | ... | @@ -7,237 +7,234 @@ overrides: |
7 | 7 | |
8 | 8 | specifiers: |
9 | 9 | '@ant-design/colors': ^6.0.0 |
10 | - '@ant-design/icons-vue': ^6.0.1 | |
11 | - '@commitlint/cli': ^16.0.1 | |
12 | - '@commitlint/config-conventional': ^16.0.0 | |
13 | - '@iconify/iconify': ^2.1.0 | |
14 | - '@iconify/json': ^2.0.16 | |
15 | - '@logicflow/core': ^0.7.16 | |
16 | - '@logicflow/extension': ^0.7.16 | |
17 | - '@purge-icons/generated': ^0.7.0 | |
10 | + '@ant-design/icons-vue': ^6.1.0 | |
11 | + '@commitlint/cli': ^16.2.3 | |
12 | + '@commitlint/config-conventional': ^16.2.1 | |
13 | + '@iconify/iconify': ^2.1.2 | |
14 | + '@iconify/json': ^2.1.17 | |
15 | + '@logicflow/core': ^1.1.7 | |
16 | + '@logicflow/extension': ^1.1.7 | |
17 | + '@purge-icons/generated': ^0.8.1 | |
18 | 18 | '@types/codemirror': ^5.60.5 |
19 | - '@types/crypto-js': ^4.0.2 | |
19 | + '@types/crypto-js': ^4.1.1 | |
20 | 20 | '@types/fs-extra': ^9.0.13 |
21 | - '@types/inquirer': ^8.1.3 | |
21 | + '@types/inquirer': ^8.2.0 | |
22 | 22 | '@types/intro.js': ^3.0.2 |
23 | - '@types/jest': ^27.0.3 | |
24 | - '@types/lodash-es': ^4.17.5 | |
25 | - '@types/mockjs': ^1.0.4 | |
26 | - '@types/node': ^17.0.5 | |
23 | + '@types/lodash-es': ^4.17.6 | |
24 | + '@types/mockjs': ^1.0.6 | |
25 | + '@types/node': ^17.0.21 | |
27 | 26 | '@types/nprogress': ^0.2.0 |
28 | 27 | '@types/qrcode': ^1.4.2 |
29 | 28 | '@types/qs': ^6.9.7 |
30 | 29 | '@types/showdown': ^1.9.4 |
31 | 30 | '@types/sortablejs': ^1.10.7 |
32 | - '@typescript-eslint/eslint-plugin': ^5.8.1 | |
33 | - '@typescript-eslint/parser': ^5.8.1 | |
34 | - '@vitejs/plugin-legacy': ^1.6.4 | |
35 | - '@vitejs/plugin-vue': ^2.0.1 | |
36 | - '@vitejs/plugin-vue-jsx': ^1.3.3 | |
37 | - '@vue/compiler-sfc': 3.2.26 | |
38 | - '@vue/runtime-core': ^3.2.26 | |
39 | - '@vue/shared': ^3.2.26 | |
31 | + '@typescript-eslint/eslint-plugin': ^5.15.0 | |
32 | + '@typescript-eslint/parser': ^5.15.0 | |
33 | + '@vitejs/plugin-legacy': ^1.7.1 | |
34 | + '@vitejs/plugin-vue': ^2.2.4 | |
35 | + '@vitejs/plugin-vue-jsx': ^1.3.8 | |
36 | + '@vue/compiler-sfc': 3.2.31 | |
37 | + '@vue/runtime-core': ^3.2.31 | |
38 | + '@vue/shared': ^3.2.31 | |
40 | 39 | '@vue/test-utils': ^2.0.0-rc.18 |
41 | - '@vueuse/core': ^7.4.1 | |
42 | - '@vueuse/shared': ^7.4.1 | |
43 | - '@zxcvbn-ts/core': ^1.2.0 | |
44 | - ant-design-vue: 3.0.0-beta.3 | |
45 | - autoprefixer: ^10.4.0 | |
46 | - axios: ^0.24.0 | |
47 | - codemirror: ^5.65.0 | |
40 | + '@vueuse/core': ^8.1.1 | |
41 | + '@vueuse/shared': ^8.1.1 | |
42 | + '@zxcvbn-ts/core': ^2.0.1 | |
43 | + ant-design-vue: 3.1.0-rc.1 | |
44 | + autoprefixer: ^10.4.4 | |
45 | + axios: ^0.26.1 | |
46 | + codemirror: ^5.65.2 | |
48 | 47 | commitizen: ^4.2.4 |
49 | 48 | conventional-changelog-cli: ^2.2.2 |
50 | 49 | cropperjs: ^1.5.12 |
51 | 50 | cross-env: ^7.0.3 |
52 | 51 | crypto-js: ^4.1.1 |
53 | - dayjs: ^1.10.7 | |
54 | - dotenv: ^10.0.0 | |
55 | - echarts: ^5.2.2 | |
56 | - eslint: ^8.5.0 | |
57 | - eslint-config-prettier: ^8.3.0 | |
58 | - eslint-define-config: ^1.2.1 | |
59 | - eslint-plugin-jest: ^25.3.2 | |
52 | + dayjs: ^1.11.0 | |
53 | + dotenv: ^16.0.0 | |
54 | + echarts: ^5.3.1 | |
55 | + eslint: ^8.11.0 | |
56 | + eslint-config-prettier: ^8.5.0 | |
60 | 57 | eslint-plugin-prettier: ^4.0.0 |
61 | - eslint-plugin-vue: ^8.2.0 | |
62 | - esno: ^0.13.0 | |
63 | - fs-extra: ^10.0.0 | |
58 | + eslint-plugin-vue: ^8.5.0 | |
59 | + esno: ^0.14.1 | |
60 | + fs-extra: ^10.0.1 | |
64 | 61 | husky: ^7.0.4 |
65 | - inquirer: ^8.2.0 | |
66 | - intro.js: ^4.3.0 | |
67 | - jest: ^27.4.5 | |
62 | + inquirer: ^8.2.1 | |
63 | + intro.js: ^5.0.0 | |
68 | 64 | less: ^4.1.2 |
69 | - lint-staged: 12.1.4 | |
65 | + lint-staged: 12.3.7 | |
70 | 66 | lodash-es: ^4.17.21 |
71 | 67 | mockjs: ^1.1.0 |
72 | 68 | npm-run-all: ^4.1.5 |
73 | 69 | nprogress: ^0.2.0 |
74 | 70 | path-to-regexp: ^6.2.0 |
75 | - pinia: 2.0.9 | |
76 | - postcss: ^8.4.5 | |
71 | + picocolors: ^1.0.0 | |
72 | + pinia: 2.0.12 | |
73 | + postcss: ^8.4.12 | |
77 | 74 | postcss-html: ^1.3.0 |
78 | - postcss-less: ^5.0.0 | |
79 | - prettier: ^2.5.1 | |
75 | + postcss-less: ^6.0.0 | |
76 | + prettier: ^2.6.0 | |
80 | 77 | print-js: ^1.6.0 |
81 | 78 | qrcode: ^1.5.0 |
82 | - qs: ^6.10.2 | |
79 | + qs: ^6.10.3 | |
83 | 80 | resize-observer-polyfill: ^1.5.1 |
84 | 81 | rimraf: ^3.0.2 |
85 | - rollup-plugin-visualizer: ^5.5.2 | |
86 | - showdown: ^1.9.1 | |
82 | + rollup: ^2.56.3 | |
83 | + rollup-plugin-visualizer: ^5.6.0 | |
84 | + showdown: ^2.0.3 | |
87 | 85 | sortablejs: ^1.14.0 |
88 | - stylelint: ^14.2.0 | |
89 | - stylelint-config-html: ^1.0.0 | |
86 | + stylelint: ^14.6.0 | |
90 | 87 | stylelint-config-prettier: ^9.0.3 |
91 | - stylelint-config-recommended: ^6.0.0 | |
92 | - stylelint-config-standard: ^24.0.0 | |
88 | + stylelint-config-recommended: ^7.0.0 | |
89 | + stylelint-config-recommended-vue: ^1.3.0 | |
90 | + stylelint-config-standard: ^25.0.0 | |
93 | 91 | stylelint-order: ^5.0.0 |
94 | - tinymce: ^5.10.2 | |
95 | - ts-jest: ^27.1.2 | |
96 | - ts-node: ^10.4.0 | |
97 | - typescript: ^4.5.4 | |
98 | - vditor: ^3.8.10 | |
99 | - vite: ^2.7.8 | |
100 | - vite-plugin-compression: ^0.4.0 | |
101 | - vite-plugin-html: ^2.1.2 | |
102 | - vite-plugin-imagemin: ^0.5.1 | |
92 | + tinymce: ^5.10.3 | |
93 | + ts-node: ^10.7.0 | |
94 | + typescript: ^4.6.2 | |
95 | + vditor: ^3.8.12 | |
96 | + vite: ^2.9.0-beta.3 | |
97 | + vite-plugin-compression: ^0.5.1 | |
98 | + vite-plugin-html: ^3.2.0 | |
99 | + vite-plugin-imagemin: ^0.6.1 | |
100 | + vite-plugin-mkcert: ^1.6.0 | |
103 | 101 | vite-plugin-mock: ^2.9.6 |
104 | - vite-plugin-purge-icons: ^0.7.0 | |
105 | - vite-plugin-pwa: ^0.11.12 | |
106 | - vite-plugin-style-import: ^1.4.1 | |
107 | - vite-plugin-svg-icons: ^1.0.5 | |
102 | + vite-plugin-purge-icons: ^0.8.1 | |
103 | + vite-plugin-pwa: ^0.11.13 | |
104 | + vite-plugin-style-import: ^2.0.0 | |
105 | + vite-plugin-svg-icons: ^2.0.1 | |
108 | 106 | vite-plugin-theme: ^0.8.1 |
109 | - vite-plugin-vue-setup-extend: ^0.3.0 | |
110 | - vite-plugin-windicss: ^1.6.1 | |
111 | - vue: ^3.2.26 | |
112 | - vue-eslint-parser: ^8.0.1 | |
107 | + vite-plugin-vue-setup-extend: ^0.4.0 | |
108 | + vite-plugin-windicss: ^1.8.3 | |
109 | + vue: ^3.2.31 | |
110 | + vue-eslint-parser: ^8.3.0 | |
113 | 111 | vue-i18n: ^9.1.9 |
114 | - vue-json-pretty: ^1.8.2 | |
115 | - vue-router: ^4.0.12 | |
116 | - vue-tsc: ^0.30.1 | |
112 | + vue-json-pretty: ^2.0.6 | |
113 | + vue-router: ^4.0.14 | |
114 | + vue-tsc: ^0.33.2 | |
117 | 115 | vue-types: ^4.1.1 |
118 | - xlsx: ^0.17.4 | |
116 | + xlsx: ^0.18.4 | |
119 | 117 | |
120 | 118 | dependencies: |
121 | 119 | '@ant-design/colors': 6.0.0 |
122 | - '@ant-design/icons-vue': 6.0.1_vue@3.2.26 | |
123 | - '@iconify/iconify': 2.1.0 | |
124 | - '@logicflow/core': 0.7.16 | |
125 | - '@logicflow/extension': 0.7.16 | |
126 | - '@vue/runtime-core': 3.2.26 | |
127 | - '@vue/shared': 3.2.26 | |
128 | - '@vueuse/core': 7.4.1_vue@3.2.26 | |
129 | - '@vueuse/shared': 7.4.1_vue@3.2.26 | |
130 | - '@zxcvbn-ts/core': 1.2.0 | |
131 | - ant-design-vue: 3.0.0-beta.3_ae87cbba5ec93a01f3fe1197df446ca3 | |
132 | - axios: 0.24.0 | |
133 | - codemirror: 5.65.0 | |
120 | + '@ant-design/icons-vue': 6.1.0_vue@3.2.31 | |
121 | + '@iconify/iconify': 2.1.2 | |
122 | + '@logicflow/core': 1.1.7 | |
123 | + '@logicflow/extension': 1.1.7 | |
124 | + '@vue/runtime-core': 3.2.31 | |
125 | + '@vue/shared': 3.2.31 | |
126 | + '@vueuse/core': 8.1.1_vue@3.2.31 | |
127 | + '@vueuse/shared': 8.1.1_vue@3.2.31 | |
128 | + '@zxcvbn-ts/core': 2.0.1 | |
129 | + ant-design-vue: 3.1.0-rc.1_vue@3.2.31 | |
130 | + axios: 0.26.1 | |
131 | + codemirror: 5.65.2 | |
134 | 132 | cropperjs: 1.5.12 |
135 | 133 | crypto-js: 4.1.1 |
136 | - dayjs: 1.10.7 | |
137 | - echarts: 5.2.2 | |
138 | - intro.js: 4.3.0 | |
134 | + dayjs: 1.11.0 | |
135 | + echarts: 5.3.1 | |
136 | + intro.js: 5.0.0 | |
139 | 137 | lodash-es: 4.17.21 |
140 | 138 | mockjs: 1.1.0 |
141 | 139 | nprogress: 0.2.0 |
142 | 140 | path-to-regexp: 6.2.0 |
143 | - pinia: 2.0.9_typescript@4.5.4+vue@3.2.26 | |
141 | + pinia: 2.0.12_typescript@4.6.2+vue@3.2.31 | |
144 | 142 | print-js: 1.6.0 |
145 | 143 | qrcode: 1.5.0 |
146 | - qs: 6.10.2 | |
144 | + qs: 6.10.3 | |
147 | 145 | resize-observer-polyfill: 1.5.1 |
148 | - showdown: 1.9.1 | |
146 | + showdown: 2.0.3 | |
149 | 147 | sortablejs: 1.14.0 |
150 | - tinymce: 5.10.2 | |
151 | - vditor: 3.8.10 | |
152 | - vue: 3.2.26 | |
153 | - vue-i18n: 9.1.9_vue@3.2.26 | |
154 | - vue-json-pretty: 1.8.2 | |
155 | - vue-router: 4.0.12_vue@3.2.26 | |
156 | - vue-types: 4.1.1_vue@3.2.26 | |
157 | - xlsx: 0.17.4 | |
148 | + tinymce: 5.10.3 | |
149 | + vditor: 3.8.12 | |
150 | + vue: 3.2.31 | |
151 | + vue-i18n: 9.1.9_vue@3.2.31 | |
152 | + vue-json-pretty: 2.0.6_vue@3.2.31 | |
153 | + vue-router: 4.0.14_vue@3.2.31 | |
154 | + vue-types: 4.1.1_vue@3.2.31 | |
155 | + xlsx: 0.18.4 | |
158 | 156 | |
159 | 157 | devDependencies: |
160 | - '@commitlint/cli': 16.0.1_@types+node@17.0.5 | |
161 | - '@commitlint/config-conventional': 16.0.0 | |
162 | - '@iconify/json': 2.0.16 | |
163 | - '@purge-icons/generated': 0.7.0 | |
158 | + '@commitlint/cli': 16.2.3 | |
159 | + '@commitlint/config-conventional': 16.2.1 | |
160 | + '@iconify/json': 2.1.17 | |
161 | + '@purge-icons/generated': 0.8.1 | |
164 | 162 | '@types/codemirror': 5.60.5 |
165 | - '@types/crypto-js': 4.0.2 | |
163 | + '@types/crypto-js': 4.1.1 | |
166 | 164 | '@types/fs-extra': 9.0.13 |
167 | - '@types/inquirer': 8.1.3 | |
165 | + '@types/inquirer': 8.2.0 | |
168 | 166 | '@types/intro.js': 3.0.2 |
169 | - '@types/jest': 27.0.3 | |
170 | - '@types/lodash-es': 4.17.5 | |
171 | - '@types/mockjs': 1.0.4 | |
172 | - '@types/node': 17.0.5 | |
167 | + '@types/lodash-es': 4.17.6 | |
168 | + '@types/mockjs': 1.0.6 | |
169 | + '@types/node': 17.0.21 | |
173 | 170 | '@types/nprogress': 0.2.0 |
174 | 171 | '@types/qrcode': 1.4.2 |
175 | 172 | '@types/qs': 6.9.7 |
176 | 173 | '@types/showdown': 1.9.4 |
177 | 174 | '@types/sortablejs': 1.10.7 |
178 | - '@typescript-eslint/eslint-plugin': 5.8.1_3a47348159e115370aa4cba56aba33b6 | |
179 | - '@typescript-eslint/parser': 5.8.1_eslint@8.5.0+typescript@4.5.4 | |
180 | - '@vitejs/plugin-legacy': 1.6.4_vite@2.7.8 | |
181 | - '@vitejs/plugin-vue': 2.0.1_vite@2.7.8+vue@3.2.26 | |
182 | - '@vitejs/plugin-vue-jsx': 1.3.3 | |
183 | - '@vue/compiler-sfc': 3.2.26 | |
184 | - '@vue/test-utils': 2.0.0-rc.18_vue@3.2.26 | |
185 | - autoprefixer: 10.4.0_postcss@8.4.5 | |
186 | - commitizen: 4.2.4_@types+node@17.0.5 | |
175 | + '@typescript-eslint/eslint-plugin': 5.15.0_f2c49ce7d0e93ebcfdb4b7d25b131b28 | |
176 | + '@typescript-eslint/parser': 5.15.0_eslint@8.11.0+typescript@4.6.2 | |
177 | + '@vitejs/plugin-legacy': 1.7.1_vite@2.9.0-beta.3 | |
178 | + '@vitejs/plugin-vue': 2.2.4_vite@2.9.0-beta.3+vue@3.2.31 | |
179 | + '@vitejs/plugin-vue-jsx': 1.3.8 | |
180 | + '@vue/compiler-sfc': 3.2.31 | |
181 | + '@vue/test-utils': 2.0.0-rc.18_vue@3.2.31 | |
182 | + autoprefixer: 10.4.4_postcss@8.4.12 | |
183 | + commitizen: 4.2.4 | |
187 | 184 | conventional-changelog-cli: 2.2.2 |
188 | 185 | cross-env: 7.0.3 |
189 | - dotenv: 10.0.0 | |
190 | - eslint: 8.5.0 | |
191 | - eslint-config-prettier: 8.3.0_eslint@8.5.0 | |
192 | - eslint-define-config: 1.2.1 | |
193 | - eslint-plugin-jest: 25.3.2_8e4587ffdbad7ecbf6b0774bd21bf51b | |
194 | - eslint-plugin-prettier: 4.0.0_94e1b6d3ce6ea916847122712570e9ae | |
195 | - eslint-plugin-vue: 8.2.0_eslint@8.5.0 | |
196 | - esno: 0.13.0_typescript@4.5.4 | |
197 | - fs-extra: 10.0.0 | |
186 | + dotenv: 16.0.0 | |
187 | + eslint: 8.11.0 | |
188 | + eslint-config-prettier: 8.5.0_eslint@8.11.0 | |
189 | + eslint-plugin-prettier: 4.0.0_68edcf5670f37721baf5d2cac6124e4d | |
190 | + eslint-plugin-vue: 8.5.0_eslint@8.11.0 | |
191 | + esno: 0.14.1 | |
192 | + fs-extra: 10.0.1 | |
198 | 193 | husky: 7.0.4 |
199 | - inquirer: 8.2.0 | |
200 | - jest: 27.4.5_ts-node@10.4.0 | |
194 | + inquirer: 8.2.1 | |
201 | 195 | less: 4.1.2 |
202 | - lint-staged: 12.1.4 | |
196 | + lint-staged: 12.3.7 | |
203 | 197 | npm-run-all: 4.1.5 |
204 | - postcss: 8.4.5 | |
198 | + picocolors: 1.0.0 | |
199 | + postcss: 8.4.12 | |
205 | 200 | postcss-html: 1.3.0 |
206 | - postcss-less: 5.0.0 | |
207 | - prettier: 2.5.1 | |
201 | + postcss-less: 6.0.0_postcss@8.4.12 | |
202 | + prettier: 2.6.0 | |
208 | 203 | rimraf: 3.0.2 |
209 | - rollup-plugin-visualizer: 5.5.2 | |
210 | - stylelint: 14.2.0 | |
211 | - stylelint-config-html: 1.0.0_2d1bcf73d0f2e8e613ccd6d821b0344f | |
212 | - stylelint-config-prettier: 9.0.3_stylelint@14.2.0 | |
213 | - stylelint-config-recommended: 6.0.0_stylelint@14.2.0 | |
214 | - stylelint-config-standard: 24.0.0_stylelint@14.2.0 | |
215 | - stylelint-order: 5.0.0_stylelint@14.2.0 | |
216 | - ts-jest: 27.1.2_b65cae1b46840061996b6cc0ea16ca56 | |
217 | - ts-node: 10.4.0_bad060d5f9aca5284661d88d739ba15b | |
218 | - typescript: 4.5.4 | |
219 | - vite: 2.7.8_less@4.1.2 | |
220 | - vite-plugin-compression: 0.4.0_vite@2.7.8 | |
221 | - vite-plugin-html: 2.1.2_vite@2.7.8 | |
222 | - vite-plugin-imagemin: 0.5.1_vite@2.7.8 | |
223 | - vite-plugin-mock: 2.9.6_mockjs@1.1.0+vite@2.7.8 | |
224 | - vite-plugin-purge-icons: 0.7.0_vite@2.7.8 | |
225 | - vite-plugin-pwa: 0.11.12_vite@2.7.8 | |
226 | - vite-plugin-style-import: 1.4.1_vite@2.7.8 | |
227 | - vite-plugin-svg-icons: 1.0.5_vite@2.7.8 | |
228 | - vite-plugin-theme: 0.8.1_vite@2.7.8 | |
229 | - vite-plugin-vue-setup-extend: 0.3.0_vite@2.7.8 | |
230 | - vite-plugin-windicss: 1.6.1_vite@2.7.8 | |
231 | - vue-eslint-parser: 8.0.1_eslint@8.5.0 | |
232 | - vue-tsc: 0.30.1_typescript@4.5.4 | |
204 | + rollup: 2.70.1 | |
205 | + rollup-plugin-visualizer: 5.6.0_rollup@2.70.1 | |
206 | + stylelint: 14.6.0 | |
207 | + stylelint-config-prettier: 9.0.3_stylelint@14.6.0 | |
208 | + stylelint-config-recommended: 7.0.0_stylelint@14.6.0 | |
209 | + stylelint-config-recommended-vue: 1.3.0_f552817e5b8b1b7dca381d844218922e | |
210 | + stylelint-config-standard: 25.0.0_stylelint@14.6.0 | |
211 | + stylelint-order: 5.0.0_stylelint@14.6.0 | |
212 | + ts-node: 10.7.0_e79e62fe450383fd2d418267dc75e645 | |
213 | + typescript: 4.6.2 | |
214 | + vite: 2.9.0-beta.3_less@4.1.2 | |
215 | + vite-plugin-compression: 0.5.1_vite@2.9.0-beta.3 | |
216 | + vite-plugin-html: 3.2.0_vite@2.9.0-beta.3 | |
217 | + vite-plugin-imagemin: 0.6.1_vite@2.9.0-beta.3 | |
218 | + vite-plugin-mkcert: 1.6.0 | |
219 | + vite-plugin-mock: 2.9.6_0f4f060d71e998e1697ce4d6d1a6c012 | |
220 | + vite-plugin-purge-icons: 0.8.1_vite@2.9.0-beta.3 | |
221 | + vite-plugin-pwa: 0.11.13_vite@2.9.0-beta.3 | |
222 | + vite-plugin-style-import: 2.0.0_vite@2.9.0-beta.3 | |
223 | + vite-plugin-svg-icons: 2.0.1_vite@2.9.0-beta.3 | |
224 | + vite-plugin-theme: 0.8.1_vite@2.9.0-beta.3 | |
225 | + vite-plugin-vue-setup-extend: 0.4.0_vite@2.9.0-beta.3 | |
226 | + vite-plugin-windicss: 1.8.3_vite@2.9.0-beta.3 | |
227 | + vue-eslint-parser: 8.3.0_eslint@8.11.0 | |
228 | + vue-tsc: 0.33.2_typescript@4.6.2 | |
233 | 229 | |
234 | 230 | packages: |
235 | 231 | |
236 | - /@ant-design/colors/5.1.1: | |
237 | - resolution: {integrity: sha512-Txy4KpHrp3q4XZdfgOBqLl+lkQIc3tEvHXOimRN1giX1AEC7mGtyrO9p8iRGJ3FLuVMGa2gNEzQyghVymLttKQ==} | |
232 | + /@ampproject/remapping/2.1.2: | |
233 | + resolution: {integrity: sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==} | |
234 | + engines: {node: '>=6.0.0'} | |
238 | 235 | dependencies: |
239 | - '@ctrl/tinycolor': 3.4.0 | |
240 | - dev: false | |
236 | + '@jridgewell/trace-mapping': 0.3.4 | |
237 | + dev: true | |
241 | 238 | |
242 | 239 | /@ant-design/colors/6.0.0: |
243 | 240 | resolution: {integrity: sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==} |
... | ... | @@ -249,1592 +246,1357 @@ packages: |
249 | 246 | resolution: {integrity: sha512-EB0iwlKDGpG93hW8f85CTJTs4SvMX7tt5ceupvhALp1IF44SeUFOMhKUOYqpsoYWQKAOuTRDMqn75rEaKDp0Xw==} |
250 | 247 | dev: false |
251 | 248 | |
252 | - /@ant-design/icons-vue/6.0.1_vue@3.2.26: | |
253 | - resolution: {integrity: sha512-HigIgEVV6bbcrz2A92/qDzi/aKWB5EC6b6E1mxMB6aQA7ksiKY+gi4U94TpqyEIIhR23uaDrjufJ+xCZQ+vx6Q==} | |
249 | + /@ant-design/icons-vue/6.1.0_vue@3.2.31: | |
250 | + resolution: {integrity: sha512-EX6bYm56V+ZrKN7+3MT/ubDkvJ5rK/O2t380WFRflDcVFgsvl3NLH7Wxeau6R8DbrO5jWR6DSTC3B6gYFp77AA==} | |
254 | 251 | peerDependencies: |
255 | 252 | vue: '>=3.0.3' |
256 | 253 | dependencies: |
257 | - '@ant-design/colors': 5.1.1 | |
254 | + '@ant-design/colors': 6.0.0 | |
258 | 255 | '@ant-design/icons-svg': 4.2.1 |
259 | - '@types/lodash': 4.14.177 | |
260 | - lodash: 4.17.21 | |
261 | - vue: 3.2.26 | |
256 | + vue: 3.2.31 | |
262 | 257 | dev: false |
263 | 258 | |
264 | - /@antfu/utils/0.3.0: | |
265 | - resolution: {integrity: sha512-UU8TLr/EoXdg7OjMp0h9oDoIAVr+Z/oW9cpOxQQyrsz6Qzd2ms/1CdWx8fl2OQdFpxGmq5Vc4TwfLHId6nAZjA==} | |
266 | - dependencies: | |
267 | - '@types/throttle-debounce': 2.1.0 | |
259 | + /@antfu/utils/0.5.0: | |
260 | + resolution: {integrity: sha512-MrAQ/MrPSxbh1bBrmwJjORfJymw4IqSHFBXqvxaga3ZdDM+/zokYF8DjyJpSjY2QmpmgQrajDUBJOWrYeARfzA==} | |
268 | 261 | dev: true |
269 | 262 | |
270 | - /@apideck/better-ajv-errors/0.3.1_ajv@8.8.2: | |
271 | - resolution: {integrity: sha512-6RMV31esAxqlDIvVCG/CJxY/s8dFNVOI5w8RWIfDMhjg/iwqnawko9tJXau/leqC4+T1Bu8et99QVWCwU5wk+g==} | |
263 | + /@apideck/better-ajv-errors/0.3.3_ajv@8.10.0: | |
264 | + resolution: {integrity: sha512-9o+HO2MbJhJHjDYZaDxJmSDckvDpiuItEsrIShV0DXeCshXWRHhqYyU/PKHMkuClOmFnZhRd6wzv4vpDu/dRKg==} | |
272 | 265 | engines: {node: '>=10'} |
273 | 266 | peerDependencies: |
274 | 267 | ajv: '>=8' |
275 | 268 | dependencies: |
276 | - ajv: 8.8.2 | |
269 | + ajv: 8.10.0 | |
277 | 270 | json-schema: 0.4.0 |
278 | 271 | jsonpointer: 5.0.0 |
279 | 272 | leven: 3.1.0 |
280 | 273 | dev: true |
281 | 274 | |
282 | - /@babel/code-frame/7.16.0: | |
283 | - resolution: {integrity: sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==} | |
275 | + /@babel/code-frame/7.16.7: | |
276 | + resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==} | |
284 | 277 | engines: {node: '>=6.9.0'} |
285 | 278 | dependencies: |
286 | - '@babel/highlight': 7.16.0 | |
279 | + '@babel/highlight': 7.16.10 | |
287 | 280 | dev: true |
288 | 281 | |
289 | - /@babel/compat-data/7.16.4: | |
290 | - resolution: {integrity: sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==} | |
282 | + /@babel/compat-data/7.17.7: | |
283 | + resolution: {integrity: sha512-p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ==} | |
291 | 284 | engines: {node: '>=6.9.0'} |
292 | 285 | dev: true |
293 | 286 | |
294 | - /@babel/core/7.16.0: | |
295 | - resolution: {integrity: sha512-mYZEvshBRHGsIAiyH5PzCFTCfbWfoYbO/jcSdXQSUQu1/pW0xDZAUP7KEc32heqWTAfAHhV9j1vH8Sav7l+JNQ==} | |
296 | - engines: {node: '>=6.9.0'} | |
297 | - dependencies: | |
298 | - '@babel/code-frame': 7.16.0 | |
299 | - '@babel/generator': 7.16.0 | |
300 | - '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.0 | |
301 | - '@babel/helper-module-transforms': 7.16.0 | |
302 | - '@babel/helpers': 7.16.3 | |
303 | - '@babel/parser': 7.16.4 | |
304 | - '@babel/template': 7.16.0 | |
305 | - '@babel/traverse': 7.16.3 | |
306 | - '@babel/types': 7.16.0 | |
307 | - convert-source-map: 1.8.0 | |
308 | - debug: 4.3.3 | |
309 | - gensync: 1.0.0-beta.2 | |
310 | - json5: 2.2.0 | |
311 | - semver: 6.3.0 | |
312 | - source-map: 0.5.7 | |
313 | - transitivePeerDependencies: | |
314 | - - supports-color | |
315 | - dev: true | |
316 | - | |
317 | - /@babel/core/7.16.5: | |
318 | - resolution: {integrity: sha512-wUcenlLzuWMZ9Zt8S0KmFwGlH6QKRh3vsm/dhDA3CHkiTA45YuG1XkHRcNRl73EFPXDp/d5kVOU0/y7x2w6OaQ==} | |
287 | + /@babel/core/7.17.7: | |
288 | + resolution: {integrity: sha512-djHlEfFHnSnTAcPb7dATbiM5HxGOP98+3JLBZtjRb5I7RXrw7kFRoG2dXM8cm3H+o11A8IFH/uprmJpwFynRNQ==} | |
319 | 289 | engines: {node: '>=6.9.0'} |
320 | 290 | dependencies: |
321 | - '@babel/code-frame': 7.16.0 | |
322 | - '@babel/generator': 7.16.5 | |
323 | - '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.5 | |
324 | - '@babel/helper-module-transforms': 7.16.5 | |
325 | - '@babel/helpers': 7.16.5 | |
326 | - '@babel/parser': 7.16.6 | |
327 | - '@babel/template': 7.16.0 | |
328 | - '@babel/traverse': 7.16.5 | |
329 | - '@babel/types': 7.16.0 | |
291 | + '@ampproject/remapping': 2.1.2 | |
292 | + '@babel/code-frame': 7.16.7 | |
293 | + '@babel/generator': 7.17.7 | |
294 | + '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.7 | |
295 | + '@babel/helper-module-transforms': 7.17.7 | |
296 | + '@babel/helpers': 7.17.7 | |
297 | + '@babel/parser': 7.17.7 | |
298 | + '@babel/template': 7.16.7 | |
299 | + '@babel/traverse': 7.17.3 | |
300 | + '@babel/types': 7.17.0 | |
330 | 301 | convert-source-map: 1.8.0 |
331 | - debug: 4.3.3 | |
302 | + debug: 4.3.4 | |
332 | 303 | gensync: 1.0.0-beta.2 |
333 | 304 | json5: 2.2.0 |
334 | 305 | semver: 6.3.0 |
335 | - source-map: 0.5.7 | |
336 | 306 | transitivePeerDependencies: |
337 | 307 | - supports-color |
338 | 308 | dev: true |
339 | 309 | |
340 | - /@babel/generator/7.16.0: | |
341 | - resolution: {integrity: sha512-RR8hUCfRQn9j9RPKEVXo9LiwoxLPYn6hNZlvUOR8tSnaxlD0p0+la00ZP9/SnRt6HchKr+X0fO2r8vrETiJGew==} | |
342 | - engines: {node: '>=6.9.0'} | |
343 | - dependencies: | |
344 | - '@babel/types': 7.16.0 | |
345 | - jsesc: 2.5.2 | |
346 | - source-map: 0.5.7 | |
347 | - dev: true | |
348 | - | |
349 | - /@babel/generator/7.16.5: | |
350 | - resolution: {integrity: sha512-kIvCdjZqcdKqoDbVVdt5R99icaRtrtYhYK/xux5qiWCBmfdvEYMFZ68QCrpE5cbFM1JsuArUNs1ZkuKtTtUcZA==} | |
310 | + /@babel/generator/7.17.7: | |
311 | + resolution: {integrity: sha512-oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w==} | |
351 | 312 | engines: {node: '>=6.9.0'} |
352 | 313 | dependencies: |
353 | - '@babel/types': 7.16.0 | |
314 | + '@babel/types': 7.17.0 | |
354 | 315 | jsesc: 2.5.2 |
355 | 316 | source-map: 0.5.7 |
356 | 317 | dev: true |
357 | 318 | |
358 | - /@babel/helper-annotate-as-pure/7.16.0: | |
359 | - resolution: {integrity: sha512-ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg==} | |
360 | - engines: {node: '>=6.9.0'} | |
361 | - dependencies: | |
362 | - '@babel/types': 7.16.0 | |
363 | - dev: true | |
364 | - | |
365 | - /@babel/helper-builder-binary-assignment-operator-visitor/7.16.0: | |
366 | - resolution: {integrity: sha512-9KuleLT0e77wFUku6TUkqZzCEymBdtuQQ27MhEKzf9UOOJu3cYj98kyaDAzxpC7lV6DGiZFuC8XqDsq8/Kl6aQ==} | |
319 | + /@babel/helper-annotate-as-pure/7.16.7: | |
320 | + resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==} | |
367 | 321 | engines: {node: '>=6.9.0'} |
368 | 322 | dependencies: |
369 | - '@babel/helper-explode-assignable-expression': 7.16.0 | |
370 | - '@babel/types': 7.16.0 | |
323 | + '@babel/types': 7.17.0 | |
371 | 324 | dev: true |
372 | 325 | |
373 | - /@babel/helper-compilation-targets/7.16.3_@babel+core@7.16.0: | |
374 | - resolution: {integrity: sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==} | |
326 | + /@babel/helper-builder-binary-assignment-operator-visitor/7.16.7: | |
327 | + resolution: {integrity: sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==} | |
375 | 328 | engines: {node: '>=6.9.0'} |
376 | - peerDependencies: | |
377 | - '@babel/core': ^7.0.0 | |
378 | 329 | dependencies: |
379 | - '@babel/compat-data': 7.16.4 | |
380 | - '@babel/core': 7.16.0 | |
381 | - '@babel/helper-validator-option': 7.14.5 | |
382 | - browserslist: 4.18.1 | |
383 | - semver: 6.3.0 | |
330 | + '@babel/helper-explode-assignable-expression': 7.16.7 | |
331 | + '@babel/types': 7.17.0 | |
384 | 332 | dev: true |
385 | 333 | |
386 | - /@babel/helper-compilation-targets/7.16.3_@babel+core@7.16.5: | |
387 | - resolution: {integrity: sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==} | |
334 | + /@babel/helper-compilation-targets/7.17.7_@babel+core@7.17.7: | |
335 | + resolution: {integrity: sha512-UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w==} | |
388 | 336 | engines: {node: '>=6.9.0'} |
389 | 337 | peerDependencies: |
390 | 338 | '@babel/core': ^7.0.0 |
391 | 339 | dependencies: |
392 | - '@babel/compat-data': 7.16.4 | |
393 | - '@babel/core': 7.16.5 | |
394 | - '@babel/helper-validator-option': 7.14.5 | |
395 | - browserslist: 4.18.1 | |
340 | + '@babel/compat-data': 7.17.7 | |
341 | + '@babel/core': 7.17.7 | |
342 | + '@babel/helper-validator-option': 7.16.7 | |
343 | + browserslist: 4.20.2 | |
396 | 344 | semver: 6.3.0 |
397 | 345 | dev: true |
398 | 346 | |
399 | - /@babel/helper-create-class-features-plugin/7.16.0_@babel+core@7.16.0: | |
400 | - resolution: {integrity: sha512-XLwWvqEaq19zFlF5PTgOod4bUA+XbkR4WLQBct1bkzmxJGB0ZEJaoKF4c8cgH9oBtCDuYJ8BP5NB9uFiEgO5QA==} | |
401 | - engines: {node: '>=6.9.0'} | |
402 | - peerDependencies: | |
403 | - '@babel/core': ^7.0.0 | |
404 | - dependencies: | |
405 | - '@babel/core': 7.16.0 | |
406 | - '@babel/helper-annotate-as-pure': 7.16.0 | |
407 | - '@babel/helper-function-name': 7.16.0 | |
408 | - '@babel/helper-member-expression-to-functions': 7.16.0 | |
409 | - '@babel/helper-optimise-call-expression': 7.16.0 | |
410 | - '@babel/helper-replace-supers': 7.16.0 | |
411 | - '@babel/helper-split-export-declaration': 7.16.0 | |
412 | - transitivePeerDependencies: | |
413 | - - supports-color | |
414 | - dev: true | |
415 | - | |
416 | - /@babel/helper-create-class-features-plugin/7.16.0_@babel+core@7.16.5: | |
417 | - resolution: {integrity: sha512-XLwWvqEaq19zFlF5PTgOod4bUA+XbkR4WLQBct1bkzmxJGB0ZEJaoKF4c8cgH9oBtCDuYJ8BP5NB9uFiEgO5QA==} | |
347 | + /@babel/helper-create-class-features-plugin/7.17.6_@babel+core@7.17.7: | |
348 | + resolution: {integrity: sha512-SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg==} | |
418 | 349 | engines: {node: '>=6.9.0'} |
419 | 350 | peerDependencies: |
420 | 351 | '@babel/core': ^7.0.0 |
421 | 352 | dependencies: |
422 | - '@babel/core': 7.16.5 | |
423 | - '@babel/helper-annotate-as-pure': 7.16.0 | |
424 | - '@babel/helper-function-name': 7.16.0 | |
425 | - '@babel/helper-member-expression-to-functions': 7.16.0 | |
426 | - '@babel/helper-optimise-call-expression': 7.16.0 | |
427 | - '@babel/helper-replace-supers': 7.16.0 | |
428 | - '@babel/helper-split-export-declaration': 7.16.0 | |
353 | + '@babel/core': 7.17.7 | |
354 | + '@babel/helper-annotate-as-pure': 7.16.7 | |
355 | + '@babel/helper-environment-visitor': 7.16.7 | |
356 | + '@babel/helper-function-name': 7.16.7 | |
357 | + '@babel/helper-member-expression-to-functions': 7.17.7 | |
358 | + '@babel/helper-optimise-call-expression': 7.16.7 | |
359 | + '@babel/helper-replace-supers': 7.16.7 | |
360 | + '@babel/helper-split-export-declaration': 7.16.7 | |
429 | 361 | transitivePeerDependencies: |
430 | 362 | - supports-color |
431 | 363 | dev: true |
432 | 364 | |
433 | - /@babel/helper-create-regexp-features-plugin/7.16.0_@babel+core@7.16.0: | |
434 | - resolution: {integrity: sha512-3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA==} | |
365 | + /@babel/helper-create-regexp-features-plugin/7.17.0_@babel+core@7.17.7: | |
366 | + resolution: {integrity: sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==} | |
435 | 367 | engines: {node: '>=6.9.0'} |
436 | 368 | peerDependencies: |
437 | 369 | '@babel/core': ^7.0.0 |
438 | 370 | dependencies: |
439 | - '@babel/core': 7.16.0 | |
440 | - '@babel/helper-annotate-as-pure': 7.16.0 | |
441 | - regexpu-core: 4.8.0 | |
371 | + '@babel/core': 7.17.7 | |
372 | + '@babel/helper-annotate-as-pure': 7.16.7 | |
373 | + regexpu-core: 5.0.1 | |
442 | 374 | dev: true |
443 | 375 | |
444 | - /@babel/helper-define-polyfill-provider/0.3.0_@babel+core@7.16.0: | |
445 | - resolution: {integrity: sha512-7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg==} | |
376 | + /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.17.7: | |
377 | + resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==} | |
446 | 378 | peerDependencies: |
447 | 379 | '@babel/core': ^7.4.0-0 |
448 | 380 | dependencies: |
449 | - '@babel/core': 7.16.0 | |
450 | - '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.0 | |
451 | - '@babel/helper-module-imports': 7.16.0 | |
452 | - '@babel/helper-plugin-utils': 7.14.5 | |
453 | - '@babel/traverse': 7.16.3 | |
454 | - debug: 4.3.3 | |
381 | + '@babel/core': 7.17.7 | |
382 | + '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.7 | |
383 | + '@babel/helper-module-imports': 7.16.7 | |
384 | + '@babel/helper-plugin-utils': 7.16.7 | |
385 | + '@babel/traverse': 7.17.3 | |
386 | + debug: 4.3.4 | |
455 | 387 | lodash.debounce: 4.0.8 |
456 | - resolve: 1.20.0 | |
388 | + resolve: 1.22.0 | |
457 | 389 | semver: 6.3.0 |
458 | 390 | transitivePeerDependencies: |
459 | 391 | - supports-color |
460 | 392 | dev: true |
461 | 393 | |
462 | - /@babel/helper-environment-visitor/7.16.5: | |
463 | - resolution: {integrity: sha512-ODQyc5AnxmZWm/R2W7fzhamOk1ey8gSguo5SGvF0zcB3uUzRpTRmM/jmLSm9bDMyPlvbyJ+PwPEK0BWIoZ9wjg==} | |
464 | - engines: {node: '>=6.9.0'} | |
465 | - dependencies: | |
466 | - '@babel/types': 7.16.0 | |
467 | - dev: true | |
468 | - | |
469 | - /@babel/helper-explode-assignable-expression/7.16.0: | |
470 | - resolution: {integrity: sha512-Hk2SLxC9ZbcOhLpg/yMznzJ11W++lg5GMbxt1ev6TXUiJB0N42KPC+7w8a+eWGuqDnUYuwStJoZHM7RgmIOaGQ==} | |
394 | + /@babel/helper-environment-visitor/7.16.7: | |
395 | + resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==} | |
471 | 396 | engines: {node: '>=6.9.0'} |
472 | 397 | dependencies: |
473 | - '@babel/types': 7.16.0 | |
398 | + '@babel/types': 7.17.0 | |
474 | 399 | dev: true |
475 | 400 | |
476 | - /@babel/helper-function-name/7.16.0: | |
477 | - resolution: {integrity: sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog==} | |
401 | + /@babel/helper-explode-assignable-expression/7.16.7: | |
402 | + resolution: {integrity: sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==} | |
478 | 403 | engines: {node: '>=6.9.0'} |
479 | 404 | dependencies: |
480 | - '@babel/helper-get-function-arity': 7.16.0 | |
481 | - '@babel/template': 7.16.0 | |
482 | - '@babel/types': 7.16.0 | |
405 | + '@babel/types': 7.17.0 | |
483 | 406 | dev: true |
484 | 407 | |
485 | - /@babel/helper-get-function-arity/7.16.0: | |
486 | - resolution: {integrity: sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ==} | |
408 | + /@babel/helper-function-name/7.16.7: | |
409 | + resolution: {integrity: sha512-QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA==} | |
487 | 410 | engines: {node: '>=6.9.0'} |
488 | 411 | dependencies: |
489 | - '@babel/types': 7.16.0 | |
412 | + '@babel/helper-get-function-arity': 7.16.7 | |
413 | + '@babel/template': 7.16.7 | |
414 | + '@babel/types': 7.17.0 | |
490 | 415 | dev: true |
491 | 416 | |
492 | - /@babel/helper-hoist-variables/7.16.0: | |
493 | - resolution: {integrity: sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg==} | |
417 | + /@babel/helper-get-function-arity/7.16.7: | |
418 | + resolution: {integrity: sha512-flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw==} | |
494 | 419 | engines: {node: '>=6.9.0'} |
495 | 420 | dependencies: |
496 | - '@babel/types': 7.16.0 | |
421 | + '@babel/types': 7.17.0 | |
497 | 422 | dev: true |
498 | 423 | |
499 | - /@babel/helper-member-expression-to-functions/7.16.0: | |
500 | - resolution: {integrity: sha512-bsjlBFPuWT6IWhl28EdrQ+gTvSvj5tqVP5Xeftp07SEuz5pLnsXZuDkDD3Rfcxy0IsHmbZ+7B2/9SHzxO0T+sQ==} | |
424 | + /@babel/helper-hoist-variables/7.16.7: | |
425 | + resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==} | |
501 | 426 | engines: {node: '>=6.9.0'} |
502 | 427 | dependencies: |
503 | - '@babel/types': 7.16.0 | |
428 | + '@babel/types': 7.17.0 | |
504 | 429 | dev: true |
505 | 430 | |
506 | - /@babel/helper-module-imports/7.16.0: | |
507 | - resolution: {integrity: sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==} | |
431 | + /@babel/helper-member-expression-to-functions/7.17.7: | |
432 | + resolution: {integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==} | |
508 | 433 | engines: {node: '>=6.9.0'} |
509 | 434 | dependencies: |
510 | - '@babel/types': 7.16.0 | |
435 | + '@babel/types': 7.17.0 | |
511 | 436 | dev: true |
512 | 437 | |
513 | - /@babel/helper-module-transforms/7.16.0: | |
514 | - resolution: {integrity: sha512-My4cr9ATcaBbmaEa8M0dZNA74cfI6gitvUAskgDtAFmAqyFKDSHQo5YstxPbN+lzHl2D9l/YOEFqb2mtUh4gfA==} | |
438 | + /@babel/helper-module-imports/7.16.7: | |
439 | + resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==} | |
515 | 440 | engines: {node: '>=6.9.0'} |
516 | 441 | dependencies: |
517 | - '@babel/helper-module-imports': 7.16.0 | |
518 | - '@babel/helper-replace-supers': 7.16.0 | |
519 | - '@babel/helper-simple-access': 7.16.0 | |
520 | - '@babel/helper-split-export-declaration': 7.16.0 | |
521 | - '@babel/helper-validator-identifier': 7.15.7 | |
522 | - '@babel/template': 7.16.0 | |
523 | - '@babel/traverse': 7.16.3 | |
524 | - '@babel/types': 7.16.0 | |
525 | - transitivePeerDependencies: | |
526 | - - supports-color | |
442 | + '@babel/types': 7.17.0 | |
527 | 443 | dev: true |
528 | 444 | |
529 | - /@babel/helper-module-transforms/7.16.5: | |
530 | - resolution: {integrity: sha512-CkvMxgV4ZyyioElFwcuWnDCcNIeyqTkCm9BxXZi73RR1ozqlpboqsbGUNvRTflgZtFbbJ1v5Emvm+lkjMYY/LQ==} | |
445 | + /@babel/helper-module-transforms/7.17.7: | |
446 | + resolution: {integrity: sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw==} | |
531 | 447 | engines: {node: '>=6.9.0'} |
532 | 448 | dependencies: |
533 | - '@babel/helper-environment-visitor': 7.16.5 | |
534 | - '@babel/helper-module-imports': 7.16.0 | |
535 | - '@babel/helper-simple-access': 7.16.0 | |
536 | - '@babel/helper-split-export-declaration': 7.16.0 | |
537 | - '@babel/helper-validator-identifier': 7.15.7 | |
538 | - '@babel/template': 7.16.0 | |
539 | - '@babel/traverse': 7.16.5 | |
540 | - '@babel/types': 7.16.0 | |
449 | + '@babel/helper-environment-visitor': 7.16.7 | |
450 | + '@babel/helper-module-imports': 7.16.7 | |
451 | + '@babel/helper-simple-access': 7.17.7 | |
452 | + '@babel/helper-split-export-declaration': 7.16.7 | |
453 | + '@babel/helper-validator-identifier': 7.16.7 | |
454 | + '@babel/template': 7.16.7 | |
455 | + '@babel/traverse': 7.17.3 | |
456 | + '@babel/types': 7.17.0 | |
541 | 457 | transitivePeerDependencies: |
542 | 458 | - supports-color |
543 | 459 | dev: true |
544 | 460 | |
545 | - /@babel/helper-optimise-call-expression/7.16.0: | |
546 | - resolution: {integrity: sha512-SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw==} | |
461 | + /@babel/helper-optimise-call-expression/7.16.7: | |
462 | + resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==} | |
547 | 463 | engines: {node: '>=6.9.0'} |
548 | 464 | dependencies: |
549 | - '@babel/types': 7.16.0 | |
465 | + '@babel/types': 7.17.0 | |
550 | 466 | dev: true |
551 | 467 | |
552 | - /@babel/helper-plugin-utils/7.14.5: | |
553 | - resolution: {integrity: sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==} | |
468 | + /@babel/helper-plugin-utils/7.16.7: | |
469 | + resolution: {integrity: sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==} | |
554 | 470 | engines: {node: '>=6.9.0'} |
555 | 471 | dev: true |
556 | 472 | |
557 | - /@babel/helper-remap-async-to-generator/7.16.4: | |
558 | - resolution: {integrity: sha512-vGERmmhR+s7eH5Y/cp8PCVzj4XEjerq8jooMfxFdA5xVtAk9Sh4AQsrWgiErUEBjtGrBtOFKDUcWQFW4/dFwMA==} | |
473 | + /@babel/helper-remap-async-to-generator/7.16.8: | |
474 | + resolution: {integrity: sha512-fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw==} | |
559 | 475 | engines: {node: '>=6.9.0'} |
560 | 476 | dependencies: |
561 | - '@babel/helper-annotate-as-pure': 7.16.0 | |
562 | - '@babel/helper-wrap-function': 7.16.0 | |
563 | - '@babel/types': 7.16.0 | |
477 | + '@babel/helper-annotate-as-pure': 7.16.7 | |
478 | + '@babel/helper-wrap-function': 7.16.8 | |
479 | + '@babel/types': 7.17.0 | |
564 | 480 | transitivePeerDependencies: |
565 | 481 | - supports-color |
566 | 482 | dev: true |
567 | 483 | |
568 | - /@babel/helper-replace-supers/7.16.0: | |
569 | - resolution: {integrity: sha512-TQxuQfSCdoha7cpRNJvfaYxxxzmbxXw/+6cS7V02eeDYyhxderSoMVALvwupA54/pZcOTtVeJ0xccp1nGWladA==} | |
484 | + /@babel/helper-replace-supers/7.16.7: | |
485 | + resolution: {integrity: sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==} | |
570 | 486 | engines: {node: '>=6.9.0'} |
571 | 487 | dependencies: |
572 | - '@babel/helper-member-expression-to-functions': 7.16.0 | |
573 | - '@babel/helper-optimise-call-expression': 7.16.0 | |
574 | - '@babel/traverse': 7.16.3 | |
575 | - '@babel/types': 7.16.0 | |
488 | + '@babel/helper-environment-visitor': 7.16.7 | |
489 | + '@babel/helper-member-expression-to-functions': 7.17.7 | |
490 | + '@babel/helper-optimise-call-expression': 7.16.7 | |
491 | + '@babel/traverse': 7.17.3 | |
492 | + '@babel/types': 7.17.0 | |
576 | 493 | transitivePeerDependencies: |
577 | 494 | - supports-color |
578 | 495 | dev: true |
579 | 496 | |
580 | - /@babel/helper-simple-access/7.16.0: | |
581 | - resolution: {integrity: sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw==} | |
497 | + /@babel/helper-simple-access/7.17.7: | |
498 | + resolution: {integrity: sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==} | |
582 | 499 | engines: {node: '>=6.9.0'} |
583 | 500 | dependencies: |
584 | - '@babel/types': 7.16.0 | |
501 | + '@babel/types': 7.17.0 | |
585 | 502 | dev: true |
586 | 503 | |
587 | 504 | /@babel/helper-skip-transparent-expression-wrappers/7.16.0: |
588 | 505 | resolution: {integrity: sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==} |
589 | 506 | engines: {node: '>=6.9.0'} |
590 | 507 | dependencies: |
591 | - '@babel/types': 7.16.0 | |
508 | + '@babel/types': 7.17.0 | |
592 | 509 | dev: true |
593 | 510 | |
594 | - /@babel/helper-split-export-declaration/7.16.0: | |
595 | - resolution: {integrity: sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw==} | |
511 | + /@babel/helper-split-export-declaration/7.16.7: | |
512 | + resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==} | |
596 | 513 | engines: {node: '>=6.9.0'} |
597 | 514 | dependencies: |
598 | - '@babel/types': 7.16.0 | |
599 | - dev: true | |
600 | - | |
601 | - /@babel/helper-validator-identifier/7.15.7: | |
602 | - resolution: {integrity: sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==} | |
603 | - engines: {node: '>=6.9.0'} | |
515 | + '@babel/types': 7.17.0 | |
604 | 516 | dev: true |
605 | 517 | |
606 | - /@babel/helper-validator-option/7.14.5: | |
607 | - resolution: {integrity: sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==} | |
518 | + /@babel/helper-validator-identifier/7.16.7: | |
519 | + resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==} | |
608 | 520 | engines: {node: '>=6.9.0'} |
609 | 521 | dev: true |
610 | 522 | |
611 | - /@babel/helper-wrap-function/7.16.0: | |
612 | - resolution: {integrity: sha512-VVMGzYY3vkWgCJML+qVLvGIam902mJW0FvT7Avj1zEe0Gn7D93aWdLblYARTxEw+6DhZmtzhBM2zv0ekE5zg1g==} | |
523 | + /@babel/helper-validator-option/7.16.7: | |
524 | + resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==} | |
613 | 525 | engines: {node: '>=6.9.0'} |
614 | - dependencies: | |
615 | - '@babel/helper-function-name': 7.16.0 | |
616 | - '@babel/template': 7.16.0 | |
617 | - '@babel/traverse': 7.16.3 | |
618 | - '@babel/types': 7.16.0 | |
619 | - transitivePeerDependencies: | |
620 | - - supports-color | |
621 | 526 | dev: true |
622 | 527 | |
623 | - /@babel/helpers/7.16.3: | |
624 | - resolution: {integrity: sha512-Xn8IhDlBPhvYTvgewPKawhADichOsbkZuzN7qz2BusOM0brChsyXMDJvldWaYMMUNiCQdQzNEioXTp3sC8Nt8w==} | |
528 | + /@babel/helper-wrap-function/7.16.8: | |
529 | + resolution: {integrity: sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==} | |
625 | 530 | engines: {node: '>=6.9.0'} |
626 | 531 | dependencies: |
627 | - '@babel/template': 7.16.0 | |
628 | - '@babel/traverse': 7.16.3 | |
629 | - '@babel/types': 7.16.0 | |
532 | + '@babel/helper-function-name': 7.16.7 | |
533 | + '@babel/template': 7.16.7 | |
534 | + '@babel/traverse': 7.17.3 | |
535 | + '@babel/types': 7.17.0 | |
630 | 536 | transitivePeerDependencies: |
631 | 537 | - supports-color |
632 | 538 | dev: true |
633 | 539 | |
634 | - /@babel/helpers/7.16.5: | |
635 | - resolution: {integrity: sha512-TLgi6Lh71vvMZGEkFuIxzaPsyeYCHQ5jJOOX1f0xXn0uciFuE8cEk0wyBquMcCxBXZ5BJhE2aUB7pnWTD150Tw==} | |
540 | + /@babel/helpers/7.17.7: | |
541 | + resolution: {integrity: sha512-TKsj9NkjJfTBxM7Phfy7kv6yYc4ZcOo+AaWGqQOKTPDOmcGkIFb5xNA746eKisQkm4yavUYh4InYM9S+VnO01w==} | |
636 | 542 | engines: {node: '>=6.9.0'} |
637 | 543 | dependencies: |
638 | - '@babel/template': 7.16.0 | |
639 | - '@babel/traverse': 7.16.5 | |
640 | - '@babel/types': 7.16.0 | |
544 | + '@babel/template': 7.16.7 | |
545 | + '@babel/traverse': 7.17.3 | |
546 | + '@babel/types': 7.17.0 | |
641 | 547 | transitivePeerDependencies: |
642 | 548 | - supports-color |
643 | 549 | dev: true |
644 | 550 | |
645 | - /@babel/highlight/7.16.0: | |
646 | - resolution: {integrity: sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==} | |
551 | + /@babel/highlight/7.16.10: | |
552 | + resolution: {integrity: sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==} | |
647 | 553 | engines: {node: '>=6.9.0'} |
648 | 554 | dependencies: |
649 | - '@babel/helper-validator-identifier': 7.15.7 | |
555 | + '@babel/helper-validator-identifier': 7.16.7 | |
650 | 556 | chalk: 2.4.2 |
651 | 557 | js-tokens: 4.0.0 |
652 | 558 | dev: true |
653 | 559 | |
654 | - /@babel/parser/7.16.4: | |
655 | - resolution: {integrity: sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng==} | |
656 | - engines: {node: '>=6.0.0'} | |
657 | - hasBin: true | |
658 | - | |
659 | - /@babel/parser/7.16.6: | |
660 | - resolution: {integrity: sha512-Gr86ujcNuPDnNOY8mi383Hvi8IYrJVJYuf3XcuBM/Dgd+bINn/7tHqsj+tKkoreMbmGsFLsltI/JJd8fOFWGDQ==} | |
560 | + /@babel/parser/7.17.7: | |
561 | + resolution: {integrity: sha512-bm3AQf45vR4gKggRfvJdYJ0gFLoCbsPxiFLSH6hTVYABptNHY6l9NrhnucVjQ/X+SPtLANT9lc0fFhikj+VBRA==} | |
661 | 562 | engines: {node: '>=6.0.0'} |
662 | 563 | hasBin: true |
663 | - dev: true | |
664 | 564 | |
665 | - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.2_@babel+core@7.16.0: | |
666 | - resolution: {integrity: sha512-h37CvpLSf8gb2lIJ2CgC3t+EjFbi0t8qS7LCS1xcJIlEXE4czlofwaW7W1HA8zpgOCzI9C1nmoqNR1zWkk0pQg==} | |
565 | + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.17.7: | |
566 | + resolution: {integrity: sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==} | |
667 | 567 | engines: {node: '>=6.9.0'} |
668 | 568 | peerDependencies: |
669 | 569 | '@babel/core': ^7.0.0 |
670 | 570 | dependencies: |
671 | - '@babel/core': 7.16.0 | |
672 | - '@babel/helper-plugin-utils': 7.14.5 | |
571 | + '@babel/core': 7.17.7 | |
572 | + '@babel/helper-plugin-utils': 7.16.7 | |
673 | 573 | dev: true |
674 | 574 | |
675 | - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.0_@babel+core@7.16.0: | |
676 | - resolution: {integrity: sha512-4tcFwwicpWTrpl9qjf7UsoosaArgImF85AxqCRZlgc3IQDvkUHjJpruXAL58Wmj+T6fypWTC/BakfEkwIL/pwA==} | |
575 | + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.7_@babel+core@7.17.7: | |
576 | + resolution: {integrity: sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==} | |
677 | 577 | engines: {node: '>=6.9.0'} |
678 | 578 | peerDependencies: |
679 | 579 | '@babel/core': ^7.13.0 |
680 | 580 | dependencies: |
681 | - '@babel/core': 7.16.0 | |
682 | - '@babel/helper-plugin-utils': 7.14.5 | |
581 | + '@babel/core': 7.17.7 | |
582 | + '@babel/helper-plugin-utils': 7.16.7 | |
683 | 583 | '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 |
684 | - '@babel/plugin-proposal-optional-chaining': 7.16.0_@babel+core@7.16.0 | |
584 | + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.7 | |
685 | 585 | dev: true |
686 | 586 | |
687 | - /@babel/plugin-proposal-async-generator-functions/7.16.4_@babel+core@7.16.0: | |
688 | - resolution: {integrity: sha512-/CUekqaAaZCQHleSK/9HajvcD/zdnJiKRiuUFq8ITE+0HsPzquf53cpFiqAwl/UfmJbR6n5uGPQSPdrmKOvHHg==} | |
587 | + /@babel/plugin-proposal-async-generator-functions/7.16.8_@babel+core@7.17.7: | |
588 | + resolution: {integrity: sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==} | |
689 | 589 | engines: {node: '>=6.9.0'} |
690 | 590 | peerDependencies: |
691 | 591 | '@babel/core': ^7.0.0-0 |
692 | 592 | dependencies: |
693 | - '@babel/core': 7.16.0 | |
694 | - '@babel/helper-plugin-utils': 7.14.5 | |
695 | - '@babel/helper-remap-async-to-generator': 7.16.4 | |
696 | - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.0 | |
593 | + '@babel/core': 7.17.7 | |
594 | + '@babel/helper-plugin-utils': 7.16.7 | |
595 | + '@babel/helper-remap-async-to-generator': 7.16.8 | |
596 | + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.7 | |
697 | 597 | transitivePeerDependencies: |
698 | 598 | - supports-color |
699 | 599 | dev: true |
700 | 600 | |
701 | - /@babel/plugin-proposal-class-properties/7.16.0_@babel+core@7.16.0: | |
702 | - resolution: {integrity: sha512-mCF3HcuZSY9Fcx56Lbn+CGdT44ioBMMvjNVldpKtj8tpniETdLjnxdHI1+sDWXIM1nNt+EanJOZ3IG9lzVjs7A==} | |
601 | + /@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.17.7: | |
602 | + resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==} | |
703 | 603 | engines: {node: '>=6.9.0'} |
704 | 604 | peerDependencies: |
705 | 605 | '@babel/core': ^7.0.0-0 |
706 | 606 | dependencies: |
707 | - '@babel/core': 7.16.0 | |
708 | - '@babel/helper-create-class-features-plugin': 7.16.0_@babel+core@7.16.0 | |
709 | - '@babel/helper-plugin-utils': 7.14.5 | |
607 | + '@babel/core': 7.17.7 | |
608 | + '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.7 | |
609 | + '@babel/helper-plugin-utils': 7.16.7 | |
710 | 610 | transitivePeerDependencies: |
711 | 611 | - supports-color |
712 | 612 | dev: true |
713 | 613 | |
714 | - /@babel/plugin-proposal-class-static-block/7.16.0_@babel+core@7.16.0: | |
715 | - resolution: {integrity: sha512-mAy3sdcY9sKAkf3lQbDiv3olOfiLqI51c9DR9b19uMoR2Z6r5pmGl7dfNFqEvqOyqbf1ta4lknK4gc5PJn3mfA==} | |
614 | + /@babel/plugin-proposal-class-static-block/7.17.6_@babel+core@7.17.7: | |
615 | + resolution: {integrity: sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==} | |
716 | 616 | engines: {node: '>=6.9.0'} |
717 | 617 | peerDependencies: |
718 | 618 | '@babel/core': ^7.12.0 |
719 | 619 | dependencies: |
720 | - '@babel/core': 7.16.0 | |
721 | - '@babel/helper-create-class-features-plugin': 7.16.0_@babel+core@7.16.0 | |
722 | - '@babel/helper-plugin-utils': 7.14.5 | |
723 | - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.16.0 | |
620 | + '@babel/core': 7.17.7 | |
621 | + '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.7 | |
622 | + '@babel/helper-plugin-utils': 7.16.7 | |
623 | + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.7 | |
724 | 624 | transitivePeerDependencies: |
725 | 625 | - supports-color |
726 | 626 | dev: true |
727 | 627 | |
728 | - /@babel/plugin-proposal-dynamic-import/7.16.0_@babel+core@7.16.0: | |
729 | - resolution: {integrity: sha512-QGSA6ExWk95jFQgwz5GQ2Dr95cf7eI7TKutIXXTb7B1gCLTCz5hTjFTQGfLFBBiC5WSNi7udNwWsqbbMh1c4yQ==} | |
628 | + /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.17.7: | |
629 | + resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==} | |
730 | 630 | engines: {node: '>=6.9.0'} |
731 | 631 | peerDependencies: |
732 | 632 | '@babel/core': ^7.0.0-0 |
733 | 633 | dependencies: |
734 | - '@babel/core': 7.16.0 | |
735 | - '@babel/helper-plugin-utils': 7.14.5 | |
736 | - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.16.0 | |
634 | + '@babel/core': 7.17.7 | |
635 | + '@babel/helper-plugin-utils': 7.16.7 | |
636 | + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.7 | |
737 | 637 | dev: true |
738 | 638 | |
739 | - /@babel/plugin-proposal-export-namespace-from/7.16.0_@babel+core@7.16.0: | |
740 | - resolution: {integrity: sha512-CjI4nxM/D+5wCnhD11MHB1AwRSAYeDT+h8gCdcVJZ/OK7+wRzFsf7PFPWVpVpNRkHMmMkQWAHpTq+15IXQ1diA==} | |
639 | + /@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.17.7: | |
640 | + resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==} | |
741 | 641 | engines: {node: '>=6.9.0'} |
742 | 642 | peerDependencies: |
743 | 643 | '@babel/core': ^7.0.0-0 |
744 | 644 | dependencies: |
745 | - '@babel/core': 7.16.0 | |
746 | - '@babel/helper-plugin-utils': 7.14.5 | |
747 | - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.16.0 | |
645 | + '@babel/core': 7.17.7 | |
646 | + '@babel/helper-plugin-utils': 7.16.7 | |
647 | + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.7 | |
748 | 648 | dev: true |
749 | 649 | |
750 | - /@babel/plugin-proposal-json-strings/7.16.0_@babel+core@7.16.0: | |
751 | - resolution: {integrity: sha512-kouIPuiv8mSi5JkEhzApg5Gn6hFyKPnlkO0a9YSzqRurH8wYzSlf6RJdzluAsbqecdW5pBvDJDfyDIUR/vLxvg==} | |
650 | + /@babel/plugin-proposal-json-strings/7.16.7_@babel+core@7.17.7: | |
651 | + resolution: {integrity: sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==} | |
752 | 652 | engines: {node: '>=6.9.0'} |
753 | 653 | peerDependencies: |
754 | 654 | '@babel/core': ^7.0.0-0 |
755 | 655 | dependencies: |
756 | - '@babel/core': 7.16.0 | |
757 | - '@babel/helper-plugin-utils': 7.14.5 | |
758 | - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.16.0 | |
656 | + '@babel/core': 7.17.7 | |
657 | + '@babel/helper-plugin-utils': 7.16.7 | |
658 | + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.7 | |
759 | 659 | dev: true |
760 | 660 | |
761 | - /@babel/plugin-proposal-logical-assignment-operators/7.16.0_@babel+core@7.16.0: | |
762 | - resolution: {integrity: sha512-pbW0fE30sVTYXXm9lpVQQ/Vc+iTeQKiXlaNRZPPN2A2VdlWyAtsUrsQ3xydSlDW00TFMK7a8m3cDTkBF5WnV3Q==} | |
661 | + /@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.17.7: | |
662 | + resolution: {integrity: sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==} | |
763 | 663 | engines: {node: '>=6.9.0'} |
764 | 664 | peerDependencies: |
765 | 665 | '@babel/core': ^7.0.0-0 |
766 | 666 | dependencies: |
767 | - '@babel/core': 7.16.0 | |
768 | - '@babel/helper-plugin-utils': 7.14.5 | |
769 | - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.0 | |
667 | + '@babel/core': 7.17.7 | |
668 | + '@babel/helper-plugin-utils': 7.16.7 | |
669 | + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.7 | |
770 | 670 | dev: true |
771 | 671 | |
772 | - /@babel/plugin-proposal-nullish-coalescing-operator/7.16.0_@babel+core@7.16.0: | |
773 | - resolution: {integrity: sha512-3bnHA8CAFm7cG93v8loghDYyQ8r97Qydf63BeYiGgYbjKKB/XP53W15wfRC7dvKfoiJ34f6Rbyyx2btExc8XsQ==} | |
672 | + /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.17.7: | |
673 | + resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==} | |
774 | 674 | engines: {node: '>=6.9.0'} |
775 | 675 | peerDependencies: |
776 | 676 | '@babel/core': ^7.0.0-0 |
777 | 677 | dependencies: |
778 | - '@babel/core': 7.16.0 | |
779 | - '@babel/helper-plugin-utils': 7.14.5 | |
780 | - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.0 | |
678 | + '@babel/core': 7.17.7 | |
679 | + '@babel/helper-plugin-utils': 7.16.7 | |
680 | + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.7 | |
781 | 681 | dev: true |
782 | 682 | |
783 | - /@babel/plugin-proposal-numeric-separator/7.16.0_@babel+core@7.16.0: | |
784 | - resolution: {integrity: sha512-FAhE2I6mjispy+vwwd6xWPyEx3NYFS13pikDBWUAFGZvq6POGs5eNchw8+1CYoEgBl9n11I3NkzD7ghn25PQ9Q==} | |
683 | + /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.17.7: | |
684 | + resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==} | |
785 | 685 | engines: {node: '>=6.9.0'} |
786 | 686 | peerDependencies: |
787 | 687 | '@babel/core': ^7.0.0-0 |
788 | 688 | dependencies: |
789 | - '@babel/core': 7.16.0 | |
790 | - '@babel/helper-plugin-utils': 7.14.5 | |
791 | - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.0 | |
689 | + '@babel/core': 7.17.7 | |
690 | + '@babel/helper-plugin-utils': 7.16.7 | |
691 | + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.7 | |
792 | 692 | dev: true |
793 | 693 | |
794 | - /@babel/plugin-proposal-object-rest-spread/7.16.0_@babel+core@7.16.0: | |
795 | - resolution: {integrity: sha512-LU/+jp89efe5HuWJLmMmFG0+xbz+I2rSI7iLc1AlaeSMDMOGzWlc5yJrMN1d04osXN4sSfpo4O+azkBNBes0jg==} | |
694 | + /@babel/plugin-proposal-object-rest-spread/7.17.3_@babel+core@7.17.7: | |
695 | + resolution: {integrity: sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==} | |
796 | 696 | engines: {node: '>=6.9.0'} |
797 | 697 | peerDependencies: |
798 | 698 | '@babel/core': ^7.0.0-0 |
799 | 699 | dependencies: |
800 | - '@babel/compat-data': 7.16.4 | |
801 | - '@babel/core': 7.16.0 | |
802 | - '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.0 | |
803 | - '@babel/helper-plugin-utils': 7.14.5 | |
804 | - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.0 | |
805 | - '@babel/plugin-transform-parameters': 7.16.3_@babel+core@7.16.0 | |
700 | + '@babel/compat-data': 7.17.7 | |
701 | + '@babel/core': 7.17.7 | |
702 | + '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.7 | |
703 | + '@babel/helper-plugin-utils': 7.16.7 | |
704 | + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.7 | |
705 | + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.7 | |
806 | 706 | dev: true |
807 | 707 | |
808 | - /@babel/plugin-proposal-optional-catch-binding/7.16.0_@babel+core@7.16.0: | |
809 | - resolution: {integrity: sha512-kicDo0A/5J0nrsCPbn89mTG3Bm4XgYi0CZtvex9Oyw7gGZE3HXGD0zpQNH+mo+tEfbo8wbmMvJftOwpmPy7aVw==} | |
708 | + /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.17.7: | |
709 | + resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==} | |
810 | 710 | engines: {node: '>=6.9.0'} |
811 | 711 | peerDependencies: |
812 | 712 | '@babel/core': ^7.0.0-0 |
813 | 713 | dependencies: |
814 | - '@babel/core': 7.16.0 | |
815 | - '@babel/helper-plugin-utils': 7.14.5 | |
816 | - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.0 | |
714 | + '@babel/core': 7.17.7 | |
715 | + '@babel/helper-plugin-utils': 7.16.7 | |
716 | + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.7 | |
817 | 717 | dev: true |
818 | 718 | |
819 | - /@babel/plugin-proposal-optional-chaining/7.16.0_@babel+core@7.16.0: | |
820 | - resolution: {integrity: sha512-Y4rFpkZODfHrVo70Uaj6cC1JJOt3Pp0MdWSwIKtb8z1/lsjl9AmnB7ErRFV+QNGIfcY1Eruc2UMx5KaRnXjMyg==} | |
719 | + /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.17.7: | |
720 | + resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==} | |
821 | 721 | engines: {node: '>=6.9.0'} |
822 | 722 | peerDependencies: |
823 | 723 | '@babel/core': ^7.0.0-0 |
824 | 724 | dependencies: |
825 | - '@babel/core': 7.16.0 | |
826 | - '@babel/helper-plugin-utils': 7.14.5 | |
725 | + '@babel/core': 7.17.7 | |
726 | + '@babel/helper-plugin-utils': 7.16.7 | |
827 | 727 | '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 |
828 | - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.0 | |
728 | + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.7 | |
829 | 729 | dev: true |
830 | 730 | |
831 | - /@babel/plugin-proposal-private-methods/7.16.0_@babel+core@7.16.0: | |
832 | - resolution: {integrity: sha512-IvHmcTHDFztQGnn6aWq4t12QaBXTKr1whF/dgp9kz84X6GUcwq9utj7z2wFCUfeOup/QKnOlt2k0zxkGFx9ubg==} | |
731 | + /@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.17.7: | |
732 | + resolution: {integrity: sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==} | |
833 | 733 | engines: {node: '>=6.9.0'} |
834 | 734 | peerDependencies: |
835 | 735 | '@babel/core': ^7.0.0-0 |
836 | 736 | dependencies: |
837 | - '@babel/core': 7.16.0 | |
838 | - '@babel/helper-create-class-features-plugin': 7.16.0_@babel+core@7.16.0 | |
839 | - '@babel/helper-plugin-utils': 7.14.5 | |
737 | + '@babel/core': 7.17.7 | |
738 | + '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.7 | |
739 | + '@babel/helper-plugin-utils': 7.16.7 | |
840 | 740 | transitivePeerDependencies: |
841 | 741 | - supports-color |
842 | 742 | dev: true |
843 | 743 | |
844 | - /@babel/plugin-proposal-private-property-in-object/7.16.0_@babel+core@7.16.0: | |
845 | - resolution: {integrity: sha512-3jQUr/HBbMVZmi72LpjQwlZ55i1queL8KcDTQEkAHihttJnAPrcvG9ZNXIfsd2ugpizZo595egYV6xy+pv4Ofw==} | |
744 | + /@babel/plugin-proposal-private-property-in-object/7.16.7_@babel+core@7.17.7: | |
745 | + resolution: {integrity: sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==} | |
846 | 746 | engines: {node: '>=6.9.0'} |
847 | 747 | peerDependencies: |
848 | 748 | '@babel/core': ^7.0.0-0 |
849 | 749 | dependencies: |
850 | - '@babel/core': 7.16.0 | |
851 | - '@babel/helper-annotate-as-pure': 7.16.0 | |
852 | - '@babel/helper-create-class-features-plugin': 7.16.0_@babel+core@7.16.0 | |
853 | - '@babel/helper-plugin-utils': 7.14.5 | |
854 | - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.16.0 | |
750 | + '@babel/core': 7.17.7 | |
751 | + '@babel/helper-annotate-as-pure': 7.16.7 | |
752 | + '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.7 | |
753 | + '@babel/helper-plugin-utils': 7.16.7 | |
754 | + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.17.7 | |
855 | 755 | transitivePeerDependencies: |
856 | 756 | - supports-color |
857 | 757 | dev: true |
858 | 758 | |
859 | - /@babel/plugin-proposal-unicode-property-regex/7.16.0_@babel+core@7.16.0: | |
860 | - resolution: {integrity: sha512-ti7IdM54NXv29cA4+bNNKEMS4jLMCbJgl+Drv+FgYy0erJLAxNAIXcNjNjrRZEcWq0xJHsNVwQezskMFpF8N9g==} | |
759 | + /@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.17.7: | |
760 | + resolution: {integrity: sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==} | |
861 | 761 | engines: {node: '>=4'} |
862 | 762 | peerDependencies: |
863 | 763 | '@babel/core': ^7.0.0-0 |
864 | 764 | dependencies: |
865 | - '@babel/core': 7.16.0 | |
866 | - '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.0 | |
867 | - '@babel/helper-plugin-utils': 7.14.5 | |
868 | - dev: true | |
869 | - | |
870 | - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.16.0: | |
871 | - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} | |
872 | - peerDependencies: | |
873 | - '@babel/core': ^7.0.0-0 | |
874 | - dependencies: | |
875 | - '@babel/core': 7.16.0 | |
876 | - '@babel/helper-plugin-utils': 7.14.5 | |
765 | + '@babel/core': 7.17.7 | |
766 | + '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.7 | |
767 | + '@babel/helper-plugin-utils': 7.16.7 | |
877 | 768 | dev: true |
878 | 769 | |
879 | - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.16.5: | |
770 | + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.17.7: | |
880 | 771 | resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} |
881 | 772 | peerDependencies: |
882 | 773 | '@babel/core': ^7.0.0-0 |
883 | 774 | dependencies: |
884 | - '@babel/core': 7.16.5 | |
885 | - '@babel/helper-plugin-utils': 7.14.5 | |
886 | - dev: true | |
887 | - | |
888 | - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.16.0: | |
889 | - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} | |
890 | - peerDependencies: | |
891 | - '@babel/core': ^7.0.0-0 | |
892 | - dependencies: | |
893 | - '@babel/core': 7.16.0 | |
894 | - '@babel/helper-plugin-utils': 7.14.5 | |
895 | - dev: true | |
896 | - | |
897 | - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.16.5: | |
898 | - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} | |
899 | - peerDependencies: | |
900 | - '@babel/core': ^7.0.0-0 | |
901 | - dependencies: | |
902 | - '@babel/core': 7.16.5 | |
903 | - '@babel/helper-plugin-utils': 7.14.5 | |
904 | - dev: true | |
905 | - | |
906 | - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.16.0: | |
907 | - resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} | |
908 | - peerDependencies: | |
909 | - '@babel/core': ^7.0.0-0 | |
910 | - dependencies: | |
911 | - '@babel/core': 7.16.0 | |
912 | - '@babel/helper-plugin-utils': 7.14.5 | |
775 | + '@babel/core': 7.17.7 | |
776 | + '@babel/helper-plugin-utils': 7.16.7 | |
913 | 777 | dev: true |
914 | 778 | |
915 | - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.16.5: | |
779 | + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.17.7: | |
916 | 780 | resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} |
917 | 781 | peerDependencies: |
918 | 782 | '@babel/core': ^7.0.0-0 |
919 | 783 | dependencies: |
920 | - '@babel/core': 7.16.5 | |
921 | - '@babel/helper-plugin-utils': 7.14.5 | |
784 | + '@babel/core': 7.17.7 | |
785 | + '@babel/helper-plugin-utils': 7.16.7 | |
922 | 786 | dev: true |
923 | 787 | |
924 | - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.16.0: | |
788 | + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.17.7: | |
925 | 789 | resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} |
926 | 790 | engines: {node: '>=6.9.0'} |
927 | 791 | peerDependencies: |
928 | 792 | '@babel/core': ^7.0.0-0 |
929 | 793 | dependencies: |
930 | - '@babel/core': 7.16.0 | |
931 | - '@babel/helper-plugin-utils': 7.14.5 | |
794 | + '@babel/core': 7.17.7 | |
795 | + '@babel/helper-plugin-utils': 7.16.7 | |
932 | 796 | dev: true |
933 | 797 | |
934 | - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.16.0: | |
798 | + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.17.7: | |
935 | 799 | resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} |
936 | 800 | peerDependencies: |
937 | 801 | '@babel/core': ^7.0.0-0 |
938 | 802 | dependencies: |
939 | - '@babel/core': 7.16.0 | |
940 | - '@babel/helper-plugin-utils': 7.14.5 | |
803 | + '@babel/core': 7.17.7 | |
804 | + '@babel/helper-plugin-utils': 7.16.7 | |
941 | 805 | dev: true |
942 | 806 | |
943 | - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.16.0: | |
807 | + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.17.7: | |
944 | 808 | resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} |
945 | 809 | peerDependencies: |
946 | 810 | '@babel/core': ^7.0.0-0 |
947 | 811 | dependencies: |
948 | - '@babel/core': 7.16.0 | |
949 | - '@babel/helper-plugin-utils': 7.14.5 | |
950 | - dev: true | |
951 | - | |
952 | - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.16.0: | |
953 | - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} | |
954 | - peerDependencies: | |
955 | - '@babel/core': ^7.0.0-0 | |
956 | - dependencies: | |
957 | - '@babel/core': 7.16.0 | |
958 | - '@babel/helper-plugin-utils': 7.14.5 | |
812 | + '@babel/core': 7.17.7 | |
813 | + '@babel/helper-plugin-utils': 7.16.7 | |
959 | 814 | dev: true |
960 | 815 | |
961 | - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.16.5: | |
816 | + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.17.7: | |
962 | 817 | resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} |
963 | 818 | peerDependencies: |
964 | 819 | '@babel/core': ^7.0.0-0 |
965 | 820 | dependencies: |
966 | - '@babel/core': 7.16.5 | |
967 | - '@babel/helper-plugin-utils': 7.14.5 | |
968 | - dev: true | |
969 | - | |
970 | - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.16.0: | |
971 | - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} | |
972 | - peerDependencies: | |
973 | - '@babel/core': ^7.0.0-0 | |
974 | - dependencies: | |
975 | - '@babel/core': 7.16.0 | |
976 | - '@babel/helper-plugin-utils': 7.14.5 | |
821 | + '@babel/core': 7.17.7 | |
822 | + '@babel/helper-plugin-utils': 7.16.7 | |
977 | 823 | dev: true |
978 | 824 | |
979 | - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.16.5: | |
825 | + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.17.7: | |
980 | 826 | resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} |
981 | 827 | peerDependencies: |
982 | 828 | '@babel/core': ^7.0.0-0 |
983 | 829 | dependencies: |
984 | - '@babel/core': 7.16.5 | |
985 | - '@babel/helper-plugin-utils': 7.14.5 | |
830 | + '@babel/core': 7.17.7 | |
831 | + '@babel/helper-plugin-utils': 7.16.7 | |
986 | 832 | dev: true |
987 | 833 | |
988 | - /@babel/plugin-syntax-jsx/7.16.0_@babel+core@7.16.5: | |
989 | - resolution: {integrity: sha512-8zv2+xiPHwly31RK4RmnEYY5zziuF3O7W2kIDW+07ewWDh6Oi0dRq8kwvulRkFgt6DB97RlKs5c1y068iPlCUg==} | |
834 | + /@babel/plugin-syntax-jsx/7.16.7_@babel+core@7.17.7: | |
835 | + resolution: {integrity: sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==} | |
990 | 836 | engines: {node: '>=6.9.0'} |
991 | 837 | peerDependencies: |
992 | 838 | '@babel/core': ^7.0.0-0 |
993 | 839 | dependencies: |
994 | - '@babel/core': 7.16.5 | |
995 | - '@babel/helper-plugin-utils': 7.14.5 | |
996 | - dev: true | |
997 | - | |
998 | - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.16.0: | |
999 | - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} | |
1000 | - peerDependencies: | |
1001 | - '@babel/core': ^7.0.0-0 | |
1002 | - dependencies: | |
1003 | - '@babel/core': 7.16.0 | |
1004 | - '@babel/helper-plugin-utils': 7.14.5 | |
840 | + '@babel/core': 7.17.7 | |
841 | + '@babel/helper-plugin-utils': 7.16.7 | |
1005 | 842 | dev: true |
1006 | 843 | |
1007 | - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.16.5: | |
844 | + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.17.7: | |
1008 | 845 | resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} |
1009 | 846 | peerDependencies: |
1010 | 847 | '@babel/core': ^7.0.0-0 |
1011 | 848 | dependencies: |
1012 | - '@babel/core': 7.16.5 | |
1013 | - '@babel/helper-plugin-utils': 7.14.5 | |
1014 | - dev: true | |
1015 | - | |
1016 | - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.16.0: | |
1017 | - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} | |
1018 | - peerDependencies: | |
1019 | - '@babel/core': ^7.0.0-0 | |
1020 | - dependencies: | |
1021 | - '@babel/core': 7.16.0 | |
1022 | - '@babel/helper-plugin-utils': 7.14.5 | |
849 | + '@babel/core': 7.17.7 | |
850 | + '@babel/helper-plugin-utils': 7.16.7 | |
1023 | 851 | dev: true |
1024 | 852 | |
1025 | - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.16.5: | |
853 | + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.17.7: | |
1026 | 854 | resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} |
1027 | 855 | peerDependencies: |
1028 | 856 | '@babel/core': ^7.0.0-0 |
1029 | 857 | dependencies: |
1030 | - '@babel/core': 7.16.5 | |
1031 | - '@babel/helper-plugin-utils': 7.14.5 | |
1032 | - dev: true | |
1033 | - | |
1034 | - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.16.0: | |
1035 | - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} | |
1036 | - peerDependencies: | |
1037 | - '@babel/core': ^7.0.0-0 | |
1038 | - dependencies: | |
1039 | - '@babel/core': 7.16.0 | |
1040 | - '@babel/helper-plugin-utils': 7.14.5 | |
858 | + '@babel/core': 7.17.7 | |
859 | + '@babel/helper-plugin-utils': 7.16.7 | |
1041 | 860 | dev: true |
1042 | 861 | |
1043 | - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.16.5: | |
862 | + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.17.7: | |
1044 | 863 | resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} |
1045 | 864 | peerDependencies: |
1046 | 865 | '@babel/core': ^7.0.0-0 |
1047 | 866 | dependencies: |
1048 | - '@babel/core': 7.16.5 | |
1049 | - '@babel/helper-plugin-utils': 7.14.5 | |
1050 | - dev: true | |
1051 | - | |
1052 | - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.16.0: | |
1053 | - resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} | |
1054 | - peerDependencies: | |
1055 | - '@babel/core': ^7.0.0-0 | |
1056 | - dependencies: | |
1057 | - '@babel/core': 7.16.0 | |
1058 | - '@babel/helper-plugin-utils': 7.14.5 | |
867 | + '@babel/core': 7.17.7 | |
868 | + '@babel/helper-plugin-utils': 7.16.7 | |
1059 | 869 | dev: true |
1060 | 870 | |
1061 | - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.16.5: | |
871 | + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.17.7: | |
1062 | 872 | resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} |
1063 | 873 | peerDependencies: |
1064 | 874 | '@babel/core': ^7.0.0-0 |
1065 | 875 | dependencies: |
1066 | - '@babel/core': 7.16.5 | |
1067 | - '@babel/helper-plugin-utils': 7.14.5 | |
1068 | - dev: true | |
1069 | - | |
1070 | - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.16.0: | |
1071 | - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} | |
1072 | - peerDependencies: | |
1073 | - '@babel/core': ^7.0.0-0 | |
1074 | - dependencies: | |
1075 | - '@babel/core': 7.16.0 | |
1076 | - '@babel/helper-plugin-utils': 7.14.5 | |
876 | + '@babel/core': 7.17.7 | |
877 | + '@babel/helper-plugin-utils': 7.16.7 | |
1077 | 878 | dev: true |
1078 | 879 | |
1079 | - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.16.5: | |
880 | + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.17.7: | |
1080 | 881 | resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} |
1081 | 882 | peerDependencies: |
1082 | 883 | '@babel/core': ^7.0.0-0 |
1083 | 884 | dependencies: |
1084 | - '@babel/core': 7.16.5 | |
1085 | - '@babel/helper-plugin-utils': 7.14.5 | |
1086 | - dev: true | |
1087 | - | |
1088 | - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.16.0: | |
1089 | - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} | |
1090 | - peerDependencies: | |
1091 | - '@babel/core': ^7.0.0-0 | |
1092 | - dependencies: | |
1093 | - '@babel/core': 7.16.0 | |
1094 | - '@babel/helper-plugin-utils': 7.14.5 | |
885 | + '@babel/core': 7.17.7 | |
886 | + '@babel/helper-plugin-utils': 7.16.7 | |
1095 | 887 | dev: true |
1096 | 888 | |
1097 | - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.16.5: | |
889 | + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.17.7: | |
1098 | 890 | resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} |
1099 | 891 | peerDependencies: |
1100 | 892 | '@babel/core': ^7.0.0-0 |
1101 | 893 | dependencies: |
1102 | - '@babel/core': 7.16.5 | |
1103 | - '@babel/helper-plugin-utils': 7.14.5 | |
894 | + '@babel/core': 7.17.7 | |
895 | + '@babel/helper-plugin-utils': 7.16.7 | |
1104 | 896 | dev: true |
1105 | 897 | |
1106 | - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.16.0: | |
898 | + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.17.7: | |
1107 | 899 | resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} |
1108 | 900 | engines: {node: '>=6.9.0'} |
1109 | 901 | peerDependencies: |
1110 | 902 | '@babel/core': ^7.0.0-0 |
1111 | 903 | dependencies: |
1112 | - '@babel/core': 7.16.0 | |
1113 | - '@babel/helper-plugin-utils': 7.14.5 | |
1114 | - dev: true | |
1115 | - | |
1116 | - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.16.0: | |
1117 | - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} | |
1118 | - engines: {node: '>=6.9.0'} | |
1119 | - peerDependencies: | |
1120 | - '@babel/core': ^7.0.0-0 | |
1121 | - dependencies: | |
1122 | - '@babel/core': 7.16.0 | |
1123 | - '@babel/helper-plugin-utils': 7.14.5 | |
904 | + '@babel/core': 7.17.7 | |
905 | + '@babel/helper-plugin-utils': 7.16.7 | |
1124 | 906 | dev: true |
1125 | 907 | |
1126 | - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.16.5: | |
908 | + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.17.7: | |
1127 | 909 | resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} |
1128 | 910 | engines: {node: '>=6.9.0'} |
1129 | 911 | peerDependencies: |
1130 | 912 | '@babel/core': ^7.0.0-0 |
1131 | 913 | dependencies: |
1132 | - '@babel/core': 7.16.5 | |
1133 | - '@babel/helper-plugin-utils': 7.14.5 | |
914 | + '@babel/core': 7.17.7 | |
915 | + '@babel/helper-plugin-utils': 7.16.7 | |
1134 | 916 | dev: true |
1135 | 917 | |
1136 | - /@babel/plugin-syntax-typescript/7.16.0_@babel+core@7.16.5: | |
1137 | - resolution: {integrity: sha512-Xv6mEXqVdaqCBfJFyeab0fH2DnUoMsDmhamxsSi4j8nLd4Vtw213WMJr55xxqipC/YVWyPY3K0blJncPYji+dQ==} | |
918 | + /@babel/plugin-syntax-typescript/7.16.7_@babel+core@7.17.7: | |
919 | + resolution: {integrity: sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==} | |
1138 | 920 | engines: {node: '>=6.9.0'} |
1139 | 921 | peerDependencies: |
1140 | 922 | '@babel/core': ^7.0.0-0 |
1141 | 923 | dependencies: |
1142 | - '@babel/core': 7.16.5 | |
1143 | - '@babel/helper-plugin-utils': 7.14.5 | |
924 | + '@babel/core': 7.17.7 | |
925 | + '@babel/helper-plugin-utils': 7.16.7 | |
1144 | 926 | dev: true |
1145 | 927 | |
1146 | - /@babel/plugin-transform-arrow-functions/7.16.0_@babel+core@7.16.0: | |
1147 | - resolution: {integrity: sha512-vIFb5250Rbh7roWARvCLvIJ/PtAU5Lhv7BtZ1u24COwpI9Ypjsh+bZcKk6rlIyalK+r0jOc1XQ8I4ovNxNrWrA==} | |
928 | + /@babel/plugin-transform-arrow-functions/7.16.7_@babel+core@7.17.7: | |
929 | + resolution: {integrity: sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==} | |
1148 | 930 | engines: {node: '>=6.9.0'} |
1149 | 931 | peerDependencies: |
1150 | 932 | '@babel/core': ^7.0.0-0 |
1151 | 933 | dependencies: |
1152 | - '@babel/core': 7.16.0 | |
1153 | - '@babel/helper-plugin-utils': 7.14.5 | |
934 | + '@babel/core': 7.17.7 | |
935 | + '@babel/helper-plugin-utils': 7.16.7 | |
1154 | 936 | dev: true |
1155 | 937 | |
1156 | - /@babel/plugin-transform-async-to-generator/7.16.0_@babel+core@7.16.0: | |
1157 | - resolution: {integrity: sha512-PbIr7G9kR8tdH6g8Wouir5uVjklETk91GMVSUq+VaOgiinbCkBP6Q7NN/suM/QutZkMJMvcyAriogcYAdhg8Gw==} | |
938 | + /@babel/plugin-transform-async-to-generator/7.16.8_@babel+core@7.17.7: | |
939 | + resolution: {integrity: sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==} | |
1158 | 940 | engines: {node: '>=6.9.0'} |
1159 | 941 | peerDependencies: |
1160 | 942 | '@babel/core': ^7.0.0-0 |
1161 | 943 | dependencies: |
1162 | - '@babel/core': 7.16.0 | |
1163 | - '@babel/helper-module-imports': 7.16.0 | |
1164 | - '@babel/helper-plugin-utils': 7.14.5 | |
1165 | - '@babel/helper-remap-async-to-generator': 7.16.4 | |
944 | + '@babel/core': 7.17.7 | |
945 | + '@babel/helper-module-imports': 7.16.7 | |
946 | + '@babel/helper-plugin-utils': 7.16.7 | |
947 | + '@babel/helper-remap-async-to-generator': 7.16.8 | |
1166 | 948 | transitivePeerDependencies: |
1167 | 949 | - supports-color |
1168 | 950 | dev: true |
1169 | 951 | |
1170 | - /@babel/plugin-transform-block-scoped-functions/7.16.0_@babel+core@7.16.0: | |
1171 | - resolution: {integrity: sha512-V14As3haUOP4ZWrLJ3VVx5rCnrYhMSHN/jX7z6FAt5hjRkLsb0snPCmJwSOML5oxkKO4FNoNv7V5hw/y2bjuvg==} | |
952 | + /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.17.7: | |
953 | + resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==} | |
1172 | 954 | engines: {node: '>=6.9.0'} |
1173 | 955 | peerDependencies: |
1174 | 956 | '@babel/core': ^7.0.0-0 |
1175 | 957 | dependencies: |
1176 | - '@babel/core': 7.16.0 | |
1177 | - '@babel/helper-plugin-utils': 7.14.5 | |
958 | + '@babel/core': 7.17.7 | |
959 | + '@babel/helper-plugin-utils': 7.16.7 | |
1178 | 960 | dev: true |
1179 | 961 | |
1180 | - /@babel/plugin-transform-block-scoping/7.16.0_@babel+core@7.16.0: | |
1181 | - resolution: {integrity: sha512-27n3l67/R3UrXfizlvHGuTwsRIFyce3D/6a37GRxn28iyTPvNXaW4XvznexRh1zUNLPjbLL22Id0XQElV94ruw==} | |
962 | + /@babel/plugin-transform-block-scoping/7.16.7_@babel+core@7.17.7: | |
963 | + resolution: {integrity: sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==} | |
1182 | 964 | engines: {node: '>=6.9.0'} |
1183 | 965 | peerDependencies: |
1184 | 966 | '@babel/core': ^7.0.0-0 |
1185 | 967 | dependencies: |
1186 | - '@babel/core': 7.16.0 | |
1187 | - '@babel/helper-plugin-utils': 7.14.5 | |
968 | + '@babel/core': 7.17.7 | |
969 | + '@babel/helper-plugin-utils': 7.16.7 | |
1188 | 970 | dev: true |
1189 | 971 | |
1190 | - /@babel/plugin-transform-classes/7.16.0_@babel+core@7.16.0: | |
1191 | - resolution: {integrity: sha512-HUxMvy6GtAdd+GKBNYDWCIA776byUQH8zjnfjxwT1P1ARv/wFu8eBDpmXQcLS/IwRtrxIReGiplOwMeyO7nsDQ==} | |
972 | + /@babel/plugin-transform-classes/7.16.7_@babel+core@7.17.7: | |
973 | + resolution: {integrity: sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==} | |
1192 | 974 | engines: {node: '>=6.9.0'} |
1193 | 975 | peerDependencies: |
1194 | 976 | '@babel/core': ^7.0.0-0 |
1195 | 977 | dependencies: |
1196 | - '@babel/core': 7.16.0 | |
1197 | - '@babel/helper-annotate-as-pure': 7.16.0 | |
1198 | - '@babel/helper-function-name': 7.16.0 | |
1199 | - '@babel/helper-optimise-call-expression': 7.16.0 | |
1200 | - '@babel/helper-plugin-utils': 7.14.5 | |
1201 | - '@babel/helper-replace-supers': 7.16.0 | |
1202 | - '@babel/helper-split-export-declaration': 7.16.0 | |
978 | + '@babel/core': 7.17.7 | |
979 | + '@babel/helper-annotate-as-pure': 7.16.7 | |
980 | + '@babel/helper-environment-visitor': 7.16.7 | |
981 | + '@babel/helper-function-name': 7.16.7 | |
982 | + '@babel/helper-optimise-call-expression': 7.16.7 | |
983 | + '@babel/helper-plugin-utils': 7.16.7 | |
984 | + '@babel/helper-replace-supers': 7.16.7 | |
985 | + '@babel/helper-split-export-declaration': 7.16.7 | |
1203 | 986 | globals: 11.12.0 |
1204 | 987 | transitivePeerDependencies: |
1205 | 988 | - supports-color |
1206 | 989 | dev: true |
1207 | 990 | |
1208 | - /@babel/plugin-transform-computed-properties/7.16.0_@babel+core@7.16.0: | |
1209 | - resolution: {integrity: sha512-63l1dRXday6S8V3WFY5mXJwcRAnPYxvFfTlt67bwV1rTyVTM5zrp0DBBb13Kl7+ehkCVwIZPumPpFP/4u70+Tw==} | |
991 | + /@babel/plugin-transform-computed-properties/7.16.7_@babel+core@7.17.7: | |
992 | + resolution: {integrity: sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==} | |
1210 | 993 | engines: {node: '>=6.9.0'} |
1211 | 994 | peerDependencies: |
1212 | 995 | '@babel/core': ^7.0.0-0 |
1213 | 996 | dependencies: |
1214 | - '@babel/core': 7.16.0 | |
1215 | - '@babel/helper-plugin-utils': 7.14.5 | |
997 | + '@babel/core': 7.17.7 | |
998 | + '@babel/helper-plugin-utils': 7.16.7 | |
1216 | 999 | dev: true |
1217 | 1000 | |
1218 | - /@babel/plugin-transform-destructuring/7.16.0_@babel+core@7.16.0: | |
1219 | - resolution: {integrity: sha512-Q7tBUwjxLTsHEoqktemHBMtb3NYwyJPTJdM+wDwb0g8PZ3kQUIzNvwD5lPaqW/p54TXBc/MXZu9Jr7tbUEUM8Q==} | |
1001 | + /@babel/plugin-transform-destructuring/7.17.7_@babel+core@7.17.7: | |
1002 | + resolution: {integrity: sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==} | |
1220 | 1003 | engines: {node: '>=6.9.0'} |
1221 | 1004 | peerDependencies: |
1222 | 1005 | '@babel/core': ^7.0.0-0 |
1223 | 1006 | dependencies: |
1224 | - '@babel/core': 7.16.0 | |
1225 | - '@babel/helper-plugin-utils': 7.14.5 | |
1007 | + '@babel/core': 7.17.7 | |
1008 | + '@babel/helper-plugin-utils': 7.16.7 | |
1226 | 1009 | dev: true |
1227 | 1010 | |
1228 | - /@babel/plugin-transform-dotall-regex/7.16.0_@babel+core@7.16.0: | |
1229 | - resolution: {integrity: sha512-FXlDZfQeLILfJlC6I1qyEwcHK5UpRCFkaoVyA1nk9A1L1Yu583YO4un2KsLBsu3IJb4CUbctZks8tD9xPQubLw==} | |
1011 | + /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.17.7: | |
1012 | + resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==} | |
1230 | 1013 | engines: {node: '>=6.9.0'} |
1231 | 1014 | peerDependencies: |
1232 | 1015 | '@babel/core': ^7.0.0-0 |
1233 | 1016 | dependencies: |
1234 | - '@babel/core': 7.16.0 | |
1235 | - '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.0 | |
1236 | - '@babel/helper-plugin-utils': 7.14.5 | |
1017 | + '@babel/core': 7.17.7 | |
1018 | + '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.7 | |
1019 | + '@babel/helper-plugin-utils': 7.16.7 | |
1237 | 1020 | dev: true |
1238 | 1021 | |
1239 | - /@babel/plugin-transform-duplicate-keys/7.16.0_@babel+core@7.16.0: | |
1240 | - resolution: {integrity: sha512-LIe2kcHKAZOJDNxujvmp6z3mfN6V9lJxubU4fJIGoQCkKe3Ec2OcbdlYP+vW++4MpxwG0d1wSDOJtQW5kLnkZQ==} | |
1022 | + /@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.17.7: | |
1023 | + resolution: {integrity: sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==} | |
1241 | 1024 | engines: {node: '>=6.9.0'} |
1242 | 1025 | peerDependencies: |
1243 | 1026 | '@babel/core': ^7.0.0-0 |
1244 | 1027 | dependencies: |
1245 | - '@babel/core': 7.16.0 | |
1246 | - '@babel/helper-plugin-utils': 7.14.5 | |
1028 | + '@babel/core': 7.17.7 | |
1029 | + '@babel/helper-plugin-utils': 7.16.7 | |
1247 | 1030 | dev: true |
1248 | 1031 | |
1249 | - /@babel/plugin-transform-exponentiation-operator/7.16.0_@babel+core@7.16.0: | |
1250 | - resolution: {integrity: sha512-OwYEvzFI38hXklsrbNivzpO3fh87skzx8Pnqi4LoSYeav0xHlueSoCJrSgTPfnbyzopo5b3YVAJkFIcUpK2wsw==} | |
1032 | + /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.17.7: | |
1033 | + resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==} | |
1251 | 1034 | engines: {node: '>=6.9.0'} |
1252 | 1035 | peerDependencies: |
1253 | 1036 | '@babel/core': ^7.0.0-0 |
1254 | 1037 | dependencies: |
1255 | - '@babel/core': 7.16.0 | |
1256 | - '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.0 | |
1257 | - '@babel/helper-plugin-utils': 7.14.5 | |
1038 | + '@babel/core': 7.17.7 | |
1039 | + '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.7 | |
1040 | + '@babel/helper-plugin-utils': 7.16.7 | |
1258 | 1041 | dev: true |
1259 | 1042 | |
1260 | - /@babel/plugin-transform-for-of/7.16.0_@babel+core@7.16.0: | |
1261 | - resolution: {integrity: sha512-5QKUw2kO+GVmKr2wMYSATCTTnHyscl6sxFRAY+rvN7h7WB0lcG0o4NoV6ZQU32OZGVsYUsfLGgPQpDFdkfjlJQ==} | |
1043 | + /@babel/plugin-transform-for-of/7.16.7_@babel+core@7.17.7: | |
1044 | + resolution: {integrity: sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==} | |
1262 | 1045 | engines: {node: '>=6.9.0'} |
1263 | 1046 | peerDependencies: |
1264 | 1047 | '@babel/core': ^7.0.0-0 |
1265 | 1048 | dependencies: |
1266 | - '@babel/core': 7.16.0 | |
1267 | - '@babel/helper-plugin-utils': 7.14.5 | |
1049 | + '@babel/core': 7.17.7 | |
1050 | + '@babel/helper-plugin-utils': 7.16.7 | |
1268 | 1051 | dev: true |
1269 | 1052 | |
1270 | - /@babel/plugin-transform-function-name/7.16.0_@babel+core@7.16.0: | |
1271 | - resolution: {integrity: sha512-lBzMle9jcOXtSOXUpc7tvvTpENu/NuekNJVova5lCCWCV9/U1ho2HH2y0p6mBg8fPm/syEAbfaaemYGOHCY3mg==} | |
1053 | + /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.17.7: | |
1054 | + resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==} | |
1272 | 1055 | engines: {node: '>=6.9.0'} |
1273 | 1056 | peerDependencies: |
1274 | 1057 | '@babel/core': ^7.0.0-0 |
1275 | 1058 | dependencies: |
1276 | - '@babel/core': 7.16.0 | |
1277 | - '@babel/helper-function-name': 7.16.0 | |
1278 | - '@babel/helper-plugin-utils': 7.14.5 | |
1059 | + '@babel/core': 7.17.7 | |
1060 | + '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.7 | |
1061 | + '@babel/helper-function-name': 7.16.7 | |
1062 | + '@babel/helper-plugin-utils': 7.16.7 | |
1279 | 1063 | dev: true |
1280 | 1064 | |
1281 | - /@babel/plugin-transform-literals/7.16.0_@babel+core@7.16.0: | |
1282 | - resolution: {integrity: sha512-gQDlsSF1iv9RU04clgXqRjrPyyoJMTclFt3K1cjLmTKikc0s/6vE3hlDeEVC71wLTRu72Fq7650kABrdTc2wMQ==} | |
1065 | + /@babel/plugin-transform-literals/7.16.7_@babel+core@7.17.7: | |
1066 | + resolution: {integrity: sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==} | |
1283 | 1067 | engines: {node: '>=6.9.0'} |
1284 | 1068 | peerDependencies: |
1285 | 1069 | '@babel/core': ^7.0.0-0 |
1286 | 1070 | dependencies: |
1287 | - '@babel/core': 7.16.0 | |
1288 | - '@babel/helper-plugin-utils': 7.14.5 | |
1071 | + '@babel/core': 7.17.7 | |
1072 | + '@babel/helper-plugin-utils': 7.16.7 | |
1289 | 1073 | dev: true |
1290 | 1074 | |
1291 | - /@babel/plugin-transform-member-expression-literals/7.16.0_@babel+core@7.16.0: | |
1292 | - resolution: {integrity: sha512-WRpw5HL4Jhnxw8QARzRvwojp9MIE7Tdk3ez6vRyUk1MwgjJN0aNpRoXainLR5SgxmoXx/vsXGZ6OthP6t/RbUg==} | |
1075 | + /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.17.7: | |
1076 | + resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==} | |
1293 | 1077 | engines: {node: '>=6.9.0'} |
1294 | 1078 | peerDependencies: |
1295 | 1079 | '@babel/core': ^7.0.0-0 |
1296 | 1080 | dependencies: |
1297 | - '@babel/core': 7.16.0 | |
1298 | - '@babel/helper-plugin-utils': 7.14.5 | |
1081 | + '@babel/core': 7.17.7 | |
1082 | + '@babel/helper-plugin-utils': 7.16.7 | |
1299 | 1083 | dev: true |
1300 | 1084 | |
1301 | - /@babel/plugin-transform-modules-amd/7.16.0_@babel+core@7.16.0: | |
1302 | - resolution: {integrity: sha512-rWFhWbCJ9Wdmzln1NmSCqn7P0RAD+ogXG/bd9Kg5c7PKWkJtkiXmYsMBeXjDlzHpVTJ4I/hnjs45zX4dEv81xw==} | |
1085 | + /@babel/plugin-transform-modules-amd/7.16.7_@babel+core@7.17.7: | |
1086 | + resolution: {integrity: sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==} | |
1303 | 1087 | engines: {node: '>=6.9.0'} |
1304 | 1088 | peerDependencies: |
1305 | 1089 | '@babel/core': ^7.0.0-0 |
1306 | 1090 | dependencies: |
1307 | - '@babel/core': 7.16.0 | |
1308 | - '@babel/helper-module-transforms': 7.16.0 | |
1309 | - '@babel/helper-plugin-utils': 7.14.5 | |
1091 | + '@babel/core': 7.17.7 | |
1092 | + '@babel/helper-module-transforms': 7.17.7 | |
1093 | + '@babel/helper-plugin-utils': 7.16.7 | |
1310 | 1094 | babel-plugin-dynamic-import-node: 2.3.3 |
1311 | 1095 | transitivePeerDependencies: |
1312 | 1096 | - supports-color |
1313 | 1097 | dev: true |
1314 | 1098 | |
1315 | - /@babel/plugin-transform-modules-commonjs/7.16.0_@babel+core@7.16.0: | |
1316 | - resolution: {integrity: sha512-Dzi+NWqyEotgzk/sb7kgQPJQf7AJkQBWsVp1N6JWc1lBVo0vkElUnGdr1PzUBmfsCCN5OOFya3RtpeHk15oLKQ==} | |
1099 | + /@babel/plugin-transform-modules-commonjs/7.17.7_@babel+core@7.17.7: | |
1100 | + resolution: {integrity: sha512-ITPmR2V7MqioMJyrxUo2onHNC3e+MvfFiFIR0RP21d3PtlVb6sfzoxNKiphSZUOM9hEIdzCcZe83ieX3yoqjUA==} | |
1317 | 1101 | engines: {node: '>=6.9.0'} |
1318 | 1102 | peerDependencies: |
1319 | 1103 | '@babel/core': ^7.0.0-0 |
1320 | 1104 | dependencies: |
1321 | - '@babel/core': 7.16.0 | |
1322 | - '@babel/helper-module-transforms': 7.16.0 | |
1323 | - '@babel/helper-plugin-utils': 7.14.5 | |
1324 | - '@babel/helper-simple-access': 7.16.0 | |
1105 | + '@babel/core': 7.17.7 | |
1106 | + '@babel/helper-module-transforms': 7.17.7 | |
1107 | + '@babel/helper-plugin-utils': 7.16.7 | |
1108 | + '@babel/helper-simple-access': 7.17.7 | |
1325 | 1109 | babel-plugin-dynamic-import-node: 2.3.3 |
1326 | 1110 | transitivePeerDependencies: |
1327 | 1111 | - supports-color |
1328 | 1112 | dev: true |
1329 | 1113 | |
1330 | - /@babel/plugin-transform-modules-systemjs/7.16.0_@babel+core@7.16.0: | |
1331 | - resolution: {integrity: sha512-yuGBaHS3lF1m/5R+6fjIke64ii5luRUg97N2wr+z1sF0V+sNSXPxXDdEEL/iYLszsN5VKxVB1IPfEqhzVpiqvg==} | |
1114 | + /@babel/plugin-transform-modules-systemjs/7.16.7_@babel+core@7.17.7: | |
1115 | + resolution: {integrity: sha512-DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw==} | |
1332 | 1116 | engines: {node: '>=6.9.0'} |
1333 | 1117 | peerDependencies: |
1334 | 1118 | '@babel/core': ^7.0.0-0 |
1335 | 1119 | dependencies: |
1336 | - '@babel/core': 7.16.0 | |
1337 | - '@babel/helper-hoist-variables': 7.16.0 | |
1338 | - '@babel/helper-module-transforms': 7.16.0 | |
1339 | - '@babel/helper-plugin-utils': 7.14.5 | |
1340 | - '@babel/helper-validator-identifier': 7.15.7 | |
1120 | + '@babel/core': 7.17.7 | |
1121 | + '@babel/helper-hoist-variables': 7.16.7 | |
1122 | + '@babel/helper-module-transforms': 7.17.7 | |
1123 | + '@babel/helper-plugin-utils': 7.16.7 | |
1124 | + '@babel/helper-validator-identifier': 7.16.7 | |
1341 | 1125 | babel-plugin-dynamic-import-node: 2.3.3 |
1342 | 1126 | transitivePeerDependencies: |
1343 | 1127 | - supports-color |
1344 | 1128 | dev: true |
1345 | 1129 | |
1346 | - /@babel/plugin-transform-modules-umd/7.16.0_@babel+core@7.16.0: | |
1347 | - resolution: {integrity: sha512-nx4f6no57himWiHhxDM5pjwhae5vLpTK2zCnDH8+wNLJy0TVER/LJRHl2bkt6w9Aad2sPD5iNNoUpY3X9sTGDg==} | |
1130 | + /@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.17.7: | |
1131 | + resolution: {integrity: sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==} | |
1348 | 1132 | engines: {node: '>=6.9.0'} |
1349 | 1133 | peerDependencies: |
1350 | 1134 | '@babel/core': ^7.0.0-0 |
1351 | 1135 | dependencies: |
1352 | - '@babel/core': 7.16.0 | |
1353 | - '@babel/helper-module-transforms': 7.16.0 | |
1354 | - '@babel/helper-plugin-utils': 7.14.5 | |
1136 | + '@babel/core': 7.17.7 | |
1137 | + '@babel/helper-module-transforms': 7.17.7 | |
1138 | + '@babel/helper-plugin-utils': 7.16.7 | |
1355 | 1139 | transitivePeerDependencies: |
1356 | 1140 | - supports-color |
1357 | 1141 | dev: true |
1358 | 1142 | |
1359 | - /@babel/plugin-transform-named-capturing-groups-regex/7.16.0_@babel+core@7.16.0: | |
1360 | - resolution: {integrity: sha512-LogN88uO+7EhxWc8WZuQ8vxdSyVGxhkh8WTC3tzlT8LccMuQdA81e9SGV6zY7kY2LjDhhDOFdQVxdGwPyBCnvg==} | |
1143 | + /@babel/plugin-transform-named-capturing-groups-regex/7.16.8_@babel+core@7.17.7: | |
1144 | + resolution: {integrity: sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==} | |
1361 | 1145 | engines: {node: '>=6.9.0'} |
1362 | 1146 | peerDependencies: |
1363 | 1147 | '@babel/core': ^7.0.0 |
1364 | 1148 | dependencies: |
1365 | - '@babel/core': 7.16.0 | |
1366 | - '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.0 | |
1149 | + '@babel/core': 7.17.7 | |
1150 | + '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.7 | |
1367 | 1151 | dev: true |
1368 | 1152 | |
1369 | - /@babel/plugin-transform-new-target/7.16.0_@babel+core@7.16.0: | |
1370 | - resolution: {integrity: sha512-fhjrDEYv2DBsGN/P6rlqakwRwIp7rBGLPbrKxwh7oVt5NNkIhZVOY2GRV+ULLsQri1bDqwDWnU3vhlmx5B2aCw==} | |
1153 | + /@babel/plugin-transform-new-target/7.16.7_@babel+core@7.17.7: | |
1154 | + resolution: {integrity: sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==} | |
1371 | 1155 | engines: {node: '>=6.9.0'} |
1372 | 1156 | peerDependencies: |
1373 | 1157 | '@babel/core': ^7.0.0-0 |
1374 | 1158 | dependencies: |
1375 | - '@babel/core': 7.16.0 | |
1376 | - '@babel/helper-plugin-utils': 7.14.5 | |
1159 | + '@babel/core': 7.17.7 | |
1160 | + '@babel/helper-plugin-utils': 7.16.7 | |
1377 | 1161 | dev: true |
1378 | 1162 | |
1379 | - /@babel/plugin-transform-object-super/7.16.0_@babel+core@7.16.0: | |
1380 | - resolution: {integrity: sha512-fds+puedQHn4cPLshoHcR1DTMN0q1V9ou0mUjm8whx9pGcNvDrVVrgw+KJzzCaiTdaYhldtrUps8DWVMgrSEyg==} | |
1163 | + /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.17.7: | |
1164 | + resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==} | |
1381 | 1165 | engines: {node: '>=6.9.0'} |
1382 | 1166 | peerDependencies: |
1383 | 1167 | '@babel/core': ^7.0.0-0 |
1384 | 1168 | dependencies: |
1385 | - '@babel/core': 7.16.0 | |
1386 | - '@babel/helper-plugin-utils': 7.14.5 | |
1387 | - '@babel/helper-replace-supers': 7.16.0 | |
1169 | + '@babel/core': 7.17.7 | |
1170 | + '@babel/helper-plugin-utils': 7.16.7 | |
1171 | + '@babel/helper-replace-supers': 7.16.7 | |
1388 | 1172 | transitivePeerDependencies: |
1389 | 1173 | - supports-color |
1390 | 1174 | dev: true |
1391 | 1175 | |
1392 | - /@babel/plugin-transform-parameters/7.16.3_@babel+core@7.16.0: | |
1393 | - resolution: {integrity: sha512-3MaDpJrOXT1MZ/WCmkOFo7EtmVVC8H4EUZVrHvFOsmwkk4lOjQj8rzv8JKUZV4YoQKeoIgk07GO+acPU9IMu/w==} | |
1176 | + /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.17.7: | |
1177 | + resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==} | |
1394 | 1178 | engines: {node: '>=6.9.0'} |
1395 | 1179 | peerDependencies: |
1396 | 1180 | '@babel/core': ^7.0.0-0 |
1397 | 1181 | dependencies: |
1398 | - '@babel/core': 7.16.0 | |
1399 | - '@babel/helper-plugin-utils': 7.14.5 | |
1182 | + '@babel/core': 7.17.7 | |
1183 | + '@babel/helper-plugin-utils': 7.16.7 | |
1400 | 1184 | dev: true |
1401 | 1185 | |
1402 | - /@babel/plugin-transform-property-literals/7.16.0_@babel+core@7.16.0: | |
1403 | - resolution: {integrity: sha512-XLldD4V8+pOqX2hwfWhgwXzGdnDOThxaNTgqagOcpBgIxbUvpgU2FMvo5E1RyHbk756WYgdbS0T8y0Cj9FKkWQ==} | |
1186 | + /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.17.7: | |
1187 | + resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==} | |
1404 | 1188 | engines: {node: '>=6.9.0'} |
1405 | 1189 | peerDependencies: |
1406 | 1190 | '@babel/core': ^7.0.0-0 |
1407 | 1191 | dependencies: |
1408 | - '@babel/core': 7.16.0 | |
1409 | - '@babel/helper-plugin-utils': 7.14.5 | |
1192 | + '@babel/core': 7.17.7 | |
1193 | + '@babel/helper-plugin-utils': 7.16.7 | |
1410 | 1194 | dev: true |
1411 | 1195 | |
1412 | - /@babel/plugin-transform-regenerator/7.16.0_@babel+core@7.16.0: | |
1413 | - resolution: {integrity: sha512-JAvGxgKuwS2PihiSFaDrp94XOzzTUeDeOQlcKzVAyaPap7BnZXK/lvMDiubkPTdotPKOIZq9xWXWnggUMYiExg==} | |
1196 | + /@babel/plugin-transform-regenerator/7.16.7_@babel+core@7.17.7: | |
1197 | + resolution: {integrity: sha512-mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q==} | |
1414 | 1198 | engines: {node: '>=6.9.0'} |
1415 | 1199 | peerDependencies: |
1416 | 1200 | '@babel/core': ^7.0.0-0 |
1417 | 1201 | dependencies: |
1418 | - '@babel/core': 7.16.0 | |
1202 | + '@babel/core': 7.17.7 | |
1419 | 1203 | regenerator-transform: 0.14.5 |
1420 | 1204 | dev: true |
1421 | 1205 | |
1422 | - /@babel/plugin-transform-reserved-words/7.16.0_@babel+core@7.16.0: | |
1423 | - resolution: {integrity: sha512-Dgs8NNCehHSvXdhEhln8u/TtJxfVwGYCgP2OOr5Z3Ar+B+zXicEOKNTyc+eca2cuEOMtjW6m9P9ijOt8QdqWkg==} | |
1206 | + /@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.17.7: | |
1207 | + resolution: {integrity: sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==} | |
1424 | 1208 | engines: {node: '>=6.9.0'} |
1425 | 1209 | peerDependencies: |
1426 | 1210 | '@babel/core': ^7.0.0-0 |
1427 | 1211 | dependencies: |
1428 | - '@babel/core': 7.16.0 | |
1429 | - '@babel/helper-plugin-utils': 7.14.5 | |
1212 | + '@babel/core': 7.17.7 | |
1213 | + '@babel/helper-plugin-utils': 7.16.7 | |
1430 | 1214 | dev: true |
1431 | 1215 | |
1432 | - /@babel/plugin-transform-shorthand-properties/7.16.0_@babel+core@7.16.0: | |
1433 | - resolution: {integrity: sha512-iVb1mTcD8fuhSv3k99+5tlXu5N0v8/DPm2mO3WACLG6al1CGZH7v09HJyUb1TtYl/Z+KrM6pHSIJdZxP5A+xow==} | |
1216 | + /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.17.7: | |
1217 | + resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==} | |
1434 | 1218 | engines: {node: '>=6.9.0'} |
1435 | 1219 | peerDependencies: |
1436 | 1220 | '@babel/core': ^7.0.0-0 |
1437 | 1221 | dependencies: |
1438 | - '@babel/core': 7.16.0 | |
1439 | - '@babel/helper-plugin-utils': 7.14.5 | |
1222 | + '@babel/core': 7.17.7 | |
1223 | + '@babel/helper-plugin-utils': 7.16.7 | |
1440 | 1224 | dev: true |
1441 | 1225 | |
1442 | - /@babel/plugin-transform-spread/7.16.0_@babel+core@7.16.0: | |
1443 | - resolution: {integrity: sha512-Ao4MSYRaLAQczZVp9/7E7QHsCuK92yHRrmVNRe/SlEJjhzivq0BSn8mEraimL8wizHZ3fuaHxKH0iwzI13GyGg==} | |
1226 | + /@babel/plugin-transform-spread/7.16.7_@babel+core@7.17.7: | |
1227 | + resolution: {integrity: sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==} | |
1444 | 1228 | engines: {node: '>=6.9.0'} |
1445 | 1229 | peerDependencies: |
1446 | 1230 | '@babel/core': ^7.0.0-0 |
1447 | 1231 | dependencies: |
1448 | - '@babel/core': 7.16.0 | |
1449 | - '@babel/helper-plugin-utils': 7.14.5 | |
1232 | + '@babel/core': 7.17.7 | |
1233 | + '@babel/helper-plugin-utils': 7.16.7 | |
1450 | 1234 | '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 |
1451 | 1235 | dev: true |
1452 | 1236 | |
1453 | - /@babel/plugin-transform-sticky-regex/7.16.0_@babel+core@7.16.0: | |
1454 | - resolution: {integrity: sha512-/ntT2NljR9foobKk4E/YyOSwcGUXtYWv5tinMK/3RkypyNBNdhHUaq6Orw5DWq9ZcNlS03BIlEALFeQgeVAo4Q==} | |
1237 | + /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.17.7: | |
1238 | + resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==} | |
1455 | 1239 | engines: {node: '>=6.9.0'} |
1456 | 1240 | peerDependencies: |
1457 | 1241 | '@babel/core': ^7.0.0-0 |
1458 | 1242 | dependencies: |
1459 | - '@babel/core': 7.16.0 | |
1460 | - '@babel/helper-plugin-utils': 7.14.5 | |
1243 | + '@babel/core': 7.17.7 | |
1244 | + '@babel/helper-plugin-utils': 7.16.7 | |
1461 | 1245 | dev: true |
1462 | 1246 | |
1463 | - /@babel/plugin-transform-template-literals/7.16.0_@babel+core@7.16.0: | |
1464 | - resolution: {integrity: sha512-Rd4Ic89hA/f7xUSJQk5PnC+4so50vBoBfxjdQAdvngwidM8jYIBVxBZ/sARxD4e0yMXRbJVDrYf7dyRtIIKT6Q==} | |
1247 | + /@babel/plugin-transform-template-literals/7.16.7_@babel+core@7.17.7: | |
1248 | + resolution: {integrity: sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==} | |
1465 | 1249 | engines: {node: '>=6.9.0'} |
1466 | 1250 | peerDependencies: |
1467 | 1251 | '@babel/core': ^7.0.0-0 |
1468 | 1252 | dependencies: |
1469 | - '@babel/core': 7.16.0 | |
1470 | - '@babel/helper-plugin-utils': 7.14.5 | |
1253 | + '@babel/core': 7.17.7 | |
1254 | + '@babel/helper-plugin-utils': 7.16.7 | |
1471 | 1255 | dev: true |
1472 | 1256 | |
1473 | - /@babel/plugin-transform-typeof-symbol/7.16.0_@babel+core@7.16.0: | |
1474 | - resolution: {integrity: sha512-++V2L8Bdf4vcaHi2raILnptTBjGEFxn5315YU+e8+EqXIucA+q349qWngCLpUYqqv233suJ6NOienIVUpS9cqg==} | |
1257 | + /@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.17.7: | |
1258 | + resolution: {integrity: sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==} | |
1475 | 1259 | engines: {node: '>=6.9.0'} |
1476 | 1260 | peerDependencies: |
1477 | 1261 | '@babel/core': ^7.0.0-0 |
1478 | 1262 | dependencies: |
1479 | - '@babel/core': 7.16.0 | |
1480 | - '@babel/helper-plugin-utils': 7.14.5 | |
1263 | + '@babel/core': 7.17.7 | |
1264 | + '@babel/helper-plugin-utils': 7.16.7 | |
1481 | 1265 | dev: true |
1482 | 1266 | |
1483 | - /@babel/plugin-transform-typescript/7.16.1_@babel+core@7.16.5: | |
1484 | - resolution: {integrity: sha512-NO4XoryBng06jjw/qWEU2LhcLJr1tWkhpMam/H4eas/CDKMX/b2/Ylb6EI256Y7+FVPCawwSM1rrJNOpDiz+Lg==} | |
1267 | + /@babel/plugin-transform-typescript/7.16.8_@babel+core@7.17.7: | |
1268 | + resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==} | |
1485 | 1269 | engines: {node: '>=6.9.0'} |
1486 | 1270 | peerDependencies: |
1487 | 1271 | '@babel/core': ^7.0.0-0 |
1488 | 1272 | dependencies: |
1489 | - '@babel/core': 7.16.5 | |
1490 | - '@babel/helper-create-class-features-plugin': 7.16.0_@babel+core@7.16.5 | |
1491 | - '@babel/helper-plugin-utils': 7.14.5 | |
1492 | - '@babel/plugin-syntax-typescript': 7.16.0_@babel+core@7.16.5 | |
1273 | + '@babel/core': 7.17.7 | |
1274 | + '@babel/helper-create-class-features-plugin': 7.17.6_@babel+core@7.17.7 | |
1275 | + '@babel/helper-plugin-utils': 7.16.7 | |
1276 | + '@babel/plugin-syntax-typescript': 7.16.7_@babel+core@7.17.7 | |
1493 | 1277 | transitivePeerDependencies: |
1494 | 1278 | - supports-color |
1495 | 1279 | dev: true |
1496 | 1280 | |
1497 | - /@babel/plugin-transform-unicode-escapes/7.16.0_@babel+core@7.16.0: | |
1498 | - resolution: {integrity: sha512-VFi4dhgJM7Bpk8lRc5CMaRGlKZ29W9C3geZjt9beuzSUrlJxsNwX7ReLwaL6WEvsOf2EQkyIJEPtF8EXjB/g2A==} | |
1281 | + /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.17.7: | |
1282 | + resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==} | |
1499 | 1283 | engines: {node: '>=6.9.0'} |
1500 | 1284 | peerDependencies: |
1501 | 1285 | '@babel/core': ^7.0.0-0 |
1502 | 1286 | dependencies: |
1503 | - '@babel/core': 7.16.0 | |
1504 | - '@babel/helper-plugin-utils': 7.14.5 | |
1287 | + '@babel/core': 7.17.7 | |
1288 | + '@babel/helper-plugin-utils': 7.16.7 | |
1505 | 1289 | dev: true |
1506 | 1290 | |
1507 | - /@babel/plugin-transform-unicode-regex/7.16.0_@babel+core@7.16.0: | |
1508 | - resolution: {integrity: sha512-jHLK4LxhHjvCeZDWyA9c+P9XH1sOxRd1RO9xMtDVRAOND/PczPqizEtVdx4TQF/wyPaewqpT+tgQFYMnN/P94A==} | |
1291 | + /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.17.7: | |
1292 | + resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==} | |
1509 | 1293 | engines: {node: '>=6.9.0'} |
1510 | 1294 | peerDependencies: |
1511 | 1295 | '@babel/core': ^7.0.0-0 |
1512 | 1296 | dependencies: |
1513 | - '@babel/core': 7.16.0 | |
1514 | - '@babel/helper-create-regexp-features-plugin': 7.16.0_@babel+core@7.16.0 | |
1515 | - '@babel/helper-plugin-utils': 7.14.5 | |
1297 | + '@babel/core': 7.17.7 | |
1298 | + '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.7 | |
1299 | + '@babel/helper-plugin-utils': 7.16.7 | |
1516 | 1300 | dev: true |
1517 | 1301 | |
1518 | - /@babel/preset-env/7.16.4_@babel+core@7.16.0: | |
1519 | - resolution: {integrity: sha512-v0QtNd81v/xKj4gNKeuAerQ/azeNn/G1B1qMLeXOcV8+4TWlD2j3NV1u8q29SDFBXx/NBq5kyEAO+0mpRgacjA==} | |
1302 | + /@babel/preset-env/7.16.11_@babel+core@7.17.7: | |
1303 | + resolution: {integrity: sha512-qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g==} | |
1520 | 1304 | engines: {node: '>=6.9.0'} |
1521 | 1305 | peerDependencies: |
1522 | 1306 | '@babel/core': ^7.0.0-0 |
1523 | 1307 | dependencies: |
1524 | - '@babel/compat-data': 7.16.4 | |
1525 | - '@babel/core': 7.16.0 | |
1526 | - '@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.0 | |
1527 | - '@babel/helper-plugin-utils': 7.14.5 | |
1528 | - '@babel/helper-validator-option': 7.14.5 | |
1529 | - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.2_@babel+core@7.16.0 | |
1530 | - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.0_@babel+core@7.16.0 | |
1531 | - '@babel/plugin-proposal-async-generator-functions': 7.16.4_@babel+core@7.16.0 | |
1532 | - '@babel/plugin-proposal-class-properties': 7.16.0_@babel+core@7.16.0 | |
1533 | - '@babel/plugin-proposal-class-static-block': 7.16.0_@babel+core@7.16.0 | |
1534 | - '@babel/plugin-proposal-dynamic-import': 7.16.0_@babel+core@7.16.0 | |
1535 | - '@babel/plugin-proposal-export-namespace-from': 7.16.0_@babel+core@7.16.0 | |
1536 | - '@babel/plugin-proposal-json-strings': 7.16.0_@babel+core@7.16.0 | |
1537 | - '@babel/plugin-proposal-logical-assignment-operators': 7.16.0_@babel+core@7.16.0 | |
1538 | - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.0_@babel+core@7.16.0 | |
1539 | - '@babel/plugin-proposal-numeric-separator': 7.16.0_@babel+core@7.16.0 | |
1540 | - '@babel/plugin-proposal-object-rest-spread': 7.16.0_@babel+core@7.16.0 | |
1541 | - '@babel/plugin-proposal-optional-catch-binding': 7.16.0_@babel+core@7.16.0 | |
1542 | - '@babel/plugin-proposal-optional-chaining': 7.16.0_@babel+core@7.16.0 | |
1543 | - '@babel/plugin-proposal-private-methods': 7.16.0_@babel+core@7.16.0 | |
1544 | - '@babel/plugin-proposal-private-property-in-object': 7.16.0_@babel+core@7.16.0 | |
1545 | - '@babel/plugin-proposal-unicode-property-regex': 7.16.0_@babel+core@7.16.0 | |
1546 | - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.0 | |
1547 | - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.16.0 | |
1548 | - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.16.0 | |
1549 | - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.16.0 | |
1550 | - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.16.0 | |
1551 | - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.16.0 | |
1552 | - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.0 | |
1553 | - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.0 | |
1554 | - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.0 | |
1555 | - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.0 | |
1556 | - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.0 | |
1557 | - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.0 | |
1558 | - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.16.0 | |
1559 | - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.16.0 | |
1560 | - '@babel/plugin-transform-arrow-functions': 7.16.0_@babel+core@7.16.0 | |
1561 | - '@babel/plugin-transform-async-to-generator': 7.16.0_@babel+core@7.16.0 | |
1562 | - '@babel/plugin-transform-block-scoped-functions': 7.16.0_@babel+core@7.16.0 | |
1563 | - '@babel/plugin-transform-block-scoping': 7.16.0_@babel+core@7.16.0 | |
1564 | - '@babel/plugin-transform-classes': 7.16.0_@babel+core@7.16.0 | |
1565 | - '@babel/plugin-transform-computed-properties': 7.16.0_@babel+core@7.16.0 | |
1566 | - '@babel/plugin-transform-destructuring': 7.16.0_@babel+core@7.16.0 | |
1567 | - '@babel/plugin-transform-dotall-regex': 7.16.0_@babel+core@7.16.0 | |
1568 | - '@babel/plugin-transform-duplicate-keys': 7.16.0_@babel+core@7.16.0 | |
1569 | - '@babel/plugin-transform-exponentiation-operator': 7.16.0_@babel+core@7.16.0 | |
1570 | - '@babel/plugin-transform-for-of': 7.16.0_@babel+core@7.16.0 | |
1571 | - '@babel/plugin-transform-function-name': 7.16.0_@babel+core@7.16.0 | |
1572 | - '@babel/plugin-transform-literals': 7.16.0_@babel+core@7.16.0 | |
1573 | - '@babel/plugin-transform-member-expression-literals': 7.16.0_@babel+core@7.16.0 | |
1574 | - '@babel/plugin-transform-modules-amd': 7.16.0_@babel+core@7.16.0 | |
1575 | - '@babel/plugin-transform-modules-commonjs': 7.16.0_@babel+core@7.16.0 | |
1576 | - '@babel/plugin-transform-modules-systemjs': 7.16.0_@babel+core@7.16.0 | |
1577 | - '@babel/plugin-transform-modules-umd': 7.16.0_@babel+core@7.16.0 | |
1578 | - '@babel/plugin-transform-named-capturing-groups-regex': 7.16.0_@babel+core@7.16.0 | |
1579 | - '@babel/plugin-transform-new-target': 7.16.0_@babel+core@7.16.0 | |
1580 | - '@babel/plugin-transform-object-super': 7.16.0_@babel+core@7.16.0 | |
1581 | - '@babel/plugin-transform-parameters': 7.16.3_@babel+core@7.16.0 | |
1582 | - '@babel/plugin-transform-property-literals': 7.16.0_@babel+core@7.16.0 | |
1583 | - '@babel/plugin-transform-regenerator': 7.16.0_@babel+core@7.16.0 | |
1584 | - '@babel/plugin-transform-reserved-words': 7.16.0_@babel+core@7.16.0 | |
1585 | - '@babel/plugin-transform-shorthand-properties': 7.16.0_@babel+core@7.16.0 | |
1586 | - '@babel/plugin-transform-spread': 7.16.0_@babel+core@7.16.0 | |
1587 | - '@babel/plugin-transform-sticky-regex': 7.16.0_@babel+core@7.16.0 | |
1588 | - '@babel/plugin-transform-template-literals': 7.16.0_@babel+core@7.16.0 | |
1589 | - '@babel/plugin-transform-typeof-symbol': 7.16.0_@babel+core@7.16.0 | |
1590 | - '@babel/plugin-transform-unicode-escapes': 7.16.0_@babel+core@7.16.0 | |
1591 | - '@babel/plugin-transform-unicode-regex': 7.16.0_@babel+core@7.16.0 | |
1592 | - '@babel/preset-modules': 0.1.5_@babel+core@7.16.0 | |
1593 | - '@babel/types': 7.16.0 | |
1594 | - babel-plugin-polyfill-corejs2: 0.3.0_@babel+core@7.16.0 | |
1595 | - babel-plugin-polyfill-corejs3: 0.4.0_@babel+core@7.16.0 | |
1596 | - babel-plugin-polyfill-regenerator: 0.3.0_@babel+core@7.16.0 | |
1597 | - core-js-compat: 3.19.1 | |
1308 | + '@babel/compat-data': 7.17.7 | |
1309 | + '@babel/core': 7.17.7 | |
1310 | + '@babel/helper-compilation-targets': 7.17.7_@babel+core@7.17.7 | |
1311 | + '@babel/helper-plugin-utils': 7.16.7 | |
1312 | + '@babel/helper-validator-option': 7.16.7 | |
1313 | + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.7_@babel+core@7.17.7 | |
1314 | + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.7_@babel+core@7.17.7 | |
1315 | + '@babel/plugin-proposal-async-generator-functions': 7.16.8_@babel+core@7.17.7 | |
1316 | + '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.7 | |
1317 | + '@babel/plugin-proposal-class-static-block': 7.17.6_@babel+core@7.17.7 | |
1318 | + '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.17.7 | |
1319 | + '@babel/plugin-proposal-export-namespace-from': 7.16.7_@babel+core@7.17.7 | |
1320 | + '@babel/plugin-proposal-json-strings': 7.16.7_@babel+core@7.17.7 | |
1321 | + '@babel/plugin-proposal-logical-assignment-operators': 7.16.7_@babel+core@7.17.7 | |
1322 | + '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.7 | |
1323 | + '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.17.7 | |
1324 | + '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.7 | |
1325 | + '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.17.7 | |
1326 | + '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.7 | |
1327 | + '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.7 | |
1328 | + '@babel/plugin-proposal-private-property-in-object': 7.16.7_@babel+core@7.17.7 | |
1329 | + '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.17.7 | |
1330 | + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.7 | |
1331 | + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.17.7 | |
1332 | + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.7 | |
1333 | + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.7 | |
1334 | + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.7 | |
1335 | + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.7 | |
1336 | + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.7 | |
1337 | + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.7 | |
1338 | + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.7 | |
1339 | + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.7 | |
1340 | + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.7 | |
1341 | + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.7 | |
1342 | + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.17.7 | |
1343 | + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.17.7 | |
1344 | + '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.7 | |
1345 | + '@babel/plugin-transform-async-to-generator': 7.16.8_@babel+core@7.17.7 | |
1346 | + '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.17.7 | |
1347 | + '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.7 | |
1348 | + '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.7 | |
1349 | + '@babel/plugin-transform-computed-properties': 7.16.7_@babel+core@7.17.7 | |
1350 | + '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.7 | |
1351 | + '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.17.7 | |
1352 | + '@babel/plugin-transform-duplicate-keys': 7.16.7_@babel+core@7.17.7 | |
1353 | + '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.17.7 | |
1354 | + '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.7 | |
1355 | + '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.17.7 | |
1356 | + '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.17.7 | |
1357 | + '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.17.7 | |
1358 | + '@babel/plugin-transform-modules-amd': 7.16.7_@babel+core@7.17.7 | |
1359 | + '@babel/plugin-transform-modules-commonjs': 7.17.7_@babel+core@7.17.7 | |
1360 | + '@babel/plugin-transform-modules-systemjs': 7.16.7_@babel+core@7.17.7 | |
1361 | + '@babel/plugin-transform-modules-umd': 7.16.7_@babel+core@7.17.7 | |
1362 | + '@babel/plugin-transform-named-capturing-groups-regex': 7.16.8_@babel+core@7.17.7 | |
1363 | + '@babel/plugin-transform-new-target': 7.16.7_@babel+core@7.17.7 | |
1364 | + '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.17.7 | |
1365 | + '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.7 | |
1366 | + '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.17.7 | |
1367 | + '@babel/plugin-transform-regenerator': 7.16.7_@babel+core@7.17.7 | |
1368 | + '@babel/plugin-transform-reserved-words': 7.16.7_@babel+core@7.17.7 | |
1369 | + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.7 | |
1370 | + '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.7 | |
1371 | + '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.17.7 | |
1372 | + '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.7 | |
1373 | + '@babel/plugin-transform-typeof-symbol': 7.16.7_@babel+core@7.17.7 | |
1374 | + '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.17.7 | |
1375 | + '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.17.7 | |
1376 | + '@babel/preset-modules': 0.1.5_@babel+core@7.17.7 | |
1377 | + '@babel/types': 7.17.0 | |
1378 | + babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.17.7 | |
1379 | + babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.17.7 | |
1380 | + babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.17.7 | |
1381 | + core-js-compat: 3.21.1 | |
1598 | 1382 | semver: 6.3.0 |
1599 | 1383 | transitivePeerDependencies: |
1600 | 1384 | - supports-color |
1601 | 1385 | dev: true |
1602 | 1386 | |
1603 | - /@babel/preset-modules/0.1.5_@babel+core@7.16.0: | |
1387 | + /@babel/preset-modules/0.1.5_@babel+core@7.17.7: | |
1604 | 1388 | resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} |
1605 | 1389 | peerDependencies: |
1606 | 1390 | '@babel/core': ^7.0.0-0 |
1607 | 1391 | dependencies: |
1608 | - '@babel/core': 7.16.0 | |
1609 | - '@babel/helper-plugin-utils': 7.14.5 | |
1610 | - '@babel/plugin-proposal-unicode-property-regex': 7.16.0_@babel+core@7.16.0 | |
1611 | - '@babel/plugin-transform-dotall-regex': 7.16.0_@babel+core@7.16.0 | |
1612 | - '@babel/types': 7.16.0 | |
1392 | + '@babel/core': 7.17.7 | |
1393 | + '@babel/helper-plugin-utils': 7.16.7 | |
1394 | + '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.17.7 | |
1395 | + '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.17.7 | |
1396 | + '@babel/types': 7.17.0 | |
1613 | 1397 | esutils: 2.0.3 |
1614 | 1398 | dev: true |
1615 | 1399 | |
1616 | - /@babel/runtime/7.16.3: | |
1617 | - resolution: {integrity: sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==} | |
1400 | + /@babel/runtime/7.17.7: | |
1401 | + resolution: {integrity: sha512-L6rvG9GDxaLgFjg41K+5Yv9OMrU98sWe+Ykmc6FDJW/+vYZMhdOMKkISgzptMaERHvS2Y2lw9MDRm2gHhlQQoA==} | |
1618 | 1402 | engines: {node: '>=6.9.0'} |
1619 | 1403 | dependencies: |
1620 | 1404 | regenerator-runtime: 0.13.9 |
1621 | 1405 | |
1622 | - /@babel/standalone/7.16.4: | |
1623 | - resolution: {integrity: sha512-FDRLwjeQfPm5jaHNuB+vwNyGCp24Ah3kEsbLzKmh0eSru+QCr4DmjgbRPoz71AwXLVtXU+l/i7MlVlIj5XO7Gw==} | |
1624 | - engines: {node: '>=6.9.0'} | |
1625 | - dev: true | |
1626 | - | |
1627 | - /@babel/template/7.16.0: | |
1628 | - resolution: {integrity: sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A==} | |
1406 | + /@babel/standalone/7.17.7: | |
1407 | + resolution: {integrity: sha512-461jrYyk7g4bRQoOROABqErtygmZrx1cZXWONIPCQzVTynT5VL83btu1PJIaXNgl4JtHXjzaYT7j3IOlVhnC1Q==} | |
1629 | 1408 | engines: {node: '>=6.9.0'} |
1630 | - dependencies: | |
1631 | - '@babel/code-frame': 7.16.0 | |
1632 | - '@babel/parser': 7.16.4 | |
1633 | - '@babel/types': 7.16.0 | |
1634 | 1409 | dev: true |
1635 | 1410 | |
1636 | - /@babel/traverse/7.16.3: | |
1637 | - resolution: {integrity: sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag==} | |
1411 | + /@babel/template/7.16.7: | |
1412 | + resolution: {integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==} | |
1638 | 1413 | engines: {node: '>=6.9.0'} |
1639 | 1414 | dependencies: |
1640 | - '@babel/code-frame': 7.16.0 | |
1641 | - '@babel/generator': 7.16.0 | |
1642 | - '@babel/helper-function-name': 7.16.0 | |
1643 | - '@babel/helper-hoist-variables': 7.16.0 | |
1644 | - '@babel/helper-split-export-declaration': 7.16.0 | |
1645 | - '@babel/parser': 7.16.4 | |
1646 | - '@babel/types': 7.16.0 | |
1647 | - debug: 4.3.3 | |
1648 | - globals: 11.12.0 | |
1649 | - transitivePeerDependencies: | |
1650 | - - supports-color | |
1415 | + '@babel/code-frame': 7.16.7 | |
1416 | + '@babel/parser': 7.17.7 | |
1417 | + '@babel/types': 7.17.0 | |
1651 | 1418 | dev: true |
1652 | 1419 | |
1653 | - /@babel/traverse/7.16.5: | |
1654 | - resolution: {integrity: sha512-FOCODAzqUMROikDYLYxl4nmwiLlu85rNqBML/A5hKRVXG2LV8d0iMqgPzdYTcIpjZEBB7D6UDU9vxRZiriASdQ==} | |
1420 | + /@babel/traverse/7.17.3: | |
1421 | + resolution: {integrity: sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==} | |
1655 | 1422 | engines: {node: '>=6.9.0'} |
1656 | 1423 | dependencies: |
1657 | - '@babel/code-frame': 7.16.0 | |
1658 | - '@babel/generator': 7.16.5 | |
1659 | - '@babel/helper-environment-visitor': 7.16.5 | |
1660 | - '@babel/helper-function-name': 7.16.0 | |
1661 | - '@babel/helper-hoist-variables': 7.16.0 | |
1662 | - '@babel/helper-split-export-declaration': 7.16.0 | |
1663 | - '@babel/parser': 7.16.6 | |
1664 | - '@babel/types': 7.16.0 | |
1665 | - debug: 4.3.3 | |
1424 | + '@babel/code-frame': 7.16.7 | |
1425 | + '@babel/generator': 7.17.7 | |
1426 | + '@babel/helper-environment-visitor': 7.16.7 | |
1427 | + '@babel/helper-function-name': 7.16.7 | |
1428 | + '@babel/helper-hoist-variables': 7.16.7 | |
1429 | + '@babel/helper-split-export-declaration': 7.16.7 | |
1430 | + '@babel/parser': 7.17.7 | |
1431 | + '@babel/types': 7.17.0 | |
1432 | + debug: 4.3.4 | |
1666 | 1433 | globals: 11.12.0 |
1667 | 1434 | transitivePeerDependencies: |
1668 | 1435 | - supports-color |
1669 | 1436 | dev: true |
1670 | 1437 | |
1671 | - /@babel/types/7.16.0: | |
1672 | - resolution: {integrity: sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==} | |
1438 | + /@babel/types/7.17.0: | |
1439 | + resolution: {integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==} | |
1673 | 1440 | engines: {node: '>=6.9.0'} |
1674 | 1441 | dependencies: |
1675 | - '@babel/helper-validator-identifier': 7.15.7 | |
1442 | + '@babel/helper-validator-identifier': 7.16.7 | |
1676 | 1443 | to-fast-properties: 2.0.0 |
1677 | 1444 | dev: true |
1678 | 1445 | |
1679 | - /@bcoe/v8-coverage/0.2.3: | |
1680 | - resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} | |
1681 | - dev: true | |
1682 | - | |
1683 | - /@commitlint/cli/16.0.1_@types+node@17.0.5: | |
1684 | - resolution: {integrity: sha512-61gGRy65WiVDRsqP0dAR2fAgE3qrTBW3fgz9MySv32y5Ib3ZXXDDq6bGyQqi2dSaPuDYzNCRwwlC7mmQM73T/g==} | |
1446 | + /@commitlint/cli/16.2.3: | |
1447 | + resolution: {integrity: sha512-VsJBQLvhhlOgEfxs/Z5liYuK0dXqLE5hz1VJzLBxiOxG31kL/X5Q4OvK292BmO7IGZcm1yJE3XQPWSiFaEHbWA==} | |
1685 | 1448 | engines: {node: '>=v12'} |
1686 | 1449 | hasBin: true |
1687 | 1450 | dependencies: |
1688 | - '@commitlint/format': 16.0.0 | |
1689 | - '@commitlint/lint': 16.0.0 | |
1690 | - '@commitlint/load': 16.0.0_@types+node@17.0.5 | |
1691 | - '@commitlint/read': 16.0.0 | |
1692 | - '@commitlint/types': 16.0.0 | |
1451 | + '@commitlint/format': 16.2.1 | |
1452 | + '@commitlint/lint': 16.2.1 | |
1453 | + '@commitlint/load': 16.2.3 | |
1454 | + '@commitlint/read': 16.2.1 | |
1455 | + '@commitlint/types': 16.2.1 | |
1693 | 1456 | lodash: 4.17.21 |
1694 | 1457 | resolve-from: 5.0.0 |
1695 | 1458 | resolve-global: 1.0.0 |
1696 | - yargs: 17.2.1 | |
1459 | + yargs: 17.3.1 | |
1697 | 1460 | transitivePeerDependencies: |
1698 | 1461 | - '@swc/core' |
1699 | 1462 | - '@swc/wasm' |
1700 | - - '@types/node' | |
1701 | 1463 | dev: true |
1702 | 1464 | |
1703 | - /@commitlint/config-conventional/16.0.0: | |
1704 | - resolution: {integrity: sha512-mN7J8KlKFn0kROd+q9PB01sfDx/8K/R25yITspL1No8PB4oj9M1p77xWjP80hPydqZG9OvQq+anXK3ZWeR7s3g==} | |
1465 | + /@commitlint/config-conventional/16.2.1: | |
1466 | + resolution: {integrity: sha512-cP9gArx7gnaj4IqmtCIcHdRjTYdRUi6lmGE+lOzGGjGe45qGOS8nyQQNvkNy2Ey2VqoSWuXXkD8zCUh6EHf1Ww==} | |
1705 | 1467 | engines: {node: '>=v12'} |
1706 | 1468 | dependencies: |
1707 | - conventional-changelog-conventionalcommits: 4.6.1 | |
1469 | + conventional-changelog-conventionalcommits: 4.6.3 | |
1708 | 1470 | dev: true |
1709 | 1471 | |
1710 | - /@commitlint/config-validator/16.0.0: | |
1711 | - resolution: {integrity: sha512-i80DGlo1FeC5jZpuoNV9NIjQN/m2dDV3jYGWg+1Wr+KldptkUHXj+6GY1Akll66lJ3D8s6aUGi3comPLHPtWHg==} | |
1472 | + /@commitlint/config-validator/16.2.1: | |
1473 | + resolution: {integrity: sha512-hogSe0WGg7CKmp4IfNbdNES3Rq3UEI4XRPB8JL4EPgo/ORq5nrGTVzxJh78omibNuB8Ho4501Czb1Er1MoDWpw==} | |
1712 | 1474 | engines: {node: '>=v12'} |
1713 | 1475 | dependencies: |
1714 | - '@commitlint/types': 16.0.0 | |
1476 | + '@commitlint/types': 16.2.1 | |
1715 | 1477 | ajv: 6.12.6 |
1716 | 1478 | dev: true |
1717 | 1479 | |
1718 | - /@commitlint/ensure/16.0.0: | |
1719 | - resolution: {integrity: sha512-WdMySU8DCTaq3JPf0tZFCKIUhqxaL54mjduNhu8v4D2AMUVIIQKYMGyvXn94k8begeW6iJkTf9cXBArayskE7Q==} | |
1480 | + /@commitlint/ensure/16.2.1: | |
1481 | + resolution: {integrity: sha512-/h+lBTgf1r5fhbDNHOViLuej38i3rZqTQnBTk+xEg+ehOwQDXUuissQ5GsYXXqI5uGy+261ew++sT4EA3uBJ+A==} | |
1720 | 1482 | engines: {node: '>=v12'} |
1721 | 1483 | dependencies: |
1722 | - '@commitlint/types': 16.0.0 | |
1484 | + '@commitlint/types': 16.2.1 | |
1723 | 1485 | lodash: 4.17.21 |
1724 | 1486 | dev: true |
1725 | 1487 | |
1726 | - /@commitlint/execute-rule/16.0.0: | |
1727 | - resolution: {integrity: sha512-8edcCibmBb386x5JTHSPHINwA5L0xPkHQFY8TAuDEt5QyRZY/o5DF8OPHSa5Hx2xJvGaxxuIz4UtAT6IiRDYkw==} | |
1488 | + /@commitlint/execute-rule/16.2.1: | |
1489 | + resolution: {integrity: sha512-oSls82fmUTLM6cl5V3epdVo4gHhbmBFvCvQGHBRdQ50H/690Uq1Dyd7hXMuKITCIdcnr9umyDkr8r5C6HZDF3g==} | |
1728 | 1490 | engines: {node: '>=v12'} |
1729 | 1491 | dev: true |
1730 | 1492 | |
1731 | - /@commitlint/format/16.0.0: | |
1732 | - resolution: {integrity: sha512-9yp5NCquXL1jVMKL0ZkRwJf/UHdebvCcMvICuZV00NQGYSAL89O398nhqrqxlbjBhM5EZVq0VGcV5+7r3D4zAA==} | |
1493 | + /@commitlint/format/16.2.1: | |
1494 | + resolution: {integrity: sha512-Yyio9bdHWmNDRlEJrxHKglamIk3d6hC0NkEUW6Ti6ipEh2g0BAhy8Od6t4vLhdZRa1I2n+gY13foy+tUgk0i1Q==} | |
1733 | 1495 | engines: {node: '>=v12'} |
1734 | 1496 | dependencies: |
1735 | - '@commitlint/types': 16.0.0 | |
1497 | + '@commitlint/types': 16.2.1 | |
1736 | 1498 | chalk: 4.1.2 |
1737 | 1499 | dev: true |
1738 | 1500 | |
1739 | - /@commitlint/is-ignored/16.0.0: | |
1740 | - resolution: {integrity: sha512-gmAQcwIGC/R/Lp0CEb2b5bfGC7MT5rPe09N8kOGjO/NcdNmfFSZMquwrvNJsq9hnAP0skRdHIsqwlkENkN4Lag==} | |
1501 | + /@commitlint/is-ignored/16.2.1: | |
1502 | + resolution: {integrity: sha512-exl8HRzTIfb1YvDJp2b2HU5z1BT+9tmgxR2XF0YEzkMiCIuEKh+XLeocPr1VcvAKXv3Cmv5X/OfNRp+i+/HIhQ==} | |
1741 | 1503 | engines: {node: '>=v12'} |
1742 | 1504 | dependencies: |
1743 | - '@commitlint/types': 16.0.0 | |
1505 | + '@commitlint/types': 16.2.1 | |
1744 | 1506 | semver: 7.3.5 |
1745 | 1507 | dev: true |
1746 | 1508 | |
1747 | - /@commitlint/lint/16.0.0: | |
1748 | - resolution: {integrity: sha512-HNl15bRC0h+pLzbMzQC3tM0j1aESXsLYhElqKnXcf5mnCBkBkHzu6WwJW8rZbfxX+YwJmNljN62cPhmdBo8x0A==} | |
1509 | + /@commitlint/lint/16.2.1: | |
1510 | + resolution: {integrity: sha512-fNINQ3X2ZqsCkNB3Z0Z8ElmhewqrS3gy2wgBTx97BkcjOWiyPAGwDJ752hwrsUnWAVBRztgw826n37xPzxsOgg==} | |
1749 | 1511 | engines: {node: '>=v12'} |
1750 | 1512 | dependencies: |
1751 | - '@commitlint/is-ignored': 16.0.0 | |
1752 | - '@commitlint/parse': 16.0.0 | |
1753 | - '@commitlint/rules': 16.0.0 | |
1754 | - '@commitlint/types': 16.0.0 | |
1513 | + '@commitlint/is-ignored': 16.2.1 | |
1514 | + '@commitlint/parse': 16.2.1 | |
1515 | + '@commitlint/rules': 16.2.1 | |
1516 | + '@commitlint/types': 16.2.1 | |
1755 | 1517 | dev: true |
1756 | 1518 | |
1757 | - /@commitlint/load/16.0.0_@types+node@17.0.5: | |
1758 | - resolution: {integrity: sha512-7WhrGCkP6K/XfjBBguLkkI2XUdiiIyMGlNsSoSqgRNiD352EiffhFEApMy1/XOU+viwBBm/On0n5p0NC7e9/4A==} | |
1519 | + /@commitlint/load/16.2.3: | |
1520 | + resolution: {integrity: sha512-Hb4OUlMnBUK6UxJEZ/VJ5k0LocIS7PtEMbRXEAA7eSpOgORIFexC4K/RaRpVd5UTtu3M0ST3ddPPijF9rdW6nw==} | |
1759 | 1521 | engines: {node: '>=v12'} |
1760 | 1522 | dependencies: |
1761 | - '@commitlint/config-validator': 16.0.0 | |
1762 | - '@commitlint/execute-rule': 16.0.0 | |
1763 | - '@commitlint/resolve-extends': 16.0.0 | |
1764 | - '@commitlint/types': 16.0.0 | |
1523 | + '@commitlint/config-validator': 16.2.1 | |
1524 | + '@commitlint/execute-rule': 16.2.1 | |
1525 | + '@commitlint/resolve-extends': 16.2.1 | |
1526 | + '@commitlint/types': 16.2.1 | |
1527 | + '@types/node': 17.0.21 | |
1765 | 1528 | chalk: 4.1.2 |
1766 | 1529 | cosmiconfig: 7.0.1 |
1767 | - cosmiconfig-typescript-loader: 1.0.2_bad060d5f9aca5284661d88d739ba15b | |
1530 | + cosmiconfig-typescript-loader: 1.0.6_e79e62fe450383fd2d418267dc75e645 | |
1768 | 1531 | lodash: 4.17.21 |
1769 | 1532 | resolve-from: 5.0.0 |
1770 | - typescript: 4.5.4 | |
1533 | + typescript: 4.6.2 | |
1771 | 1534 | transitivePeerDependencies: |
1772 | 1535 | - '@swc/core' |
1773 | 1536 | - '@swc/wasm' |
1774 | - - '@types/node' | |
1775 | 1537 | dev: true |
1776 | 1538 | |
1777 | - /@commitlint/message/16.0.0: | |
1778 | - resolution: {integrity: sha512-CmK2074SH1Ws6kFMEKOKH/7hMekGVbOD6vb4alCOo2+33ZSLUIX8iNkDYyrw38Jwg6yWUhLjyQLUxREeV+QIUA==} | |
1539 | + /@commitlint/message/16.2.1: | |
1540 | + resolution: {integrity: sha512-2eWX/47rftViYg7a3axYDdrgwKv32mxbycBJT6OQY/MJM7SUfYNYYvbMFOQFaA4xIVZt7t2Alyqslbl6blVwWw==} | |
1779 | 1541 | engines: {node: '>=v12'} |
1780 | 1542 | dev: true |
1781 | 1543 | |
1782 | - /@commitlint/parse/16.0.0: | |
1783 | - resolution: {integrity: sha512-F9EjFlMw4MYgBEqoRrWZZKQBzdiJzPBI0qFDFqwUvfQsMmXEREZ242T4R5bFwLINWaALFLHEIa/FXEPa6QxCag==} | |
1544 | + /@commitlint/parse/16.2.1: | |
1545 | + resolution: {integrity: sha512-2NP2dDQNL378VZYioLrgGVZhWdnJO4nAxQl5LXwYb08nEcN+cgxHN1dJV8OLJ5uxlGJtDeR8UZZ1mnQ1gSAD/g==} | |
1784 | 1546 | engines: {node: '>=v12'} |
1785 | 1547 | dependencies: |
1786 | - '@commitlint/types': 16.0.0 | |
1548 | + '@commitlint/types': 16.2.1 | |
1787 | 1549 | conventional-changelog-angular: 5.0.13 |
1788 | - conventional-commits-parser: 3.2.3 | |
1550 | + conventional-commits-parser: 3.2.4 | |
1789 | 1551 | dev: true |
1790 | 1552 | |
1791 | - /@commitlint/read/16.0.0: | |
1792 | - resolution: {integrity: sha512-H4T2zsfmYQK9B+JtoQaCXWBHUhgIJyOzWZjSfuIV9Ce69/OgHoffNpLZPF2lX6yKuDrS1SQFhI/kUCjVc/e4ew==} | |
1553 | + /@commitlint/read/16.2.1: | |
1554 | + resolution: {integrity: sha512-tViXGuaxLTrw2r7PiYMQOFA2fueZxnnt0lkOWqKyxT+n2XdEMGYcI9ID5ndJKXnfPGPppD0w/IItKsIXlZ+alw==} | |
1793 | 1555 | engines: {node: '>=v12'} |
1794 | 1556 | dependencies: |
1795 | - '@commitlint/top-level': 16.0.0 | |
1796 | - '@commitlint/types': 16.0.0 | |
1797 | - fs-extra: 10.0.0 | |
1798 | - git-raw-commits: 2.0.10 | |
1557 | + '@commitlint/top-level': 16.2.1 | |
1558 | + '@commitlint/types': 16.2.1 | |
1559 | + fs-extra: 10.0.1 | |
1560 | + git-raw-commits: 2.0.11 | |
1799 | 1561 | dev: true |
1800 | 1562 | |
1801 | - /@commitlint/resolve-extends/16.0.0: | |
1802 | - resolution: {integrity: sha512-Z/w9MAQUcxeawpCLtjmkVNXAXOmB2nhW+LYmHEZcx9O6UTauF/1+uuZ2/r0MtzTe1qw2JD+1QHVhEWYHVPlkdA==} | |
1563 | + /@commitlint/resolve-extends/16.2.1: | |
1564 | + resolution: {integrity: sha512-NbbCMPKTFf2J805kwfP9EO+vV+XvnaHRcBy6ud5dF35dxMsvdJqke54W3XazXF1ZAxC4a3LBy4i/GNVBAthsEg==} | |
1803 | 1565 | engines: {node: '>=v12'} |
1804 | 1566 | dependencies: |
1805 | - '@commitlint/config-validator': 16.0.0 | |
1806 | - '@commitlint/types': 16.0.0 | |
1567 | + '@commitlint/config-validator': 16.2.1 | |
1568 | + '@commitlint/types': 16.2.1 | |
1807 | 1569 | import-fresh: 3.3.0 |
1808 | 1570 | lodash: 4.17.21 |
1809 | 1571 | resolve-from: 5.0.0 |
1810 | 1572 | resolve-global: 1.0.0 |
1811 | 1573 | dev: true |
1812 | 1574 | |
1813 | - /@commitlint/rules/16.0.0: | |
1814 | - resolution: {integrity: sha512-AOl0y2SBTdJ1bvIv8nwHvQKRT/jC1xb09C5VZwzHoT8sE8F54KDeEzPCwHQFgUcWdGLyS10kkOTAH2MyA8EIlg==} | |
1575 | + /@commitlint/rules/16.2.1: | |
1576 | + resolution: {integrity: sha512-ZFezJXQaBBso+BOTre/+1dGCuCzlWVaeLiVRGypI53qVgPMzQqZhkCcrxBFeqB87qeyzr4A4EoG++IvITwwpIw==} | |
1815 | 1577 | engines: {node: '>=v12'} |
1816 | 1578 | dependencies: |
1817 | - '@commitlint/ensure': 16.0.0 | |
1818 | - '@commitlint/message': 16.0.0 | |
1819 | - '@commitlint/to-lines': 16.0.0 | |
1820 | - '@commitlint/types': 16.0.0 | |
1579 | + '@commitlint/ensure': 16.2.1 | |
1580 | + '@commitlint/message': 16.2.1 | |
1581 | + '@commitlint/to-lines': 16.2.1 | |
1582 | + '@commitlint/types': 16.2.1 | |
1821 | 1583 | execa: 5.1.1 |
1822 | 1584 | dev: true |
1823 | 1585 | |
1824 | - /@commitlint/to-lines/16.0.0: | |
1825 | - resolution: {integrity: sha512-iN/qU38TCKU7uKOg6RXLpD49wNiuI0TqMqybHbjefUeP/Jmzxa8ishryj0uLyVdrAl1ZjGeD1ukXGMTtvqz8iA==} | |
1586 | + /@commitlint/to-lines/16.2.1: | |
1587 | + resolution: {integrity: sha512-9/VjpYj5j1QeY3eiog1zQWY6axsdWAc0AonUUfyZ7B0MVcRI0R56YsHAfzF6uK/g/WwPZaoe4Lb1QCyDVnpVaQ==} | |
1826 | 1588 | engines: {node: '>=v12'} |
1827 | 1589 | dev: true |
1828 | 1590 | |
1829 | - /@commitlint/top-level/16.0.0: | |
1830 | - resolution: {integrity: sha512-/Jt6NLxyFkpjL5O0jxurZPCHURZAm7cQCqikgPCwqPAH0TLgwqdHjnYipl8J+AGnAMGDip4FNLoYrtgIpZGBYw==} | |
1591 | + /@commitlint/top-level/16.2.1: | |
1592 | + resolution: {integrity: sha512-lS6GSieHW9y6ePL73ied71Z9bOKyK+Ib9hTkRsB8oZFAyQZcyRwq2w6nIa6Fngir1QW51oKzzaXfJL94qwImyw==} | |
1831 | 1593 | engines: {node: '>=v12'} |
1832 | 1594 | dependencies: |
1833 | 1595 | find-up: 5.0.0 |
1834 | 1596 | dev: true |
1835 | 1597 | |
1836 | - /@commitlint/types/16.0.0: | |
1837 | - resolution: {integrity: sha512-+0FvYOAS39bJ4aKjnYn/7FD4DfWkmQ6G/06I4F0Gvu4KS5twirEg8mIcLhmeRDOOKn4Tp8PwpLwBiSA6npEMQA==} | |
1598 | + /@commitlint/types/16.2.1: | |
1599 | + resolution: {integrity: sha512-7/z7pA7BM0i8XvMSBynO7xsB3mVQPUZbVn6zMIlp/a091XJ3qAXRXc+HwLYhiIdzzS5fuxxNIHZMGHVD4HJxdA==} | |
1838 | 1600 | engines: {node: '>=v12'} |
1839 | 1601 | dependencies: |
1840 | 1602 | chalk: 4.1.2 |
... | ... | @@ -1857,46 +1619,30 @@ packages: |
1857 | 1619 | engines: {node: '>=10'} |
1858 | 1620 | dev: false |
1859 | 1621 | |
1860 | - /@emmetio/abbreviation/2.2.2: | |
1861 | - resolution: {integrity: sha512-TtE/dBnkTCct8+LntkqVrwqQao6EnPAs1YN3cUgxOxTaBlesBCY37ROUAVZrRlG64GNnVShdl/b70RfAI3w5lw==} | |
1862 | - dependencies: | |
1863 | - '@emmetio/scanner': 1.0.0 | |
1864 | - dev: true | |
1865 | - | |
1866 | - /@emmetio/css-abbreviation/2.1.4: | |
1867 | - resolution: {integrity: sha512-qk9L60Y+uRtM5CPbB0y+QNl/1XKE09mSO+AhhSauIfr2YOx/ta3NJw2d8RtCFxgzHeRqFRr8jgyzThbu+MZ4Uw==} | |
1868 | - dependencies: | |
1869 | - '@emmetio/scanner': 1.0.0 | |
1870 | - dev: true | |
1871 | - | |
1872 | - /@emmetio/scanner/1.0.0: | |
1873 | - resolution: {integrity: sha512-8HqW8EVqjnCmWXVpqAOZf+EGESdkR27odcMMMGefgKXtar00SoYNSryGv//TELI4T3QFsECo78p+0lmalk/CFA==} | |
1874 | - dev: true | |
1875 | - | |
1876 | - /@eslint/eslintrc/1.0.5: | |
1877 | - resolution: {integrity: sha512-BLxsnmK3KyPunz5wmCCpqy0YelEoxxGmH73Is+Z74oOTMtExcjkr3dDR6quwrjh1YspA8DH9gnX1o069KiS9AQ==} | |
1622 | + /@eslint/eslintrc/1.2.1: | |
1623 | + resolution: {integrity: sha512-bxvbYnBPN1Gibwyp6NrpnFzA3YtRL3BBAyEAFVIpNTm2Rn4Vy87GA5M4aSn3InRrlsbX5N0GW7XIx+U4SAEKdQ==} | |
1878 | 1624 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
1879 | 1625 | dependencies: |
1880 | 1626 | ajv: 6.12.6 |
1881 | - debug: 4.3.3 | |
1882 | - espree: 9.2.0 | |
1883 | - globals: 13.12.0 | |
1884 | - ignore: 4.0.6 | |
1627 | + debug: 4.3.4 | |
1628 | + espree: 9.3.1 | |
1629 | + globals: 13.13.0 | |
1630 | + ignore: 5.2.0 | |
1885 | 1631 | import-fresh: 3.3.0 |
1886 | 1632 | js-yaml: 4.1.0 |
1887 | - minimatch: 3.0.4 | |
1633 | + minimatch: 3.1.2 | |
1888 | 1634 | strip-json-comments: 3.1.1 |
1889 | 1635 | transitivePeerDependencies: |
1890 | 1636 | - supports-color |
1891 | 1637 | dev: true |
1892 | 1638 | |
1893 | - /@humanwhocodes/config-array/0.9.2: | |
1894 | - resolution: {integrity: sha512-UXOuFCGcwciWckOpmfKDq/GyhlTf9pN/BzG//x8p8zTOFEcGuA68ANXheFS0AGvy3qgZqLBUkMs7hqzqCKOVwA==} | |
1639 | + /@humanwhocodes/config-array/0.9.5: | |
1640 | + resolution: {integrity: sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==} | |
1895 | 1641 | engines: {node: '>=10.10.0'} |
1896 | 1642 | dependencies: |
1897 | 1643 | '@humanwhocodes/object-schema': 1.2.1 |
1898 | - debug: 4.3.3 | |
1899 | - minimatch: 3.0.4 | |
1644 | + debug: 4.3.4 | |
1645 | + minimatch: 3.1.2 | |
1900 | 1646 | transitivePeerDependencies: |
1901 | 1647 | - supports-color |
1902 | 1648 | dev: true |
... | ... | @@ -1910,26 +1656,22 @@ packages: |
1910 | 1656 | engines: {node: '>=6.9.0'} |
1911 | 1657 | dev: true |
1912 | 1658 | |
1913 | - /@iconify/iconify/2.0.0-rc.6: | |
1914 | - resolution: {integrity: sha512-pXvLXqLPQsjpDY4qbbyh5cPEtakTfWfQCAo6SdYNhYQzat+/0fbeEhScryqaketNAG0bT4/+deKezkJZTvbuSg==} | |
1659 | + /@iconify/iconify/2.1.2: | |
1660 | + resolution: {integrity: sha512-QcUzFeEWkE/mW+BVtEGmcWATClcCOIJFiYUD/PiCWuTcdEA297o8D4oN6Ra44WrNOHu1wqNW4J0ioaDIiqaFOQ==} | |
1915 | 1661 | dependencies: |
1916 | - cross-fetch: 3.1.4 | |
1917 | - dev: true | |
1918 | - | |
1919 | - /@iconify/iconify/2.1.0: | |
1920 | - resolution: {integrity: sha512-YXKrDVXIGUeFIRqr6QC/l6MRj9kDOlES4sWx/ty8SXUk0pCZnBwsj0/to9Q3g79TAyh2wG3/yzrkf6fHKichwA==} | |
1921 | - dependencies: | |
1922 | - cross-fetch: 3.1.4 | |
1662 | + cross-fetch: 3.1.5 | |
1663 | + transitivePeerDependencies: | |
1664 | + - encoding | |
1923 | 1665 | |
1924 | - /@iconify/json/2.0.16: | |
1925 | - resolution: {integrity: sha512-XaXaATGRLBWZhhTniECn8p/fHOsZTDTWVSZ2zoLWZEDVoErJ/vVEY2TsXiN0DVdI14aqiAZZNXwTXf1ru88fGw==} | |
1666 | + /@iconify/json/2.1.17: | |
1667 | + resolution: {integrity: sha512-MAEQEXjsUq7swM7CHxNiHMlR7kRDR5fiUPtSJhpxaRJTg/EGfnNfYYAIb91qnEn0ztIcLugtJOheA3u6lvNfHg==} | |
1926 | 1668 | dependencies: |
1927 | - '@iconify/types': 1.0.12 | |
1669 | + '@iconify/types': 1.0.13 | |
1928 | 1670 | pathe: 0.0.2 |
1929 | 1671 | dev: true |
1930 | 1672 | |
1931 | - /@iconify/types/1.0.12: | |
1932 | - resolution: {integrity: sha512-6er6wSGF3hgc1JEZqiGpg21CTCjHBYOUwqLmb2Idzkjiw6ogalGP0ZMLVutCzah+0WB4yP+Zd2oVPN8jvJ+Ftg==} | |
1673 | + /@iconify/types/1.0.13: | |
1674 | + resolution: {integrity: sha512-jrJJVPnRM1HsMDnuHRTzMfgiSG6Z1U/2IYI7s8spFu9c7n1q3jcXa+3/YQz4tJVNgAhzm1dbnMxfIAyLDpCaWg==} | |
1933 | 1675 | dev: true |
1934 | 1676 | |
1935 | 1677 | /@intlify/core-base/9.1.9: |
... | ... | @@ -1988,281 +1730,189 @@ packages: |
1988 | 1730 | '@intlify/shared': 9.1.9 |
1989 | 1731 | dev: false |
1990 | 1732 | |
1991 | - /@istanbuljs/load-nyc-config/1.1.0: | |
1992 | - resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} | |
1993 | - engines: {node: '>=8'} | |
1994 | - dependencies: | |
1995 | - camelcase: 5.3.1 | |
1996 | - find-up: 4.1.0 | |
1997 | - get-package-type: 0.1.0 | |
1998 | - js-yaml: 3.14.1 | |
1999 | - resolve-from: 5.0.0 | |
1733 | + /@jridgewell/resolve-uri/3.0.5: | |
1734 | + resolution: {integrity: sha512-VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew==} | |
1735 | + engines: {node: '>=6.0.0'} | |
2000 | 1736 | dev: true |
2001 | 1737 | |
2002 | - /@istanbuljs/schema/0.1.3: | |
2003 | - resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} | |
2004 | - engines: {node: '>=8'} | |
1738 | + /@jridgewell/sourcemap-codec/1.4.11: | |
1739 | + resolution: {integrity: sha512-Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg==} | |
2005 | 1740 | dev: true |
2006 | 1741 | |
2007 | - /@jest/console/27.4.2: | |
2008 | - resolution: {integrity: sha512-xknHThRsPB/To1FUbi6pCe43y58qFC03zfb6R7fDb/FfC7k2R3i1l+izRBJf8DI46KhYGRaF14Eo9A3qbBoixg==} | |
2009 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
1742 | + /@jridgewell/trace-mapping/0.3.4: | |
1743 | + resolution: {integrity: sha512-vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ==} | |
2010 | 1744 | dependencies: |
2011 | - '@jest/types': 27.4.2 | |
2012 | - '@types/node': 17.0.5 | |
2013 | - chalk: 4.1.2 | |
2014 | - jest-message-util: 27.4.2 | |
2015 | - jest-util: 27.4.2 | |
2016 | - slash: 3.0.0 | |
1745 | + '@jridgewell/resolve-uri': 3.0.5 | |
1746 | + '@jridgewell/sourcemap-codec': 1.4.11 | |
2017 | 1747 | dev: true |
2018 | 1748 | |
2019 | - /@jest/core/27.4.5_ts-node@10.4.0: | |
2020 | - resolution: {integrity: sha512-3tm/Pevmi8bDsgvo73nX8p/WPng6KWlCyScW10FPEoN1HU4pwI83tJ3TsFvi1FfzsjwUlMNEPowgb/rPau/LTQ==} | |
2021 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
2022 | - peerDependencies: | |
2023 | - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 | |
2024 | - peerDependenciesMeta: | |
2025 | - node-notifier: | |
2026 | - optional: true | |
1749 | + /@logicflow/core/1.1.7: | |
1750 | + resolution: {integrity: sha512-3gjlVup8smW2a5+CWFYQAt0g/PEw3ipO7UgcvRzB02f9c/RBZlysaTXYWx6rUOi1IVQr+7G+tseckHckaplYCA==} | |
2027 | 1751 | dependencies: |
2028 | - '@jest/console': 27.4.2 | |
2029 | - '@jest/reporters': 27.4.5 | |
2030 | - '@jest/test-result': 27.4.2 | |
2031 | - '@jest/transform': 27.4.5 | |
2032 | - '@jest/types': 27.4.2 | |
2033 | - '@types/node': 17.0.5 | |
2034 | - ansi-escapes: 4.3.2 | |
2035 | - chalk: 4.1.2 | |
2036 | - emittery: 0.8.1 | |
2037 | - exit: 0.1.2 | |
2038 | - graceful-fs: 4.2.8 | |
2039 | - jest-changed-files: 27.4.2 | |
2040 | - jest-config: 27.4.5_ts-node@10.4.0 | |
2041 | - jest-haste-map: 27.4.5 | |
2042 | - jest-message-util: 27.4.2 | |
2043 | - jest-regex-util: 27.4.0 | |
2044 | - jest-resolve: 27.4.5 | |
2045 | - jest-resolve-dependencies: 27.4.5 | |
2046 | - jest-runner: 27.4.5 | |
2047 | - jest-runtime: 27.4.5 | |
2048 | - jest-snapshot: 27.4.5 | |
2049 | - jest-util: 27.4.2 | |
2050 | - jest-validate: 27.4.2 | |
2051 | - jest-watcher: 27.4.2 | |
2052 | - micromatch: 4.0.4 | |
2053 | - rimraf: 3.0.2 | |
2054 | - slash: 3.0.0 | |
2055 | - strip-ansi: 6.0.1 | |
2056 | - transitivePeerDependencies: | |
2057 | - - bufferutil | |
2058 | - - canvas | |
2059 | - - supports-color | |
2060 | - - ts-node | |
2061 | - - utf-8-validate | |
2062 | - dev: true | |
1752 | + '@types/mousetrap': 1.6.9 | |
1753 | + mousetrap: 1.6.5 | |
1754 | + preact: 10.6.6 | |
1755 | + dev: false | |
2063 | 1756 | |
2064 | - /@jest/environment/27.4.4: | |
2065 | - resolution: {integrity: sha512-q+niMx7cJgt/t/b6dzLOh4W8Ef/8VyKG7hxASK39jakijJzbFBGpptx3RXz13FFV7OishQ9lTbv+dQ5K3EhfDQ==} | |
2066 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
1757 | + /@logicflow/extension/1.1.7: | |
1758 | + resolution: {integrity: sha512-+ZhEA00vo/AeorN1cLQ/Sjdk5TZMOpECU4BBn+blk9TNSVeLePxbWui8/7rycg7SeRLJhWBsCXT5vaiFASRyXg==} | |
2067 | 1759 | dependencies: |
2068 | - '@jest/fake-timers': 27.4.2 | |
2069 | - '@jest/types': 27.4.2 | |
2070 | - '@types/node': 17.0.5 | |
2071 | - jest-mock: 27.4.2 | |
2072 | - dev: true | |
1760 | + '@logicflow/core': 1.1.7 | |
1761 | + ids: 1.0.0 | |
1762 | + preact: 10.6.6 | |
1763 | + dev: false | |
2073 | 1764 | |
2074 | - /@jest/fake-timers/27.4.2: | |
2075 | - resolution: {integrity: sha512-f/Xpzn5YQk5adtqBgvw1V6bF8Nx3hY0OIRRpCvWcfPl0EAjdqWPdhH3t/3XpiWZqtjIEHDyMKP9ajpva1l4Zmg==} | |
2076 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
1765 | + /@nodelib/fs.scandir/2.1.5: | |
1766 | + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} | |
1767 | + engines: {node: '>= 8'} | |
2077 | 1768 | dependencies: |
2078 | - '@jest/types': 27.4.2 | |
2079 | - '@sinonjs/fake-timers': 8.1.0 | |
2080 | - '@types/node': 17.0.5 | |
2081 | - jest-message-util: 27.4.2 | |
2082 | - jest-mock: 27.4.2 | |
2083 | - jest-util: 27.4.2 | |
1769 | + '@nodelib/fs.stat': 2.0.5 | |
1770 | + run-parallel: 1.2.0 | |
2084 | 1771 | dev: true |
2085 | 1772 | |
2086 | - /@jest/globals/27.4.4: | |
2087 | - resolution: {integrity: sha512-bqpqQhW30BOreXM8bA8t8JbOQzsq/WnPTnBl+It3UxAD9J8yxEAaBEylHx1dtBapAr/UBk8GidXbzmqnee8tYQ==} | |
2088 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
2089 | - dependencies: | |
2090 | - '@jest/environment': 27.4.4 | |
2091 | - '@jest/types': 27.4.2 | |
2092 | - expect: 27.4.2 | |
1773 | + /@nodelib/fs.stat/2.0.5: | |
1774 | + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} | |
1775 | + engines: {node: '>= 8'} | |
2093 | 1776 | dev: true |
2094 | 1777 | |
2095 | - /@jest/reporters/27.4.5: | |
2096 | - resolution: {integrity: sha512-3orsG4vi8zXuBqEoy2LbnC1kuvkg1KQUgqNxmxpQgIOQEPeV0onvZu+qDQnEoX8qTQErtqn/xzcnbpeTuOLSiA==} | |
2097 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
2098 | - peerDependencies: | |
2099 | - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 | |
2100 | - peerDependenciesMeta: | |
2101 | - node-notifier: | |
2102 | - optional: true | |
1778 | + /@nodelib/fs.walk/1.2.8: | |
1779 | + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} | |
1780 | + engines: {node: '>= 8'} | |
2103 | 1781 | dependencies: |
2104 | - '@bcoe/v8-coverage': 0.2.3 | |
2105 | - '@jest/console': 27.4.2 | |
2106 | - '@jest/test-result': 27.4.2 | |
2107 | - '@jest/transform': 27.4.5 | |
2108 | - '@jest/types': 27.4.2 | |
2109 | - '@types/node': 17.0.5 | |
2110 | - chalk: 4.1.2 | |
2111 | - collect-v8-coverage: 1.0.1 | |
2112 | - exit: 0.1.2 | |
2113 | - glob: 7.2.0 | |
2114 | - graceful-fs: 4.2.8 | |
2115 | - istanbul-lib-coverage: 3.2.0 | |
2116 | - istanbul-lib-instrument: 4.0.3 | |
2117 | - istanbul-lib-report: 3.0.0 | |
2118 | - istanbul-lib-source-maps: 4.0.1 | |
2119 | - istanbul-reports: 3.0.5 | |
2120 | - jest-haste-map: 27.4.5 | |
2121 | - jest-resolve: 27.4.5 | |
2122 | - jest-util: 27.4.2 | |
2123 | - jest-worker: 27.4.5 | |
2124 | - slash: 3.0.0 | |
2125 | - source-map: 0.6.1 | |
2126 | - string-length: 4.0.2 | |
2127 | - terminal-link: 2.1.1 | |
2128 | - v8-to-istanbul: 8.1.0 | |
2129 | - transitivePeerDependencies: | |
2130 | - - supports-color | |
1782 | + '@nodelib/fs.scandir': 2.1.5 | |
1783 | + fastq: 1.13.0 | |
2131 | 1784 | dev: true |
2132 | 1785 | |
2133 | - /@jest/source-map/27.4.0: | |
2134 | - resolution: {integrity: sha512-Ntjx9jzP26Bvhbm93z/AKcPRj/9wrkI88/gK60glXDx1q+IeI0rf7Lw2c89Ch6ofonB0On/iRDreQuQ6te9pgQ==} | |
2135 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
1786 | + /@octokit/auth-token/2.5.0: | |
1787 | + resolution: {integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==} | |
2136 | 1788 | dependencies: |
2137 | - callsites: 3.1.0 | |
2138 | - graceful-fs: 4.2.8 | |
2139 | - source-map: 0.6.1 | |
1789 | + '@octokit/types': 6.34.0 | |
2140 | 1790 | dev: true |
2141 | 1791 | |
2142 | - /@jest/test-result/27.4.2: | |
2143 | - resolution: {integrity: sha512-kr+bCrra9jfTgxHXHa2UwoQjxvQk3Am6QbpAiJ5x/50LW8llOYrxILkqY0lZRW/hu8FXesnudbql263+EW9iNA==} | |
2144 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
1792 | + /@octokit/core/3.6.0: | |
1793 | + resolution: {integrity: sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==} | |
2145 | 1794 | dependencies: |
2146 | - '@jest/console': 27.4.2 | |
2147 | - '@jest/types': 27.4.2 | |
2148 | - '@types/istanbul-lib-coverage': 2.0.3 | |
2149 | - collect-v8-coverage: 1.0.1 | |
1795 | + '@octokit/auth-token': 2.5.0 | |
1796 | + '@octokit/graphql': 4.8.0 | |
1797 | + '@octokit/request': 5.6.3 | |
1798 | + '@octokit/request-error': 2.1.0 | |
1799 | + '@octokit/types': 6.34.0 | |
1800 | + before-after-hook: 2.2.2 | |
1801 | + universal-user-agent: 6.0.0 | |
1802 | + transitivePeerDependencies: | |
1803 | + - encoding | |
2150 | 1804 | dev: true |
2151 | 1805 | |
2152 | - /@jest/test-sequencer/27.4.5: | |
2153 | - resolution: {integrity: sha512-n5woIn/1v+FT+9hniymHPARA9upYUmfi5Pw9ewVwXCDlK4F5/Gkees9v8vdjGdAIJ2MPHLHodiajLpZZanWzEQ==} | |
2154 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
1806 | + /@octokit/endpoint/6.0.12: | |
1807 | + resolution: {integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==} | |
2155 | 1808 | dependencies: |
2156 | - '@jest/test-result': 27.4.2 | |
2157 | - graceful-fs: 4.2.8 | |
2158 | - jest-haste-map: 27.4.5 | |
2159 | - jest-runtime: 27.4.5 | |
2160 | - transitivePeerDependencies: | |
2161 | - - supports-color | |
1809 | + '@octokit/types': 6.34.0 | |
1810 | + is-plain-object: 5.0.0 | |
1811 | + universal-user-agent: 6.0.0 | |
2162 | 1812 | dev: true |
2163 | 1813 | |
2164 | - /@jest/transform/27.4.5: | |
2165 | - resolution: {integrity: sha512-PuMet2UlZtlGzwc6L+aZmR3I7CEBpqadO03pU40l2RNY2fFJ191b9/ITB44LNOhVtsyykx0OZvj0PCyuLm7Eew==} | |
2166 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
1814 | + /@octokit/graphql/4.8.0: | |
1815 | + resolution: {integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==} | |
2167 | 1816 | dependencies: |
2168 | - '@babel/core': 7.16.5 | |
2169 | - '@jest/types': 27.4.2 | |
2170 | - babel-plugin-istanbul: 6.1.1 | |
2171 | - chalk: 4.1.2 | |
2172 | - convert-source-map: 1.8.0 | |
2173 | - fast-json-stable-stringify: 2.1.0 | |
2174 | - graceful-fs: 4.2.8 | |
2175 | - jest-haste-map: 27.4.5 | |
2176 | - jest-regex-util: 27.4.0 | |
2177 | - jest-util: 27.4.2 | |
2178 | - micromatch: 4.0.4 | |
2179 | - pirates: 4.0.1 | |
2180 | - slash: 3.0.0 | |
2181 | - source-map: 0.6.1 | |
2182 | - write-file-atomic: 3.0.3 | |
1817 | + '@octokit/request': 5.6.3 | |
1818 | + '@octokit/types': 6.34.0 | |
1819 | + universal-user-agent: 6.0.0 | |
2183 | 1820 | transitivePeerDependencies: |
2184 | - - supports-color | |
1821 | + - encoding | |
1822 | + dev: true | |
1823 | + | |
1824 | + /@octokit/openapi-types/11.2.0: | |
1825 | + resolution: {integrity: sha512-PBsVO+15KSlGmiI8QAzaqvsNlZlrDlyAJYcrXBCvVUxCp7VnXjkwPoFHgjEJXx3WF9BAwkA6nfCUA7i9sODzKA==} | |
2185 | 1826 | dev: true |
2186 | 1827 | |
2187 | - /@jest/types/27.2.5: | |
2188 | - resolution: {integrity: sha512-nmuM4VuDtCZcY+eTpw+0nvstwReMsjPoj7ZR80/BbixulhLaiX+fbv8oeLW8WZlJMcsGQsTmMKT/iTZu1Uy/lQ==} | |
2189 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
1828 | + /@octokit/plugin-paginate-rest/2.17.0_@octokit+core@3.6.0: | |
1829 | + resolution: {integrity: sha512-tzMbrbnam2Mt4AhuyCHvpRkS0oZ5MvwwcQPYGtMv4tUa5kkzG58SVB0fcsLulOZQeRnOgdkZWkRUiyBlh0Bkyw==} | |
1830 | + peerDependencies: | |
1831 | + '@octokit/core': '>=2' | |
2190 | 1832 | dependencies: |
2191 | - '@types/istanbul-lib-coverage': 2.0.3 | |
2192 | - '@types/istanbul-reports': 3.0.1 | |
2193 | - '@types/node': 17.0.5 | |
2194 | - '@types/yargs': 16.0.4 | |
2195 | - chalk: 4.1.2 | |
1833 | + '@octokit/core': 3.6.0 | |
1834 | + '@octokit/types': 6.34.0 | |
2196 | 1835 | dev: true |
2197 | 1836 | |
2198 | - /@jest/types/27.4.2: | |
2199 | - resolution: {integrity: sha512-j35yw0PMTPpZsUoOBiuHzr1zTYoad1cVIE0ajEjcrJONxxrko/IRGKkXx3os0Nsi4Hu3+5VmDbVfq5WhG/pWAg==} | |
2200 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
1837 | + /@octokit/plugin-request-log/1.0.4_@octokit+core@3.6.0: | |
1838 | + resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} | |
1839 | + peerDependencies: | |
1840 | + '@octokit/core': '>=3' | |
2201 | 1841 | dependencies: |
2202 | - '@types/istanbul-lib-coverage': 2.0.3 | |
2203 | - '@types/istanbul-reports': 3.0.1 | |
2204 | - '@types/node': 17.0.5 | |
2205 | - '@types/yargs': 16.0.4 | |
2206 | - chalk: 4.1.2 | |
1842 | + '@octokit/core': 3.6.0 | |
2207 | 1843 | dev: true |
2208 | 1844 | |
2209 | - /@logicflow/core/0.7.16: | |
2210 | - resolution: {integrity: sha512-ExOnCENfJqoOWjwIZE5hFdpPYqMsnE7oLalSUrFm+FkEIEQIgxVZHPt31EZEYc5Q+8IrL1tDpTAq0A4S6iJmtQ==} | |
1845 | + /@octokit/plugin-rest-endpoint-methods/5.13.0_@octokit+core@3.6.0: | |
1846 | + resolution: {integrity: sha512-uJjMTkN1KaOIgNtUPMtIXDOjx6dGYysdIFhgA52x4xSadQCz3b/zJexvITDVpANnfKPW/+E0xkOvLntqMYpviA==} | |
1847 | + peerDependencies: | |
1848 | + '@octokit/core': '>=3' | |
2211 | 1849 | dependencies: |
2212 | - '@types/mousetrap': 1.6.8 | |
2213 | - mousetrap: 1.6.5 | |
2214 | - preact: 10.6.1 | |
2215 | - dev: false | |
1850 | + '@octokit/core': 3.6.0 | |
1851 | + '@octokit/types': 6.34.0 | |
1852 | + deprecation: 2.3.1 | |
1853 | + dev: true | |
2216 | 1854 | |
2217 | - /@logicflow/extension/0.7.16: | |
2218 | - resolution: {integrity: sha512-3PxfHf5P6utty/ZECsAR9nmjgaOF5K3XOUBR10YTcTo1qSIici8rS72I+YIRc9R6fTT097gOprbmmNjQEwdw1Q==} | |
1855 | + /@octokit/request-error/2.1.0: | |
1856 | + resolution: {integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==} | |
2219 | 1857 | dependencies: |
2220 | - '@logicflow/core': 0.7.16 | |
2221 | - ids: 1.0.0 | |
2222 | - preact: 10.6.1 | |
2223 | - dev: false | |
1858 | + '@octokit/types': 6.34.0 | |
1859 | + deprecation: 2.3.1 | |
1860 | + once: 1.4.0 | |
1861 | + dev: true | |
2224 | 1862 | |
2225 | - /@nodelib/fs.scandir/2.1.5: | |
2226 | - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} | |
2227 | - engines: {node: '>= 8'} | |
1863 | + /@octokit/request/5.6.3: | |
1864 | + resolution: {integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==} | |
2228 | 1865 | dependencies: |
2229 | - '@nodelib/fs.stat': 2.0.5 | |
2230 | - run-parallel: 1.2.0 | |
1866 | + '@octokit/endpoint': 6.0.12 | |
1867 | + '@octokit/request-error': 2.1.0 | |
1868 | + '@octokit/types': 6.34.0 | |
1869 | + is-plain-object: 5.0.0 | |
1870 | + node-fetch: 2.6.7 | |
1871 | + universal-user-agent: 6.0.0 | |
1872 | + transitivePeerDependencies: | |
1873 | + - encoding | |
2231 | 1874 | dev: true |
2232 | 1875 | |
2233 | - /@nodelib/fs.stat/2.0.5: | |
2234 | - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} | |
2235 | - engines: {node: '>= 8'} | |
1876 | + /@octokit/rest/18.12.0: | |
1877 | + resolution: {integrity: sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==} | |
1878 | + dependencies: | |
1879 | + '@octokit/core': 3.6.0 | |
1880 | + '@octokit/plugin-paginate-rest': 2.17.0_@octokit+core@3.6.0 | |
1881 | + '@octokit/plugin-request-log': 1.0.4_@octokit+core@3.6.0 | |
1882 | + '@octokit/plugin-rest-endpoint-methods': 5.13.0_@octokit+core@3.6.0 | |
1883 | + transitivePeerDependencies: | |
1884 | + - encoding | |
2236 | 1885 | dev: true |
2237 | 1886 | |
2238 | - /@nodelib/fs.walk/1.2.8: | |
2239 | - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} | |
2240 | - engines: {node: '>= 8'} | |
1887 | + /@octokit/types/6.34.0: | |
1888 | + resolution: {integrity: sha512-s1zLBjWhdEI2zwaoSgyOFoKSl109CUcVBCc7biPJ3aAf6LGLU6szDvi31JPU7bxfla2lqfhjbbg/5DdFNxOwHw==} | |
2241 | 1889 | dependencies: |
2242 | - '@nodelib/fs.scandir': 2.1.5 | |
2243 | - fastq: 1.13.0 | |
1890 | + '@octokit/openapi-types': 11.2.0 | |
2244 | 1891 | dev: true |
2245 | 1892 | |
2246 | - /@purge-icons/core/0.7.0: | |
2247 | - resolution: {integrity: sha512-PaCeTFjkQUX+MzBsNg3L8x5aCZqXwaUSNw1FY3Jn7wlLqNqxRNoShw5P//a1DQAy7hLlUHvEL6IGeDoN/xf98A==} | |
1893 | + /@purge-icons/core/0.8.0: | |
1894 | + resolution: {integrity: sha512-8L6hP1U9XQO5B7kvquVJ5N7jzFvO0LZLXhBCjUQzzJzi42i6MAUanVKROApqbBuh21o9tmPwvNUg0xPe/uftRA==} | |
2248 | 1895 | dependencies: |
2249 | - '@iconify/iconify': 2.0.0-rc.6 | |
2250 | - axios: 0.21.4_debug@4.3.2 | |
2251 | - debug: 4.3.2 | |
2252 | - fast-glob: 3.2.7 | |
2253 | - fs-extra: 9.1.0 | |
1896 | + '@iconify/iconify': 2.1.2 | |
1897 | + axios: 0.26.1_debug@4.3.4 | |
1898 | + debug: 4.3.4 | |
1899 | + fast-glob: 3.2.11 | |
1900 | + fs-extra: 10.0.1 | |
2254 | 1901 | transitivePeerDependencies: |
1902 | + - encoding | |
2255 | 1903 | - supports-color |
2256 | 1904 | dev: true |
2257 | 1905 | |
2258 | - /@purge-icons/generated/0.7.0: | |
2259 | - resolution: {integrity: sha512-4SHVpZnKaW5ekRTjhPY9b1pALVlF0pDuGIDRAlxAm0V+gQVOL0+Ghav6U9XqXFj2kiG1+eQ8swpvB+kd0a+tqg==} | |
1906 | + /@purge-icons/generated/0.8.1: | |
1907 | + resolution: {integrity: sha512-rIExGA33EGKEToqtc8WfpboaR7or1XRp+KV1Y5v/P0Rq7G5Me95DmP3ow/MpG7ql+XZ9xPzyS2naGRx5358+6Q==} | |
2260 | 1908 | dependencies: |
2261 | - '@iconify/iconify': 2.1.0 | |
1909 | + '@iconify/iconify': 2.1.2 | |
1910 | + transitivePeerDependencies: | |
1911 | + - encoding | |
2262 | 1912 | dev: true |
2263 | 1913 | |
2264 | - /@rollup/plugin-babel/5.3.0_@babel+core@7.16.0+rollup@2.60.1: | |
2265 | - resolution: {integrity: sha512-9uIC8HZOnVLrLHxayq/PTzw+uS25E14KPUBh5ktF+18Mjo5yK0ToMMx6epY0uEgkjwJw0aBW4x2horYXh8juWw==} | |
1914 | + /@rollup/plugin-babel/5.3.1_@babel+core@7.17.7+rollup@2.70.1: | |
1915 | + resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} | |
2266 | 1916 | engines: {node: '>= 10.0.0'} |
2267 | 1917 | peerDependencies: |
2268 | 1918 | '@babel/core': ^7.0.0 |
... | ... | @@ -2272,52 +1922,53 @@ packages: |
2272 | 1922 | '@types/babel__core': |
2273 | 1923 | optional: true |
2274 | 1924 | dependencies: |
2275 | - '@babel/core': 7.16.0 | |
2276 | - '@babel/helper-module-imports': 7.16.0 | |
2277 | - '@rollup/pluginutils': 3.1.0_rollup@2.60.1 | |
2278 | - rollup: 2.60.1 | |
1925 | + '@babel/core': 7.17.7 | |
1926 | + '@babel/helper-module-imports': 7.16.7 | |
1927 | + '@rollup/pluginutils': 3.1.0_rollup@2.70.1 | |
1928 | + rollup: 2.70.1 | |
2279 | 1929 | dev: true |
2280 | 1930 | |
2281 | - /@rollup/plugin-node-resolve/11.2.1_rollup@2.60.1: | |
1931 | + /@rollup/plugin-node-resolve/11.2.1_rollup@2.70.1: | |
2282 | 1932 | resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==} |
2283 | 1933 | engines: {node: '>= 10.0.0'} |
2284 | 1934 | peerDependencies: |
2285 | 1935 | rollup: ^1.20.0||^2.0.0 |
2286 | 1936 | dependencies: |
2287 | - '@rollup/pluginutils': 3.1.0_rollup@2.60.1 | |
1937 | + '@rollup/pluginutils': 3.1.0_rollup@2.70.1 | |
2288 | 1938 | '@types/resolve': 1.17.1 |
2289 | 1939 | builtin-modules: 3.2.0 |
2290 | 1940 | deepmerge: 4.2.2 |
2291 | 1941 | is-module: 1.0.0 |
2292 | - resolve: 1.20.0 | |
2293 | - rollup: 2.60.1 | |
1942 | + resolve: 1.22.0 | |
1943 | + rollup: 2.70.1 | |
2294 | 1944 | dev: true |
2295 | 1945 | |
2296 | - /@rollup/plugin-node-resolve/13.0.6: | |
2297 | - resolution: {integrity: sha512-sFsPDMPd4gMqnh2gS0uIxELnoRUp5kBl5knxD2EO0778G1oOJv4G1vyT2cpWz75OU2jDVcXhjVUuTAczGyFNKA==} | |
1946 | + /@rollup/plugin-node-resolve/13.1.3_rollup@2.70.1: | |
1947 | + resolution: {integrity: sha512-BdxNk+LtmElRo5d06MGY4zoepyrXX1tkzX2hrnPEZ53k78GuOMWLqmJDGIIOPwVRIFZrLQOo+Yr6KtCuLIA0AQ==} | |
2298 | 1948 | engines: {node: '>= 10.0.0'} |
2299 | 1949 | peerDependencies: |
2300 | 1950 | rollup: ^2.42.0 |
2301 | 1951 | dependencies: |
2302 | - '@rollup/pluginutils': 3.1.0 | |
1952 | + '@rollup/pluginutils': 3.1.0_rollup@2.70.1 | |
2303 | 1953 | '@types/resolve': 1.17.1 |
2304 | 1954 | builtin-modules: 3.2.0 |
2305 | 1955 | deepmerge: 4.2.2 |
2306 | 1956 | is-module: 1.0.0 |
2307 | - resolve: 1.20.0 | |
1957 | + resolve: 1.22.0 | |
1958 | + rollup: 2.70.1 | |
2308 | 1959 | dev: true |
2309 | 1960 | |
2310 | - /@rollup/plugin-replace/2.4.2_rollup@2.60.1: | |
1961 | + /@rollup/plugin-replace/2.4.2_rollup@2.70.1: | |
2311 | 1962 | resolution: {integrity: sha512-IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg==} |
2312 | 1963 | peerDependencies: |
2313 | 1964 | rollup: ^1.20.0 || ^2.0.0 |
2314 | 1965 | dependencies: |
2315 | - '@rollup/pluginutils': 3.1.0_rollup@2.60.1 | |
2316 | - magic-string: 0.25.7 | |
2317 | - rollup: 2.60.1 | |
1966 | + '@rollup/pluginutils': 3.1.0_rollup@2.70.1 | |
1967 | + magic-string: 0.25.9 | |
1968 | + rollup: 2.70.1 | |
2318 | 1969 | dev: true |
2319 | 1970 | |
2320 | - /@rollup/pluginutils/3.1.0: | |
1971 | + /@rollup/pluginutils/3.1.0_rollup@2.70.1: | |
2321 | 1972 | resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} |
2322 | 1973 | engines: {node: '>= 8.0.0'} |
2323 | 1974 | peerDependencies: |
... | ... | @@ -2325,33 +1976,22 @@ packages: |
2325 | 1976 | dependencies: |
2326 | 1977 | '@types/estree': 0.0.39 |
2327 | 1978 | estree-walker: 1.0.1 |
2328 | - picomatch: 2.3.0 | |
1979 | + picomatch: 2.3.1 | |
1980 | + rollup: 2.70.1 | |
2329 | 1981 | dev: true |
2330 | 1982 | |
2331 | - /@rollup/pluginutils/3.1.0_rollup@2.60.1: | |
2332 | - resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} | |
2333 | - engines: {node: '>= 8.0.0'} | |
2334 | - peerDependencies: | |
2335 | - rollup: ^1.20.0||^2.0.0 | |
2336 | - dependencies: | |
2337 | - '@types/estree': 0.0.39 | |
2338 | - estree-walker: 1.0.1 | |
2339 | - picomatch: 2.3.0 | |
2340 | - rollup: 2.60.1 | |
2341 | - dev: true | |
2342 | - | |
2343 | - /@rollup/pluginutils/4.1.2: | |
2344 | - resolution: {integrity: sha512-ROn4qvkxP9SyPeHaf7uQC/GPFY6L/OWy9+bd9AwcjOAWQwxRscoEyAUD8qCY5o5iL4jqQwoLk2kaTKJPb/HwzQ==} | |
1983 | + /@rollup/pluginutils/4.2.0: | |
1984 | + resolution: {integrity: sha512-2WUyJNRkyH5p487pGnn4tWAsxhEFKN/pT8CMgHshd5H+IXkOnKvKZwsz5ZWz+YCXkleZRAU5kwbfgF8CPfDRqA==} | |
2345 | 1985 | engines: {node: '>= 8.0.0'} |
2346 | 1986 | dependencies: |
2347 | 1987 | estree-walker: 2.0.2 |
2348 | - picomatch: 2.3.0 | |
1988 | + picomatch: 2.3.1 | |
2349 | 1989 | dev: true |
2350 | 1990 | |
2351 | 1991 | /@simonwep/pickr/1.8.2: |
2352 | 1992 | resolution: {integrity: sha512-/l5w8BIkrpP6n1xsetx9MWPWlU6OblN5YgZZphxan0Tq4BByTCETL6lyIeY8lagalS2Nbt4F2W034KHLIiunKA==} |
2353 | 1993 | dependencies: |
2354 | - core-js: 3.19.1 | |
1994 | + core-js: 3.21.1 | |
2355 | 1995 | nanopop: 2.1.0 |
2356 | 1996 | dev: false |
2357 | 1997 | |
... | ... | @@ -2360,32 +2000,15 @@ packages: |
2360 | 2000 | engines: {node: '>=4'} |
2361 | 2001 | dev: true |
2362 | 2002 | |
2363 | - /@sinonjs/commons/1.8.3: | |
2364 | - resolution: {integrity: sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==} | |
2365 | - dependencies: | |
2366 | - type-detect: 4.0.8 | |
2367 | - dev: true | |
2368 | - | |
2369 | - /@sinonjs/fake-timers/8.1.0: | |
2370 | - resolution: {integrity: sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==} | |
2371 | - dependencies: | |
2372 | - '@sinonjs/commons': 1.8.3 | |
2373 | - dev: true | |
2374 | - | |
2375 | 2003 | /@surma/rollup-plugin-off-main-thread/2.2.3: |
2376 | 2004 | resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==} |
2377 | 2005 | dependencies: |
2378 | 2006 | ejs: 3.1.6 |
2379 | 2007 | json5: 2.2.0 |
2380 | - magic-string: 0.25.7 | |
2008 | + magic-string: 0.25.9 | |
2381 | 2009 | string.prototype.matchall: 4.0.6 |
2382 | 2010 | dev: true |
2383 | 2011 | |
2384 | - /@tootallnate/once/1.1.2: | |
2385 | - resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} | |
2386 | - engines: {node: '>= 6'} | |
2387 | - dev: true | |
2388 | - | |
2389 | 2012 | /@trysound/sax/0.2.0: |
2390 | 2013 | resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} |
2391 | 2014 | engines: {node: '>=10.13.0'} |
... | ... | @@ -2407,70 +2030,35 @@ packages: |
2407 | 2030 | resolution: {integrity: sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA==} |
2408 | 2031 | dev: true |
2409 | 2032 | |
2410 | - /@types/babel__core/7.1.16: | |
2411 | - resolution: {integrity: sha512-EAEHtisTMM+KaKwfWdC3oyllIqswlznXCIVCt7/oRNrh+DhgT4UEBNC/jlADNjvw7UnfbcdkGQcPVZ1xYiLcrQ==} | |
2412 | - dependencies: | |
2413 | - '@babel/parser': 7.16.4 | |
2414 | - '@babel/types': 7.16.0 | |
2415 | - '@types/babel__generator': 7.6.3 | |
2416 | - '@types/babel__template': 7.4.1 | |
2417 | - '@types/babel__traverse': 7.14.2 | |
2418 | - dev: true | |
2419 | - | |
2420 | - /@types/babel__generator/7.6.3: | |
2421 | - resolution: {integrity: sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA==} | |
2422 | - dependencies: | |
2423 | - '@babel/types': 7.16.0 | |
2424 | - dev: true | |
2425 | - | |
2426 | - /@types/babel__template/7.4.1: | |
2427 | - resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} | |
2428 | - dependencies: | |
2429 | - '@babel/parser': 7.16.4 | |
2430 | - '@babel/types': 7.16.0 | |
2431 | - dev: true | |
2432 | - | |
2433 | - /@types/babel__traverse/7.14.2: | |
2434 | - resolution: {integrity: sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA==} | |
2435 | - dependencies: | |
2436 | - '@babel/types': 7.16.0 | |
2437 | - dev: true | |
2438 | - | |
2439 | 2033 | /@types/codemirror/5.60.5: |
2440 | 2034 | resolution: {integrity: sha512-TiECZmm8St5YxjFUp64LK0c8WU5bxMDt9YaAek1UqUb9swrSCoJhh92fWu1p3mTEqlHjhB5sY7OFBhWroJXZVg==} |
2441 | 2035 | dependencies: |
2442 | 2036 | '@types/tern': 0.23.4 |
2443 | 2037 | dev: true |
2444 | 2038 | |
2445 | - /@types/crypto-js/4.0.2: | |
2446 | - resolution: {integrity: sha512-sCVniU+h3GcGqxOmng11BRvf9TfN9yIs8KKjB8C8d75W69cpTfZG80gau9yTx5SxF3gvHGbJhdESzzvnjtf3Og==} | |
2039 | + /@types/crypto-js/4.1.1: | |
2040 | + resolution: {integrity: sha512-BG7fQKZ689HIoc5h+6D2Dgq1fABRa0RbBWKBd9SP/MVRVXROflpm5fhwyATX5duFmbStzyzyycPB8qUYKDH3NA==} | |
2447 | 2041 | dev: true |
2448 | 2042 | |
2449 | 2043 | /@types/estree/0.0.39: |
2450 | 2044 | resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} |
2451 | 2045 | dev: true |
2452 | 2046 | |
2453 | - /@types/estree/0.0.50: | |
2454 | - resolution: {integrity: sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==} | |
2047 | + /@types/estree/0.0.51: | |
2048 | + resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} | |
2455 | 2049 | dev: true |
2456 | 2050 | |
2457 | 2051 | /@types/fs-extra/9.0.13: |
2458 | 2052 | resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==} |
2459 | 2053 | dependencies: |
2460 | - '@types/node': 17.0.5 | |
2054 | + '@types/node': 17.0.21 | |
2461 | 2055 | dev: true |
2462 | 2056 | |
2463 | 2057 | /@types/glob/7.2.0: |
2464 | 2058 | resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} |
2465 | 2059 | dependencies: |
2466 | 2060 | '@types/minimatch': 3.0.5 |
2467 | - '@types/node': 17.0.5 | |
2468 | - dev: true | |
2469 | - | |
2470 | - /@types/graceful-fs/4.1.5: | |
2471 | - resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} | |
2472 | - dependencies: | |
2473 | - '@types/node': 17.0.5 | |
2061 | + '@types/node': 17.0.21 | |
2474 | 2062 | dev: true |
2475 | 2063 | |
2476 | 2064 | /@types/imagemin-gifsicle/7.0.1: |
... | ... | @@ -2497,11 +2085,11 @@ packages: |
2497 | 2085 | '@types/imagemin': 7.0.1 |
2498 | 2086 | dev: true |
2499 | 2087 | |
2500 | - /@types/imagemin-svgo/10.0.0: | |
2501 | - resolution: {integrity: sha512-yBsOVpsZhXrTSmn2v06un2bP1XUrdpGSVh6toCQIfsVxkjBYR5DgpaCgv6O+Mh0bTVTsInYyUrTGV60A/sD5gA==} | |
2088 | + /@types/imagemin-svgo/10.0.1: | |
2089 | + resolution: {integrity: sha512-F3Tcm0iElDp9o1QnulC7EFR6KrYaXs0ARFnAmaYwPsPQ1AMcrjy45NI7cfGJ9yfuBDep/GU/tqj4EUD62DOWgg==} | |
2502 | 2090 | dependencies: |
2503 | 2091 | '@types/imagemin': 7.0.1 |
2504 | - '@types/svgo': 1.3.6 | |
2092 | + '@types/svgo': 2.6.2 | |
2505 | 2093 | dev: true |
2506 | 2094 | |
2507 | 2095 | /@types/imagemin-webp/7.0.0: |
... | ... | @@ -2513,56 +2101,34 @@ packages: |
2513 | 2101 | /@types/imagemin/7.0.1: |
2514 | 2102 | resolution: {integrity: sha512-xEn5+M3lDBtI3JxLy6eU3ksoVurygnlG7OYhTqJfGGP4PcvYnfn+IABCmMve7ziM/SneHDm5xgJFKC8hCYPicw==} |
2515 | 2103 | dependencies: |
2516 | - '@types/node': 17.0.5 | |
2104 | + '@types/node': 17.0.21 | |
2517 | 2105 | dev: true |
2518 | 2106 | |
2519 | - /@types/inquirer/8.1.3: | |
2520 | - resolution: {integrity: sha512-AayK4ZL5ssPzR1OtnOLGAwpT0Dda3Xi/h1G0l1oJDNrowp7T1423q4Zb8/emr7tzRlCy4ssEri0LWVexAqHyKQ==} | |
2107 | + /@types/inquirer/8.2.0: | |
2108 | + resolution: {integrity: sha512-BNoMetRf3gmkpAlV5we+kxyZTle7YibdOntIZbU5pyIfMdcwy784KfeZDAcuyMznkh5OLa17RVXZOGA5LTlkgQ==} | |
2521 | 2109 | dependencies: |
2522 | 2110 | '@types/through': 0.0.30 |
2523 | - rxjs: 7.4.0 | |
2111 | + rxjs: 7.5.5 | |
2524 | 2112 | dev: true |
2525 | 2113 | |
2526 | 2114 | /@types/intro.js/3.0.2: |
2527 | 2115 | resolution: {integrity: sha512-kow8REgIIG42atN9vAaIdpEqVzj6WzV9m0PII8oce+an4Lc3eyfQF32/FbabbGmfWuF7TceTdd+gh74kOrXkPw==} |
2528 | 2116 | dev: true |
2529 | 2117 | |
2530 | - /@types/istanbul-lib-coverage/2.0.3: | |
2531 | - resolution: {integrity: sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==} | |
2532 | - dev: true | |
2533 | - | |
2534 | - /@types/istanbul-lib-report/3.0.0: | |
2535 | - resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==} | |
2536 | - dependencies: | |
2537 | - '@types/istanbul-lib-coverage': 2.0.3 | |
2538 | - dev: true | |
2539 | - | |
2540 | - /@types/istanbul-reports/3.0.1: | |
2541 | - resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==} | |
2542 | - dependencies: | |
2543 | - '@types/istanbul-lib-report': 3.0.0 | |
2118 | + /@types/json-schema/7.0.10: | |
2119 | + resolution: {integrity: sha512-BLO9bBq59vW3fxCpD4o0N4U+DXsvwvIcl+jofw0frQo/GrBFC+/jRZj1E7kgp6dvTyNmA4y6JCV5Id/r3mNP5A==} | |
2544 | 2120 | dev: true |
2545 | 2121 | |
2546 | - /@types/jest/27.0.3: | |
2547 | - resolution: {integrity: sha512-cmmwv9t7gBYt7hNKH5Spu7Kuu/DotGa+Ff+JGRKZ4db5eh8PnKS4LuebJ3YLUoyOyIHraTGyULn23YtEAm0VSg==} | |
2122 | + /@types/lodash-es/4.17.6: | |
2123 | + resolution: {integrity: sha512-R+zTeVUKDdfoRxpAryaQNRKk3105Rrgx2CFRClIgRGaqDTdjsm8h6IYA8ir584W3ePzkZfst5xIgDwYrlh9HLg==} | |
2548 | 2124 | dependencies: |
2549 | - jest-diff: 27.3.1 | |
2550 | - pretty-format: 27.3.1 | |
2551 | - dev: true | |
2552 | - | |
2553 | - /@types/json-schema/7.0.9: | |
2554 | - resolution: {integrity: sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==} | |
2125 | + '@types/lodash': 4.14.180 | |
2555 | 2126 | dev: true |
2556 | 2127 | |
2557 | - /@types/lodash-es/4.17.5: | |
2558 | - resolution: {integrity: sha512-SHBoI8/0aoMQWAgUHMQ599VM6ZiSKg8sh/0cFqqlQQMyY9uEplc0ULU5yQNzcvdR4ZKa0ey8+vFmahuRbOCT1A==} | |
2559 | - dependencies: | |
2560 | - '@types/lodash': 4.14.177 | |
2128 | + /@types/lodash/4.14.180: | |
2129 | + resolution: {integrity: sha512-XOKXa1KIxtNXgASAnwj7cnttJxS4fksBRywK/9LzRV5YxrF80BXZIGeQSuoESQ/VkUj30Ae0+YcuHc15wJCB2g==} | |
2561 | 2130 | dev: true |
2562 | 2131 | |
2563 | - /@types/lodash/4.14.177: | |
2564 | - resolution: {integrity: sha512-0fDwydE2clKe9MNfvXHBHF9WEahRuj+msTuQqOmAApNORFvhMYZKNGGJdCzuhheVjMps/ti0Ak/iJPACMaevvw==} | |
2565 | - | |
2566 | 2132 | /@types/minimatch/3.0.5: |
2567 | 2133 | resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} |
2568 | 2134 | dev: true |
... | ... | @@ -2571,20 +2137,20 @@ packages: |
2571 | 2137 | resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} |
2572 | 2138 | dev: true |
2573 | 2139 | |
2574 | - /@types/mockjs/1.0.4: | |
2575 | - resolution: {integrity: sha512-gK20xPqJhzMIitechVbvfnAk+oBIxVRnWrihJpRYHMI6UHCB/cvWgJa+dy6trRwQLE3AbtAJnXpm7pn6blG8sA==} | |
2140 | + /@types/mockjs/1.0.6: | |
2141 | + resolution: {integrity: sha512-Yu5YlqbYZyqsd6LjO4e8ONJDN9pTSnciHDcRP4teNOh/au2b8helFhgRx+3w8xsTFEnwr9jtfTVJbAx+eYmlHA==} | |
2576 | 2142 | dev: true |
2577 | 2143 | |
2578 | - /@types/mousetrap/1.6.8: | |
2579 | - resolution: {integrity: sha512-zTqjvgCUT5EoXqbqmd8iJMb4NJqyV/V7pK7AIKq7qcaAsJIpGlTVJS1HQM6YkdHCdnkNSbhcQI7MXYxFfE3iCA==} | |
2144 | + /@types/mousetrap/1.6.9: | |
2145 | + resolution: {integrity: sha512-HUAiN65VsRXyFCTicolwb5+I7FM6f72zjMWr+ajGk+YTvzBgXqa2A5U7d+rtsouAkunJ5U4Sb5lNJjo9w+nmXg==} | |
2580 | 2146 | dev: false |
2581 | 2147 | |
2582 | - /@types/node/14.17.34: | |
2583 | - resolution: {integrity: sha512-USUftMYpmuMzeWobskoPfzDi+vkpe0dvcOBRNOscFrGxVp4jomnRxWuVohgqBow2xyIPC0S3gjxV/5079jhmDg==} | |
2148 | + /@types/node/14.18.12: | |
2149 | + resolution: {integrity: sha512-q4jlIR71hUpWTnGhXWcakgkZeHa3CCjcQcnuzU8M891BAWA2jHiziiWEPEkdS5pFsz7H9HJiy8BrK7tBRNrY7A==} | |
2584 | 2150 | dev: true |
2585 | 2151 | |
2586 | - /@types/node/17.0.5: | |
2587 | - resolution: {integrity: sha512-w3mrvNXLeDYV1GKTZorGJQivK6XLCoGwpnyJFbJVK/aTBQUxOCaa/GlFAAN3OTDFcb7h5tiFG+YXCO2By+riZw==} | |
2152 | + /@types/node/17.0.21: | |
2153 | + resolution: {integrity: sha512-DBZCJbhII3r90XbQxI8Y9IjjiiOGlZ0Hr32omXIZvwwZ7p4DMMXGrKXVyPfuoBOri9XNtL0UK69jYIBIsRX3QQ==} | |
2588 | 2154 | dev: true |
2589 | 2155 | |
2590 | 2156 | /@types/normalize-package-data/2.4.1: |
... | ... | @@ -2599,14 +2165,10 @@ packages: |
2599 | 2165 | resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} |
2600 | 2166 | dev: true |
2601 | 2167 | |
2602 | - /@types/prettier/2.4.2: | |
2603 | - resolution: {integrity: sha512-ekoj4qOQYp7CvjX8ZDBgN86w3MqQhLE1hczEJbEIjgFEumDy+na/4AJAbLXfgEWFNB2pKadM5rPFtuSGMWK7xA==} | |
2604 | - dev: true | |
2605 | - | |
2606 | 2168 | /@types/qrcode/1.4.2: |
2607 | 2169 | resolution: {integrity: sha512-7uNT9L4WQTNJejHTSTdaJhfBSCN73xtXaHFyBJ8TSwiLhe4PRuTue7Iph0s2nG9R/ifUaSnGhLUOZavlBEqDWQ==} |
2608 | 2170 | dependencies: |
2609 | - '@types/node': 17.0.5 | |
2171 | + '@types/node': 17.0.21 | |
2610 | 2172 | dev: true |
2611 | 2173 | |
2612 | 2174 | /@types/qs/6.9.7: |
... | ... | @@ -2616,7 +2178,7 @@ packages: |
2616 | 2178 | /@types/resolve/1.17.1: |
2617 | 2179 | resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} |
2618 | 2180 | dependencies: |
2619 | - '@types/node': 17.0.5 | |
2181 | + '@types/node': 17.0.21 | |
2620 | 2182 | dev: true |
2621 | 2183 | |
2622 | 2184 | /@types/showdown/1.9.4: |
... | ... | @@ -2627,34 +2189,22 @@ packages: |
2627 | 2189 | resolution: {integrity: sha512-lGCwwgpj8zW/ZmaueoPVSP7nnc9t8VqVWXS+ASX3eoUUENmiazv0rlXyTRludXzuX9ALjPsMqBu85TgJNWbTOg==} |
2628 | 2190 | dev: true |
2629 | 2191 | |
2630 | - /@types/stack-utils/2.0.1: | |
2631 | - resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} | |
2632 | - dev: true | |
2633 | - | |
2634 | - /@types/svgo/1.3.6: | |
2635 | - resolution: {integrity: sha512-AZU7vQcy/4WFEuwnwsNsJnFwupIpbllH1++LXScN6uxT1Z4zPzdrWG97w4/I7eFKFTvfy/bHFStWjdBAg2Vjug==} | |
2636 | - dev: true | |
2637 | - | |
2638 | - /@types/svgo/2.6.0: | |
2639 | - resolution: {integrity: sha512-VSdhb3KTOglle1SLQD4+TB6ezj/MS3rN98gOUkXzbTUhG8VjFKHXN3OVgEFlTnW5fYBxt+lzZlD3PFqkwMj36Q==} | |
2192 | + /@types/svgo/2.6.2: | |
2193 | + resolution: {integrity: sha512-m1SqMc/EDAZ8v0BBX+NmlYytUXtvrMD2/J9LICwnMvAuJwb0GSmACU3XPvcORqE7ghEJA4Mk6NYzpwhQI/biPw==} | |
2640 | 2194 | dependencies: |
2641 | - '@types/node': 17.0.5 | |
2195 | + '@types/node': 17.0.21 | |
2642 | 2196 | dev: true |
2643 | 2197 | |
2644 | 2198 | /@types/tern/0.23.4: |
2645 | 2199 | resolution: {integrity: sha512-JAUw1iXGO1qaWwEOzxTKJZ/5JxVeON9kvGZ/osgZaJImBnyjyn0cjovPsf6FNLmyGY8Vw9DoXZCMlfMkMwHRWg==} |
2646 | 2200 | dependencies: |
2647 | - '@types/estree': 0.0.50 | |
2648 | - dev: true | |
2649 | - | |
2650 | - /@types/throttle-debounce/2.1.0: | |
2651 | - resolution: {integrity: sha512-5eQEtSCoESnh2FsiLTxE121IiE60hnMqcb435fShf4bpLRjEu1Eoekht23y6zXS9Ts3l+Szu3TARnTsA0GkOkQ==} | |
2201 | + '@types/estree': 0.0.51 | |
2652 | 2202 | dev: true |
2653 | 2203 | |
2654 | 2204 | /@types/through/0.0.30: |
2655 | 2205 | resolution: {integrity: sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==} |
2656 | 2206 | dependencies: |
2657 | - '@types/node': 17.0.5 | |
2207 | + '@types/node': 17.0.21 | |
2658 | 2208 | dev: true |
2659 | 2209 | |
2660 | 2210 | /@types/tinycolor2/1.4.3: |
... | ... | @@ -2665,18 +2215,8 @@ packages: |
2665 | 2215 | resolution: {integrity: sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==} |
2666 | 2216 | dev: true |
2667 | 2217 | |
2668 | - /@types/yargs-parser/20.2.1: | |
2669 | - resolution: {integrity: sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw==} | |
2670 | - dev: true | |
2671 | - | |
2672 | - /@types/yargs/16.0.4: | |
2673 | - resolution: {integrity: sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==} | |
2674 | - dependencies: | |
2675 | - '@types/yargs-parser': 20.2.1 | |
2676 | - dev: true | |
2677 | - | |
2678 | - /@typescript-eslint/eslint-plugin/5.8.1_3a47348159e115370aa4cba56aba33b6: | |
2679 | - resolution: {integrity: sha512-wTZ5oEKrKj/8/366qTM366zqhIKAp6NCMweoRONtfuC07OAU9nVI2GZZdqQ1qD30WAAtcPdkH+npDwtRFdp4Rw==} | |
2218 | + /@typescript-eslint/eslint-plugin/5.15.0_f2c49ce7d0e93ebcfdb4b7d25b131b28: | |
2219 | + resolution: {integrity: sha512-u6Db5JfF0Esn3tiAKELvoU5TpXVSkOpZ78cEGn/wXtT2RVqs2vkt4ge6N8cRCyw7YVKhmmLDbwI2pg92mlv7cA==} | |
2680 | 2220 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2681 | 2221 | peerDependencies: |
2682 | 2222 | '@typescript-eslint/parser': ^5.0.0 |
... | ... | @@ -2686,105 +2226,76 @@ packages: |
2686 | 2226 | typescript: |
2687 | 2227 | optional: true |
2688 | 2228 | dependencies: |
2689 | - '@typescript-eslint/experimental-utils': 5.8.1_eslint@8.5.0+typescript@4.5.4 | |
2690 | - '@typescript-eslint/parser': 5.8.1_eslint@8.5.0+typescript@4.5.4 | |
2691 | - '@typescript-eslint/scope-manager': 5.8.1 | |
2692 | - debug: 4.3.3 | |
2693 | - eslint: 8.5.0 | |
2229 | + '@typescript-eslint/parser': 5.15.0_eslint@8.11.0+typescript@4.6.2 | |
2230 | + '@typescript-eslint/scope-manager': 5.15.0 | |
2231 | + '@typescript-eslint/type-utils': 5.15.0_eslint@8.11.0+typescript@4.6.2 | |
2232 | + '@typescript-eslint/utils': 5.15.0_eslint@8.11.0+typescript@4.6.2 | |
2233 | + debug: 4.3.4 | |
2234 | + eslint: 8.11.0 | |
2694 | 2235 | functional-red-black-tree: 1.0.1 |
2695 | - ignore: 5.1.9 | |
2236 | + ignore: 5.2.0 | |
2696 | 2237 | regexpp: 3.2.0 |
2697 | 2238 | semver: 7.3.5 |
2698 | - tsutils: 3.21.0_typescript@4.5.4 | |
2699 | - typescript: 4.5.4 | |
2239 | + tsutils: 3.21.0_typescript@4.6.2 | |
2240 | + typescript: 4.6.2 | |
2700 | 2241 | transitivePeerDependencies: |
2701 | 2242 | - supports-color |
2702 | 2243 | dev: true |
2703 | 2244 | |
2704 | - /@typescript-eslint/experimental-utils/5.7.0_eslint@8.5.0+typescript@4.5.4: | |
2705 | - resolution: {integrity: sha512-u57eZ5FbEpzN5kSjmVrSesovWslH2ZyNPnaXQMXWgH57d5+EVHEt76W75vVuI9qKZ5BMDKNfRN+pxcPEjQjb2A==} | |
2245 | + /@typescript-eslint/parser/5.15.0_eslint@8.11.0+typescript@4.6.2: | |
2246 | + resolution: {integrity: sha512-NGAYP/+RDM2sVfmKiKOCgJYPstAO40vPAgACoWPO/+yoYKSgAXIFaBKsV8P0Cc7fwKgvj27SjRNX4L7f4/jCKQ==} | |
2706 | 2247 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2707 | 2248 | peerDependencies: |
2708 | - eslint: '*' | |
2249 | + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 | |
2250 | + typescript: '*' | |
2251 | + peerDependenciesMeta: | |
2252 | + typescript: | |
2253 | + optional: true | |
2709 | 2254 | dependencies: |
2710 | - '@types/json-schema': 7.0.9 | |
2711 | - '@typescript-eslint/scope-manager': 5.7.0 | |
2712 | - '@typescript-eslint/types': 5.7.0 | |
2713 | - '@typescript-eslint/typescript-estree': 5.7.0_typescript@4.5.4 | |
2714 | - eslint: 8.5.0 | |
2715 | - eslint-scope: 5.1.1 | |
2716 | - eslint-utils: 3.0.0_eslint@8.5.0 | |
2255 | + '@typescript-eslint/scope-manager': 5.15.0 | |
2256 | + '@typescript-eslint/types': 5.15.0 | |
2257 | + '@typescript-eslint/typescript-estree': 5.15.0_typescript@4.6.2 | |
2258 | + debug: 4.3.4 | |
2259 | + eslint: 8.11.0 | |
2260 | + typescript: 4.6.2 | |
2717 | 2261 | transitivePeerDependencies: |
2718 | 2262 | - supports-color |
2719 | - - typescript | |
2720 | 2263 | dev: true |
2721 | 2264 | |
2722 | - /@typescript-eslint/experimental-utils/5.8.1_eslint@8.5.0+typescript@4.5.4: | |
2723 | - resolution: {integrity: sha512-fbodVnjIDU4JpeXWRDsG5IfIjYBxEvs8EBO8W1+YVdtrc2B9ppfof5sZhVEDOtgTfFHnYQJDI8+qdqLYO4ceww==} | |
2265 | + /@typescript-eslint/scope-manager/5.15.0: | |
2266 | + resolution: {integrity: sha512-EFiZcSKrHh4kWk0pZaa+YNJosvKE50EnmN4IfgjkA3bTHElPtYcd2U37QQkNTqwMCS7LXeDeZzEqnsOH8chjSg==} | |
2724 | 2267 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2725 | - peerDependencies: | |
2726 | - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 | |
2727 | 2268 | dependencies: |
2728 | - '@types/json-schema': 7.0.9 | |
2729 | - '@typescript-eslint/scope-manager': 5.8.1 | |
2730 | - '@typescript-eslint/types': 5.8.1 | |
2731 | - '@typescript-eslint/typescript-estree': 5.8.1_typescript@4.5.4 | |
2732 | - eslint: 8.5.0 | |
2733 | - eslint-scope: 5.1.1 | |
2734 | - eslint-utils: 3.0.0_eslint@8.5.0 | |
2735 | - transitivePeerDependencies: | |
2736 | - - supports-color | |
2737 | - - typescript | |
2269 | + '@typescript-eslint/types': 5.15.0 | |
2270 | + '@typescript-eslint/visitor-keys': 5.15.0 | |
2738 | 2271 | dev: true |
2739 | 2272 | |
2740 | - /@typescript-eslint/parser/5.8.1_eslint@8.5.0+typescript@4.5.4: | |
2741 | - resolution: {integrity: sha512-K1giKHAjHuyB421SoXMXFHHVI4NdNY603uKw92++D3qyxSeYvC10CBJ/GE5Thpo4WTUvu1mmJI2/FFkz38F2Gw==} | |
2273 | + /@typescript-eslint/type-utils/5.15.0_eslint@8.11.0+typescript@4.6.2: | |
2274 | + resolution: {integrity: sha512-KGeDoEQ7gHieLydujGEFLyLofipe9PIzfvA/41urz4hv+xVxPEbmMQonKSynZ0Ks2xDhJQ4VYjB3DnRiywvKDA==} | |
2742 | 2275 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2743 | 2276 | peerDependencies: |
2744 | - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 | |
2277 | + eslint: '*' | |
2745 | 2278 | typescript: '*' |
2746 | 2279 | peerDependenciesMeta: |
2747 | 2280 | typescript: |
2748 | 2281 | optional: true |
2749 | 2282 | dependencies: |
2750 | - '@typescript-eslint/scope-manager': 5.8.1 | |
2751 | - '@typescript-eslint/types': 5.8.1 | |
2752 | - '@typescript-eslint/typescript-estree': 5.8.1_typescript@4.5.4 | |
2753 | - debug: 4.3.3 | |
2754 | - eslint: 8.5.0 | |
2755 | - typescript: 4.5.4 | |
2283 | + '@typescript-eslint/utils': 5.15.0_eslint@8.11.0+typescript@4.6.2 | |
2284 | + debug: 4.3.4 | |
2285 | + eslint: 8.11.0 | |
2286 | + tsutils: 3.21.0_typescript@4.6.2 | |
2287 | + typescript: 4.6.2 | |
2756 | 2288 | transitivePeerDependencies: |
2757 | 2289 | - supports-color |
2758 | 2290 | dev: true |
2759 | 2291 | |
2760 | - /@typescript-eslint/scope-manager/5.7.0: | |
2761 | - resolution: {integrity: sha512-7mxR520DGq5F7sSSgM0HSSMJ+TFUymOeFRMfUfGFAVBv8BR+Jv1vHgAouYUvWRZeszVBJlLcc9fDdktxb5kmxA==} | |
2762 | - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | |
2763 | - dependencies: | |
2764 | - '@typescript-eslint/types': 5.7.0 | |
2765 | - '@typescript-eslint/visitor-keys': 5.7.0 | |
2766 | - dev: true | |
2767 | - | |
2768 | - /@typescript-eslint/scope-manager/5.8.1: | |
2769 | - resolution: {integrity: sha512-DGxJkNyYruFH3NIZc3PwrzwOQAg7vvgsHsHCILOLvUpupgkwDZdNq/cXU3BjF4LNrCsVg0qxEyWasys5AiJ85Q==} | |
2770 | - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | |
2771 | - dependencies: | |
2772 | - '@typescript-eslint/types': 5.8.1 | |
2773 | - '@typescript-eslint/visitor-keys': 5.8.1 | |
2774 | - dev: true | |
2775 | - | |
2776 | - /@typescript-eslint/types/5.7.0: | |
2777 | - resolution: {integrity: sha512-5AeYIF5p2kAneIpnLFve8g50VyAjq7udM7ApZZ9JYjdPjkz0LvODfuSHIDUVnIuUoxafoWzpFyU7Sqbxgi79mA==} | |
2292 | + /@typescript-eslint/types/5.15.0: | |
2293 | + resolution: {integrity: sha512-yEiTN4MDy23vvsIksrShjNwQl2vl6kJeG9YkVJXjXZnkJElzVK8nfPsWKYxcsGWG8GhurYXP4/KGj3aZAxbeOA==} | |
2778 | 2294 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2779 | 2295 | dev: true |
2780 | 2296 | |
2781 | - /@typescript-eslint/types/5.8.1: | |
2782 | - resolution: {integrity: sha512-L/FlWCCgnjKOLefdok90/pqInkomLnAcF9UAzNr+DSqMC3IffzumHTQTrINXhP1gVp9zlHiYYjvozVZDPleLcA==} | |
2783 | - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | |
2784 | - dev: true | |
2785 | - | |
2786 | - /@typescript-eslint/typescript-estree/5.7.0_typescript@4.5.4: | |
2787 | - resolution: {integrity: sha512-aO1Ql+izMrTnPj5aFFlEJkpD4jRqC4Gwhygu2oHK2wfVQpmOPbyDSveJ+r/NQo+PWV43M6uEAeLVbTi09dFLhg==} | |
2297 | + /@typescript-eslint/typescript-estree/5.15.0_typescript@4.6.2: | |
2298 | + resolution: {integrity: sha512-Hb0e3dGc35b75xLzixM3cSbG1sSbrTBQDfIScqdyvrfJZVEi4XWAT+UL/HMxEdrJNB8Yk28SKxPLtAhfCbBInA==} | |
2788 | 2299 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2789 | 2300 | peerDependencies: |
2790 | 2301 | typescript: '*' |
... | ... | @@ -2792,168 +2303,181 @@ packages: |
2792 | 2303 | typescript: |
2793 | 2304 | optional: true |
2794 | 2305 | dependencies: |
2795 | - '@typescript-eslint/types': 5.7.0 | |
2796 | - '@typescript-eslint/visitor-keys': 5.7.0 | |
2797 | - debug: 4.3.3 | |
2798 | - globby: 11.0.4 | |
2306 | + '@typescript-eslint/types': 5.15.0 | |
2307 | + '@typescript-eslint/visitor-keys': 5.15.0 | |
2308 | + debug: 4.3.4 | |
2309 | + globby: 11.1.0 | |
2799 | 2310 | is-glob: 4.0.3 |
2800 | 2311 | semver: 7.3.5 |
2801 | - tsutils: 3.21.0_typescript@4.5.4 | |
2802 | - typescript: 4.5.4 | |
2312 | + tsutils: 3.21.0_typescript@4.6.2 | |
2313 | + typescript: 4.6.2 | |
2803 | 2314 | transitivePeerDependencies: |
2804 | 2315 | - supports-color |
2805 | 2316 | dev: true |
2806 | 2317 | |
2807 | - /@typescript-eslint/typescript-estree/5.8.1_typescript@4.5.4: | |
2808 | - resolution: {integrity: sha512-26lQ8l8tTbG7ri7xEcCFT9ijU5Fk+sx/KRRyyzCv7MQ+rZZlqiDPtMKWLC8P7o+dtCnby4c+OlxuX1tp8WfafQ==} | |
2318 | + /@typescript-eslint/utils/5.15.0_eslint@8.11.0+typescript@4.6.2: | |
2319 | + resolution: {integrity: sha512-081rWu2IPKOgTOhHUk/QfxuFog8m4wxW43sXNOMSCdh578tGJ1PAaWPsj42LOa7pguh173tNlMigsbrHvh/mtA==} | |
2809 | 2320 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2810 | 2321 | peerDependencies: |
2811 | - typescript: '*' | |
2812 | - peerDependenciesMeta: | |
2813 | - typescript: | |
2814 | - optional: true | |
2322 | + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 | |
2815 | 2323 | dependencies: |
2816 | - '@typescript-eslint/types': 5.8.1 | |
2817 | - '@typescript-eslint/visitor-keys': 5.8.1 | |
2818 | - debug: 4.3.3 | |
2819 | - globby: 11.0.4 | |
2820 | - is-glob: 4.0.3 | |
2821 | - semver: 7.3.5 | |
2822 | - tsutils: 3.21.0_typescript@4.5.4 | |
2823 | - typescript: 4.5.4 | |
2324 | + '@types/json-schema': 7.0.10 | |
2325 | + '@typescript-eslint/scope-manager': 5.15.0 | |
2326 | + '@typescript-eslint/types': 5.15.0 | |
2327 | + '@typescript-eslint/typescript-estree': 5.15.0_typescript@4.6.2 | |
2328 | + eslint: 8.11.0 | |
2329 | + eslint-scope: 5.1.1 | |
2330 | + eslint-utils: 3.0.0_eslint@8.11.0 | |
2824 | 2331 | transitivePeerDependencies: |
2825 | 2332 | - supports-color |
2333 | + - typescript | |
2826 | 2334 | dev: true |
2827 | 2335 | |
2828 | - /@typescript-eslint/visitor-keys/5.7.0: | |
2829 | - resolution: {integrity: sha512-hdohahZ4lTFcglZSJ3DGdzxQHBSxsLVqHzkiOmKi7xVAWC4y2c1bIMKmPJSrA4aOEoRUPOKQ87Y/taC7yVHpFg==} | |
2830 | - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | |
2831 | - dependencies: | |
2832 | - '@typescript-eslint/types': 5.7.0 | |
2833 | - eslint-visitor-keys: 3.1.0 | |
2834 | - dev: true | |
2835 | - | |
2836 | - /@typescript-eslint/visitor-keys/5.8.1: | |
2837 | - resolution: {integrity: sha512-SWgiWIwocK6NralrJarPZlWdr0hZnj5GXHIgfdm8hNkyKvpeQuFyLP6YjSIe9kf3YBIfU6OHSZLYkQ+smZwtNg==} | |
2336 | + /@typescript-eslint/visitor-keys/5.15.0: | |
2337 | + resolution: {integrity: sha512-+vX5FKtgvyHbmIJdxMJ2jKm9z2BIlXJiuewI8dsDYMp5LzPUcuTT78Ya5iwvQg3VqSVdmxyM8Anj1Jeq7733ZQ==} | |
2838 | 2338 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
2839 | 2339 | dependencies: |
2840 | - '@typescript-eslint/types': 5.8.1 | |
2841 | - eslint-visitor-keys: 3.1.0 | |
2340 | + '@typescript-eslint/types': 5.15.0 | |
2341 | + eslint-visitor-keys: 3.3.0 | |
2842 | 2342 | dev: true |
2843 | 2343 | |
2844 | - /@vitejs/plugin-legacy/1.6.4_vite@2.7.8: | |
2845 | - resolution: {integrity: sha512-geH2F3hTRN++E4n9NZ0JFumxIWUKqW4FA9PAgM7Q6RvUOUUYW4tlURhEmCBYfZSN24H/yX3mEolX+wFVErsAYQ==} | |
2344 | + /@vitejs/plugin-legacy/1.7.1_vite@2.9.0-beta.3: | |
2345 | + resolution: {integrity: sha512-RqgILXsGpfV7NHodVCdBVau8ss5+ynMXp6JGF/F7nhSy0bnwSQPlMS3KFqh7twfifXK8VuMriqfU4CxOiqmNnA==} | |
2846 | 2346 | engines: {node: '>=12.0.0'} |
2847 | 2347 | peerDependencies: |
2848 | - vite: ^2.0.0 | |
2348 | + vite: ^2.8.0 | |
2849 | 2349 | dependencies: |
2850 | - '@babel/standalone': 7.16.4 | |
2851 | - core-js: 3.19.1 | |
2852 | - magic-string: 0.25.7 | |
2350 | + '@babel/standalone': 7.17.7 | |
2351 | + core-js: 3.21.1 | |
2352 | + magic-string: 0.25.9 | |
2853 | 2353 | regenerator-runtime: 0.13.9 |
2854 | - systemjs: 6.11.0 | |
2855 | - vite: 2.7.8_less@4.1.2 | |
2354 | + systemjs: 6.12.1 | |
2355 | + vite: 2.9.0-beta.3_less@4.1.2 | |
2856 | 2356 | dev: true |
2857 | 2357 | |
2858 | - /@vitejs/plugin-vue-jsx/1.3.3: | |
2859 | - resolution: {integrity: sha512-VSBXVqMcxbgX85rgJC1eMWuZ9hzOJhWPvGYlKxyymPokE/i3Gykh5ljkCoNdxnKgIyFqv4WutYoYY93fgjbTxA==} | |
2358 | + /@vitejs/plugin-vue-jsx/1.3.8: | |
2359 | + resolution: {integrity: sha512-gPtie8IM7G5OI2O2/Xwk/oYjnw2gKBzayVuEOM5Jx65KmpVcW444F+H7IsIMduvAgwLQPEYMGiO1V8dBgk7qog==} | |
2860 | 2360 | engines: {node: '>=12.0.0'} |
2861 | 2361 | dependencies: |
2862 | - '@babel/core': 7.16.5 | |
2863 | - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.16.5 | |
2864 | - '@babel/plugin-transform-typescript': 7.16.1_@babel+core@7.16.5 | |
2865 | - '@rollup/pluginutils': 4.1.2 | |
2866 | - '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.16.5 | |
2362 | + '@babel/core': 7.17.7 | |
2363 | + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.17.7 | |
2364 | + '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.17.7 | |
2365 | + '@rollup/pluginutils': 4.2.0 | |
2366 | + '@vue/babel-plugin-jsx': 1.1.1_@babel+core@7.17.7 | |
2867 | 2367 | hash-sum: 2.0.0 |
2868 | 2368 | transitivePeerDependencies: |
2869 | 2369 | - supports-color |
2870 | 2370 | dev: true |
2871 | 2371 | |
2872 | - /@vitejs/plugin-vue/2.0.1_vite@2.7.8+vue@3.2.26: | |
2873 | - resolution: {integrity: sha512-wtdMnGVvys9K8tg+DxowU1ytTrdVveXr3LzdhaKakysgGXyrsfaeds2cDywtvujEASjWOwWL/OgWM+qoeM8Plg==} | |
2372 | + /@vitejs/plugin-vue/2.2.4_vite@2.9.0-beta.3+vue@3.2.31: | |
2373 | + resolution: {integrity: sha512-ev9AOlp0ljCaDkFZF3JwC/pD2N4Hh+r5srl5JHM6BKg5+99jiiK0rE/XaRs3pVm1wzyKkjUy/StBSoXX5fFzcw==} | |
2874 | 2374 | engines: {node: '>=12.0.0'} |
2875 | 2375 | peerDependencies: |
2876 | 2376 | vite: ^2.5.10 |
2877 | 2377 | vue: ^3.2.25 |
2878 | 2378 | dependencies: |
2879 | - vite: 2.7.8_less@4.1.2 | |
2880 | - vue: 3.2.26 | |
2379 | + vite: 2.9.0-beta.3_less@4.1.2 | |
2380 | + vue: 3.2.31 | |
2881 | 2381 | dev: true |
2882 | 2382 | |
2883 | - /@volar/code-gen/0.30.1: | |
2884 | - resolution: {integrity: sha512-qPT0ZGzLaaUArZ1b5qcso2GAFpgjxsPDRXnq0lgsSOpNO6lXJN5ZcWzFZXYPjMJSV1Rkm0ehK5tSUD+sD+pPWg==} | |
2383 | + /@volar/code-gen/0.33.2: | |
2384 | + resolution: {integrity: sha512-PByxCupmCcMZwIL6KIkKzxGV6edxrckYnxQ6lMx9XC1wqBgtHPAHtLF+mAeqBxLRetMbhIb3lIswQEy+T+OmLg==} | |
2885 | 2385 | dependencies: |
2886 | - '@volar/shared': 0.30.1 | |
2887 | - '@volar/source-map': 0.30.1 | |
2386 | + '@volar/shared': 0.33.2 | |
2387 | + '@volar/source-map': 0.33.2 | |
2888 | 2388 | dev: true |
2889 | 2389 | |
2890 | - /@volar/html2pug/0.30.1: | |
2891 | - resolution: {integrity: sha512-ojJPrb4qSLrVNl9LTtdjZ5MFyeHmwJK4OVPTgFc/lyQ94nPS9JHba86SaTwDb2XEgiXBWQVEo12bRr3lW9H2+Q==} | |
2390 | + /@volar/pug-language-service/0.33.2: | |
2391 | + resolution: {integrity: sha512-Kv8pPsI+y2cyKyZEETdtmmNBT+Yu5+SqDxAjs5VvNhQ+R6Sjo1rr45h3ey+XqlE9ABSXIMECGefsabOAI1h0bA==} | |
2892 | 2392 | dependencies: |
2893 | - domelementtype: 2.2.0 | |
2894 | - domhandler: 4.2.2 | |
2895 | - htmlparser2: 7.2.0 | |
2896 | - pug: 3.0.2 | |
2393 | + '@volar/code-gen': 0.33.2 | |
2394 | + '@volar/shared': 0.33.2 | |
2395 | + '@volar/source-map': 0.33.2 | |
2396 | + '@volar/transforms': 0.33.2 | |
2397 | + pug-lexer: 5.0.1 | |
2398 | + pug-parser: 6.0.0 | |
2399 | + vscode-languageserver-textdocument: 1.0.4 | |
2400 | + vscode-languageserver-types: 3.17.0-next.9 | |
2897 | 2401 | dev: true |
2898 | 2402 | |
2899 | - /@volar/shared/0.30.1: | |
2900 | - resolution: {integrity: sha512-6F5yQYeN+gbXAKplxHDvj4Ei+rHCjNhwkfZnGpaSpEU92uSI2vK/HfEdd/zTKdAZpwz0RjliNuFoXLi6umtQ0w==} | |
2403 | + /@volar/shared/0.33.2: | |
2404 | + resolution: {integrity: sha512-WTJItfRhLGwHkKwUH0LnyQXNzLFmqdyA9QZEXSgVOst0MKzExhFvuxbZX7BX6VVidYiekoKLZ6GooslSjxzVIA==} | |
2901 | 2405 | dependencies: |
2902 | 2406 | upath: 2.0.1 |
2903 | - vscode-jsonrpc: 8.0.0-next.4 | |
2904 | - vscode-uri: 3.0.2 | |
2407 | + vscode-html-languageservice: 4.2.2 | |
2408 | + vscode-jsonrpc: 8.0.0-next.7 | |
2409 | + vscode-uri: 3.0.3 | |
2905 | 2410 | dev: true |
2906 | 2411 | |
2907 | - /@volar/source-map/0.30.1: | |
2908 | - resolution: {integrity: sha512-QGi36KBGHZ4gq81jPSi3W2wRcpso9Apd59AZOv/H98k5hU9zo8wA5hwartZHiybTlT1q/0Yno3agSj+vK2vocw==} | |
2412 | + /@volar/source-map/0.33.2: | |
2413 | + resolution: {integrity: sha512-ZT+t0wqMDl0sQ4wxmXL0yeE1VsFoAj/984XuGdb4TDTD4bKh9iwARNr/B+az4IZUJQrMeHx/YNr3yYUdwRZkKA==} | |
2909 | 2414 | dependencies: |
2910 | - '@volar/shared': 0.30.1 | |
2415 | + '@volar/shared': 0.33.2 | |
2416 | + vscode-languageserver-textdocument: 1.0.4 | |
2911 | 2417 | dev: true |
2912 | 2418 | |
2913 | - /@volar/transforms/0.30.1: | |
2914 | - resolution: {integrity: sha512-dWFyfQGLoZ8LZI93zud0c5uoCdlkwDBi90G/XaaKfXxkX+3eiJrM0lJ/d1Nc0L04t9mb28I5hpVK68vH90+Tlw==} | |
2419 | + /@volar/transforms/0.33.2: | |
2420 | + resolution: {integrity: sha512-dcIGlxaZ5CmGYhc7e1huVQx9nMF5m6GVwvaP+c4XrYtHyISUl2GpIFvIlxWfqE2FUytyabUyrTkYK+Kv6Shd5g==} | |
2915 | 2421 | dependencies: |
2916 | - '@volar/shared': 0.30.1 | |
2917 | - vscode-languageserver: 8.0.0-next.5 | |
2422 | + '@volar/shared': 0.33.2 | |
2423 | + vscode-languageserver-types: 3.17.0-next.9 | |
2918 | 2424 | dev: true |
2919 | 2425 | |
2920 | - /@volar/vue-code-gen/0.30.1: | |
2921 | - resolution: {integrity: sha512-+0egr84YOYLudP6jRXRm+xtAL92GTPaq0U0lsorLTBp/MB14Fap6HMUr/LEeNB5tnND36UQJiUWHM5eTDAAb4Q==} | |
2426 | + /@volar/typescript-language-service/0.33.2: | |
2427 | + resolution: {integrity: sha512-jD4XtL89let4ilDSrVI2BB0PiVbqYXmK7ARv8LrkOQTAZlpkNesOaY8BMEDsEg/L3ZBqj48EPPrwmBXNt8PWxQ==} | |
2922 | 2428 | dependencies: |
2923 | - '@volar/code-gen': 0.30.1 | |
2924 | - '@volar/shared': 0.30.1 | |
2925 | - '@volar/source-map': 0.30.1 | |
2926 | - '@vue/compiler-core': 3.2.26 | |
2927 | - '@vue/compiler-dom': 3.2.26 | |
2928 | - '@vue/shared': 3.2.26 | |
2429 | + '@volar/shared': 0.33.2 | |
2430 | + semver: 7.3.5 | |
2929 | 2431 | upath: 2.0.1 |
2432 | + vscode-languageserver-protocol: 3.17.0-next.16 | |
2433 | + vscode-languageserver-textdocument: 1.0.4 | |
2434 | + vscode-nls: 5.0.0 | |
2930 | 2435 | dev: true |
2931 | 2436 | |
2932 | - /@vscode/emmet-helper/2.8.2: | |
2933 | - resolution: {integrity: sha512-A/+pkBYQq2JTow1A2flfTmEOmiF780KpdkoX7VBjQ7wujeA+CFUPd17YdeIa9aim20+J5Jp7SFujPDwVFiQucQ==} | |
2437 | + /@volar/vue-code-gen/0.33.2: | |
2438 | + resolution: {integrity: sha512-Yfvdk3u3x3TFw84/wsxS3QBfkoEB3flqTTG7CsC24C7Ou0DsB66eNaRSDJ/3P/bienFV7e7v0nH1BtqcV2/QPg==} | |
2934 | 2439 | dependencies: |
2935 | - emmet: 2.3.4 | |
2936 | - jsonc-parser: 2.3.1 | |
2937 | - vscode-languageserver-textdocument: 1.0.3 | |
2938 | - vscode-languageserver-types: 3.16.0 | |
2939 | - vscode-nls: 5.0.0 | |
2940 | - vscode-uri: 2.1.2 | |
2440 | + '@volar/code-gen': 0.33.2 | |
2441 | + '@volar/shared': 0.33.2 | |
2442 | + '@volar/source-map': 0.33.2 | |
2443 | + '@vue/compiler-core': 3.2.31 | |
2444 | + '@vue/compiler-dom': 3.2.31 | |
2445 | + '@vue/shared': 3.2.31 | |
2446 | + upath: 2.0.1 | |
2447 | + dev: true | |
2448 | + | |
2449 | + /@volar/vue-typescript/0.33.2: | |
2450 | + resolution: {integrity: sha512-k5Uo0Uw+KgBEzJgUp2vh8qLjTIXXJvEud5yzSbECoKzc+dhOCYfpuZQx5bSNCEaUiRdi99kvekeeWNypQgha+Q==} | |
2451 | + dependencies: | |
2452 | + '@volar/code-gen': 0.33.2 | |
2453 | + '@volar/pug-language-service': 0.33.2 | |
2454 | + '@volar/shared': 0.33.2 | |
2455 | + '@volar/source-map': 0.33.2 | |
2456 | + '@volar/typescript-language-service': 0.33.2 | |
2457 | + '@volar/vue-code-gen': 0.33.2 | |
2458 | + '@vue/reactivity': 3.2.31 | |
2459 | + upath: 2.0.1 | |
2460 | + vscode-css-languageservice: 5.1.13 | |
2461 | + vscode-html-languageservice: 4.2.2 | |
2462 | + vscode-json-languageservice: 4.2.0 | |
2463 | + vscode-languageserver-protocol: 3.17.0-next.16 | |
2464 | + vscode-languageserver-textdocument: 1.0.4 | |
2941 | 2465 | dev: true |
2942 | 2466 | |
2943 | 2467 | /@vue/babel-helper-vue-transform-on/1.0.2: |
2944 | 2468 | resolution: {integrity: sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==} |
2945 | 2469 | dev: true |
2946 | 2470 | |
2947 | - /@vue/babel-plugin-jsx/1.1.1_@babel+core@7.16.5: | |
2471 | + /@vue/babel-plugin-jsx/1.1.1_@babel+core@7.17.7: | |
2948 | 2472 | resolution: {integrity: sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==} |
2949 | 2473 | dependencies: |
2950 | - '@babel/helper-module-imports': 7.16.0 | |
2951 | - '@babel/plugin-syntax-jsx': 7.16.0_@babel+core@7.16.5 | |
2952 | - '@babel/template': 7.16.0 | |
2953 | - '@babel/traverse': 7.16.3 | |
2954 | - '@babel/types': 7.16.0 | |
2474 | + '@babel/helper-module-imports': 7.16.7 | |
2475 | + '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.7 | |
2476 | + '@babel/template': 7.16.7 | |
2477 | + '@babel/traverse': 7.17.3 | |
2478 | + '@babel/types': 7.17.0 | |
2955 | 2479 | '@vue/babel-helper-vue-transform-on': 1.0.2 |
2956 | - camelcase: 6.2.1 | |
2480 | + camelcase: 6.3.0 | |
2957 | 2481 | html-tags: 3.1.0 |
2958 | 2482 | svg-tags: 1.0.0 |
2959 | 2483 | transitivePeerDependencies: |
... | ... | @@ -2961,100 +2485,96 @@ packages: |
2961 | 2485 | - supports-color |
2962 | 2486 | dev: true |
2963 | 2487 | |
2964 | - /@vue/compiler-core/3.2.26: | |
2965 | - resolution: {integrity: sha512-N5XNBobZbaASdzY9Lga2D9Lul5vdCIOXvUMd6ThcN8zgqQhPKfCV+wfAJNNJKQkSHudnYRO2gEB+lp0iN3g2Tw==} | |
2488 | + /@vue/compiler-core/3.2.31: | |
2489 | + resolution: {integrity: sha512-aKno00qoA4o+V/kR6i/pE+aP+esng5siNAVQ422TkBNM6qA4veXiZbSe8OTXHXquEi/f6Akc+nLfB4JGfe4/WQ==} | |
2966 | 2490 | dependencies: |
2967 | - '@babel/parser': 7.16.4 | |
2968 | - '@vue/shared': 3.2.26 | |
2491 | + '@babel/parser': 7.17.7 | |
2492 | + '@vue/shared': 3.2.31 | |
2969 | 2493 | estree-walker: 2.0.2 |
2970 | 2494 | source-map: 0.6.1 |
2971 | 2495 | |
2972 | - /@vue/compiler-dom/3.2.26: | |
2973 | - resolution: {integrity: sha512-smBfaOW6mQDxcT3p9TKT6mE22vjxjJL50GFVJiI0chXYGU/xzC05QRGrW3HHVuJrmLTLx5zBhsZ2dIATERbarg==} | |
2496 | + /@vue/compiler-dom/3.2.31: | |
2497 | + resolution: {integrity: sha512-60zIlFfzIDf3u91cqfqy9KhCKIJgPeqxgveH2L+87RcGU/alT6BRrk5JtUso0OibH3O7NXuNOQ0cDc9beT0wrg==} | |
2974 | 2498 | dependencies: |
2975 | - '@vue/compiler-core': 3.2.26 | |
2976 | - '@vue/shared': 3.2.26 | |
2499 | + '@vue/compiler-core': 3.2.31 | |
2500 | + '@vue/shared': 3.2.31 | |
2977 | 2501 | |
2978 | - /@vue/compiler-sfc/3.2.26: | |
2979 | - resolution: {integrity: sha512-ePpnfktV90UcLdsDQUh2JdiTuhV0Skv2iYXxfNMOK/F3Q+2BO0AulcVcfoksOpTJGmhhfosWfMyEaEf0UaWpIw==} | |
2502 | + /@vue/compiler-sfc/3.2.31: | |
2503 | + resolution: {integrity: sha512-748adc9msSPGzXgibHiO6T7RWgfnDcVQD+VVwYgSsyyY8Ans64tALHZANrKtOzvkwznV/F4H7OAod/jIlp/dkQ==} | |
2980 | 2504 | dependencies: |
2981 | - '@babel/parser': 7.16.4 | |
2982 | - '@vue/compiler-core': 3.2.26 | |
2983 | - '@vue/compiler-dom': 3.2.26 | |
2984 | - '@vue/compiler-ssr': 3.2.26 | |
2985 | - '@vue/reactivity-transform': 3.2.26 | |
2986 | - '@vue/shared': 3.2.26 | |
2505 | + '@babel/parser': 7.17.7 | |
2506 | + '@vue/compiler-core': 3.2.31 | |
2507 | + '@vue/compiler-dom': 3.2.31 | |
2508 | + '@vue/compiler-ssr': 3.2.31 | |
2509 | + '@vue/reactivity-transform': 3.2.31 | |
2510 | + '@vue/shared': 3.2.31 | |
2987 | 2511 | estree-walker: 2.0.2 |
2988 | - magic-string: 0.25.7 | |
2989 | - postcss: 8.4.5 | |
2512 | + magic-string: 0.25.9 | |
2513 | + postcss: 8.4.12 | |
2990 | 2514 | source-map: 0.6.1 |
2991 | 2515 | |
2992 | - /@vue/compiler-ssr/3.2.26: | |
2993 | - resolution: {integrity: sha512-2mywLX0ODc4Zn8qBoA2PDCsLEZfpUGZcyoFRLSOjyGGK6wDy2/5kyDOWtf0S0UvtoyVq95OTSGIALjZ4k2q/ag==} | |
2516 | + /@vue/compiler-ssr/3.2.31: | |
2517 | + resolution: {integrity: sha512-mjN0rqig+A8TVDnsGPYJM5dpbjlXeHUm2oZHZwGyMYiGT/F4fhJf/cXy8QpjnLQK4Y9Et4GWzHn9PS8AHUnSkw==} | |
2994 | 2518 | dependencies: |
2995 | - '@vue/compiler-dom': 3.2.26 | |
2996 | - '@vue/shared': 3.2.26 | |
2997 | - | |
2998 | - /@vue/devtools-api/6.0.0-beta.20.1: | |
2999 | - resolution: {integrity: sha512-R2rfiRY+kZugzWh9ZyITaovx+jpU4vgivAEAiz80kvh3yviiTU3CBuGuyWpSwGz9/C7TkSWVM/FtQRGlZ16n8Q==} | |
3000 | - dev: false | |
2519 | + '@vue/compiler-dom': 3.2.31 | |
2520 | + '@vue/shared': 3.2.31 | |
3001 | 2521 | |
3002 | - /@vue/devtools-api/6.0.0-beta.21.1: | |
3003 | - resolution: {integrity: sha512-FqC4s3pm35qGVeXRGOjTsRzlkJjrBLriDS9YXbflHLsfA9FrcKzIyWnLXoNm+/7930E8rRakXuAc2QkC50swAw==} | |
2522 | + /@vue/devtools-api/6.1.3: | |
2523 | + resolution: {integrity: sha512-79InfO2xHv+WHIrH1bHXQUiQD/wMls9qBk6WVwGCbdwP7/3zINtvqPNMtmSHXsIKjvUAHc8L0ouOj6ZQQRmcXg==} | |
3004 | 2524 | dev: false |
3005 | 2525 | |
3006 | - /@vue/reactivity-transform/3.2.26: | |
3007 | - resolution: {integrity: sha512-XKMyuCmzNA7nvFlYhdKwD78rcnmPb7q46uoR00zkX6yZrUmcCQ5OikiwUEVbvNhL5hBJuvbSO95jB5zkUon+eQ==} | |
2526 | + /@vue/reactivity-transform/3.2.31: | |
2527 | + resolution: {integrity: sha512-uS4l4z/W7wXdI+Va5pgVxBJ345wyGFKvpPYtdSgvfJfX/x2Ymm6ophQlXXB6acqGHtXuBqNyyO3zVp9b1r0MOA==} | |
3008 | 2528 | dependencies: |
3009 | - '@babel/parser': 7.16.4 | |
3010 | - '@vue/compiler-core': 3.2.26 | |
3011 | - '@vue/shared': 3.2.26 | |
2529 | + '@babel/parser': 7.17.7 | |
2530 | + '@vue/compiler-core': 3.2.31 | |
2531 | + '@vue/shared': 3.2.31 | |
3012 | 2532 | estree-walker: 2.0.2 |
3013 | - magic-string: 0.25.7 | |
2533 | + magic-string: 0.25.9 | |
3014 | 2534 | |
3015 | - /@vue/reactivity/3.2.26: | |
3016 | - resolution: {integrity: sha512-h38bxCZLW6oFJVDlCcAiUKFnXI8xP8d+eO0pcDxx+7dQfSPje2AO6M9S9QO6MrxQB7fGP0DH0dYQ8ksf6hrXKQ==} | |
2535 | + /@vue/reactivity/3.2.31: | |
2536 | + resolution: {integrity: sha512-HVr0l211gbhpEKYr2hYe7hRsV91uIVGFYNHj73njbARVGHQvIojkImKMaZNDdoDZOIkMsBc9a1sMqR+WZwfSCw==} | |
3017 | 2537 | dependencies: |
3018 | - '@vue/shared': 3.2.26 | |
2538 | + '@vue/shared': 3.2.31 | |
3019 | 2539 | |
3020 | - /@vue/runtime-core/3.2.26: | |
3021 | - resolution: {integrity: sha512-BcYi7qZ9Nn+CJDJrHQ6Zsmxei2hDW0L6AB4vPvUQGBm2fZyC0GXd/4nVbyA2ubmuhctD5RbYY8L+5GUJszv9mQ==} | |
2540 | + /@vue/runtime-core/3.2.31: | |
2541 | + resolution: {integrity: sha512-Kcog5XmSY7VHFEMuk4+Gap8gUssYMZ2+w+cmGI6OpZWYOEIcbE0TPzzPHi+8XTzAgx1w/ZxDFcXhZeXN5eKWsA==} | |
3022 | 2542 | dependencies: |
3023 | - '@vue/reactivity': 3.2.26 | |
3024 | - '@vue/shared': 3.2.26 | |
2543 | + '@vue/reactivity': 3.2.31 | |
2544 | + '@vue/shared': 3.2.31 | |
3025 | 2545 | dev: false |
3026 | 2546 | |
3027 | - /@vue/runtime-dom/3.2.26: | |
3028 | - resolution: {integrity: sha512-dY56UIiZI+gjc4e8JQBwAifljyexfVCkIAu/WX8snh8vSOt/gMSEGwPRcl2UpYpBYeyExV8WCbgvwWRNt9cHhQ==} | |
2547 | + /@vue/runtime-dom/3.2.31: | |
2548 | + resolution: {integrity: sha512-N+o0sICVLScUjfLG7u9u5XCjvmsexAiPt17GNnaWHJUfsKed5e85/A3SWgKxzlxx2SW/Hw7RQxzxbXez9PtY3g==} | |
3029 | 2549 | dependencies: |
3030 | - '@vue/runtime-core': 3.2.26 | |
3031 | - '@vue/shared': 3.2.26 | |
3032 | - csstype: 2.6.19 | |
2550 | + '@vue/runtime-core': 3.2.31 | |
2551 | + '@vue/shared': 3.2.31 | |
2552 | + csstype: 2.6.20 | |
3033 | 2553 | dev: false |
3034 | 2554 | |
3035 | - /@vue/server-renderer/3.2.26_vue@3.2.26: | |
3036 | - resolution: {integrity: sha512-Jp5SggDUvvUYSBIvYEhy76t4nr1vapY/FIFloWmQzn7UxqaHrrBpbxrqPcTrSgGrcaglj0VBp22BKJNre4aA1w==} | |
2555 | + /@vue/server-renderer/3.2.31_vue@3.2.31: | |
2556 | + resolution: {integrity: sha512-8CN3Zj2HyR2LQQBHZ61HexF5NReqngLT3oahyiVRfSSvak+oAvVmu8iNLSu6XR77Ili2AOpnAt1y8ywjjqtmkg==} | |
3037 | 2557 | peerDependencies: |
3038 | - vue: 3.2.26 | |
2558 | + vue: 3.2.31 | |
3039 | 2559 | dependencies: |
3040 | - '@vue/compiler-ssr': 3.2.26 | |
3041 | - '@vue/shared': 3.2.26 | |
3042 | - vue: 3.2.26 | |
2560 | + '@vue/compiler-ssr': 3.2.31 | |
2561 | + '@vue/shared': 3.2.31 | |
2562 | + vue: 3.2.31 | |
3043 | 2563 | dev: false |
3044 | 2564 | |
3045 | - /@vue/shared/3.2.26: | |
3046 | - resolution: {integrity: sha512-vPV6Cq+NIWbH5pZu+V+2QHE9y1qfuTq49uNWw4f7FDEeZaDU2H2cx5jcUZOAKW7qTrUS4k6qZPbMy1x4N96nbA==} | |
2565 | + /@vue/shared/3.2.31: | |
2566 | + resolution: {integrity: sha512-ymN2pj6zEjiKJZbrf98UM2pfDd6F2H7ksKw7NDt/ZZ1fh5Ei39X5tABugtT03ZRlWd9imccoK0hE8hpjpU7irQ==} | |
3047 | 2567 | |
3048 | - /@vue/test-utils/2.0.0-rc.18_vue@3.2.26: | |
2568 | + /@vue/test-utils/2.0.0-rc.18_vue@3.2.31: | |
3049 | 2569 | resolution: {integrity: sha512-aifolXjVdsogjaLmDoZ0FU8vN+R67aWmg9OuVeED4w5Ij5GFQLrlhM19uhWe/r5xXUL4fXMk3pX5wW6FJP1NcQ==} |
3050 | 2570 | peerDependencies: |
3051 | 2571 | vue: ^3.0.1 |
3052 | 2572 | dependencies: |
3053 | - vue: 3.2.26 | |
2573 | + vue: 3.2.31 | |
3054 | 2574 | dev: true |
3055 | 2575 | |
3056 | - /@vueuse/core/7.4.1_vue@3.2.26: | |
3057 | - resolution: {integrity: sha512-8UeLPCAieeQLXFHF1/28SIEK6ILLPb/4hp03hR+xkXF00gB/YUp0CEVcRAL9uQ8HTZa3S2T/jTISMc1ZjilM0A==} | |
2576 | + /@vueuse/core/8.1.1_vue@3.2.31: | |
2577 | + resolution: {integrity: sha512-NmpizOcQXW0OHV0qa6YwFtw5hQBe0RxMuxQoIIbCa6jRT16MTweFPecIM6VgA1e5vZJtAO7p//TgLSpzi3joZQ==} | |
3058 | 2578 | peerDependencies: |
3059 | 2579 | '@vue/composition-api': ^1.1.0 |
3060 | 2580 | vue: ^2.6.0 || ^3.2.0 |
... | ... | @@ -3064,13 +2584,18 @@ packages: |
3064 | 2584 | vue: |
3065 | 2585 | optional: true |
3066 | 2586 | dependencies: |
3067 | - '@vueuse/shared': 7.4.1_vue@3.2.26 | |
3068 | - vue: 3.2.26 | |
3069 | - vue-demi: 0.12.1_vue@3.2.26 | |
2587 | + '@vueuse/metadata': 8.1.1 | |
2588 | + '@vueuse/shared': 8.1.1_vue@3.2.31 | |
2589 | + vue: 3.2.31 | |
2590 | + vue-demi: 0.12.4_vue@3.2.31 | |
3070 | 2591 | dev: false |
3071 | 2592 | |
3072 | - /@vueuse/shared/7.4.1_vue@3.2.26: | |
3073 | - resolution: {integrity: sha512-Pzb7XoHIcgPwwBJ5Ow9lZb0HTDyaLDV3pgxKauPGTMN9qvEylG06kUG+VTjJXkPsRtiGu46di8XyFeMw2dongA==} | |
2593 | + /@vueuse/metadata/8.1.1: | |
2594 | + resolution: {integrity: sha512-TSmA3UaSmBcV8pJ7fnHAL7NjSE1RQZlpJklg6YysFxwxDb0MZlo+Q8j9U1hLBZT1fnAjwZMaoxilanHN8ZwugQ==} | |
2595 | + dev: false | |
2596 | + | |
2597 | + /@vueuse/shared/8.1.1_vue@3.2.31: | |
2598 | + resolution: {integrity: sha512-lWRcK8W9+q1t1XMxW9JIljXFQLIViInTOEF7wUHcISQNAYwHtHgr0z+U5SRM8tA4eJd/dVs/2BV1/z2DG7aKEg==} | |
3074 | 2599 | peerDependencies: |
3075 | 2600 | '@vue/composition-api': ^1.1.0 |
3076 | 2601 | vue: ^2.6.0 || ^3.2.0 |
... | ... | @@ -3080,36 +2605,38 @@ packages: |
3080 | 2605 | vue: |
3081 | 2606 | optional: true |
3082 | 2607 | dependencies: |
3083 | - vue: 3.2.26 | |
3084 | - vue-demi: 0.12.1_vue@3.2.26 | |
2608 | + vue: 3.2.31 | |
2609 | + vue-demi: 0.12.4_vue@3.2.31 | |
3085 | 2610 | dev: false |
3086 | 2611 | |
3087 | - /@windicss/config/1.6.1: | |
3088 | - resolution: {integrity: sha512-E4FKtWdYl5HwFknBQ+Z2JIF58TZiR4/ZiP8B30sfRxNlG6clh4agn5MJqTb4ER0MLkDb30Hugl2tGun0AQNbFw==} | |
2612 | + /@windicss/config/1.8.3: | |
2613 | + resolution: {integrity: sha512-1fvfZhRD7WfV/Xh6uIAYKIdbQWrwEgSdkFlHiLPzMDS44KjwNZILDzLAz9Y2W5H2K4MLGgGMnzGS89ECyjc0Ww==} | |
3089 | 2614 | dependencies: |
3090 | - debug: 4.3.3 | |
3091 | - jiti: 1.12.9 | |
3092 | - windicss: 3.4.1 | |
2615 | + debug: 4.3.4 | |
2616 | + jiti: 1.13.0 | |
2617 | + windicss: 3.5.1 | |
3093 | 2618 | transitivePeerDependencies: |
3094 | 2619 | - supports-color |
3095 | 2620 | dev: true |
3096 | 2621 | |
3097 | - /@windicss/plugin-utils/1.6.1: | |
3098 | - resolution: {integrity: sha512-hFQY27bOr9SSpekIvSwBpIX25nR4cwrU5/1kJFqCwAzqyazvd7U9c/iI1E2sTEQOkPbpTTJkY2Act21Q70oSDQ==} | |
2622 | + /@windicss/plugin-utils/1.8.3: | |
2623 | + resolution: {integrity: sha512-emlMeDt73uNV1ZofLTDogcxqL9aZ5uIRYkjeHlrWiaDozFbX6Jc+a6eRo9Ieaar3JUryl6AnecTPHAiFDl4IXg==} | |
3099 | 2624 | dependencies: |
3100 | - '@antfu/utils': 0.3.0 | |
3101 | - '@windicss/config': 1.6.1 | |
3102 | - debug: 4.3.3 | |
3103 | - fast-glob: 3.2.7 | |
3104 | - magic-string: 0.25.7 | |
2625 | + '@antfu/utils': 0.5.0 | |
2626 | + '@windicss/config': 1.8.3 | |
2627 | + debug: 4.3.4 | |
2628 | + fast-glob: 3.2.11 | |
2629 | + magic-string: 0.25.9 | |
3105 | 2630 | micromatch: 4.0.4 |
3106 | - windicss: 3.4.1 | |
2631 | + windicss: 3.5.1 | |
3107 | 2632 | transitivePeerDependencies: |
3108 | 2633 | - supports-color |
3109 | 2634 | dev: true |
3110 | 2635 | |
3111 | - /@zxcvbn-ts/core/1.2.0: | |
3112 | - resolution: {integrity: sha512-zaGUGolat04MB1ImVMbP8o7uDytKRLahZO6VSWeW6tK+tko6vHMl/eNsdKWSSWG7OR45BeUy7nBvFg79HYSdGA==} | |
2636 | + /@zxcvbn-ts/core/2.0.1: | |
2637 | + resolution: {integrity: sha512-i3viYattwORK5liqS/d9WaIWSLki75oKVog5Elg9Ls9d8L6zKLwpAkj6PT/P4LZqJHIVRPnKjgajpP6SLerr6Q==} | |
2638 | + dependencies: | |
2639 | + fastest-levenshtein: 1.0.12 | |
3113 | 2640 | dev: false |
3114 | 2641 | |
3115 | 2642 | /JSONStream/1.3.5: |
... | ... | @@ -3120,28 +2647,12 @@ packages: |
3120 | 2647 | through: 2.3.8 |
3121 | 2648 | dev: true |
3122 | 2649 | |
3123 | - /abab/2.0.5: | |
3124 | - resolution: {integrity: sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==} | |
3125 | - dev: true | |
3126 | - | |
3127 | - /acorn-globals/6.0.0: | |
3128 | - resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==} | |
3129 | - dependencies: | |
3130 | - acorn: 7.4.1 | |
3131 | - acorn-walk: 7.2.0 | |
3132 | - dev: true | |
3133 | - | |
3134 | - /acorn-jsx/5.3.2_acorn@8.6.0: | |
2650 | + /acorn-jsx/5.3.2_acorn@8.7.0: | |
3135 | 2651 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} |
3136 | 2652 | peerDependencies: |
3137 | 2653 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 |
3138 | 2654 | dependencies: |
3139 | - acorn: 8.6.0 | |
3140 | - dev: true | |
3141 | - | |
3142 | - /acorn-walk/7.2.0: | |
3143 | - resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} | |
3144 | - engines: {node: '>=0.4.0'} | |
2655 | + acorn: 8.7.0 | |
3145 | 2656 | dev: true |
3146 | 2657 | |
3147 | 2658 | /acorn-walk/8.2.0: |
... | ... | @@ -3155,8 +2666,8 @@ packages: |
3155 | 2666 | hasBin: true |
3156 | 2667 | dev: true |
3157 | 2668 | |
3158 | - /acorn/8.6.0: | |
3159 | - resolution: {integrity: sha512-U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw==} | |
2669 | + /acorn/8.7.0: | |
2670 | + resolution: {integrity: sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==} | |
3160 | 2671 | engines: {node: '>=0.4.0'} |
3161 | 2672 | hasBin: true |
3162 | 2673 | dev: true |
... | ... | @@ -3165,15 +2676,6 @@ packages: |
3165 | 2676 | resolution: {integrity: sha1-anmQQ3ynNtXhKI25K9MmbV9csqo=} |
3166 | 2677 | dev: true |
3167 | 2678 | |
3168 | - /adler-32/1.2.0: | |
3169 | - resolution: {integrity: sha1-aj5r8KY5ALoVZSgIyxXGgT0aXyU=} | |
3170 | - engines: {node: '>=0.8'} | |
3171 | - hasBin: true | |
3172 | - dependencies: | |
3173 | - exit-on-epipe: 1.0.1 | |
3174 | - printj: 1.1.2 | |
3175 | - dev: false | |
3176 | - | |
3177 | 2679 | /adler-32/1.3.0: |
3178 | 2680 | resolution: {integrity: sha512-f5nltvjl+PRUh6YNfUstRaXwJxtfnKEWhAWWlmKvh+Y3J2+98a0KKVYDEhz6NdKGqswLhjNGznxfSsZGOvOd9g==} |
3179 | 2681 | engines: {node: '>=0.8'} |
... | ... | @@ -3181,15 +2683,6 @@ packages: |
3181 | 2683 | printj: 1.2.3 |
3182 | 2684 | dev: false |
3183 | 2685 | |
3184 | - /agent-base/6.0.2: | |
3185 | - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} | |
3186 | - engines: {node: '>= 6.0.0'} | |
3187 | - dependencies: | |
3188 | - debug: 4.3.3 | |
3189 | - transitivePeerDependencies: | |
3190 | - - supports-color | |
3191 | - dev: true | |
3192 | - | |
3193 | 2686 | /aggregate-error/3.1.0: |
3194 | 2687 | resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} |
3195 | 2688 | engines: {node: '>=8'} |
... | ... | @@ -3207,8 +2700,8 @@ packages: |
3207 | 2700 | uri-js: 4.4.1 |
3208 | 2701 | dev: true |
3209 | 2702 | |
3210 | - /ajv/8.8.2: | |
3211 | - resolution: {integrity: sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw==} | |
2703 | + /ajv/8.10.0: | |
2704 | + resolution: {integrity: sha512-bzqAEZOjkrUMl2afH8dknrq5KEk2SrwdBROR+vH1EKVQTqaUbJVPdc/gEdggTMM0Se+s+Ja4ju4TlNcStKl2Hw==} | |
3212 | 2705 | dependencies: |
3213 | 2706 | fast-deep-equal: 3.1.3 |
3214 | 2707 | json-schema-traverse: 1.0.0 |
... | ... | @@ -3216,11 +2709,6 @@ packages: |
3216 | 2709 | uri-js: 4.4.1 |
3217 | 2710 | dev: true |
3218 | 2711 | |
3219 | - /ansi-colors/4.1.1: | |
3220 | - resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==} | |
3221 | - engines: {node: '>=6'} | |
3222 | - dev: true | |
3223 | - | |
3224 | 2712 | /ansi-escapes/3.2.0: |
3225 | 2713 | resolution: {integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==} |
3226 | 2714 | engines: {node: '>=4'} |
... | ... | @@ -3243,9 +2731,10 @@ packages: |
3243 | 2731 | engines: {node: '>=4'} |
3244 | 2732 | dev: true |
3245 | 2733 | |
3246 | - /ansi-regex/4.1.0: | |
3247 | - resolution: {integrity: sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==} | |
2734 | + /ansi-regex/4.1.1: | |
2735 | + resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==} | |
3248 | 2736 | engines: {node: '>=6'} |
2737 | + dev: true | |
3249 | 2738 | |
3250 | 2739 | /ansi-regex/5.0.1: |
3251 | 2740 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} |
... | ... | @@ -3266,6 +2755,7 @@ packages: |
3266 | 2755 | engines: {node: '>=4'} |
3267 | 2756 | dependencies: |
3268 | 2757 | color-convert: 1.9.3 |
2758 | + dev: true | |
3269 | 2759 | |
3270 | 2760 | /ansi-styles/4.3.0: |
3271 | 2761 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} |
... | ... | @@ -3273,39 +2763,32 @@ packages: |
3273 | 2763 | dependencies: |
3274 | 2764 | color-convert: 2.0.1 |
3275 | 2765 | |
3276 | - /ansi-styles/5.2.0: | |
3277 | - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} | |
3278 | - engines: {node: '>=10'} | |
3279 | - dev: true | |
3280 | - | |
3281 | 2766 | /ansi-styles/6.1.0: |
3282 | 2767 | resolution: {integrity: sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ==} |
3283 | 2768 | engines: {node: '>=12'} |
3284 | 2769 | dev: true |
3285 | 2770 | |
3286 | - /ant-design-vue/3.0.0-beta.3_ae87cbba5ec93a01f3fe1197df446ca3: | |
3287 | - resolution: {integrity: sha512-filLiMc7zk+0l1AZ6nLk5nOil77Tm2M5FJZzS9Ce79z6pSX5mffWL3r8GWe/OAwr0g/SPmefHQfwtNL7/N1smg==} | |
2771 | + /ant-design-vue/3.1.0-rc.1_vue@3.2.31: | |
2772 | + resolution: {integrity: sha512-k9vIYBuYetCqJEGn2pZS9cZsrdseu0uYTxzdmtdsRZjjE+m4l+6EZKis/apFEiL3/tO+phe5ZkveSrHTTN0TJA==} | |
3288 | 2773 | peerDependencies: |
3289 | - '@vue/compiler-sfc': '>=3.1.0' | |
3290 | - vue: '>=3.1.0' | |
2774 | + vue: '>=3.2.0' | |
3291 | 2775 | dependencies: |
3292 | 2776 | '@ant-design/colors': 6.0.0 |
3293 | - '@ant-design/icons-vue': 6.0.1_vue@3.2.26 | |
3294 | - '@babel/runtime': 7.16.3 | |
2777 | + '@ant-design/icons-vue': 6.1.0_vue@3.2.31 | |
2778 | + '@babel/runtime': 7.17.7 | |
3295 | 2779 | '@simonwep/pickr': 1.8.2 |
3296 | - '@vue/compiler-sfc': 3.2.26 | |
3297 | 2780 | array-tree-filter: 2.1.0 |
3298 | 2781 | async-validator: 4.0.7 |
3299 | - dayjs: 1.10.7 | |
2782 | + dayjs: 1.11.0 | |
3300 | 2783 | dom-align: 1.12.2 |
3301 | 2784 | dom-scroll-into-view: 2.0.1 |
3302 | 2785 | lodash: 4.17.21 |
3303 | 2786 | lodash-es: 4.17.21 |
3304 | 2787 | resize-observer-polyfill: 1.5.1 |
3305 | - scroll-into-view-if-needed: 2.2.28 | |
2788 | + scroll-into-view-if-needed: 2.2.29 | |
3306 | 2789 | shallow-equal: 1.2.1 |
3307 | - vue: 3.2.26 | |
3308 | - vue-types: 3.0.2_vue@3.2.26 | |
2790 | + vue: 3.2.31 | |
2791 | + vue-types: 3.0.2_vue@3.2.31 | |
3309 | 2792 | warning: 4.0.3 |
3310 | 2793 | dev: false |
3311 | 2794 | |
... | ... | @@ -3314,7 +2797,7 @@ packages: |
3314 | 2797 | engines: {node: '>= 8'} |
3315 | 2798 | dependencies: |
3316 | 2799 | normalize-path: 3.0.0 |
3317 | - picomatch: 2.3.0 | |
2800 | + picomatch: 2.3.1 | |
3318 | 2801 | dev: true |
3319 | 2802 | |
3320 | 2803 | /arch/2.2.0: |
... | ... | @@ -3332,12 +2815,6 @@ packages: |
3332 | 2815 | resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} |
3333 | 2816 | dev: true |
3334 | 2817 | |
3335 | - /argparse/1.0.10: | |
3336 | - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} | |
3337 | - dependencies: | |
3338 | - sprintf-js: 1.0.3 | |
3339 | - dev: true | |
3340 | - | |
3341 | 2818 | /argparse/2.0.1: |
3342 | 2819 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} |
3343 | 2820 | dev: true |
... | ... | @@ -3385,14 +2862,6 @@ packages: |
3385 | 2862 | engines: {node: '>=0.10.0'} |
3386 | 2863 | dev: true |
3387 | 2864 | |
3388 | - /asap/2.0.6: | |
3389 | - resolution: {integrity: sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=} | |
3390 | - dev: true | |
3391 | - | |
3392 | - /assert-never/1.2.1: | |
3393 | - resolution: {integrity: sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==} | |
3394 | - dev: true | |
3395 | - | |
3396 | 2865 | /assign-symbols/1.0.0: |
3397 | 2866 | resolution: {integrity: sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=} |
3398 | 2867 | engines: {node: '>=0.10.0'} |
... | ... | @@ -3411,10 +2880,6 @@ packages: |
3411 | 2880 | resolution: {integrity: sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=} |
3412 | 2881 | dev: true |
3413 | 2882 | |
3414 | - /asynckit/0.4.0: | |
3415 | - resolution: {integrity: sha1-x57Zf380y48robyXkLzDZkdLS3k=} | |
3416 | - dev: true | |
3417 | - | |
3418 | 2883 | /at-least-node/1.0.0: |
3419 | 2884 | resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} |
3420 | 2885 | engines: {node: '>= 4.0.0'} |
... | ... | @@ -3426,55 +2891,44 @@ packages: |
3426 | 2891 | hasBin: true |
3427 | 2892 | dev: true |
3428 | 2893 | |
3429 | - /autoprefixer/10.4.0_postcss@8.4.5: | |
3430 | - resolution: {integrity: sha512-7FdJ1ONtwzV1G43GDD0kpVMn/qbiNqyOPMFTX5nRffI+7vgWoFEc6DcXOxHJxrWNDXrZh18eDsZjvZGUljSRGA==} | |
2894 | + /autoprefixer/10.4.4_postcss@8.4.12: | |
2895 | + resolution: {integrity: sha512-Tm8JxsB286VweiZ5F0anmbyGiNI3v3wGv3mz9W+cxEDYB/6jbnj6GM9H9mK3wIL8ftgl+C07Lcwb8PG5PCCPzA==} | |
3431 | 2896 | engines: {node: ^10 || ^12 || >=14} |
3432 | 2897 | hasBin: true |
3433 | 2898 | peerDependencies: |
3434 | 2899 | postcss: ^8.1.0 |
3435 | 2900 | dependencies: |
3436 | - browserslist: 4.18.1 | |
3437 | - caniuse-lite: 1.0.30001283 | |
3438 | - fraction.js: 4.1.2 | |
2901 | + browserslist: 4.20.2 | |
2902 | + caniuse-lite: 1.0.30001317 | |
2903 | + fraction.js: 4.2.0 | |
3439 | 2904 | normalize-range: 0.1.2 |
3440 | 2905 | picocolors: 1.0.0 |
3441 | - postcss: 8.4.5 | |
3442 | - postcss-value-parser: 4.1.0 | |
2906 | + postcss: 8.4.12 | |
2907 | + postcss-value-parser: 4.2.0 | |
3443 | 2908 | dev: true |
3444 | 2909 | |
3445 | - /axios/0.21.4_debug@4.3.2: | |
2910 | + /axios/0.21.4_debug@4.3.4: | |
3446 | 2911 | resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} |
3447 | 2912 | dependencies: |
3448 | - follow-redirects: 1.14.5 | |
2913 | + follow-redirects: 1.14.9 | |
3449 | 2914 | transitivePeerDependencies: |
3450 | 2915 | - debug |
3451 | 2916 | dev: true |
3452 | 2917 | |
3453 | - /axios/0.24.0: | |
3454 | - resolution: {integrity: sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==} | |
2918 | + /axios/0.26.1: | |
2919 | + resolution: {integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==} | |
3455 | 2920 | dependencies: |
3456 | - follow-redirects: 1.14.5 | |
2921 | + follow-redirects: 1.14.9 | |
3457 | 2922 | transitivePeerDependencies: |
3458 | 2923 | - debug |
3459 | 2924 | dev: false |
3460 | 2925 | |
3461 | - /babel-jest/27.4.5_@babel+core@7.16.0: | |
3462 | - resolution: {integrity: sha512-3uuUTjXbgtODmSv/DXO9nZfD52IyC2OYTFaXGRzL0kpykzroaquCrD5+lZNafTvZlnNqZHt5pb0M08qVBZnsnA==} | |
3463 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
3464 | - peerDependencies: | |
3465 | - '@babel/core': ^7.8.0 | |
2926 | + /axios/0.26.1_debug@4.3.4: | |
2927 | + resolution: {integrity: sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==} | |
3466 | 2928 | dependencies: |
3467 | - '@babel/core': 7.16.0 | |
3468 | - '@jest/transform': 27.4.5 | |
3469 | - '@jest/types': 27.4.2 | |
3470 | - '@types/babel__core': 7.1.16 | |
3471 | - babel-plugin-istanbul: 6.1.1 | |
3472 | - babel-preset-jest: 27.4.0_@babel+core@7.16.0 | |
3473 | - chalk: 4.1.2 | |
3474 | - graceful-fs: 4.2.8 | |
3475 | - slash: 3.0.0 | |
2929 | + follow-redirects: 1.14.9_debug@4.3.4 | |
3476 | 2930 | transitivePeerDependencies: |
3477 | - - supports-color | |
2931 | + - debug | |
3478 | 2932 | dev: true |
3479 | 2933 | |
3480 | 2934 | /babel-plugin-dynamic-import-node/2.3.3: |
... | ... | @@ -3483,123 +2937,42 @@ packages: |
3483 | 2937 | object.assign: 4.1.2 |
3484 | 2938 | dev: true |
3485 | 2939 | |
3486 | - /babel-plugin-istanbul/6.1.1: | |
3487 | - resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} | |
3488 | - engines: {node: '>=8'} | |
3489 | - dependencies: | |
3490 | - '@babel/helper-plugin-utils': 7.14.5 | |
3491 | - '@istanbuljs/load-nyc-config': 1.1.0 | |
3492 | - '@istanbuljs/schema': 0.1.3 | |
3493 | - istanbul-lib-instrument: 5.1.0 | |
3494 | - test-exclude: 6.0.0 | |
3495 | - transitivePeerDependencies: | |
3496 | - - supports-color | |
3497 | - dev: true | |
3498 | - | |
3499 | - /babel-plugin-jest-hoist/27.4.0: | |
3500 | - resolution: {integrity: sha512-Jcu7qS4OX5kTWBc45Hz7BMmgXuJqRnhatqpUhnzGC3OBYpOmf2tv6jFNwZpwM7wU7MUuv2r9IPS/ZlYOuburVw==} | |
3501 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
3502 | - dependencies: | |
3503 | - '@babel/template': 7.16.0 | |
3504 | - '@babel/types': 7.16.0 | |
3505 | - '@types/babel__core': 7.1.16 | |
3506 | - '@types/babel__traverse': 7.14.2 | |
3507 | - dev: true | |
3508 | - | |
3509 | - /babel-plugin-polyfill-corejs2/0.3.0_@babel+core@7.16.0: | |
3510 | - resolution: {integrity: sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA==} | |
2940 | + /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.17.7: | |
2941 | + resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==} | |
3511 | 2942 | peerDependencies: |
3512 | 2943 | '@babel/core': ^7.0.0-0 |
3513 | 2944 | dependencies: |
3514 | - '@babel/compat-data': 7.16.4 | |
3515 | - '@babel/core': 7.16.0 | |
3516 | - '@babel/helper-define-polyfill-provider': 0.3.0_@babel+core@7.16.0 | |
2945 | + '@babel/compat-data': 7.17.7 | |
2946 | + '@babel/core': 7.17.7 | |
2947 | + '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.7 | |
3517 | 2948 | semver: 6.3.0 |
3518 | 2949 | transitivePeerDependencies: |
3519 | 2950 | - supports-color |
3520 | 2951 | dev: true |
3521 | 2952 | |
3522 | - /babel-plugin-polyfill-corejs3/0.4.0_@babel+core@7.16.0: | |
3523 | - resolution: {integrity: sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw==} | |
2953 | + /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.17.7: | |
2954 | + resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==} | |
3524 | 2955 | peerDependencies: |
3525 | 2956 | '@babel/core': ^7.0.0-0 |
3526 | 2957 | dependencies: |
3527 | - '@babel/core': 7.16.0 | |
3528 | - '@babel/helper-define-polyfill-provider': 0.3.0_@babel+core@7.16.0 | |
3529 | - core-js-compat: 3.19.1 | |
2958 | + '@babel/core': 7.17.7 | |
2959 | + '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.7 | |
2960 | + core-js-compat: 3.21.1 | |
3530 | 2961 | transitivePeerDependencies: |
3531 | 2962 | - supports-color |
3532 | 2963 | dev: true |
3533 | 2964 | |
3534 | - /babel-plugin-polyfill-regenerator/0.3.0_@babel+core@7.16.0: | |
3535 | - resolution: {integrity: sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg==} | |
2965 | + /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.17.7: | |
2966 | + resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==} | |
3536 | 2967 | peerDependencies: |
3537 | 2968 | '@babel/core': ^7.0.0-0 |
3538 | 2969 | dependencies: |
3539 | - '@babel/core': 7.16.0 | |
3540 | - '@babel/helper-define-polyfill-provider': 0.3.0_@babel+core@7.16.0 | |
2970 | + '@babel/core': 7.17.7 | |
2971 | + '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.7 | |
3541 | 2972 | transitivePeerDependencies: |
3542 | 2973 | - supports-color |
3543 | 2974 | dev: true |
3544 | 2975 | |
3545 | - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.16.0: | |
3546 | - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} | |
3547 | - peerDependencies: | |
3548 | - '@babel/core': ^7.0.0 | |
3549 | - dependencies: | |
3550 | - '@babel/core': 7.16.0 | |
3551 | - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.0 | |
3552 | - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.16.0 | |
3553 | - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.16.0 | |
3554 | - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.16.0 | |
3555 | - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.16.0 | |
3556 | - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.0 | |
3557 | - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.0 | |
3558 | - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.0 | |
3559 | - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.0 | |
3560 | - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.0 | |
3561 | - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.0 | |
3562 | - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.16.0 | |
3563 | - dev: true | |
3564 | - | |
3565 | - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.16.5: | |
3566 | - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} | |
3567 | - peerDependencies: | |
3568 | - '@babel/core': ^7.0.0 | |
3569 | - dependencies: | |
3570 | - '@babel/core': 7.16.5 | |
3571 | - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.16.5 | |
3572 | - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.16.5 | |
3573 | - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.16.5 | |
3574 | - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.16.5 | |
3575 | - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.16.5 | |
3576 | - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.16.5 | |
3577 | - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.16.5 | |
3578 | - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.16.5 | |
3579 | - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.16.5 | |
3580 | - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.16.5 | |
3581 | - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.16.5 | |
3582 | - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.16.5 | |
3583 | - dev: true | |
3584 | - | |
3585 | - /babel-preset-jest/27.4.0_@babel+core@7.16.0: | |
3586 | - resolution: {integrity: sha512-NK4jGYpnBvNxcGo7/ZpZJr51jCGT+3bwwpVIDY2oNfTxJJldRtB4VAcYdgp1loDE50ODuTu+yBjpMAswv5tlpg==} | |
3587 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
3588 | - peerDependencies: | |
3589 | - '@babel/core': ^7.0.0 | |
3590 | - dependencies: | |
3591 | - '@babel/core': 7.16.0 | |
3592 | - babel-plugin-jest-hoist: 27.4.0 | |
3593 | - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.16.0 | |
3594 | - dev: true | |
3595 | - | |
3596 | - /babel-walk/3.0.0-canary-5: | |
3597 | - resolution: {integrity: sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==} | |
3598 | - engines: {node: '>= 10.0.0'} | |
3599 | - dependencies: | |
3600 | - '@babel/types': 7.16.0 | |
3601 | - dev: true | |
3602 | - | |
3603 | 2976 | /balanced-match/1.0.2: |
3604 | 2977 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} |
3605 | 2978 | dev: true |
... | ... | @@ -3625,6 +2998,10 @@ packages: |
3625 | 2998 | resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} |
3626 | 2999 | dev: true |
3627 | 3000 | |
3001 | + /before-after-hook/2.2.2: | |
3002 | + resolution: {integrity: sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==} | |
3003 | + dev: true | |
3004 | + | |
3628 | 3005 | /big.js/5.2.2: |
3629 | 3006 | resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} |
3630 | 3007 | dev: true |
... | ... | @@ -3672,7 +3049,7 @@ packages: |
3672 | 3049 | dependencies: |
3673 | 3050 | bin-check: 4.1.0 |
3674 | 3051 | bin-version-check: 4.0.0 |
3675 | - binary-mirror-config: 1.33.0 | |
3052 | + binary-mirror-config: 1.40.0 | |
3676 | 3053 | download: 7.1.0 |
3677 | 3054 | import-lazy: 4.0.0 |
3678 | 3055 | os-filter-obj: 2.0.0 |
... | ... | @@ -3684,8 +3061,8 @@ packages: |
3684 | 3061 | engines: {node: '>=8'} |
3685 | 3062 | dev: true |
3686 | 3063 | |
3687 | - /binary-mirror-config/1.33.0: | |
3688 | - resolution: {integrity: sha512-9HcbzI65PDTi7bwkONLdNUGfs71V1o909+uqFZLSn4j7Zthcrjyr+ePo/+wf9tzrwXXL3bub+0NwKl7kpp5qmg==} | |
3064 | + /binary-mirror-config/1.40.0: | |
3065 | + resolution: {integrity: sha512-DMLxL6oiQpaoMs88xwM2VV6fojPSfm81gGffUp33GP/6YdzzjiNQvKA/dddZDy+77ryY6o52g0AOv8qakD+mqQ==} | |
3689 | 3066 | dev: true |
3690 | 3067 | |
3691 | 3068 | /bl/1.2.3: |
... | ... | @@ -3741,35 +3118,18 @@ packages: |
3741 | 3118 | fill-range: 7.0.1 |
3742 | 3119 | dev: true |
3743 | 3120 | |
3744 | - /browser-process-hrtime/1.0.0: | |
3745 | - resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} | |
3746 | - dev: true | |
3747 | - | |
3748 | - /browserslist/4.18.1: | |
3749 | - resolution: {integrity: sha512-8ScCzdpPwR2wQh8IT82CA2VgDwjHyqMovPBZSNH54+tm4Jk2pCuv90gmAdH6J84OCRWi0b4gMe6O6XPXuJnjgQ==} | |
3121 | + /browserslist/4.20.2: | |
3122 | + resolution: {integrity: sha512-CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA==} | |
3750 | 3123 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} |
3751 | 3124 | hasBin: true |
3752 | 3125 | dependencies: |
3753 | - caniuse-lite: 1.0.30001283 | |
3754 | - electron-to-chromium: 1.4.1 | |
3126 | + caniuse-lite: 1.0.30001317 | |
3127 | + electron-to-chromium: 1.4.87 | |
3755 | 3128 | escalade: 3.1.1 |
3756 | - node-releases: 2.0.1 | |
3129 | + node-releases: 2.0.2 | |
3757 | 3130 | picocolors: 1.0.0 |
3758 | 3131 | dev: true |
3759 | 3132 | |
3760 | - /bs-logger/0.2.6: | |
3761 | - resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} | |
3762 | - engines: {node: '>= 6'} | |
3763 | - dependencies: | |
3764 | - fast-json-stable-stringify: 2.1.0 | |
3765 | - dev: true | |
3766 | - | |
3767 | - /bser/2.1.1: | |
3768 | - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} | |
3769 | - dependencies: | |
3770 | - node-int64: 0.4.0 | |
3771 | - dev: true | |
3772 | - | |
3773 | 3133 | /buffer-alloc-unsafe/1.1.0: |
3774 | 3134 | resolution: {integrity: sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==} |
3775 | 3135 | dev: true |
... | ... | @@ -3887,13 +3247,13 @@ packages: |
3887 | 3247 | resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} |
3888 | 3248 | engines: {node: '>=6'} |
3889 | 3249 | |
3890 | - /camelcase/6.2.1: | |
3891 | - resolution: {integrity: sha512-tVI4q5jjFV5CavAU8DXfza/TJcZutVKo/5Foskmsqcm0MsL91moHvwiGNnqaa2o6PF/7yT5ikDRcVcl8Rj6LCA==} | |
3250 | + /camelcase/6.3.0: | |
3251 | + resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} | |
3892 | 3252 | engines: {node: '>=10'} |
3893 | 3253 | dev: true |
3894 | 3254 | |
3895 | - /caniuse-lite/1.0.30001283: | |
3896 | - resolution: {integrity: sha512-9RoKo841j1GQFSJz/nCXOj0sD7tHBtlowjYlrqIUS812x9/emfBLBt6IyMz1zIaYc/eRL8Cs6HPUVi2Hzq4sIg==} | |
3255 | + /caniuse-lite/1.0.30001317: | |
3256 | + resolution: {integrity: sha512-xIZLh8gBm4dqNX0gkzrBeyI86J2eCjWzYAs40q88smG844YIrN4tVQl/RhquHvKEKImWWFIVh1Lxe5n1G/N+GQ==} | |
3897 | 3257 | dev: true |
3898 | 3258 | |
3899 | 3259 | /capital-case/1.0.4: |
... | ... | @@ -3919,8 +3279,8 @@ packages: |
3919 | 3279 | engines: {node: '>=0.8'} |
3920 | 3280 | dependencies: |
3921 | 3281 | adler-32: 1.3.0 |
3922 | - crc-32: 1.2.0 | |
3923 | - printj: 1.3.0 | |
3282 | + crc-32: 1.2.1 | |
3283 | + printj: 1.3.1 | |
3924 | 3284 | dev: false |
3925 | 3285 | |
3926 | 3286 | /chalk/1.1.3: |
... | ... | @@ -3968,11 +3328,6 @@ packages: |
3968 | 3328 | tslib: 2.3.1 |
3969 | 3329 | dev: true |
3970 | 3330 | |
3971 | - /char-regex/1.0.2: | |
3972 | - resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} | |
3973 | - engines: {node: '>=10'} | |
3974 | - dev: true | |
3975 | - | |
3976 | 3331 | /character-parser/2.2.0: |
3977 | 3332 | resolution: {integrity: sha1-x84o821LzZdE5f/CxfzeHHMmH8A=} |
3978 | 3333 | dependencies: |
... | ... | @@ -3983,8 +3338,8 @@ packages: |
3983 | 3338 | resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} |
3984 | 3339 | dev: true |
3985 | 3340 | |
3986 | - /chokidar/3.5.2: | |
3987 | - resolution: {integrity: sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==} | |
3341 | + /chokidar/3.5.3: | |
3342 | + resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} | |
3988 | 3343 | engines: {node: '>= 8.10.0'} |
3989 | 3344 | dependencies: |
3990 | 3345 | anymatch: 3.1.2 |
... | ... | @@ -3998,14 +3353,6 @@ packages: |
3998 | 3353 | fsevents: 2.3.2 |
3999 | 3354 | dev: true |
4000 | 3355 | |
4001 | - /ci-info/3.3.0: | |
4002 | - resolution: {integrity: sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==} | |
4003 | - dev: true | |
4004 | - | |
4005 | - /cjs-module-lexer/1.2.2: | |
4006 | - resolution: {integrity: sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==} | |
4007 | - dev: true | |
4008 | - | |
4009 | 3356 | /class-utils/0.3.6: |
4010 | 3357 | resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} |
4011 | 3358 | engines: {node: '>=0.10.0'} |
... | ... | @@ -4016,8 +3363,8 @@ packages: |
4016 | 3363 | static-extend: 0.1.2 |
4017 | 3364 | dev: true |
4018 | 3365 | |
4019 | - /clean-css/5.2.2: | |
4020 | - resolution: {integrity: sha512-/eR8ru5zyxKzpBLv9YZvMXgTSSQn7AdkMItMYynsFgGwTveCRVam9IUPFloE85B4vAIj05IuKmmEoV7/AQjT0w==} | |
3366 | + /clean-css/5.2.4: | |
3367 | + resolution: {integrity: sha512-nKseG8wCzEuji/4yrgM/5cthL9oTDc5UOQyFMvW/Q53oP6gLH690o1NbuTh6Y18nujr7BxlsFuS7gXLnLzKJGg==} | |
4021 | 3368 | engines: {node: '>= 10.0'} |
4022 | 3369 | dependencies: |
4023 | 3370 | source-map: 0.6.1 |
... | ... | @@ -4060,7 +3407,7 @@ packages: |
4060 | 3407 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} |
4061 | 3408 | dependencies: |
4062 | 3409 | slice-ansi: 5.0.0 |
4063 | - string-width: 5.0.1 | |
3410 | + string-width: 5.1.2 | |
4064 | 3411 | dev: true |
4065 | 3412 | |
4066 | 3413 | /cli-width/2.2.1: |
... | ... | @@ -4072,14 +3419,6 @@ packages: |
4072 | 3419 | engines: {node: '>= 10'} |
4073 | 3420 | dev: true |
4074 | 3421 | |
4075 | - /cliui/5.0.0: | |
4076 | - resolution: {integrity: sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==} | |
4077 | - dependencies: | |
4078 | - string-width: 3.1.0 | |
4079 | - strip-ansi: 5.2.0 | |
4080 | - wrap-ansi: 5.1.0 | |
4081 | - dev: false | |
4082 | - | |
4083 | 3422 | /cliui/6.0.0: |
4084 | 3423 | resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} |
4085 | 3424 | dependencies: |
... | ... | @@ -4119,13 +3458,8 @@ packages: |
4119 | 3458 | engines: {node: '>=0.8'} |
4120 | 3459 | dev: true |
4121 | 3460 | |
4122 | - /co/4.6.0: | |
4123 | - resolution: {integrity: sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=} | |
4124 | - engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} | |
4125 | - dev: true | |
4126 | - | |
4127 | - /codemirror/5.65.0: | |
4128 | - resolution: {integrity: sha512-gWEnHKEcz1Hyz7fsQWpK7P0sPI2/kSkRX2tc7DFA6TmZuDN75x/1ejnH/Pn8adYKrLEA1V2ww6L00GudHZbSKw==} | |
3461 | + /codemirror/5.65.2: | |
3462 | + resolution: {integrity: sha512-SZM4Zq7XEC8Fhroqe3LxbEEX1zUPWH1wMr5zxiBuiUF64iYOUH/JI88v4tBag8MiBS8B8gRv8O1pPXGYXQ4ErA==} | |
4129 | 3463 | dev: false |
4130 | 3464 | |
4131 | 3465 | /codepage/1.15.0: |
... | ... | @@ -4133,10 +3467,6 @@ packages: |
4133 | 3467 | engines: {node: '>=0.8'} |
4134 | 3468 | dev: false |
4135 | 3469 | |
4136 | - /collect-v8-coverage/1.0.1: | |
4137 | - resolution: {integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==} | |
4138 | - dev: true | |
4139 | - | |
4140 | 3470 | /collection-visit/1.0.0: |
4141 | 3471 | resolution: {integrity: sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=} |
4142 | 3472 | engines: {node: '>=0.10.0'} |
... | ... | @@ -4149,6 +3479,7 @@ packages: |
4149 | 3479 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} |
4150 | 3480 | dependencies: |
4151 | 3481 | color-name: 1.1.3 |
3482 | + dev: true | |
4152 | 3483 | |
4153 | 3484 | /color-convert/2.0.1: |
4154 | 3485 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} |
... | ... | @@ -4158,6 +3489,7 @@ packages: |
4158 | 3489 | |
4159 | 3490 | /color-name/1.1.3: |
4160 | 3491 | resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=} |
3492 | + dev: true | |
4161 | 3493 | |
4162 | 3494 | /color-name/1.1.4: |
4163 | 3495 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} |
... | ... | @@ -4170,13 +3502,6 @@ packages: |
4170 | 3502 | resolution: {integrity: sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==} |
4171 | 3503 | dev: true |
4172 | 3504 | |
4173 | - /combined-stream/1.0.8: | |
4174 | - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} | |
4175 | - engines: {node: '>= 0.8'} | |
4176 | - dependencies: | |
4177 | - delayed-stream: 1.0.0 | |
4178 | - dev: true | |
4179 | - | |
4180 | 3505 | /commander/2.20.3: |
4181 | 3506 | resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} |
4182 | 3507 | dev: true |
... | ... | @@ -4189,17 +3514,23 @@ packages: |
4189 | 3514 | /commander/8.3.0: |
4190 | 3515 | resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} |
4191 | 3516 | engines: {node: '>= 12'} |
3517 | + dev: true | |
3518 | + | |
3519 | + /commander/9.1.0: | |
3520 | + resolution: {integrity: sha512-i0/MaqBtdbnJ4XQs4Pmyb+oFQl+q0lsAmokVUH92SlSw4fkeAcG3bVon+Qt7hmtF+u3Het6o4VgrcY3qAoEB6w==} | |
3521 | + engines: {node: ^12.20.0 || >=14} | |
3522 | + dev: false | |
4192 | 3523 | |
4193 | - /commitizen/4.2.4_@types+node@17.0.5: | |
3524 | + /commitizen/4.2.4: | |
4194 | 3525 | resolution: {integrity: sha512-LlZChbDzg3Ir3O2S7jSo/cgWp5/QwylQVr59K4xayVq8S4/RdKzSyJkghAiZZHfhh5t4pxunUoyeg0ml1q/7aw==} |
4195 | 3526 | engines: {node: '>= 10'} |
4196 | 3527 | hasBin: true |
4197 | 3528 | dependencies: |
4198 | 3529 | cachedir: 2.2.0 |
4199 | - cz-conventional-changelog: 3.2.0_@types+node@17.0.5 | |
3530 | + cz-conventional-changelog: 3.2.0 | |
4200 | 3531 | dedent: 0.7.0 |
4201 | 3532 | detect-indent: 6.0.0 |
4202 | - find-node-modules: 2.1.2 | |
3533 | + find-node-modules: 2.1.3 | |
4203 | 3534 | find-root: 1.1.0 |
4204 | 3535 | fs-extra: 8.1.0 |
4205 | 3536 | glob: 7.1.4 |
... | ... | @@ -4212,7 +3543,6 @@ packages: |
4212 | 3543 | transitivePeerDependencies: |
4213 | 3544 | - '@swc/core' |
4214 | 3545 | - '@swc/wasm' |
4215 | - - '@types/node' | |
4216 | 3546 | dev: true |
4217 | 3547 | |
4218 | 3548 | /common-tags/1.8.2: |
... | ... | @@ -4246,6 +3576,11 @@ packages: |
4246 | 3576 | proto-list: 1.2.4 |
4247 | 3577 | dev: true |
4248 | 3578 | |
3579 | + /connect-history-api-fallback/1.6.0: | |
3580 | + resolution: {integrity: sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==} | |
3581 | + engines: {node: '>=0.8'} | |
3582 | + dev: true | |
3583 | + | |
4249 | 3584 | /connect/3.7.0: |
4250 | 3585 | resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==} |
4251 | 3586 | engines: {node: '>= 0.10.0'} |
... | ... | @@ -4256,10 +3591,18 @@ packages: |
4256 | 3591 | utils-merge: 1.0.1 |
4257 | 3592 | dev: true |
4258 | 3593 | |
3594 | + /consola/2.15.3: | |
3595 | + resolution: {integrity: sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==} | |
3596 | + dev: true | |
3597 | + | |
4259 | 3598 | /console-stream/0.1.1: |
4260 | 3599 | resolution: {integrity: sha1-oJX+B7IEZZVfL6/Si11yvM2UnUQ=} |
4261 | 3600 | dev: true |
4262 | 3601 | |
3602 | + /console/0.7.2: | |
3603 | + resolution: {integrity: sha1-+aQzEkkpFZG3v5v/qOIFNW8gqfA=} | |
3604 | + dev: true | |
3605 | + | |
4263 | 3606 | /constant-case/3.0.4: |
4264 | 3607 | resolution: {integrity: sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==} |
4265 | 3608 | dependencies: |
... | ... | @@ -4268,18 +3611,11 @@ packages: |
4268 | 3611 | upper-case: 2.0.2 |
4269 | 3612 | dev: true |
4270 | 3613 | |
4271 | - /constantinople/4.0.1: | |
4272 | - resolution: {integrity: sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==} | |
4273 | - dependencies: | |
4274 | - '@babel/parser': 7.16.6 | |
4275 | - '@babel/types': 7.16.0 | |
4276 | - dev: true | |
4277 | - | |
4278 | - /content-disposition/0.5.3: | |
4279 | - resolution: {integrity: sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==} | |
3614 | + /content-disposition/0.5.4: | |
3615 | + resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} | |
4280 | 3616 | engines: {node: '>= 0.6'} |
4281 | 3617 | dependencies: |
4282 | - safe-buffer: 5.1.2 | |
3618 | + safe-buffer: 5.2.1 | |
4283 | 3619 | dev: true |
4284 | 3620 | |
4285 | 3621 | /conventional-changelog-angular/5.0.13: |
... | ... | @@ -4303,7 +3639,7 @@ packages: |
4303 | 3639 | hasBin: true |
4304 | 3640 | dependencies: |
4305 | 3641 | add-stream: 1.0.0 |
4306 | - conventional-changelog: 3.1.24 | |
3642 | + conventional-changelog: 3.1.25 | |
4307 | 3643 | lodash: 4.17.21 |
4308 | 3644 | meow: 8.1.2 |
4309 | 3645 | tempfile: 3.0.0 |
... | ... | @@ -4316,8 +3652,8 @@ packages: |
4316 | 3652 | q: 1.5.1 |
4317 | 3653 | dev: true |
4318 | 3654 | |
4319 | - /conventional-changelog-conventionalcommits/4.6.1: | |
4320 | - resolution: {integrity: sha512-lzWJpPZhbM1R0PIzkwzGBCnAkH5RKJzJfFQZcl/D+2lsJxAwGnDKBqn/F4C1RD31GJNn8NuKWQzAZDAVXPp2Mw==} | |
3655 | + /conventional-changelog-conventionalcommits/4.6.3: | |
3656 | + resolution: {integrity: sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g==} | |
4321 | 3657 | engines: {node: '>=10'} |
4322 | 3658 | dependencies: |
4323 | 3659 | compare-func: 2.0.0 |
... | ... | @@ -4330,11 +3666,11 @@ packages: |
4330 | 3666 | engines: {node: '>=10'} |
4331 | 3667 | dependencies: |
4332 | 3668 | add-stream: 1.0.0 |
4333 | - conventional-changelog-writer: 5.0.0 | |
4334 | - conventional-commits-parser: 3.2.3 | |
3669 | + conventional-changelog-writer: 5.0.1 | |
3670 | + conventional-commits-parser: 3.2.4 | |
4335 | 3671 | dateformat: 3.0.3 |
4336 | 3672 | get-pkg-repo: 4.2.1 |
4337 | - git-raw-commits: 2.0.10 | |
3673 | + git-raw-commits: 2.0.11 | |
4338 | 3674 | git-remote-origin-url: 2.0.0 |
4339 | 3675 | git-semver-tags: 4.1.1 |
4340 | 3676 | lodash: 4.17.21 |
... | ... | @@ -4386,8 +3722,8 @@ packages: |
4386 | 3722 | engines: {node: '>=10'} |
4387 | 3723 | dev: true |
4388 | 3724 | |
4389 | - /conventional-changelog-writer/5.0.0: | |
4390 | - resolution: {integrity: sha512-HnDh9QHLNWfL6E1uHz6krZEQOgm8hN7z/m7tT16xwd802fwgMN0Wqd7AQYVkhpsjDUx/99oo+nGgvKF657XP5g==} | |
3725 | + /conventional-changelog-writer/5.0.1: | |
3726 | + resolution: {integrity: sha512-5WsuKUfxW7suLblAbFnxAcrvf6r+0b7GvNaWUwUIk0bXMnENP/PEieGKVUQrjPqwPT4o3EPAASBXiY6iHooLOQ==} | |
4391 | 3727 | engines: {node: '>=10'} |
4392 | 3728 | hasBin: true |
4393 | 3729 | dependencies: |
... | ... | @@ -4402,14 +3738,14 @@ packages: |
4402 | 3738 | through2: 4.0.2 |
4403 | 3739 | dev: true |
4404 | 3740 | |
4405 | - /conventional-changelog/3.1.24: | |
4406 | - resolution: {integrity: sha512-ed6k8PO00UVvhExYohroVPXcOJ/K1N0/drJHx/faTH37OIZthlecuLIRX/T6uOp682CAoVoFpu+sSEaeuH6Asg==} | |
3741 | + /conventional-changelog/3.1.25: | |
3742 | + resolution: {integrity: sha512-ryhi3fd1mKf3fSjbLXOfK2D06YwKNic1nC9mWqybBHdObPd8KJ2vjaXZfYj1U23t+V8T8n0d7gwnc9XbIdFbyQ==} | |
4407 | 3743 | engines: {node: '>=10'} |
4408 | 3744 | dependencies: |
4409 | 3745 | conventional-changelog-angular: 5.0.13 |
4410 | 3746 | conventional-changelog-atom: 2.0.8 |
4411 | 3747 | conventional-changelog-codemirror: 2.0.8 |
4412 | - conventional-changelog-conventionalcommits: 4.6.1 | |
3748 | + conventional-changelog-conventionalcommits: 4.6.3 | |
4413 | 3749 | conventional-changelog-core: 4.2.4 |
4414 | 3750 | conventional-changelog-ember: 2.0.9 |
4415 | 3751 | conventional-changelog-eslint: 3.0.9 |
... | ... | @@ -4431,8 +3767,8 @@ packages: |
4431 | 3767 | modify-values: 1.0.1 |
4432 | 3768 | dev: true |
4433 | 3769 | |
4434 | - /conventional-commits-parser/3.2.3: | |
4435 | - resolution: {integrity: sha512-YyRDR7On9H07ICFpRm/igcdjIqebXbvf4Cff+Pf0BrBys1i1EOzx9iFXNlAbdrLAR8jf7bkUYkDAr8pEy0q4Pw==} | |
3770 | + /conventional-commits-parser/3.2.4: | |
3771 | + resolution: {integrity: sha512-nK7sAtfi+QXbxHCYfhpZsfRtaitZLIA6889kFIouLvz6repszQDgxBu7wf2WbU+Dco7sAnNCJYERCwt54WPC2Q==} | |
4436 | 3772 | engines: {node: '>=10'} |
4437 | 3773 | hasBin: true |
4438 | 3774 | dependencies: |
... | ... | @@ -4450,8 +3786,8 @@ packages: |
4450 | 3786 | safe-buffer: 5.1.2 |
4451 | 3787 | dev: true |
4452 | 3788 | |
4453 | - /copy-anything/2.0.3: | |
4454 | - resolution: {integrity: sha512-GK6QUtisv4fNS+XcI7shX0Gx9ORg7QqIznyfho79JTnX1XhLiyZHfftvGiziqzRiEi/Bjhgpi+D2o7HxJFPnDQ==} | |
3789 | + /copy-anything/2.0.6: | |
3790 | + resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==} | |
4455 | 3791 | dependencies: |
4456 | 3792 | is-what: 3.14.1 |
4457 | 3793 | dev: true |
... | ... | @@ -4461,15 +3797,15 @@ packages: |
4461 | 3797 | engines: {node: '>=0.10.0'} |
4462 | 3798 | dev: true |
4463 | 3799 | |
4464 | - /core-js-compat/3.19.1: | |
4465 | - resolution: {integrity: sha512-Q/VJ7jAF/y68+aUsQJ/afPOewdsGkDtcMb40J8MbuWKlK3Y+wtHq8bTHKPj2WKWLIqmS5JhHs4CzHtz6pT2W6g==} | |
3800 | + /core-js-compat/3.21.1: | |
3801 | + resolution: {integrity: sha512-gbgX5AUvMb8gwxC7FLVWYT7Kkgu/y7+h/h1X43yJkNqhlK2fuYyQimqvKGNZFAY6CKii/GFKJ2cp/1/42TN36g==} | |
4466 | 3802 | dependencies: |
4467 | - browserslist: 4.18.1 | |
3803 | + browserslist: 4.20.2 | |
4468 | 3804 | semver: 7.0.0 |
4469 | 3805 | dev: true |
4470 | 3806 | |
4471 | - /core-js/3.19.1: | |
4472 | - resolution: {integrity: sha512-Tnc7E9iKd/b/ff7GFbhwPVzJzPztGrChB8X8GLqoYGdEOG8IpLnK1xPyo3ZoO3HsK6TodJS58VGPOxA+hLHQMg==} | |
3807 | + /core-js/3.21.1: | |
3808 | + resolution: {integrity: sha512-FRq5b/VMrWlrmCzwRrpDYNxyHP9BcAZC+xHJaqTgIE5091ZV1NTmyh0sGOg5XqpnHvR0svdy0sv1gWA1zmhxig==} | |
4473 | 3809 | requiresBuild: true |
4474 | 3810 | |
4475 | 3811 | /core-util-is/1.0.3: |
... | ... | @@ -4484,17 +3820,17 @@ packages: |
4484 | 3820 | vary: 1.1.2 |
4485 | 3821 | dev: true |
4486 | 3822 | |
4487 | - /cosmiconfig-typescript-loader/1.0.2_bad060d5f9aca5284661d88d739ba15b: | |
4488 | - resolution: {integrity: sha512-27ZehvijYqAKVzta5xtZBS3PAliC8CmnWkGXN0vgxAZz7yqxpMjf3aG7flxF5rEiu8FAD7nZZXtOI+xUGn+bVg==} | |
3823 | + /cosmiconfig-typescript-loader/1.0.6_e79e62fe450383fd2d418267dc75e645: | |
3824 | + resolution: {integrity: sha512-2nEotziYJWtNtoTjKbchj9QrdTT6DBxCvqjNKoDKARw+e2yZmTQCa07uRrykLIZuvSgp69YXLH89UHc0WhdMfQ==} | |
4489 | 3825 | engines: {node: '>=12', npm: '>=6'} |
4490 | 3826 | peerDependencies: |
4491 | 3827 | '@types/node': '*' |
4492 | 3828 | typescript: '>=3' |
4493 | 3829 | dependencies: |
4494 | - '@types/node': 17.0.5 | |
3830 | + '@types/node': 17.0.21 | |
4495 | 3831 | cosmiconfig: 7.0.1 |
4496 | - ts-node: 10.4.0_bad060d5f9aca5284661d88d739ba15b | |
4497 | - typescript: 4.5.4 | |
3832 | + ts-node: 10.7.0_e79e62fe450383fd2d418267dc75e645 | |
3833 | + typescript: 4.6.2 | |
4498 | 3834 | transitivePeerDependencies: |
4499 | 3835 | - '@swc/core' |
4500 | 3836 | - '@swc/wasm' |
... | ... | @@ -4511,13 +3847,13 @@ packages: |
4511 | 3847 | yaml: 1.10.2 |
4512 | 3848 | dev: true |
4513 | 3849 | |
4514 | - /crc-32/1.2.0: | |
4515 | - resolution: {integrity: sha512-1uBwHxF+Y/4yF5G48fwnKq6QsIXheor3ZLPT80yGBV1oEUwpPojlEhQbWKVw1VwcTQyMGHK1/XMmTjmlsmTTGA==} | |
3850 | + /crc-32/1.2.1: | |
3851 | + resolution: {integrity: sha512-Dn/xm/1vFFgs3nfrpEVScHoIslO9NZRITWGz/1E/St6u4xw99vfZzVkW0OSnzx2h9egej9xwMCEut6sqwokM/w==} | |
4516 | 3852 | engines: {node: '>=0.8'} |
4517 | 3853 | hasBin: true |
4518 | 3854 | dependencies: |
4519 | 3855 | exit-on-epipe: 1.0.1 |
4520 | - printj: 1.1.2 | |
3856 | + printj: 1.3.1 | |
4521 | 3857 | dev: false |
4522 | 3858 | |
4523 | 3859 | /create-require/1.1.1: |
... | ... | @@ -4536,10 +3872,12 @@ packages: |
4536 | 3872 | cross-spawn: 7.0.3 |
4537 | 3873 | dev: true |
4538 | 3874 | |
4539 | - /cross-fetch/3.1.4: | |
4540 | - resolution: {integrity: sha512-1eAtFWdIubi6T4XPy6ei9iUFoKpUkIF971QLN8lIvvvwueI65+Nw5haMNKUwfJxabqlIIDODJKGrQ66gxC0PbQ==} | |
3875 | + /cross-fetch/3.1.5: | |
3876 | + resolution: {integrity: sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==} | |
4541 | 3877 | dependencies: |
4542 | - node-fetch: 2.6.1 | |
3878 | + node-fetch: 2.6.7 | |
3879 | + transitivePeerDependencies: | |
3880 | + - encoding | |
4543 | 3881 | |
4544 | 3882 | /cross-spawn/5.1.0: |
4545 | 3883 | resolution: {integrity: sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=} |
... | ... | @@ -4578,12 +3916,17 @@ packages: |
4578 | 3916 | engines: {node: '>=8'} |
4579 | 3917 | dev: true |
4580 | 3918 | |
4581 | - /css-select/4.1.3: | |
4582 | - resolution: {integrity: sha512-gT3wBNd9Nj49rAbmtFHj1cljIAOLYSX1nZ8CB7TBO3INYckygm5B7LISU/szY//YmdiSLbJvDLOx9VnMVpMBxA==} | |
3919 | + /css-functions-list/3.0.1: | |
3920 | + resolution: {integrity: sha512-PriDuifDt4u4rkDgnqRCLnjfMatufLmWNfQnGCq34xZwpY3oabwhB9SqRBmuvWUgndbemCFlKqg+nO7C2q0SBw==} | |
3921 | + engines: {node: '>=12.22'} | |
3922 | + dev: true | |
3923 | + | |
3924 | + /css-select/4.2.1: | |
3925 | + resolution: {integrity: sha512-/aUslKhzkTNCQUB2qTX84lVmfia9NyjP3WpDGtj/WxhwBzWBYUV3DgUpurHTme8UTPcPlAD1DJ+b0nN/t50zDQ==} | |
4583 | 3926 | dependencies: |
4584 | 3927 | boolbase: 1.0.0 |
4585 | 3928 | css-what: 5.1.0 |
4586 | - domhandler: 4.2.2 | |
3929 | + domhandler: 4.3.0 | |
4587 | 3930 | domutils: 2.8.0 |
4588 | 3931 | nth-check: 2.0.1 |
4589 | 3932 | dev: true |
... | ... | @@ -4614,23 +3957,8 @@ packages: |
4614 | 3957 | css-tree: 1.1.3 |
4615 | 3958 | dev: true |
4616 | 3959 | |
4617 | - /cssom/0.3.8: | |
4618 | - resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} | |
4619 | - dev: true | |
4620 | - | |
4621 | - /cssom/0.4.4: | |
4622 | - resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==} | |
4623 | - dev: true | |
4624 | - | |
4625 | - /cssstyle/2.3.0: | |
4626 | - resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} | |
4627 | - engines: {node: '>=8'} | |
4628 | - dependencies: | |
4629 | - cssom: 0.3.8 | |
4630 | - dev: true | |
4631 | - | |
4632 | - /csstype/2.6.19: | |
4633 | - resolution: {integrity: sha512-ZVxXaNy28/k3kJg0Fou5MiYpp88j7H9hLZp8PDC3jV0WFjfH5E9xHb56L0W59cPbKbcHXeP4qyT8PrHp8t6LcQ==} | |
3960 | + /csstype/2.6.20: | |
3961 | + resolution: {integrity: sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA==} | |
4634 | 3962 | dev: false |
4635 | 3963 | |
4636 | 3964 | /currently-unhandled/0.4.1: |
... | ... | @@ -4651,22 +3979,21 @@ packages: |
4651 | 3979 | logalot: 2.1.0 |
4652 | 3980 | dev: true |
4653 | 3981 | |
4654 | - /cz-conventional-changelog/3.2.0_@types+node@17.0.5: | |
3982 | + /cz-conventional-changelog/3.2.0: | |
4655 | 3983 | resolution: {integrity: sha512-yAYxeGpVi27hqIilG1nh4A9Bnx4J3Ov+eXy4koL3drrR+IO9GaWPsKjik20ht608Asqi8TQPf0mczhEeyAtMzg==} |
4656 | 3984 | engines: {node: '>= 10'} |
4657 | 3985 | dependencies: |
4658 | 3986 | chalk: 2.4.2 |
4659 | - commitizen: 4.2.4_@types+node@17.0.5 | |
3987 | + commitizen: 4.2.4 | |
4660 | 3988 | conventional-commit-types: 3.0.0 |
4661 | 3989 | lodash.map: 4.6.0 |
4662 | 3990 | longest: 2.0.1 |
4663 | 3991 | word-wrap: 1.2.3 |
4664 | 3992 | optionalDependencies: |
4665 | - '@commitlint/load': 16.0.0_@types+node@17.0.5 | |
3993 | + '@commitlint/load': 16.2.3 | |
4666 | 3994 | transitivePeerDependencies: |
4667 | 3995 | - '@swc/core' |
4668 | 3996 | - '@swc/wasm' |
4669 | - - '@types/node' | |
4670 | 3997 | dev: true |
4671 | 3998 | |
4672 | 3999 | /dargs/7.0.0: |
... | ... | @@ -4674,21 +4001,12 @@ packages: |
4674 | 4001 | engines: {node: '>=8'} |
4675 | 4002 | dev: true |
4676 | 4003 | |
4677 | - /data-urls/2.0.0: | |
4678 | - resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} | |
4679 | - engines: {node: '>=10'} | |
4680 | - dependencies: | |
4681 | - abab: 2.0.5 | |
4682 | - whatwg-mimetype: 2.3.0 | |
4683 | - whatwg-url: 8.7.0 | |
4684 | - dev: true | |
4685 | - | |
4686 | 4004 | /dateformat/3.0.3: |
4687 | 4005 | resolution: {integrity: sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==} |
4688 | 4006 | dev: true |
4689 | 4007 | |
4690 | - /dayjs/1.10.7: | |
4691 | - resolution: {integrity: sha512-P6twpd70BcPK34K26uJ1KT3wlhpuOAPoMwJzpsIWUxHZ7wpmbdZL/hQqBDfz7hGurYSa5PhzdhDHtt319hL3ig==} | |
4008 | + /dayjs/1.11.0: | |
4009 | + resolution: {integrity: sha512-JLC809s6Y948/FuCZPm5IX8rRhQwOiyMb2TfVVQEixG7P8Lm/gt5S7yoQZmC8x1UehI9Pb7sksEt4xx14m+7Ug==} | |
4692 | 4010 | dev: false |
4693 | 4011 | |
4694 | 4012 | /debug/2.6.9: |
... | ... | @@ -4704,20 +4022,8 @@ packages: |
4704 | 4022 | dev: true |
4705 | 4023 | optional: true |
4706 | 4024 | |
4707 | - /debug/4.3.2: | |
4708 | - resolution: {integrity: sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==} | |
4709 | - engines: {node: '>=6.0'} | |
4710 | - peerDependencies: | |
4711 | - supports-color: '*' | |
4712 | - peerDependenciesMeta: | |
4713 | - supports-color: | |
4714 | - optional: true | |
4715 | - dependencies: | |
4716 | - ms: 2.1.2 | |
4717 | - dev: true | |
4718 | - | |
4719 | - /debug/4.3.3: | |
4720 | - resolution: {integrity: sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==} | |
4025 | + /debug/4.3.4: | |
4026 | + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} | |
4721 | 4027 | engines: {node: '>=6.0'} |
4722 | 4028 | peerDependencies: |
4723 | 4029 | supports-color: '*' |
... | ... | @@ -4728,8 +4034,8 @@ packages: |
4728 | 4034 | ms: 2.1.2 |
4729 | 4035 | dev: true |
4730 | 4036 | |
4731 | - /debug/4.3.3_supports-color@9.2.1: | |
4732 | - resolution: {integrity: sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==} | |
4037 | + /debug/4.3.4_supports-color@9.2.1: | |
4038 | + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} | |
4733 | 4039 | engines: {node: '>=6.0'} |
4734 | 4040 | peerDependencies: |
4735 | 4041 | supports-color: '*' |
... | ... | @@ -4753,10 +4059,6 @@ packages: |
4753 | 4059 | resolution: {integrity: sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=} |
4754 | 4060 | engines: {node: '>=0.10.0'} |
4755 | 4061 | |
4756 | - /decimal.js/10.3.1: | |
4757 | - resolution: {integrity: sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==} | |
4758 | - dev: true | |
4759 | - | |
4760 | 4062 | /decode-uri-component/0.2.0: |
4761 | 4063 | resolution: {integrity: sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=} |
4762 | 4064 | engines: {node: '>=0.10'} |
... | ... | @@ -4816,7 +4118,7 @@ packages: |
4816 | 4118 | decompress-tarbz2: 4.1.1 |
4817 | 4119 | decompress-targz: 4.1.1 |
4818 | 4120 | decompress-unzip: 4.0.1 |
4819 | - graceful-fs: 4.2.8 | |
4121 | + graceful-fs: 4.2.9 | |
4820 | 4122 | make-dir: 1.3.0 |
4821 | 4123 | pify: 2.3.0 |
4822 | 4124 | strip-dirs: 2.1.0 |
... | ... | @@ -4841,7 +4143,12 @@ packages: |
4841 | 4143 | clone: 1.0.4 |
4842 | 4144 | dev: true |
4843 | 4145 | |
4844 | - /define-properties/1.1.3: | |
4146 | + /define-lazy-prop/2.0.0: | |
4147 | + resolution: {integrity: sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==} | |
4148 | + engines: {node: '>=8'} | |
4149 | + dev: true | |
4150 | + | |
4151 | + /define-properties/1.1.3: | |
4845 | 4152 | resolution: {integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==} |
4846 | 4153 | engines: {node: '>= 0.4'} |
4847 | 4154 | dependencies: |
... | ... | @@ -4870,9 +4177,8 @@ packages: |
4870 | 4177 | isobject: 3.0.1 |
4871 | 4178 | dev: true |
4872 | 4179 | |
4873 | - /delayed-stream/1.0.0: | |
4874 | - resolution: {integrity: sha1-3zrhmayt+31ECqrgsp4icrJOxhk=} | |
4875 | - engines: {node: '>=0.4.0'} | |
4180 | + /deprecation/2.3.1: | |
4181 | + resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} | |
4876 | 4182 | dev: true |
4877 | 4183 | |
4878 | 4184 | /detect-file/1.0.0: |
... | ... | @@ -4885,25 +4191,10 @@ packages: |
4885 | 4191 | engines: {node: '>=8'} |
4886 | 4192 | dev: true |
4887 | 4193 | |
4888 | - /detect-newline/3.1.0: | |
4889 | - resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} | |
4890 | - engines: {node: '>=8'} | |
4891 | - dev: true | |
4892 | - | |
4893 | 4194 | /diff-match-patch/1.0.5: |
4894 | 4195 | resolution: {integrity: sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==} |
4895 | 4196 | dev: false |
4896 | 4197 | |
4897 | - /diff-sequences/27.0.6: | |
4898 | - resolution: {integrity: sha512-ag6wfpBFyNXZ0p8pcuIDS//D8H062ZQJ3fzYxjpmeKjnz8W4pekL3AI8VohmyZmsWW2PWaHgjsmqR6L13101VQ==} | |
4899 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
4900 | - dev: true | |
4901 | - | |
4902 | - /diff-sequences/27.4.0: | |
4903 | - resolution: {integrity: sha512-YqiQzkrsmHMH5uuh8OdQFU9/ZpADnwzml8z0O5HvRNda+5UZsaX/xN+AAxfR2hWq1Y7HZnAzO9J5lJXOuDz2Ww==} | |
4904 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
4905 | - dev: true | |
4906 | - | |
4907 | 4198 | /diff/4.0.2: |
4908 | 4199 | resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} |
4909 | 4200 | engines: {node: '>=0.3.1'} |
... | ... | @@ -4927,10 +4218,6 @@ packages: |
4927 | 4218 | esutils: 2.0.3 |
4928 | 4219 | dev: true |
4929 | 4220 | |
4930 | - /doctypes/1.1.0: | |
4931 | - resolution: {integrity: sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk=} | |
4932 | - dev: true | |
4933 | - | |
4934 | 4221 | /dom-align/1.12.2: |
4935 | 4222 | resolution: {integrity: sha512-pHuazgqrsTFrGU2WLDdXxCFabkdQDx72ddkraZNih1KsMcN5qsRSTR9O4VJRlwTPCPb5COYg3LOfiMHHcPInHg==} |
4936 | 4223 | dev: false |
... | ... | @@ -4950,7 +4237,7 @@ packages: |
4950 | 4237 | resolution: {integrity: sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==} |
4951 | 4238 | dependencies: |
4952 | 4239 | domelementtype: 2.2.0 |
4953 | - domhandler: 4.2.2 | |
4240 | + domhandler: 4.3.0 | |
4954 | 4241 | entities: 2.2.0 |
4955 | 4242 | dev: true |
4956 | 4243 | |
... | ... | @@ -4962,21 +4249,14 @@ packages: |
4962 | 4249 | resolution: {integrity: sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==} |
4963 | 4250 | dev: true |
4964 | 4251 | |
4965 | - /domexception/2.0.1: | |
4966 | - resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==} | |
4967 | - engines: {node: '>=8'} | |
4968 | - dependencies: | |
4969 | - webidl-conversions: 5.0.0 | |
4970 | - dev: true | |
4971 | - | |
4972 | 4252 | /domhandler/2.4.2: |
4973 | 4253 | resolution: {integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==} |
4974 | 4254 | dependencies: |
4975 | 4255 | domelementtype: 1.3.1 |
4976 | 4256 | dev: true |
4977 | 4257 | |
4978 | - /domhandler/4.2.2: | |
4979 | - resolution: {integrity: sha512-PzE9aBMsdZO8TK4BnuJwH0QT41wgMbRzuZrHUcpYncEjmQazq8QEaBWgLG7ZyC/DAZKEgglpIA6j4Qn/HmxS3w==} | |
4258 | + /domhandler/4.3.0: | |
4259 | + resolution: {integrity: sha512-fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g==} | |
4980 | 4260 | engines: {node: '>= 4'} |
4981 | 4261 | dependencies: |
4982 | 4262 | domelementtype: 2.2.0 |
... | ... | @@ -4994,7 +4274,7 @@ packages: |
4994 | 4274 | dependencies: |
4995 | 4275 | dom-serializer: 1.3.2 |
4996 | 4276 | domelementtype: 2.2.0 |
4997 | - domhandler: 4.2.2 | |
4277 | + domhandler: 4.3.0 | |
4998 | 4278 | dev: true |
4999 | 4279 | |
5000 | 4280 | /dot-case/3.0.4: |
... | ... | @@ -5011,13 +4291,14 @@ packages: |
5011 | 4291 | is-obj: 2.0.0 |
5012 | 4292 | dev: true |
5013 | 4293 | |
5014 | - /dotenv-expand/5.1.0: | |
5015 | - resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==} | |
4294 | + /dotenv-expand/8.0.2: | |
4295 | + resolution: {integrity: sha512-vKKAk+VOzAWOV/dPIeSYqhgC/TQY+6L6Ibkzfsr8xd1stdBsTuGu9asCOXgbYbBeS+f2Y6lqqEuw7riOA+xEUQ==} | |
4296 | + engines: {node: '>=12'} | |
5016 | 4297 | dev: true |
5017 | 4298 | |
5018 | - /dotenv/10.0.0: | |
5019 | - resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==} | |
5020 | - engines: {node: '>=10'} | |
4299 | + /dotenv/16.0.0: | |
4300 | + resolution: {integrity: sha512-qD9WU0MPM4SWLPJy/r2Be+2WgQj8plChsyrCNQzW/0WjvcJQiKQJ9mH3ZgB3fxbUUxgc/11ZJ0Fi5KiimWGz2Q==} | |
4301 | + engines: {node: '>=12'} | |
5021 | 4302 | dev: true |
5022 | 4303 | |
5023 | 4304 | /download/6.2.5: |
... | ... | @@ -5025,7 +4306,7 @@ packages: |
5025 | 4306 | engines: {node: '>=4'} |
5026 | 4307 | dependencies: |
5027 | 4308 | caw: 2.0.1 |
5028 | - content-disposition: 0.5.3 | |
4309 | + content-disposition: 0.5.4 | |
5029 | 4310 | decompress: 4.2.1 |
5030 | 4311 | ext-name: 5.0.0 |
5031 | 4312 | file-type: 5.2.0 |
... | ... | @@ -5043,7 +4324,7 @@ packages: |
5043 | 4324 | dependencies: |
5044 | 4325 | archive-type: 4.0.0 |
5045 | 4326 | caw: 2.0.1 |
5046 | - content-disposition: 0.5.3 | |
4327 | + content-disposition: 0.5.4 | |
5047 | 4328 | decompress: 4.2.1 |
5048 | 4329 | ext-name: 5.0.0 |
5049 | 4330 | file-type: 8.1.0 |
... | ... | @@ -5059,11 +4340,15 @@ packages: |
5059 | 4340 | resolution: {integrity: sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=} |
5060 | 4341 | dev: true |
5061 | 4342 | |
5062 | - /echarts/5.2.2: | |
5063 | - resolution: {integrity: sha512-yxuBfeIH5c+0FsoRP60w4De6omXhA06c7eUYBsC1ykB6Ys2yK5fSteIYWvkJ4xJVLQgCvAdO8C4mN6MLeJpBaw==} | |
4343 | + /eastasianwidth/0.2.0: | |
4344 | + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} | |
4345 | + dev: true | |
4346 | + | |
4347 | + /echarts/5.3.1: | |
4348 | + resolution: {integrity: sha512-nWdlbgX3OVY0hpqncSvp0gDt1FRSKWn7lsWEH+PHmfCuvE0QmSw17pczQvm8AvawnLEkmf1Cts7YwQJZNC0AEQ==} | |
5064 | 4349 | dependencies: |
5065 | 4350 | tslib: 2.3.0 |
5066 | - zrender: 5.2.1 | |
4351 | + zrender: 5.3.1 | |
5067 | 4352 | dev: false |
5068 | 4353 | |
5069 | 4354 | /ee-first/1.1.1: |
... | ... | @@ -5078,26 +4363,10 @@ packages: |
5078 | 4363 | jake: 10.8.2 |
5079 | 4364 | dev: true |
5080 | 4365 | |
5081 | - /electron-to-chromium/1.4.1: | |
5082 | - resolution: {integrity: sha512-9ldvb6QMHiDpUNF1iSwBTiTT0qXEN+xIO5WlCJrC5gt0z74ofOiqR698vaJqYWnri0XZiF0YmnrFmGq/EmpGAA==} | |
5083 | - dev: true | |
5084 | - | |
5085 | - /emittery/0.8.1: | |
5086 | - resolution: {integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==} | |
5087 | - engines: {node: '>=10'} | |
4366 | + /electron-to-chromium/1.4.87: | |
4367 | + resolution: {integrity: sha512-EXXTtDHFUKdFVkCnhauU7Xp8wmFC1ZG6GK9a1BeI2vvNhy61IwfNPo/CRexhf7mh4ajxAHJPind62BzpzVUeuQ==} | |
5088 | 4368 | dev: true |
5089 | 4369 | |
5090 | - /emmet/2.3.4: | |
5091 | - resolution: {integrity: sha512-3IqSwmO+N2ZGeuhDyhV/TIOJFUbkChi53bcasSNRE7Yd+4eorbbYz4e53TpMECt38NtYkZNupQCZRlwdAYA42A==} | |
5092 | - dependencies: | |
5093 | - '@emmetio/abbreviation': 2.2.2 | |
5094 | - '@emmetio/css-abbreviation': 2.1.4 | |
5095 | - dev: true | |
5096 | - | |
5097 | - /emoji-regex/7.0.3: | |
5098 | - resolution: {integrity: sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==} | |
5099 | - dev: false | |
5100 | - | |
5101 | 4370 | /emoji-regex/8.0.0: |
5102 | 4371 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} |
5103 | 4372 | |
... | ... | @@ -5125,13 +4394,6 @@ packages: |
5125 | 4394 | once: 1.4.0 |
5126 | 4395 | dev: true |
5127 | 4396 | |
5128 | - /enquirer/2.3.6: | |
5129 | - resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} | |
5130 | - engines: {node: '>=8.6'} | |
5131 | - dependencies: | |
5132 | - ansi-colors: 4.1.1 | |
5133 | - dev: true | |
5134 | - | |
5135 | 4397 | /entities/1.1.2: |
5136 | 4398 | resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==} |
5137 | 4399 | dev: true |
... | ... | @@ -5170,15 +4432,15 @@ packages: |
5170 | 4432 | get-intrinsic: 1.1.1 |
5171 | 4433 | get-symbol-description: 1.0.0 |
5172 | 4434 | has: 1.0.3 |
5173 | - has-symbols: 1.0.2 | |
4435 | + has-symbols: 1.0.3 | |
5174 | 4436 | internal-slot: 1.0.3 |
5175 | 4437 | is-callable: 1.2.4 |
5176 | - is-negative-zero: 2.0.1 | |
4438 | + is-negative-zero: 2.0.2 | |
5177 | 4439 | is-regex: 1.1.4 |
5178 | 4440 | is-shared-array-buffer: 1.0.1 |
5179 | 4441 | is-string: 1.0.7 |
5180 | - is-weakref: 1.0.1 | |
5181 | - object-inspect: 1.11.0 | |
4442 | + is-weakref: 1.0.2 | |
4443 | + object-inspect: 1.12.0 | |
5182 | 4444 | object-keys: 1.1.1 |
5183 | 4445 | object.assign: 4.1.2 |
5184 | 4446 | string.prototype.trimend: 1.0.4 |
... | ... | @@ -5199,329 +4461,150 @@ packages: |
5199 | 4461 | is-symbol: 1.0.4 |
5200 | 4462 | dev: true |
5201 | 4463 | |
5202 | - /esbuild-android-arm64/0.13.15: | |
5203 | - resolution: {integrity: sha512-m602nft/XXeO8YQPUDVoHfjyRVPdPgjyyXOxZ44MK/agewFFkPa8tUo6lAzSWh5Ui5PB4KR9UIFTSBKh/RrCmg==} | |
5204 | - cpu: [arm64] | |
5205 | - os: [android] | |
5206 | - requiresBuild: true | |
5207 | - dev: true | |
5208 | - optional: true | |
5209 | - | |
5210 | - /esbuild-android-arm64/0.14.5: | |
5211 | - resolution: {integrity: sha512-Sl6ysm7OAZZz+X3Mv3tOPhjMuSxNmztgoXH4ZZ3Yhbje5emEY6qiTnv3vBSljDlUl/yGaIjqC44qlj8s8G71xA==} | |
5212 | - cpu: [arm64] | |
4464 | + /esbuild-android-64/0.14.27: | |
4465 | + resolution: {integrity: sha512-LuEd4uPuj/16Y8j6kqy3Z2E9vNY9logfq8Tq+oTE2PZVuNs3M1kj5Qd4O95ee66yDGb3isaOCV7sOLDwtMfGaQ==} | |
4466 | + engines: {node: '>=12'} | |
4467 | + cpu: [x64] | |
5213 | 4468 | os: [android] |
5214 | 4469 | requiresBuild: true |
5215 | 4470 | dev: true |
5216 | 4471 | optional: true |
5217 | 4472 | |
5218 | - /esbuild-android-arm64/0.14.8: | |
5219 | - resolution: {integrity: sha512-tAEoSHnPBSH0cCAFa/aYs3LPsoTY4SwsP6wDKi4PaelbQYNJjqNpAeweyJ8l98g1D6ZkLyqsHbkYj+209sezkA==} | |
4473 | + /esbuild-android-arm64/0.14.27: | |
4474 | + resolution: {integrity: sha512-E8Ktwwa6vX8q7QeJmg8yepBYXaee50OdQS3BFtEHKrzbV45H4foMOeEE7uqdjGQZFBap5VAqo7pvjlyA92wznQ==} | |
4475 | + engines: {node: '>=12'} | |
5220 | 4476 | cpu: [arm64] |
5221 | 4477 | os: [android] |
5222 | 4478 | requiresBuild: true |
5223 | 4479 | dev: true |
5224 | 4480 | optional: true |
5225 | 4481 | |
5226 | - /esbuild-darwin-64/0.13.15: | |
5227 | - resolution: {integrity: sha512-ihOQRGs2yyp7t5bArCwnvn2Atr6X4axqPpEdCFPVp7iUj4cVSdisgvEKdNR7yH3JDjW6aQDw40iQFoTqejqxvQ==} | |
5228 | - cpu: [x64] | |
5229 | - os: [darwin] | |
5230 | - requiresBuild: true | |
5231 | - dev: true | |
5232 | - optional: true | |
5233 | - | |
5234 | - /esbuild-darwin-64/0.14.5: | |
5235 | - resolution: {integrity: sha512-VHZl23sM9BOZXcLxk1vTYls8TCAY+/3llw9vHKIWAHDHzBBOlVv26ORK8gnStNMqTjCSGSMoq4T5jOZf2WrJPQ==} | |
5236 | - cpu: [x64] | |
5237 | - os: [darwin] | |
5238 | - requiresBuild: true | |
5239 | - dev: true | |
5240 | - optional: true | |
5241 | - | |
5242 | - /esbuild-darwin-64/0.14.8: | |
5243 | - resolution: {integrity: sha512-t7p7WzTb+ybiD/irkMt5j/NzB+jY+8yPTsrXk5zCOH1O7DdthRnAUJ7pJPwImdL7jAGRbLtYRxUPgCHs/0qUPw==} | |
4482 | + /esbuild-darwin-64/0.14.27: | |
4483 | + resolution: {integrity: sha512-czw/kXl/1ZdenPWfw9jDc5iuIYxqUxgQ/Q+hRd4/3udyGGVI31r29LCViN2bAJgGvQkqyLGVcG03PJPEXQ5i2g==} | |
4484 | + engines: {node: '>=12'} | |
5244 | 4485 | cpu: [x64] |
5245 | 4486 | os: [darwin] |
5246 | 4487 | requiresBuild: true |
5247 | 4488 | dev: true |
5248 | 4489 | optional: true |
5249 | 4490 | |
5250 | - /esbuild-darwin-arm64/0.13.15: | |
5251 | - resolution: {integrity: sha512-i1FZssTVxUqNlJ6cBTj5YQj4imWy3m49RZRnHhLpefFIh0To05ow9DTrXROTE1urGTQCloFUXTX8QfGJy1P8dQ==} | |
5252 | - cpu: [arm64] | |
5253 | - os: [darwin] | |
5254 | - requiresBuild: true | |
5255 | - dev: true | |
5256 | - optional: true | |
5257 | - | |
5258 | - /esbuild-darwin-arm64/0.14.5: | |
5259 | - resolution: {integrity: sha512-ugPOLgEQPoPLSqAFBajaczt+lcbUZR+V2fby3572h5jf/kFV6UL8LAZ1Ze58hcbKwfvbh4C09kp0PhqPgXKwOg==} | |
5260 | - cpu: [arm64] | |
5261 | - os: [darwin] | |
5262 | - requiresBuild: true | |
5263 | - dev: true | |
5264 | - optional: true | |
5265 | - | |
5266 | - /esbuild-darwin-arm64/0.14.8: | |
5267 | - resolution: {integrity: sha512-5FeaT2zMUajKnBwUMSsjZev5iA38YHrDmXhkOCwZQIFUvhqojinqCrvv/X7dyxb1987bcY9KGwJ+EwDwd922HQ==} | |
4491 | + /esbuild-darwin-arm64/0.14.27: | |
4492 | + resolution: {integrity: sha512-BEsv2U2U4o672oV8+xpXNxN9bgqRCtddQC6WBh4YhXKDcSZcdNh7+6nS+DM2vu7qWIWNA4JbRG24LUUYXysimQ==} | |
4493 | + engines: {node: '>=12'} | |
5268 | 4494 | cpu: [arm64] |
5269 | 4495 | os: [darwin] |
5270 | 4496 | requiresBuild: true |
5271 | 4497 | dev: true |
5272 | 4498 | optional: true |
5273 | 4499 | |
5274 | - /esbuild-freebsd-64/0.13.15: | |
5275 | - resolution: {integrity: sha512-G3dLBXUI6lC6Z09/x+WtXBXbOYQZ0E8TDBqvn7aMaOCzryJs8LyVXKY4CPnHFXZAbSwkCbqiPuSQ1+HhrNk7EA==} | |
5276 | - cpu: [x64] | |
5277 | - os: [freebsd] | |
5278 | - requiresBuild: true | |
5279 | - dev: true | |
5280 | - optional: true | |
5281 | - | |
5282 | - /esbuild-freebsd-64/0.14.5: | |
5283 | - resolution: {integrity: sha512-uP0yOixSHF505o/Kzq9e4bvZblCZp9GGx+a7enLOVSuvIvLmtj2yhZLRPGfbVNkPJXktTKNRAnNGkXHl53M6sw==} | |
5284 | - cpu: [x64] | |
5285 | - os: [freebsd] | |
5286 | - requiresBuild: true | |
5287 | - dev: true | |
5288 | - optional: true | |
5289 | - | |
5290 | - /esbuild-freebsd-64/0.14.8: | |
5291 | - resolution: {integrity: sha512-pGHBLSf7ynfyDZXUtbq/GsA2VIwQlWXrUj1AMcE0id47mRdEUM8/1ZuqMGZx63hRnNgtK9zNJ8OIu2c7qq76Qw==} | |
4500 | + /esbuild-freebsd-64/0.14.27: | |
4501 | + resolution: {integrity: sha512-7FeiFPGBo+ga+kOkDxtPmdPZdayrSzsV9pmfHxcyLKxu+3oTcajeZlOO1y9HW+t5aFZPiv7czOHM4KNd0tNwCA==} | |
4502 | + engines: {node: '>=12'} | |
5292 | 4503 | cpu: [x64] |
5293 | 4504 | os: [freebsd] |
5294 | 4505 | requiresBuild: true |
5295 | 4506 | dev: true |
5296 | 4507 | optional: true |
5297 | 4508 | |
5298 | - /esbuild-freebsd-arm64/0.13.15: | |
5299 | - resolution: {integrity: sha512-KJx0fzEDf1uhNOZQStV4ujg30WlnwqUASaGSFPhznLM/bbheu9HhqZ6mJJZM32lkyfGJikw0jg7v3S0oAvtvQQ==} | |
5300 | - cpu: [arm64] | |
5301 | - os: [freebsd] | |
5302 | - requiresBuild: true | |
5303 | - dev: true | |
5304 | - optional: true | |
5305 | - | |
5306 | - /esbuild-freebsd-arm64/0.14.5: | |
5307 | - resolution: {integrity: sha512-M99NPu8hlirFo6Fgx0WfX6XxUFdGclUNv3MyyfDtTdNYbccMESwLSACGpE7HvJKWscdjaqajeMu2an9adGNfCw==} | |
5308 | - cpu: [arm64] | |
5309 | - os: [freebsd] | |
5310 | - requiresBuild: true | |
5311 | - dev: true | |
5312 | - optional: true | |
5313 | - | |
5314 | - /esbuild-freebsd-arm64/0.14.8: | |
5315 | - resolution: {integrity: sha512-g4GgAnrx6Gh1BjKJjJWgPnOR4tW2FcAx9wFvyUjRsIjB35gT+aAFR+P/zStu5OG9LnbS8Pvjd4wS68QIXk+2dA==} | |
4509 | + /esbuild-freebsd-arm64/0.14.27: | |
4510 | + resolution: {integrity: sha512-8CK3++foRZJluOWXpllG5zwAVlxtv36NpHfsbWS7TYlD8S+QruXltKlXToc/5ZNzBK++l6rvRKELu/puCLc7jA==} | |
4511 | + engines: {node: '>=12'} | |
5316 | 4512 | cpu: [arm64] |
5317 | 4513 | os: [freebsd] |
5318 | 4514 | requiresBuild: true |
5319 | 4515 | dev: true |
5320 | 4516 | optional: true |
5321 | 4517 | |
5322 | - /esbuild-linux-32/0.13.15: | |
5323 | - resolution: {integrity: sha512-ZvTBPk0YWCLMCXiFmD5EUtB30zIPvC5Itxz0mdTu/xZBbbHJftQgLWY49wEPSn2T/TxahYCRDWun5smRa0Tu+g==} | |
5324 | - cpu: [ia32] | |
5325 | - os: [linux] | |
5326 | - requiresBuild: true | |
5327 | - dev: true | |
5328 | - optional: true | |
5329 | - | |
5330 | - /esbuild-linux-32/0.14.5: | |
5331 | - resolution: {integrity: sha512-hfqln4yb/jf/vPvI/A6aCvpIzqF3PdDmrKiikTohEUuRtvEZz234krtNwEAw5ssCue4NX8BJqrMpCTAHOl3LQw==} | |
5332 | - cpu: [ia32] | |
5333 | - os: [linux] | |
5334 | - requiresBuild: true | |
5335 | - dev: true | |
5336 | - optional: true | |
5337 | - | |
5338 | - /esbuild-linux-32/0.14.8: | |
5339 | - resolution: {integrity: sha512-wPfQJadF5vTzriw/B8Ide74PeAJlZW7czNx3NIUHkHlXb+En1SeIqNzl6jG9DuJUl57xD9Ucl9YJFEkFeX8eLg==} | |
4518 | + /esbuild-linux-32/0.14.27: | |
4519 | + resolution: {integrity: sha512-qhNYIcT+EsYSBClZ5QhLzFzV5iVsP1YsITqblSaztr3+ZJUI+GoK8aXHyzKd7/CKKuK93cxEMJPpfi1dfsOfdw==} | |
4520 | + engines: {node: '>=12'} | |
5340 | 4521 | cpu: [ia32] |
5341 | 4522 | os: [linux] |
5342 | 4523 | requiresBuild: true |
5343 | 4524 | dev: true |
5344 | 4525 | optional: true |
5345 | 4526 | |
5346 | - /esbuild-linux-64/0.13.15: | |
5347 | - resolution: {integrity: sha512-eCKzkNSLywNeQTRBxJRQ0jxRCl2YWdMB3+PkWFo2BBQYC5mISLIVIjThNtn6HUNqua1pnvgP5xX0nHbZbPj5oA==} | |
5348 | - cpu: [x64] | |
5349 | - os: [linux] | |
5350 | - requiresBuild: true | |
5351 | - dev: true | |
5352 | - optional: true | |
5353 | - | |
5354 | - /esbuild-linux-64/0.14.5: | |
5355 | - resolution: {integrity: sha512-T+OuYPlhytjj5DsvjUXizNjbV+/IrZiaDc9SNUfqiUOXHu0URFqchjhPVbBiBnWykCMJFB6pqNap2Oxth4iuYw==} | |
5356 | - cpu: [x64] | |
5357 | - os: [linux] | |
5358 | - requiresBuild: true | |
5359 | - dev: true | |
5360 | - optional: true | |
5361 | - | |
5362 | - /esbuild-linux-64/0.14.8: | |
5363 | - resolution: {integrity: sha512-+RNuLk9RhRDL2kG+KTEYl5cIgF6AGLkRnKKWEu9DpCZaickONEqrKyQSVn410Hj105DLdW6qvIXQQHPycJhExg==} | |
4527 | + /esbuild-linux-64/0.14.27: | |
4528 | + resolution: {integrity: sha512-ESjck9+EsHoTaKWlFKJpPZRN26uiav5gkI16RuI8WBxUdLrrAlYuYSndxxKgEn1csd968BX/8yQZATYf/9+/qg==} | |
4529 | + engines: {node: '>=12'} | |
5364 | 4530 | cpu: [x64] |
5365 | 4531 | os: [linux] |
5366 | 4532 | requiresBuild: true |
5367 | 4533 | dev: true |
5368 | 4534 | optional: true |
5369 | 4535 | |
5370 | - /esbuild-linux-arm/0.13.15: | |
5371 | - resolution: {integrity: sha512-wUHttDi/ol0tD8ZgUMDH8Ef7IbDX+/UsWJOXaAyTdkT7Yy9ZBqPg8bgB/Dn3CZ9SBpNieozrPRHm0BGww7W/jA==} | |
5372 | - cpu: [arm] | |
5373 | - os: [linux] | |
5374 | - requiresBuild: true | |
5375 | - dev: true | |
5376 | - optional: true | |
5377 | - | |
5378 | - /esbuild-linux-arm/0.14.5: | |
5379 | - resolution: {integrity: sha512-5b10jKJ3lU4BUchOw9TgRResu8UZJf8qVjAzV5muHedonCfBzClGTT4KCNuOcLTJomH3wz6gNVJt1AxMglXnJg==} | |
5380 | - cpu: [arm] | |
5381 | - os: [linux] | |
5382 | - requiresBuild: true | |
5383 | - dev: true | |
5384 | - optional: true | |
5385 | - | |
5386 | - /esbuild-linux-arm/0.14.8: | |
5387 | - resolution: {integrity: sha512-HIct38SvUAIJbiTwV/PVQroimQo96TGtzRDAEZxTorB4vsAj1r8bd0keXExPU4RH7G0zIqC4loQQpWYL+nH4Vg==} | |
4536 | + /esbuild-linux-arm/0.14.27: | |
4537 | + resolution: {integrity: sha512-JnnmgUBdqLQO9hoNZQqNHFWlNpSX82vzB3rYuCJMhtkuaWQEmQz6Lec1UIxJdC38ifEghNTBsF9bbe8dFilnCw==} | |
4538 | + engines: {node: '>=12'} | |
5388 | 4539 | cpu: [arm] |
5389 | 4540 | os: [linux] |
5390 | 4541 | requiresBuild: true |
5391 | 4542 | dev: true |
5392 | 4543 | optional: true |
5393 | 4544 | |
5394 | - /esbuild-linux-arm64/0.13.15: | |
5395 | - resolution: {integrity: sha512-bYpuUlN6qYU9slzr/ltyLTR9YTBS7qUDymO8SV7kjeNext61OdmqFAzuVZom+OLW1HPHseBfJ/JfdSlx8oTUoA==} | |
5396 | - cpu: [arm64] | |
5397 | - os: [linux] | |
5398 | - requiresBuild: true | |
5399 | - dev: true | |
5400 | - optional: true | |
5401 | - | |
5402 | - /esbuild-linux-arm64/0.14.5: | |
5403 | - resolution: {integrity: sha512-ANOzoaH4kfbhEZT0EGY9g1tsZhDA+I0FRwBsj7D8pCU900pXF/l8YAOy5jWFQIb3vjG5+orFc5SqSzAKCisvTQ==} | |
5404 | - cpu: [arm64] | |
5405 | - os: [linux] | |
5406 | - requiresBuild: true | |
5407 | - dev: true | |
5408 | - optional: true | |
5409 | - | |
5410 | - /esbuild-linux-arm64/0.14.8: | |
5411 | - resolution: {integrity: sha512-BtWoKNYul9UoxUvQUSdSrvSmJyFL1sGnNPTSqWCg1wMe4kmc8UY2yVsXSSkKO8N2jtHxlgFyz/XhvNBzEwGVcw==} | |
4545 | + /esbuild-linux-arm64/0.14.27: | |
4546 | + resolution: {integrity: sha512-no6Mi17eV2tHlJnqBHRLekpZ2/VYx+NfGxKcBE/2xOMYwctsanCaXxw4zapvNrGE9X38vefVXLz6YCF8b1EHiQ==} | |
4547 | + engines: {node: '>=12'} | |
5412 | 4548 | cpu: [arm64] |
5413 | 4549 | os: [linux] |
5414 | 4550 | requiresBuild: true |
5415 | 4551 | dev: true |
5416 | 4552 | optional: true |
5417 | 4553 | |
5418 | - /esbuild-linux-mips64le/0.13.15: | |
5419 | - resolution: {integrity: sha512-KlVjIG828uFPyJkO/8gKwy9RbXhCEUeFsCGOJBepUlpa7G8/SeZgncUEz/tOOUJTcWMTmFMtdd3GElGyAtbSWg==} | |
5420 | - cpu: [mips64el] | |
5421 | - os: [linux] | |
5422 | - requiresBuild: true | |
5423 | - dev: true | |
5424 | - optional: true | |
5425 | - | |
5426 | - /esbuild-linux-mips64le/0.14.5: | |
5427 | - resolution: {integrity: sha512-sSmGfOUNNB2Nd3tzp1RHSxiJmM5/RUIEP5aAtH+PpOP7FPp15Jcfwq7UNBJ82KLN3SJcwhUeEfcCaUFBzbTKxg==} | |
5428 | - cpu: [mips64el] | |
5429 | - os: [linux] | |
5430 | - requiresBuild: true | |
5431 | - dev: true | |
5432 | - optional: true | |
5433 | - | |
5434 | - /esbuild-linux-mips64le/0.14.8: | |
5435 | - resolution: {integrity: sha512-0DxnCl9XTvaQtsX6Qa+Phr5i9b04INwwSv2RbQ2UWRLoQ/037iaFzbmuhgrcmaGOcRwPkCa+4Qo5EgI01MUgsQ==} | |
4554 | + /esbuild-linux-mips64le/0.14.27: | |
4555 | + resolution: {integrity: sha512-NolWP2uOvIJpbwpsDbwfeExZOY1bZNlWE/kVfkzLMsSgqeVcl5YMen/cedRe9mKnpfLli+i0uSp7N+fkKNU27A==} | |
4556 | + engines: {node: '>=12'} | |
5436 | 4557 | cpu: [mips64el] |
5437 | 4558 | os: [linux] |
5438 | 4559 | requiresBuild: true |
5439 | 4560 | dev: true |
5440 | 4561 | optional: true |
5441 | 4562 | |
5442 | - /esbuild-linux-ppc64le/0.13.15: | |
5443 | - resolution: {integrity: sha512-h6gYF+OsaqEuBjeesTBtUPw0bmiDu7eAeuc2OEH9S6mV9/jPhPdhOWzdeshb0BskRZxPhxPOjqZ+/OqLcxQwEQ==} | |
5444 | - cpu: [ppc64] | |
5445 | - os: [linux] | |
5446 | - requiresBuild: true | |
5447 | - dev: true | |
5448 | - optional: true | |
5449 | - | |
5450 | - /esbuild-linux-ppc64le/0.14.5: | |
5451 | - resolution: {integrity: sha512-usfQrVVIQcpuc/U2NWc7/Ry+m622v+PjJ5eErNPdjWBPlcvD6kXaBTv94uQkVzZOHX3uYqprRrOjseed9ApSYA==} | |
4563 | + /esbuild-linux-ppc64le/0.14.27: | |
4564 | + resolution: {integrity: sha512-/7dTjDvXMdRKmsSxKXeWyonuGgblnYDn0MI1xDC7J1VQXny8k1qgNp6VmrlsawwnsymSUUiThhkJsI+rx0taNA==} | |
4565 | + engines: {node: '>=12'} | |
5452 | 4566 | cpu: [ppc64] |
5453 | 4567 | os: [linux] |
5454 | 4568 | requiresBuild: true |
5455 | 4569 | dev: true |
5456 | 4570 | optional: true |
5457 | 4571 | |
5458 | - /esbuild-linux-ppc64le/0.14.8: | |
5459 | - resolution: {integrity: sha512-Uzr/OMj97Q0qoWLXCvXCKUY/z1SNI4iSZEuYylM5Nd71HGStL32XWq/MReJ0PYMvUMKKJicKSKw2jWM1uBQ84Q==} | |
5460 | - cpu: [ppc64] | |
4572 | + /esbuild-linux-riscv64/0.14.27: | |
4573 | + resolution: {integrity: sha512-D+aFiUzOJG13RhrSmZgrcFaF4UUHpqj7XSKrIiCXIj1dkIkFqdrmqMSOtSs78dOtObWiOrFCDDzB24UyeEiNGg==} | |
4574 | + engines: {node: '>=12'} | |
4575 | + cpu: [riscv64] | |
5461 | 4576 | os: [linux] |
5462 | 4577 | requiresBuild: true |
5463 | 4578 | dev: true |
5464 | 4579 | optional: true |
5465 | 4580 | |
5466 | - /esbuild-linux-s390x/0.14.8: | |
5467 | - resolution: {integrity: sha512-vURka7aCA5DrRoOqOn6pXYwFlDSoQ4qnqam8AC0Ikn6tibutuhgar6M3Ek2DCuz9yqd396mngdYr5A8x2TPkww==} | |
4581 | + /esbuild-linux-s390x/0.14.27: | |
4582 | + resolution: {integrity: sha512-CD/D4tj0U4UQjELkdNlZhQ8nDHU5rBn6NGp47Hiz0Y7/akAY5i0oGadhEIg0WCY/HYVXFb3CsSPPwaKcTOW3bg==} | |
4583 | + engines: {node: '>=12'} | |
5468 | 4584 | cpu: [s390x] |
5469 | 4585 | os: [linux] |
5470 | 4586 | requiresBuild: true |
5471 | 4587 | dev: true |
5472 | 4588 | optional: true |
5473 | 4589 | |
5474 | - /esbuild-netbsd-64/0.13.15: | |
5475 | - resolution: {integrity: sha512-3+yE9emwoevLMyvu+iR3rsa+Xwhie7ZEHMGDQ6dkqP/ndFzRHkobHUKTe+NCApSqG5ce2z4rFu+NX/UHnxlh3w==} | |
5476 | - cpu: [x64] | |
5477 | - os: [netbsd] | |
5478 | - requiresBuild: true | |
5479 | - dev: true | |
5480 | - optional: true | |
5481 | - | |
5482 | - /esbuild-netbsd-64/0.14.5: | |
5483 | - resolution: {integrity: sha512-Q5KpvPZcPnNEaTjrvuWqvEnlhI2jyi1wWwYunlEUAhx60spQOTy10sdYOA+s1M+LPb6kwvasrZZDmYyQlcVZeA==} | |
5484 | - cpu: [x64] | |
5485 | - os: [netbsd] | |
5486 | - requiresBuild: true | |
5487 | - dev: true | |
5488 | - optional: true | |
5489 | - | |
5490 | - /esbuild-netbsd-64/0.14.8: | |
5491 | - resolution: {integrity: sha512-tjyDak2/pp0VUAhBW6/ueuReMd5qLHNlisXl5pq0Xn0z+kH9urA/t1igm0JassWbdMz123td5ZEQWoD9KbtOAw==} | |
4590 | + /esbuild-netbsd-64/0.14.27: | |
4591 | + resolution: {integrity: sha512-h3mAld69SrO1VoaMpYl3a5FNdGRE/Nqc+E8VtHOag4tyBwhCQXxtvDDOAKOUQexBGca0IuR6UayQ4ntSX5ij1Q==} | |
4592 | + engines: {node: '>=12'} | |
5492 | 4593 | cpu: [x64] |
5493 | 4594 | os: [netbsd] |
5494 | 4595 | requiresBuild: true |
5495 | 4596 | dev: true |
5496 | 4597 | optional: true |
5497 | 4598 | |
5498 | - /esbuild-node-loader/0.6.3_typescript@4.5.4: | |
5499 | - resolution: {integrity: sha512-Bf6o8SiMMh5+r20jsjAThNOtzo3t8Ye4Qdzz+twWHnxu28SdkGUr5ahq8iX0qbd+I9ge8sLNX7oQoNW1YzHlqA==} | |
5500 | - peerDependencies: | |
5501 | - typescript: ^4.0 | |
4599 | + /esbuild-node-loader/0.6.5: | |
4600 | + resolution: {integrity: sha512-uPP+dllWm38cFvDysdocutN3lfe5pTIbddAHp1ENyLzpHYqE2r+3Wo+pfg9X3p8DFWwzIisft5YkeBIthIcixw==} | |
5502 | 4601 | dependencies: |
5503 | - esbuild: 0.13.15 | |
5504 | - typescript: 4.5.4 | |
5505 | - dev: true | |
5506 | - | |
5507 | - /esbuild-openbsd-64/0.13.15: | |
5508 | - resolution: {integrity: sha512-wTfvtwYJYAFL1fSs8yHIdf5GEE4NkbtbXtjLWjM3Cw8mmQKqsg8kTiqJ9NJQe5NX/5Qlo7Xd9r1yKMMkHllp5g==} | |
5509 | - cpu: [x64] | |
5510 | - os: [openbsd] | |
5511 | - requiresBuild: true | |
5512 | - dev: true | |
5513 | - optional: true | |
5514 | - | |
5515 | - /esbuild-openbsd-64/0.14.5: | |
5516 | - resolution: {integrity: sha512-RZzRUu1RYKextJgXkHhAsuhLDvm73YP/wogpUG9MaAGvKTxnKAKRuaw2zJfnbz8iBqBQB2no2PmpVBNbqUTQrw==} | |
5517 | - cpu: [x64] | |
5518 | - os: [openbsd] | |
5519 | - requiresBuild: true | |
4602 | + esbuild: 0.14.27 | |
5520 | 4603 | dev: true |
5521 | - optional: true | |
5522 | 4604 | |
5523 | - /esbuild-openbsd-64/0.14.8: | |
5524 | - resolution: {integrity: sha512-zAKKV15fIyAuDDga5rQv0lW2ufBWj/OCjqjDBb3dJf5SfoAi/DMIHuzmkKQeDQ+oxt9Rp1D7ZOlOBVflutFTqQ==} | |
4605 | + /esbuild-openbsd-64/0.14.27: | |
4606 | + resolution: {integrity: sha512-xwSje6qIZaDHXWoPpIgvL+7fC6WeubHHv18tusLYMwL+Z6bEa4Pbfs5IWDtQdHkArtfxEkIZz77944z8MgDxGw==} | |
4607 | + engines: {node: '>=12'} | |
5525 | 4608 | cpu: [x64] |
5526 | 4609 | os: [openbsd] |
5527 | 4610 | requiresBuild: true |
... | ... | @@ -5532,105 +4615,44 @@ packages: |
5532 | 4615 | resolution: {integrity: sha512-WsX0OJy8IGOsGZV+4oHEU5B6XQUpxOsZN1iSoYf9COTDbY7WXcOwd1oCLYNWUIWCExyGXSghIGq2k7sXBldxwQ==} |
5533 | 4616 | dev: true |
5534 | 4617 | |
5535 | - /esbuild-register/3.2.1_esbuild@0.14.5: | |
5536 | - resolution: {integrity: sha512-LFgzsqCHsFUpTZdYJFTl1o5p60+C4nZ65BzFYPS1jKGwiKk6JLH8tuLwuydvpgreNUAeDUhTPJgJNjmpZKSOpQ==} | |
4618 | + /esbuild-register/3.3.2_esbuild@0.14.27: | |
4619 | + resolution: {integrity: sha512-jceAtTO6zxPmCfSD5cBb3rgIK1vmuqCKYwgylHiS1BF4pq0jJiJb4K2QMuqF4BEw7XDBRatYzip0upyTzfkgsQ==} | |
5537 | 4620 | peerDependencies: |
5538 | 4621 | esbuild: '>=0.12 <1' |
5539 | 4622 | dependencies: |
5540 | - esbuild: 0.14.5 | |
5541 | - jsonc-parser: 3.0.0 | |
5542 | - dev: true | |
5543 | - | |
5544 | - /esbuild-sunos-64/0.13.15: | |
5545 | - resolution: {integrity: sha512-lbivT9Bx3t1iWWrSnGyBP9ODriEvWDRiweAs69vI+miJoeKwHWOComSRukttbuzjZ8r1q0mQJ8Z7yUsDJ3hKdw==} | |
5546 | - cpu: [x64] | |
5547 | - os: [sunos] | |
5548 | - requiresBuild: true | |
5549 | - dev: true | |
5550 | - optional: true | |
5551 | - | |
5552 | - /esbuild-sunos-64/0.14.5: | |
5553 | - resolution: {integrity: sha512-J2ffKsBBWscQlye+/giEgKsQCppwHHFqqt/sh+ojVF+DZy1ve6RpPGwXGcGF6IaZTAI9+Vk4eHleiQxb+PC9Yw==} | |
5554 | - cpu: [x64] | |
5555 | - os: [sunos] | |
5556 | - requiresBuild: true | |
4623 | + esbuild: 0.14.27 | |
5557 | 4624 | dev: true |
5558 | - optional: true | |
5559 | 4625 | |
5560 | - /esbuild-sunos-64/0.14.8: | |
5561 | - resolution: {integrity: sha512-xV41Wa8imziM/2dbWZjLKQbIETRgo5dE0oc/uPsgaecJhsrdA0VkGa/V432LJSUYv967xHDQdoRRl5tr80+NnQ==} | |
4626 | + /esbuild-sunos-64/0.14.27: | |
4627 | + resolution: {integrity: sha512-/nBVpWIDjYiyMhuqIqbXXsxBc58cBVH9uztAOIfWShStxq9BNBik92oPQPJ57nzWXRNKQUEFWr4Q98utDWz7jg==} | |
4628 | + engines: {node: '>=12'} | |
5562 | 4629 | cpu: [x64] |
5563 | 4630 | os: [sunos] |
5564 | 4631 | requiresBuild: true |
5565 | 4632 | dev: true |
5566 | 4633 | optional: true |
5567 | 4634 | |
5568 | - /esbuild-windows-32/0.13.15: | |
5569 | - resolution: {integrity: sha512-fDMEf2g3SsJ599MBr50cY5ve5lP1wyVwTe6aLJsM01KtxyKkB4UT+fc5MXQFn3RLrAIAZOG+tHC+yXObpSn7Nw==} | |
5570 | - cpu: [ia32] | |
5571 | - os: [win32] | |
5572 | - requiresBuild: true | |
5573 | - dev: true | |
5574 | - optional: true | |
5575 | - | |
5576 | - /esbuild-windows-32/0.14.5: | |
5577 | - resolution: {integrity: sha512-OTZvuAc1JBnwmeT+hR1+Vmgz6LOD7DggpnwtKMAExruSLxUMl02Z3pyalJ7zKh3gJ/KBRM1JQZLSk4/mFWijeQ==} | |
5578 | - cpu: [ia32] | |
5579 | - os: [win32] | |
5580 | - requiresBuild: true | |
5581 | - dev: true | |
5582 | - optional: true | |
5583 | - | |
5584 | - /esbuild-windows-32/0.14.8: | |
5585 | - resolution: {integrity: sha512-AxpdeLKQSyCZo7MzdOyV4OgEbEJcjnrS/2niAjbHESbjuS5P1DN/5vZoJ/JSWDVa/40OkBuHBhAXMx1HK3UDsg==} | |
4635 | + /esbuild-windows-32/0.14.27: | |
4636 | + resolution: {integrity: sha512-Q9/zEjhZJ4trtWhFWIZvS/7RUzzi8rvkoaS9oiizkHTTKd8UxFwn/Mm2OywsAfYymgUYm8+y2b+BKTNEFxUekw==} | |
4637 | + engines: {node: '>=12'} | |
5586 | 4638 | cpu: [ia32] |
5587 | 4639 | os: [win32] |
5588 | 4640 | requiresBuild: true |
5589 | 4641 | dev: true |
5590 | 4642 | optional: true |
5591 | 4643 | |
5592 | - /esbuild-windows-64/0.13.15: | |
5593 | - resolution: {integrity: sha512-9aMsPRGDWCd3bGjUIKG/ZOJPKsiztlxl/Q3C1XDswO6eNX/Jtwu4M+jb6YDH9hRSUflQWX0XKAfWzgy5Wk54JQ==} | |
5594 | - cpu: [x64] | |
5595 | - os: [win32] | |
5596 | - requiresBuild: true | |
5597 | - dev: true | |
5598 | - optional: true | |
5599 | - | |
5600 | - /esbuild-windows-64/0.14.5: | |
5601 | - resolution: {integrity: sha512-ZM9rlBDsPEeMVJ1wcpNMXUad9VzYOFeOBUXBi+16HZTvFPy2DkcC2ZWcrByP3IESToD5lvHdjSX/w8rxphjqig==} | |
5602 | - cpu: [x64] | |
5603 | - os: [win32] | |
5604 | - requiresBuild: true | |
5605 | - dev: true | |
5606 | - optional: true | |
5607 | - | |
5608 | - /esbuild-windows-64/0.14.8: | |
5609 | - resolution: {integrity: sha512-/3pllNoy8mrz/E1rYalwiwwhzJBrYQhEapwAteHZbFVhGzYuB8F80e8x5eA8dhFHxDiZh1VzK+hREwwSt8UTQA==} | |
4644 | + /esbuild-windows-64/0.14.27: | |
4645 | + resolution: {integrity: sha512-b3y3vTSl5aEhWHK66ngtiS/c6byLf6y/ZBvODH1YkBM+MGtVL6jN38FdHUsZasCz9gFwYs/lJMVY9u7GL6wfYg==} | |
4646 | + engines: {node: '>=12'} | |
5610 | 4647 | cpu: [x64] |
5611 | 4648 | os: [win32] |
5612 | 4649 | requiresBuild: true |
5613 | 4650 | dev: true |
5614 | 4651 | optional: true |
5615 | 4652 | |
5616 | - /esbuild-windows-arm64/0.13.15: | |
5617 | - resolution: {integrity: sha512-zzvyCVVpbwQQATaf3IG8mu1IwGEiDxKkYUdA4FpoCHi1KtPa13jeScYDjlW0Qh+ebWzpKfR2ZwvqAQkSWNcKjA==} | |
5618 | - cpu: [arm64] | |
5619 | - os: [win32] | |
5620 | - requiresBuild: true | |
5621 | - dev: true | |
5622 | - optional: true | |
5623 | - | |
5624 | - /esbuild-windows-arm64/0.14.5: | |
5625 | - resolution: {integrity: sha512-iK41mKG2LG0AKHE+9g/jDYU5ZQpJObt1uIPSGTiiiJKI5qbHdEck6Gaqq2tmBI933F2zB9yqZIX7IAdxwN/q4A==} | |
5626 | - cpu: [arm64] | |
5627 | - os: [win32] | |
5628 | - requiresBuild: true | |
5629 | - dev: true | |
5630 | - optional: true | |
5631 | - | |
5632 | - /esbuild-windows-arm64/0.14.8: | |
5633 | - resolution: {integrity: sha512-lTm5naoNgaUvzIiax3XYIEebqwr3bIIEEtqUhzQ2UQ+JMBmvhr02w3sJIJqF3axTX6TgWrC1OtM7DYNvFG+aXA==} | |
4653 | + /esbuild-windows-arm64/0.14.27: | |
4654 | + resolution: {integrity: sha512-I/reTxr6TFMcR5qbIkwRGvldMIaiBu2+MP0LlD7sOlNXrfqIl9uNjsuxFPGEG4IRomjfQ5q8WT+xlF/ySVkqKg==} | |
4655 | + engines: {node: '>=12'} | |
5634 | 4656 | cpu: [arm64] |
5635 | 4657 | os: [win32] |
5636 | 4658 | requiresBuild: true |
... | ... | @@ -5649,77 +4671,32 @@ packages: |
5649 | 4671 | requiresBuild: true |
5650 | 4672 | dev: true |
5651 | 4673 | |
5652 | - /esbuild/0.13.15: | |
5653 | - resolution: {integrity: sha512-raCxt02HBKv8RJxE8vkTSCXGIyKHdEdGfUmiYb8wnabnaEmHzyW7DCHb5tEN0xU8ryqg5xw54mcwnYkC4x3AIw==} | |
5654 | - hasBin: true | |
5655 | - requiresBuild: true | |
5656 | - optionalDependencies: | |
5657 | - esbuild-android-arm64: 0.13.15 | |
5658 | - esbuild-darwin-64: 0.13.15 | |
5659 | - esbuild-darwin-arm64: 0.13.15 | |
5660 | - esbuild-freebsd-64: 0.13.15 | |
5661 | - esbuild-freebsd-arm64: 0.13.15 | |
5662 | - esbuild-linux-32: 0.13.15 | |
5663 | - esbuild-linux-64: 0.13.15 | |
5664 | - esbuild-linux-arm: 0.13.15 | |
5665 | - esbuild-linux-arm64: 0.13.15 | |
5666 | - esbuild-linux-mips64le: 0.13.15 | |
5667 | - esbuild-linux-ppc64le: 0.13.15 | |
5668 | - esbuild-netbsd-64: 0.13.15 | |
5669 | - esbuild-openbsd-64: 0.13.15 | |
5670 | - esbuild-sunos-64: 0.13.15 | |
5671 | - esbuild-windows-32: 0.13.15 | |
5672 | - esbuild-windows-64: 0.13.15 | |
5673 | - esbuild-windows-arm64: 0.13.15 | |
5674 | - dev: true | |
5675 | - | |
5676 | - /esbuild/0.14.5: | |
5677 | - resolution: {integrity: sha512-ofwgH4ITPXhkMo2AM39oXpSe5KIyWjxicdqYVy+tLa1lMgxzPCKwaepcrSRtYbgTUMXwquxB1C3xQYpUNaPAFA==} | |
5678 | - hasBin: true | |
5679 | - requiresBuild: true | |
5680 | - optionalDependencies: | |
5681 | - esbuild-android-arm64: 0.14.5 | |
5682 | - esbuild-darwin-64: 0.14.5 | |
5683 | - esbuild-darwin-arm64: 0.14.5 | |
5684 | - esbuild-freebsd-64: 0.14.5 | |
5685 | - esbuild-freebsd-arm64: 0.14.5 | |
5686 | - esbuild-linux-32: 0.14.5 | |
5687 | - esbuild-linux-64: 0.14.5 | |
5688 | - esbuild-linux-arm: 0.14.5 | |
5689 | - esbuild-linux-arm64: 0.14.5 | |
5690 | - esbuild-linux-mips64le: 0.14.5 | |
5691 | - esbuild-linux-ppc64le: 0.14.5 | |
5692 | - esbuild-netbsd-64: 0.14.5 | |
5693 | - esbuild-openbsd-64: 0.14.5 | |
5694 | - esbuild-sunos-64: 0.14.5 | |
5695 | - esbuild-windows-32: 0.14.5 | |
5696 | - esbuild-windows-64: 0.14.5 | |
5697 | - esbuild-windows-arm64: 0.14.5 | |
5698 | - dev: true | |
5699 | - | |
5700 | - /esbuild/0.14.8: | |
5701 | - resolution: {integrity: sha512-stMsCBmxwaMpeK8GC/49L/cRGIwsHwoEN7Twk5zDTHlm/63c0KXFKzDC8iM2Mi3fyCKwS002TAH6IlAvqR6t3g==} | |
4674 | + /esbuild/0.14.27: | |
4675 | + resolution: {integrity: sha512-MZQt5SywZS3hA9fXnMhR22dv0oPGh6QtjJRIYbgL1AeqAoQZE+Qn5ppGYQAoHv/vq827flj4tIJ79Mrdiwk46Q==} | |
4676 | + engines: {node: '>=12'} | |
5702 | 4677 | hasBin: true |
5703 | 4678 | requiresBuild: true |
5704 | 4679 | optionalDependencies: |
5705 | - esbuild-android-arm64: 0.14.8 | |
5706 | - esbuild-darwin-64: 0.14.8 | |
5707 | - esbuild-darwin-arm64: 0.14.8 | |
5708 | - esbuild-freebsd-64: 0.14.8 | |
5709 | - esbuild-freebsd-arm64: 0.14.8 | |
5710 | - esbuild-linux-32: 0.14.8 | |
5711 | - esbuild-linux-64: 0.14.8 | |
5712 | - esbuild-linux-arm: 0.14.8 | |
5713 | - esbuild-linux-arm64: 0.14.8 | |
5714 | - esbuild-linux-mips64le: 0.14.8 | |
5715 | - esbuild-linux-ppc64le: 0.14.8 | |
5716 | - esbuild-linux-s390x: 0.14.8 | |
5717 | - esbuild-netbsd-64: 0.14.8 | |
5718 | - esbuild-openbsd-64: 0.14.8 | |
5719 | - esbuild-sunos-64: 0.14.8 | |
5720 | - esbuild-windows-32: 0.14.8 | |
5721 | - esbuild-windows-64: 0.14.8 | |
5722 | - esbuild-windows-arm64: 0.14.8 | |
4680 | + esbuild-android-64: 0.14.27 | |
4681 | + esbuild-android-arm64: 0.14.27 | |
4682 | + esbuild-darwin-64: 0.14.27 | |
4683 | + esbuild-darwin-arm64: 0.14.27 | |
4684 | + esbuild-freebsd-64: 0.14.27 | |
4685 | + esbuild-freebsd-arm64: 0.14.27 | |
4686 | + esbuild-linux-32: 0.14.27 | |
4687 | + esbuild-linux-64: 0.14.27 | |
4688 | + esbuild-linux-arm: 0.14.27 | |
4689 | + esbuild-linux-arm64: 0.14.27 | |
4690 | + esbuild-linux-mips64le: 0.14.27 | |
4691 | + esbuild-linux-ppc64le: 0.14.27 | |
4692 | + esbuild-linux-riscv64: 0.14.27 | |
4693 | + esbuild-linux-s390x: 0.14.27 | |
4694 | + esbuild-netbsd-64: 0.14.27 | |
4695 | + esbuild-openbsd-64: 0.14.27 | |
4696 | + esbuild-sunos-64: 0.14.27 | |
4697 | + esbuild-windows-32: 0.14.27 | |
4698 | + esbuild-windows-64: 0.14.27 | |
4699 | + esbuild-windows-arm64: 0.14.27 | |
5723 | 4700 | dev: true |
5724 | 4701 | |
5725 | 4702 | /escalade/3.1.1: |
... | ... | @@ -5736,66 +4713,21 @@ packages: |
5736 | 4713 | engines: {node: '>=0.8.0'} |
5737 | 4714 | dev: true |
5738 | 4715 | |
5739 | - /escape-string-regexp/2.0.0: | |
5740 | - resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} | |
5741 | - engines: {node: '>=8'} | |
5742 | - dev: true | |
5743 | - | |
5744 | 4716 | /escape-string-regexp/4.0.0: |
5745 | 4717 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} |
5746 | 4718 | engines: {node: '>=10'} |
5747 | 4719 | dev: true |
5748 | 4720 | |
5749 | - /escodegen/2.0.0: | |
5750 | - resolution: {integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==} | |
5751 | - engines: {node: '>=6.0'} | |
5752 | - hasBin: true | |
5753 | - dependencies: | |
5754 | - esprima: 4.0.1 | |
5755 | - estraverse: 5.3.0 | |
5756 | - esutils: 2.0.3 | |
5757 | - optionator: 0.8.3 | |
5758 | - optionalDependencies: | |
5759 | - source-map: 0.6.1 | |
5760 | - dev: true | |
5761 | - | |
5762 | - /eslint-config-prettier/8.3.0_eslint@8.5.0: | |
5763 | - resolution: {integrity: sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==} | |
4721 | + /eslint-config-prettier/8.5.0_eslint@8.11.0: | |
4722 | + resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} | |
5764 | 4723 | hasBin: true |
5765 | 4724 | peerDependencies: |
5766 | 4725 | eslint: '>=7.0.0' |
5767 | 4726 | dependencies: |
5768 | - eslint: 8.5.0 | |
4727 | + eslint: 8.11.0 | |
5769 | 4728 | dev: true |
5770 | 4729 | |
5771 | - /eslint-define-config/1.2.1: | |
5772 | - resolution: {integrity: sha512-Mj6OvJXNDrMA+RtFtPFst4BRJPkB4qi9B+8FFr/hdxY0gNbhGoSnp7i3w3/k75vMXTbbfsmeZhQUomI6mK/JVw==} | |
5773 | - engines: {node: '>= 16.9.0', npm: '>= 7.0.0', pnpm: '>= 6.17.0'} | |
5774 | - dev: true | |
5775 | - | |
5776 | - /eslint-plugin-jest/25.3.2_8e4587ffdbad7ecbf6b0774bd21bf51b: | |
5777 | - resolution: {integrity: sha512-1aPC7RRJkMCNgklHMDECw8fnzag3JBH53LaxmFkDTR7+PfMCO5V6f8XFRHoT2I+Fr4pVO9cPdRGlf7/haB2O5Q==} | |
5778 | - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} | |
5779 | - peerDependencies: | |
5780 | - '@typescript-eslint/eslint-plugin': ^4.0.0 || ^5.0.0 | |
5781 | - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 | |
5782 | - jest: '*' | |
5783 | - peerDependenciesMeta: | |
5784 | - '@typescript-eslint/eslint-plugin': | |
5785 | - optional: true | |
5786 | - jest: | |
5787 | - optional: true | |
5788 | - dependencies: | |
5789 | - '@typescript-eslint/eslint-plugin': 5.8.1_3a47348159e115370aa4cba56aba33b6 | |
5790 | - '@typescript-eslint/experimental-utils': 5.7.0_eslint@8.5.0+typescript@4.5.4 | |
5791 | - eslint: 8.5.0 | |
5792 | - jest: 27.4.5_ts-node@10.4.0 | |
5793 | - transitivePeerDependencies: | |
5794 | - - supports-color | |
5795 | - - typescript | |
5796 | - dev: true | |
5797 | - | |
5798 | - /eslint-plugin-prettier/4.0.0_94e1b6d3ce6ea916847122712570e9ae: | |
4730 | + /eslint-plugin-prettier/4.0.0_68edcf5670f37721baf5d2cac6124e4d: | |
5799 | 4731 | resolution: {integrity: sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==} |
5800 | 4732 | engines: {node: '>=6.0.0'} |
5801 | 4733 | peerDependencies: |
... | ... | @@ -5806,23 +4738,23 @@ packages: |
5806 | 4738 | eslint-config-prettier: |
5807 | 4739 | optional: true |
5808 | 4740 | dependencies: |
5809 | - eslint: 8.5.0 | |
5810 | - eslint-config-prettier: 8.3.0_eslint@8.5.0 | |
5811 | - prettier: 2.5.1 | |
4741 | + eslint: 8.11.0 | |
4742 | + eslint-config-prettier: 8.5.0_eslint@8.11.0 | |
4743 | + prettier: 2.6.0 | |
5812 | 4744 | prettier-linter-helpers: 1.0.0 |
5813 | 4745 | dev: true |
5814 | 4746 | |
5815 | - /eslint-plugin-vue/8.2.0_eslint@8.5.0: | |
5816 | - resolution: {integrity: sha512-cLIdTuOAMXyHeQ4drYKcZfoyzdwdBpH279X8/N0DgmotEI9yFKb5O/cAgoie/CkQZCH/MOmh0xw/KEfS90zY2A==} | |
4747 | + /eslint-plugin-vue/8.5.0_eslint@8.11.0: | |
4748 | + resolution: {integrity: sha512-i1uHCTAKOoEj12RDvdtONWrGzjFm/djkzqfhmQ0d6M/W8KM81mhswd/z+iTZ0jCpdUedW3YRgcVfQ37/J4zoYQ==} | |
5817 | 4749 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
5818 | 4750 | peerDependencies: |
5819 | 4751 | eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 |
5820 | 4752 | dependencies: |
5821 | - eslint: 8.5.0 | |
5822 | - eslint-utils: 3.0.0_eslint@8.5.0 | |
4753 | + eslint: 8.11.0 | |
4754 | + eslint-utils: 3.0.0_eslint@8.11.0 | |
5823 | 4755 | natural-compare: 1.4.0 |
5824 | 4756 | semver: 7.3.5 |
5825 | - vue-eslint-parser: 8.0.1_eslint@8.5.0 | |
4757 | + vue-eslint-parser: 8.3.0_eslint@8.11.0 | |
5826 | 4758 | transitivePeerDependencies: |
5827 | 4759 | - supports-color |
5828 | 4760 | dev: true |
... | ... | @@ -5835,29 +4767,21 @@ packages: |
5835 | 4767 | estraverse: 4.3.0 |
5836 | 4768 | dev: true |
5837 | 4769 | |
5838 | - /eslint-scope/6.0.0: | |
5839 | - resolution: {integrity: sha512-uRDL9MWmQCkaFus8RF5K9/L/2fn+80yoW3jkD53l4shjCh26fCtvJGasxjUqP5OT87SYTxCVA3BwTUzuELx9kA==} | |
5840 | - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | |
5841 | - dependencies: | |
5842 | - esrecurse: 4.3.0 | |
5843 | - estraverse: 5.3.0 | |
5844 | - dev: true | |
5845 | - | |
5846 | - /eslint-scope/7.1.0: | |
5847 | - resolution: {integrity: sha512-aWwkhnS0qAXqNOgKOK0dJ2nvzEbhEvpy8OlJ9kZ0FeZnA6zpjv1/Vei+puGFFX7zkPCkHHXb7IDX3A+7yPrRWg==} | |
4770 | + /eslint-scope/7.1.1: | |
4771 | + resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==} | |
5848 | 4772 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
5849 | 4773 | dependencies: |
5850 | 4774 | esrecurse: 4.3.0 |
5851 | 4775 | estraverse: 5.3.0 |
5852 | 4776 | dev: true |
5853 | 4777 | |
5854 | - /eslint-utils/3.0.0_eslint@8.5.0: | |
4778 | + /eslint-utils/3.0.0_eslint@8.11.0: | |
5855 | 4779 | resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} |
5856 | 4780 | engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} |
5857 | 4781 | peerDependencies: |
5858 | 4782 | eslint: '>=5' |
5859 | 4783 | dependencies: |
5860 | - eslint: 8.5.0 | |
4784 | + eslint: 8.11.0 | |
5861 | 4785 | eslint-visitor-keys: 2.1.0 |
5862 | 4786 | dev: true |
5863 | 4787 | |
... | ... | @@ -5866,37 +4790,36 @@ packages: |
5866 | 4790 | engines: {node: '>=10'} |
5867 | 4791 | dev: true |
5868 | 4792 | |
5869 | - /eslint-visitor-keys/3.1.0: | |
5870 | - resolution: {integrity: sha512-yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA==} | |
4793 | + /eslint-visitor-keys/3.3.0: | |
4794 | + resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==} | |
5871 | 4795 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
5872 | 4796 | dev: true |
5873 | 4797 | |
5874 | - /eslint/8.5.0: | |
5875 | - resolution: {integrity: sha512-tVGSkgNbOfiHyVte8bCM8OmX+xG9PzVG/B4UCF60zx7j61WIVY/AqJECDgpLD4DbbESD0e174gOg3ZlrX15GDg==} | |
4798 | + /eslint/8.11.0: | |
4799 | + resolution: {integrity: sha512-/KRpd9mIRg2raGxHRGwW9ZywYNAClZrHjdueHcrVDuO3a6bj83eoTirCCk0M0yPwOjWYKHwRVRid+xK4F/GHgA==} | |
5876 | 4800 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
5877 | 4801 | hasBin: true |
5878 | 4802 | dependencies: |
5879 | - '@eslint/eslintrc': 1.0.5 | |
5880 | - '@humanwhocodes/config-array': 0.9.2 | |
4803 | + '@eslint/eslintrc': 1.2.1 | |
4804 | + '@humanwhocodes/config-array': 0.9.5 | |
5881 | 4805 | ajv: 6.12.6 |
5882 | 4806 | chalk: 4.1.2 |
5883 | 4807 | cross-spawn: 7.0.3 |
5884 | - debug: 4.3.3 | |
4808 | + debug: 4.3.4 | |
5885 | 4809 | doctrine: 3.0.0 |
5886 | - enquirer: 2.3.6 | |
5887 | 4810 | escape-string-regexp: 4.0.0 |
5888 | - eslint-scope: 7.1.0 | |
5889 | - eslint-utils: 3.0.0_eslint@8.5.0 | |
5890 | - eslint-visitor-keys: 3.1.0 | |
5891 | - espree: 9.2.0 | |
4811 | + eslint-scope: 7.1.1 | |
4812 | + eslint-utils: 3.0.0_eslint@8.11.0 | |
4813 | + eslint-visitor-keys: 3.3.0 | |
4814 | + espree: 9.3.1 | |
5892 | 4815 | esquery: 1.4.0 |
5893 | 4816 | esutils: 2.0.3 |
5894 | 4817 | fast-deep-equal: 3.1.3 |
5895 | 4818 | file-entry-cache: 6.0.1 |
5896 | 4819 | functional-red-black-tree: 1.0.1 |
5897 | 4820 | glob-parent: 6.0.2 |
5898 | - globals: 13.12.0 | |
5899 | - ignore: 4.0.6 | |
4821 | + globals: 13.13.0 | |
4822 | + ignore: 5.2.0 | |
5900 | 4823 | import-fresh: 3.3.0 |
5901 | 4824 | imurmurhash: 0.1.4 |
5902 | 4825 | is-glob: 4.0.3 |
... | ... | @@ -5904,12 +4827,10 @@ packages: |
5904 | 4827 | json-stable-stringify-without-jsonify: 1.0.1 |
5905 | 4828 | levn: 0.4.1 |
5906 | 4829 | lodash.merge: 4.6.2 |
5907 | - minimatch: 3.0.4 | |
4830 | + minimatch: 3.1.2 | |
5908 | 4831 | natural-compare: 1.4.0 |
5909 | 4832 | optionator: 0.9.1 |
5910 | - progress: 2.0.3 | |
5911 | 4833 | regexpp: 3.2.0 |
5912 | - semver: 7.3.5 | |
5913 | 4834 | strip-ansi: 6.0.1 |
5914 | 4835 | strip-json-comments: 3.1.1 |
5915 | 4836 | text-table: 0.2.0 |
... | ... | @@ -5918,41 +4839,24 @@ packages: |
5918 | 4839 | - supports-color |
5919 | 4840 | dev: true |
5920 | 4841 | |
5921 | - /esno/0.13.0_typescript@4.5.4: | |
5922 | - resolution: {integrity: sha512-rgVOc/t+4QgAHTsQiFKX2olzJLIcBOYGYUb/moEDLXcz0pIf8NxwuFu5nOAMmOsNiFfhSrfgcLgVCOtmBIBeuQ==} | |
4842 | + /esno/0.14.1: | |
4843 | + resolution: {integrity: sha512-yDFYw6dGUjCT1qKsdG7WOc/RzIh/qwxUEVZ+ohCltaxBxEFMNqeqbQL9xjRl6Yvdwrfc5OCjUA9JbFmuu/8BKg==} | |
5923 | 4844 | hasBin: true |
5924 | 4845 | dependencies: |
5925 | 4846 | cross-spawn: 7.0.3 |
5926 | - esbuild: 0.14.5 | |
5927 | - esbuild-node-loader: 0.6.3_typescript@4.5.4 | |
5928 | - esbuild-register: 3.2.1_esbuild@0.14.5 | |
4847 | + esbuild: 0.14.27 | |
4848 | + esbuild-node-loader: 0.6.5 | |
4849 | + esbuild-register: 3.3.2_esbuild@0.14.27 | |
5929 | 4850 | import-meta-resolve: 1.1.1 |
5930 | - transitivePeerDependencies: | |
5931 | - - typescript | |
5932 | 4851 | dev: true |
5933 | 4852 | |
5934 | - /espree/9.1.0: | |
5935 | - resolution: {integrity: sha512-ZgYLvCS1wxOczBYGcQT9DDWgicXwJ4dbocr9uYN+/eresBAUuBu+O4WzB21ufQ/JqQT8gyp7hJ3z8SHii32mTQ==} | |
4853 | + /espree/9.3.1: | |
4854 | + resolution: {integrity: sha512-bvdyLmJMfwkV3NCRl5ZhJf22zBFo1y8bYh3VYb+bfzqNB4Je68P2sSuXyuFquzWLebHpNd2/d5uv7yoP9ISnGQ==} | |
5936 | 4855 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
5937 | 4856 | dependencies: |
5938 | - acorn: 8.6.0 | |
5939 | - acorn-jsx: 5.3.2_acorn@8.6.0 | |
5940 | - eslint-visitor-keys: 3.1.0 | |
5941 | - dev: true | |
5942 | - | |
5943 | - /espree/9.2.0: | |
5944 | - resolution: {integrity: sha512-oP3utRkynpZWF/F2x/HZJ+AGtnIclaR7z1pYPxy7NYM2fSO6LgK/Rkny8anRSPK/VwEA1eqm2squui0T7ZMOBg==} | |
5945 | - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | |
5946 | - dependencies: | |
5947 | - acorn: 8.6.0 | |
5948 | - acorn-jsx: 5.3.2_acorn@8.6.0 | |
5949 | - eslint-visitor-keys: 3.1.0 | |
5950 | - dev: true | |
5951 | - | |
5952 | - /esprima/4.0.1: | |
5953 | - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} | |
5954 | - engines: {node: '>=4'} | |
5955 | - hasBin: true | |
4857 | + acorn: 8.7.0 | |
4858 | + acorn-jsx: 5.3.2_acorn@8.7.0 | |
4859 | + eslint-visitor-keys: 3.3.0 | |
5956 | 4860 | dev: true |
5957 | 4861 | |
5958 | 4862 | /esquery/1.4.0: |
... | ... | @@ -6016,7 +4920,7 @@ packages: |
6016 | 4920 | is-stream: 1.1.0 |
6017 | 4921 | npm-run-path: 2.0.2 |
6018 | 4922 | p-finally: 1.0.0 |
6019 | - signal-exit: 3.0.6 | |
4923 | + signal-exit: 3.0.7 | |
6020 | 4924 | strip-eof: 1.0.0 |
6021 | 4925 | dev: true |
6022 | 4926 | |
... | ... | @@ -6029,7 +4933,7 @@ packages: |
6029 | 4933 | is-stream: 1.1.0 |
6030 | 4934 | npm-run-path: 2.0.2 |
6031 | 4935 | p-finally: 1.0.0 |
6032 | - signal-exit: 3.0.6 | |
4936 | + signal-exit: 3.0.7 | |
6033 | 4937 | strip-eof: 1.0.0 |
6034 | 4938 | dev: true |
6035 | 4939 | |
... | ... | @@ -6044,7 +4948,7 @@ packages: |
6044 | 4948 | merge-stream: 2.0.0 |
6045 | 4949 | npm-run-path: 4.0.1 |
6046 | 4950 | onetime: 5.1.2 |
6047 | - signal-exit: 3.0.6 | |
4951 | + signal-exit: 3.0.7 | |
6048 | 4952 | strip-final-newline: 2.0.0 |
6049 | 4953 | dev: true |
6050 | 4954 | |
... | ... | @@ -6059,7 +4963,7 @@ packages: |
6059 | 4963 | merge-stream: 2.0.0 |
6060 | 4964 | npm-run-path: 4.0.1 |
6061 | 4965 | onetime: 5.1.2 |
6062 | - signal-exit: 3.0.6 | |
4966 | + signal-exit: 3.0.7 | |
6063 | 4967 | strip-final-newline: 2.0.0 |
6064 | 4968 | dev: true |
6065 | 4969 | |
... | ... | @@ -6082,11 +4986,6 @@ packages: |
6082 | 4986 | engines: {node: '>=0.8'} |
6083 | 4987 | dev: false |
6084 | 4988 | |
6085 | - /exit/0.1.2: | |
6086 | - resolution: {integrity: sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=} | |
6087 | - engines: {node: '>= 0.8.0'} | |
6088 | - dev: true | |
6089 | - | |
6090 | 4989 | /expand-brackets/2.1.4: |
6091 | 4990 | resolution: {integrity: sha1-t3c14xXOMPa27/D4OwQVGiJEliI=} |
6092 | 4991 | engines: {node: '>=0.10.0'} |
... | ... | @@ -6107,23 +5006,11 @@ packages: |
6107 | 5006 | homedir-polyfill: 1.0.3 |
6108 | 5007 | dev: true |
6109 | 5008 | |
6110 | - /expect/27.4.2: | |
6111 | - resolution: {integrity: sha512-BjAXIDC6ZOW+WBFNg96J22D27Nq5ohn+oGcuP2rtOtcjuxNoV9McpQ60PcQWhdFOSBIQdR72e+4HdnbZTFSTyg==} | |
6112 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
6113 | - dependencies: | |
6114 | - '@jest/types': 27.4.2 | |
6115 | - ansi-styles: 5.2.0 | |
6116 | - jest-get-type: 27.4.0 | |
6117 | - jest-matcher-utils: 27.4.2 | |
6118 | - jest-message-util: 27.4.2 | |
6119 | - jest-regex-util: 27.4.0 | |
6120 | - dev: true | |
6121 | - | |
6122 | 5009 | /ext-list/2.2.2: |
6123 | 5010 | resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==} |
6124 | 5011 | engines: {node: '>=0.10.0'} |
6125 | 5012 | dependencies: |
6126 | - mime-db: 1.51.0 | |
5013 | + mime-db: 1.52.0 | |
6127 | 5014 | dev: true |
6128 | 5015 | |
6129 | 5016 | /ext-name/5.0.0: |
... | ... | @@ -6180,9 +5067,9 @@ packages: |
6180 | 5067 | resolution: {integrity: sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==} |
6181 | 5068 | dev: true |
6182 | 5069 | |
6183 | - /fast-glob/3.2.7: | |
6184 | - resolution: {integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==} | |
6185 | - engines: {node: '>=8'} | |
5070 | + /fast-glob/3.2.11: | |
5071 | + resolution: {integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==} | |
5072 | + engines: {node: '>=8.6.0'} | |
6186 | 5073 | dependencies: |
6187 | 5074 | '@nodelib/fs.stat': 2.0.5 |
6188 | 5075 | '@nodelib/fs.walk': 1.2.8 |
... | ... | @@ -6203,12 +5090,11 @@ packages: |
6203 | 5090 | resolution: {integrity: sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==} |
6204 | 5091 | hasBin: true |
6205 | 5092 | dependencies: |
6206 | - strnum: 1.0.4 | |
5093 | + strnum: 1.0.5 | |
6207 | 5094 | dev: true |
6208 | 5095 | |
6209 | 5096 | /fastest-levenshtein/1.0.12: |
6210 | 5097 | resolution: {integrity: sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==} |
6211 | - dev: true | |
6212 | 5098 | |
6213 | 5099 | /fastq/1.13.0: |
6214 | 5100 | resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==} |
... | ... | @@ -6216,12 +5102,6 @@ packages: |
6216 | 5102 | reusify: 1.0.4 |
6217 | 5103 | dev: true |
6218 | 5104 | |
6219 | - /fb-watchman/2.0.1: | |
6220 | - resolution: {integrity: sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==} | |
6221 | - dependencies: | |
6222 | - bser: 2.1.1 | |
6223 | - dev: true | |
6224 | - | |
6225 | 5105 | /fd-slicer/1.1.0: |
6226 | 5106 | resolution: {integrity: sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=} |
6227 | 5107 | dependencies: |
... | ... | @@ -6295,7 +5175,7 @@ packages: |
6295 | 5175 | /filelist/1.0.2: |
6296 | 5176 | resolution: {integrity: sha512-z7O0IS8Plc39rTCq6i6iHxk43duYOn8uFJiWSewIq0Bww1RNybVHSCjahmcC87ZqAm4OTvFzlzeGu3XAzG1ctQ==} |
6297 | 5177 | dependencies: |
6298 | - minimatch: 3.0.4 | |
5178 | + minimatch: 3.1.2 | |
6299 | 5179 | dev: true |
6300 | 5180 | |
6301 | 5181 | /filename-reserved-regex/2.0.0: |
... | ... | @@ -6342,8 +5222,8 @@ packages: |
6342 | 5222 | unpipe: 1.0.0 |
6343 | 5223 | dev: true |
6344 | 5224 | |
6345 | - /find-node-modules/2.1.2: | |
6346 | - resolution: {integrity: sha512-x+3P4mbtRPlSiVE1Qco0Z4YLU8WFiFcuWTf3m75OV9Uzcfs2Bg+O9N+r/K0AnmINBW06KpfqKwYJbFlFq4qNug==} | |
5225 | + /find-node-modules/2.1.3: | |
5226 | + resolution: {integrity: sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg==} | |
6347 | 5227 | dependencies: |
6348 | 5228 | findup-sync: 4.0.0 |
6349 | 5229 | merge: 2.1.1 |
... | ... | @@ -6368,13 +5248,6 @@ packages: |
6368 | 5248 | locate-path: 2.0.0 |
6369 | 5249 | dev: true |
6370 | 5250 | |
6371 | - /find-up/3.0.0: | |
6372 | - resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} | |
6373 | - engines: {node: '>=6'} | |
6374 | - dependencies: | |
6375 | - locate-path: 3.0.0 | |
6376 | - dev: false | |
6377 | - | |
6378 | 5251 | /find-up/4.1.0: |
6379 | 5252 | resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} |
6380 | 5253 | engines: {node: '>=8'} |
... | ... | @@ -6411,44 +5284,47 @@ packages: |
6411 | 5284 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} |
6412 | 5285 | engines: {node: ^10.12.0 || >=12.0.0} |
6413 | 5286 | dependencies: |
6414 | - flatted: 3.2.4 | |
5287 | + flatted: 3.2.5 | |
6415 | 5288 | rimraf: 3.0.2 |
6416 | 5289 | dev: true |
6417 | 5290 | |
6418 | - /flatted/3.2.4: | |
6419 | - resolution: {integrity: sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==} | |
5291 | + /flatted/3.2.5: | |
5292 | + resolution: {integrity: sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==} | |
6420 | 5293 | dev: true |
6421 | 5294 | |
6422 | - /follow-redirects/1.14.5: | |
6423 | - resolution: {integrity: sha512-wtphSXy7d4/OR+MvIFbCVBDzZ5520qV8XfPklSN5QtxuMUJZ+b0Wnst1e1lCDocfzuCkHqj8k0FpZqO+UIaKNA==} | |
5295 | + /follow-redirects/1.14.9: | |
5296 | + resolution: {integrity: sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==} | |
5297 | + engines: {node: '>=4.0'} | |
5298 | + peerDependencies: | |
5299 | + debug: '*' | |
5300 | + peerDependenciesMeta: | |
5301 | + debug: | |
5302 | + optional: true | |
5303 | + | |
5304 | + /follow-redirects/1.14.9_debug@4.3.4: | |
5305 | + resolution: {integrity: sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==} | |
6424 | 5306 | engines: {node: '>=4.0'} |
6425 | 5307 | peerDependencies: |
6426 | 5308 | debug: '*' |
6427 | 5309 | peerDependenciesMeta: |
6428 | 5310 | debug: |
6429 | 5311 | optional: true |
5312 | + dependencies: | |
5313 | + debug: 4.3.4 | |
5314 | + dev: true | |
6430 | 5315 | |
6431 | 5316 | /for-in/1.0.2: |
6432 | 5317 | resolution: {integrity: sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=} |
6433 | 5318 | engines: {node: '>=0.10.0'} |
6434 | 5319 | dev: true |
6435 | 5320 | |
6436 | - /form-data/3.0.1: | |
6437 | - resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} | |
6438 | - engines: {node: '>= 6'} | |
6439 | - dependencies: | |
6440 | - asynckit: 0.4.0 | |
6441 | - combined-stream: 1.0.8 | |
6442 | - mime-types: 2.1.34 | |
6443 | - dev: true | |
6444 | - | |
6445 | 5321 | /frac/1.1.2: |
6446 | 5322 | resolution: {integrity: sha512-w/XBfkibaTl3YDqASwfDUqkna4Z2p9cFSr1aHDt0WoMTECnRfBOv2WArlZILlqgWlmdIlALXGpM2AOhEk5W3IA==} |
6447 | 5323 | engines: {node: '>=0.8'} |
6448 | 5324 | dev: false |
6449 | 5325 | |
6450 | - /fraction.js/4.1.2: | |
6451 | - resolution: {integrity: sha512-o2RiJQ6DZaR/5+Si0qJUIy637QMRudSi9kU/FFzx9EZazrIdnBgpU+3sEWCxAVhH2RtxW2Oz+T4p2o8uOPVcgA==} | |
5326 | + /fraction.js/4.2.0: | |
5327 | + resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} | |
6452 | 5328 | dev: true |
6453 | 5329 | |
6454 | 5330 | /fragment-cache/0.2.1: |
... | ... | @@ -6469,11 +5345,11 @@ packages: |
6469 | 5345 | resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} |
6470 | 5346 | dev: true |
6471 | 5347 | |
6472 | - /fs-extra/10.0.0: | |
6473 | - resolution: {integrity: sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==} | |
5348 | + /fs-extra/10.0.1: | |
5349 | + resolution: {integrity: sha512-NbdoVMZso2Lsrn/QwLXOy6rm0ufY2zEOKCDzJR/0kBsb0E6qed0P3iYK+Ath3BfvXEeu4JhEtXLgILx5psUfag==} | |
6474 | 5350 | engines: {node: '>=12'} |
6475 | 5351 | dependencies: |
6476 | - graceful-fs: 4.2.8 | |
5352 | + graceful-fs: 4.2.9 | |
6477 | 5353 | jsonfile: 6.1.0 |
6478 | 5354 | universalify: 2.0.0 |
6479 | 5355 | dev: true |
... | ... | @@ -6482,7 +5358,7 @@ packages: |
6482 | 5358 | resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} |
6483 | 5359 | engines: {node: '>=6 <7 || >=8'} |
6484 | 5360 | dependencies: |
6485 | - graceful-fs: 4.2.8 | |
5361 | + graceful-fs: 4.2.9 | |
6486 | 5362 | jsonfile: 4.0.0 |
6487 | 5363 | universalify: 0.1.2 |
6488 | 5364 | dev: true |
... | ... | @@ -6492,7 +5368,7 @@ packages: |
6492 | 5368 | engines: {node: '>=10'} |
6493 | 5369 | dependencies: |
6494 | 5370 | at-least-node: 1.0.0 |
6495 | - graceful-fs: 4.2.8 | |
5371 | + graceful-fs: 4.2.9 | |
6496 | 5372 | jsonfile: 6.1.0 |
6497 | 5373 | universalify: 2.0.0 |
6498 | 5374 | dev: true |
... | ... | @@ -6530,24 +5406,19 @@ packages: |
6530 | 5406 | dependencies: |
6531 | 5407 | function-bind: 1.1.1 |
6532 | 5408 | has: 1.0.3 |
6533 | - has-symbols: 1.0.2 | |
5409 | + has-symbols: 1.0.3 | |
6534 | 5410 | |
6535 | 5411 | /get-own-enumerable-property-symbols/3.0.2: |
6536 | 5412 | resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} |
6537 | 5413 | dev: true |
6538 | 5414 | |
6539 | - /get-package-type/0.1.0: | |
6540 | - resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} | |
6541 | - engines: {node: '>=8.0.0'} | |
6542 | - dev: true | |
6543 | - | |
6544 | 5415 | /get-pkg-repo/4.2.1: |
6545 | 5416 | resolution: {integrity: sha512-2+QbHjFRfGB74v/pYWjd5OhU3TDIC2Gv/YKUTk/tCvAz0pkn/Mz6P3uByuBimLOcPvN2jYdScl3xGFSrx0jEcA==} |
6546 | 5417 | engines: {node: '>=6.9.0'} |
6547 | 5418 | hasBin: true |
6548 | 5419 | dependencies: |
6549 | 5420 | '@hutson/parse-repository-url': 3.0.2 |
6550 | - hosted-git-info: 4.0.2 | |
5421 | + hosted-git-info: 4.1.0 | |
6551 | 5422 | through2: 2.0.5 |
6552 | 5423 | yargs: 16.2.0 |
6553 | 5424 | dev: true |
... | ... | @@ -6626,8 +5497,8 @@ packages: |
6626 | 5497 | logalot: 2.1.0 |
6627 | 5498 | dev: true |
6628 | 5499 | |
6629 | - /git-raw-commits/2.0.10: | |
6630 | - resolution: {integrity: sha512-sHhX5lsbG9SOO6yXdlwgEMQ/ljIn7qMpAbJZCGfXX2fq5T8M5SrDnpYk9/4HswTildcIqatsWa91vty6VhWSaQ==} | |
5500 | + /git-raw-commits/2.0.11: | |
5501 | + resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} | |
6631 | 5502 | engines: {node: '>=10'} |
6632 | 5503 | hasBin: true |
6633 | 5504 | dependencies: |
... | ... | @@ -6681,7 +5552,7 @@ packages: |
6681 | 5552 | fs.realpath: 1.0.0 |
6682 | 5553 | inflight: 1.0.6 |
6683 | 5554 | inherits: 2.0.4 |
6684 | - minimatch: 3.0.4 | |
5555 | + minimatch: 3.1.2 | |
6685 | 5556 | once: 1.4.0 |
6686 | 5557 | path-is-absolute: 1.0.1 |
6687 | 5558 | dev: true |
... | ... | @@ -6692,7 +5563,7 @@ packages: |
6692 | 5563 | fs.realpath: 1.0.0 |
6693 | 5564 | inflight: 1.0.6 |
6694 | 5565 | inherits: 2.0.4 |
6695 | - minimatch: 3.0.4 | |
5566 | + minimatch: 3.1.2 | |
6696 | 5567 | once: 1.4.0 |
6697 | 5568 | path-is-absolute: 1.0.1 |
6698 | 5569 | dev: true |
... | ... | @@ -6745,8 +5616,8 @@ packages: |
6745 | 5616 | engines: {node: '>=4'} |
6746 | 5617 | dev: true |
6747 | 5618 | |
6748 | - /globals/13.12.0: | |
6749 | - resolution: {integrity: sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==} | |
5619 | + /globals/13.13.0: | |
5620 | + resolution: {integrity: sha512-EQ7Q18AJlPwp3vUDL4mKA0KXrXyNIQyWon6T6XQiBQF0XHvRsiCSrWmmeATpUzdJN2HhWZU6Pdl0a9zdep5p6A==} | |
6750 | 5621 | engines: {node: '>=8'} |
6751 | 5622 | dependencies: |
6752 | 5623 | type-fest: 0.20.2 |
... | ... | @@ -6759,20 +5630,20 @@ packages: |
6759 | 5630 | '@types/glob': 7.2.0 |
6760 | 5631 | array-union: 2.1.0 |
6761 | 5632 | dir-glob: 3.0.1 |
6762 | - fast-glob: 3.2.7 | |
5633 | + fast-glob: 3.2.11 | |
6763 | 5634 | glob: 7.2.0 |
6764 | 5635 | ignore: 5.2.0 |
6765 | 5636 | merge2: 1.4.1 |
6766 | 5637 | slash: 3.0.0 |
6767 | 5638 | dev: true |
6768 | 5639 | |
6769 | - /globby/11.0.4: | |
6770 | - resolution: {integrity: sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==} | |
5640 | + /globby/11.1.0: | |
5641 | + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} | |
6771 | 5642 | engines: {node: '>=10'} |
6772 | 5643 | dependencies: |
6773 | 5644 | array-union: 2.1.0 |
6774 | 5645 | dir-glob: 3.0.1 |
6775 | - fast-glob: 3.2.7 | |
5646 | + fast-glob: 3.2.11 | |
6776 | 5647 | ignore: 5.2.0 |
6777 | 5648 | merge2: 1.4.1 |
6778 | 5649 | slash: 3.0.0 |
... | ... | @@ -6825,8 +5696,8 @@ packages: |
6825 | 5696 | url-to-options: 1.0.1 |
6826 | 5697 | dev: true |
6827 | 5698 | |
6828 | - /graceful-fs/4.2.8: | |
6829 | - resolution: {integrity: sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==} | |
5699 | + /graceful-fs/4.2.9: | |
5700 | + resolution: {integrity: sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==} | |
6830 | 5701 | dev: true |
6831 | 5702 | |
6832 | 5703 | /handlebars/4.7.7: |
... | ... | @@ -6839,7 +5710,7 @@ packages: |
6839 | 5710 | source-map: 0.6.1 |
6840 | 5711 | wordwrap: 1.0.0 |
6841 | 5712 | optionalDependencies: |
6842 | - uglify-js: 3.14.3 | |
5713 | + uglify-js: 3.15.3 | |
6843 | 5714 | dev: true |
6844 | 5715 | |
6845 | 5716 | /hard-rejection/2.1.0: |
... | ... | @@ -6877,8 +5748,8 @@ packages: |
6877 | 5748 | resolution: {integrity: sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==} |
6878 | 5749 | dev: true |
6879 | 5750 | |
6880 | - /has-symbols/1.0.2: | |
6881 | - resolution: {integrity: sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==} | |
5751 | + /has-symbols/1.0.3: | |
5752 | + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} | |
6882 | 5753 | engines: {node: '>= 0.4'} |
6883 | 5754 | |
6884 | 5755 | /has-to-string-tag-x/1.4.1: |
... | ... | @@ -6891,7 +5762,7 @@ packages: |
6891 | 5762 | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} |
6892 | 5763 | engines: {node: '>= 0.4'} |
6893 | 5764 | dependencies: |
6894 | - has-symbols: 1.0.2 | |
5765 | + has-symbols: 1.0.3 | |
6895 | 5766 | dev: true |
6896 | 5767 | |
6897 | 5768 | /has-value/0.3.1: |
... | ... | @@ -6958,38 +5829,25 @@ packages: |
6958 | 5829 | resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} |
6959 | 5830 | dev: true |
6960 | 5831 | |
6961 | - /hosted-git-info/4.0.2: | |
6962 | - resolution: {integrity: sha512-c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg==} | |
5832 | + /hosted-git-info/4.1.0: | |
5833 | + resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} | |
6963 | 5834 | engines: {node: '>=10'} |
6964 | 5835 | dependencies: |
6965 | 5836 | lru-cache: 6.0.0 |
6966 | 5837 | dev: true |
6967 | 5838 | |
6968 | - /html-encoding-sniffer/2.0.1: | |
6969 | - resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==} | |
6970 | - engines: {node: '>=10'} | |
6971 | - dependencies: | |
6972 | - whatwg-encoding: 1.0.5 | |
6973 | - dev: true | |
6974 | - | |
6975 | - /html-escaper/2.0.2: | |
6976 | - resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} | |
6977 | - dev: true | |
6978 | - | |
6979 | 5839 | /html-minifier-terser/6.1.0: |
6980 | 5840 | resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} |
6981 | 5841 | engines: {node: '>=12'} |
6982 | 5842 | hasBin: true |
6983 | 5843 | dependencies: |
6984 | 5844 | camel-case: 4.1.2 |
6985 | - clean-css: 5.2.2 | |
5845 | + clean-css: 5.2.4 | |
6986 | 5846 | commander: 8.3.0 |
6987 | 5847 | he: 1.2.0 |
6988 | 5848 | param-case: 3.0.4 |
6989 | 5849 | relateurl: 0.2.7 |
6990 | - terser: 5.10.0 | |
6991 | - transitivePeerDependencies: | |
6992 | - - acorn | |
5850 | + terser: 5.12.1 | |
6993 | 5851 | dev: true |
6994 | 5852 | |
6995 | 5853 | /html-tags/3.1.0: |
... | ... | @@ -7012,7 +5870,7 @@ packages: |
7012 | 5870 | resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==} |
7013 | 5871 | dependencies: |
7014 | 5872 | domelementtype: 2.2.0 |
7015 | - domhandler: 4.2.2 | |
5873 | + domhandler: 4.3.0 | |
7016 | 5874 | domutils: 2.8.0 |
7017 | 5875 | entities: 3.0.1 |
7018 | 5876 | dev: true |
... | ... | @@ -7021,27 +5879,6 @@ packages: |
7021 | 5879 | resolution: {integrity: sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==} |
7022 | 5880 | dev: true |
7023 | 5881 | |
7024 | - /http-proxy-agent/4.0.1: | |
7025 | - resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} | |
7026 | - engines: {node: '>= 6'} | |
7027 | - dependencies: | |
7028 | - '@tootallnate/once': 1.1.2 | |
7029 | - agent-base: 6.0.2 | |
7030 | - debug: 4.3.3 | |
7031 | - transitivePeerDependencies: | |
7032 | - - supports-color | |
7033 | - dev: true | |
7034 | - | |
7035 | - /https-proxy-agent/5.0.0: | |
7036 | - resolution: {integrity: sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==} | |
7037 | - engines: {node: '>= 6'} | |
7038 | - dependencies: | |
7039 | - agent-base: 6.0.2 | |
7040 | - debug: 4.3.3 | |
7041 | - transitivePeerDependencies: | |
7042 | - - supports-color | |
7043 | - dev: true | |
7044 | - | |
7045 | 5882 | /human-signals/1.1.1: |
7046 | 5883 | resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} |
7047 | 5884 | engines: {node: '>=8.12.0'} |
... | ... | @@ -7077,16 +5914,6 @@ packages: |
7077 | 5914 | resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} |
7078 | 5915 | dev: true |
7079 | 5916 | |
7080 | - /ignore/4.0.6: | |
7081 | - resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} | |
7082 | - engines: {node: '>= 4'} | |
7083 | - dev: true | |
7084 | - | |
7085 | - /ignore/5.1.9: | |
7086 | - resolution: {integrity: sha512-2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ==} | |
7087 | - engines: {node: '>= 4'} | |
7088 | - dev: true | |
7089 | - | |
7090 | 5917 | /ignore/5.2.0: |
7091 | 5918 | resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==} |
7092 | 5919 | engines: {node: '>= 4'} |
... | ... | @@ -7168,7 +5995,7 @@ packages: |
7168 | 5995 | dependencies: |
7169 | 5996 | file-type: 12.4.2 |
7170 | 5997 | globby: 10.0.2 |
7171 | - graceful-fs: 4.2.8 | |
5998 | + graceful-fs: 4.2.9 | |
7172 | 5999 | junk: 3.1.0 |
7173 | 6000 | make-dir: 3.1.0 |
7174 | 6001 | p-pipe: 3.1.0 |
... | ... | @@ -7188,15 +6015,6 @@ packages: |
7188 | 6015 | engines: {node: '>=8'} |
7189 | 6016 | dev: true |
7190 | 6017 | |
7191 | - /import-local/3.0.3: | |
7192 | - resolution: {integrity: sha512-bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA==} | |
7193 | - engines: {node: '>=8'} | |
7194 | - hasBin: true | |
7195 | - dependencies: | |
7196 | - pkg-dir: 4.2.0 | |
7197 | - resolve-cwd: 3.0.0 | |
7198 | - dev: true | |
7199 | - | |
7200 | 6018 | /import-meta-resolve/1.1.1: |
7201 | 6019 | resolution: {integrity: sha512-JiTuIvVyPaUg11eTrNDx5bgQ/yMKMZffc7YSjvQeSMXy58DO2SQ8BtAf3xteZvmzvjYh14wnqNjL8XVeDy2o9A==} |
7202 | 6020 | dependencies: |
... | ... | @@ -7254,9 +6072,9 @@ packages: |
7254 | 6072 | through: 2.3.8 |
7255 | 6073 | dev: true |
7256 | 6074 | |
7257 | - /inquirer/8.2.0: | |
7258 | - resolution: {integrity: sha512-0crLweprevJ02tTuA6ThpoAERAGyVILC4sS74uib58Xf/zSr1/ZWtmm7D5CI+bSQEaA04f0K7idaHpQbSWgiVQ==} | |
7259 | - engines: {node: '>=8.0.0'} | |
6075 | + /inquirer/8.2.1: | |
6076 | + resolution: {integrity: sha512-pxhBaw9cyTFMjwKtkjePWDhvwzvrNGAw7En4hottzlPvz80GZaMZthdDU35aA6/f5FRZf3uhE057q8w1DE3V2g==} | |
6077 | + engines: {node: '>=12.0.0'} | |
7260 | 6078 | dependencies: |
7261 | 6079 | ansi-escapes: 4.3.2 |
7262 | 6080 | chalk: 4.1.2 |
... | ... | @@ -7268,7 +6086,7 @@ packages: |
7268 | 6086 | mute-stream: 0.0.8 |
7269 | 6087 | ora: 5.4.1 |
7270 | 6088 | run-async: 2.4.1 |
7271 | - rxjs: 7.4.0 | |
6089 | + rxjs: 7.5.5 | |
7272 | 6090 | string-width: 4.2.3 |
7273 | 6091 | strip-ansi: 6.0.1 |
7274 | 6092 | through: 2.3.8 |
... | ... | @@ -7291,8 +6109,8 @@ packages: |
7291 | 6109 | p-is-promise: 1.1.0 |
7292 | 6110 | dev: true |
7293 | 6111 | |
7294 | - /intro.js/4.3.0: | |
7295 | - resolution: {integrity: sha512-F4LXM42QIXcO3/2myGBBFdbbUVUK0lBhK7pAxPLd082u+3HfvigFR+Rptqy05q3OzjG/O0vMFDedrnHdSPi2rQ==} | |
6112 | + /intro.js/5.0.0: | |
6113 | + resolution: {integrity: sha512-bj3R8Fb9h5I/oJIit60KciZUXBDviA4qV1iM9O/AXQvrfv78Szx9ILuRWET1W2jGge8RcM11TApxwQ0007Y1nQ==} | |
7296 | 6114 | dev: false |
7297 | 6115 | |
7298 | 6116 | /is-accessor-descriptor/0.1.6: |
... | ... | @@ -7343,8 +6161,8 @@ packages: |
7343 | 6161 | engines: {node: '>= 0.4'} |
7344 | 6162 | dev: true |
7345 | 6163 | |
7346 | - /is-core-module/2.8.0: | |
7347 | - resolution: {integrity: sha512-vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==} | |
6164 | + /is-core-module/2.8.1: | |
6165 | + resolution: {integrity: sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==} | |
7348 | 6166 | dependencies: |
7349 | 6167 | has: 1.0.3 |
7350 | 6168 | dev: true |
... | ... | @@ -7432,6 +6250,7 @@ packages: |
7432 | 6250 | /is-fullwidth-code-point/2.0.0: |
7433 | 6251 | resolution: {integrity: sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=} |
7434 | 6252 | engines: {node: '>=4'} |
6253 | + dev: true | |
7435 | 6254 | |
7436 | 6255 | /is-fullwidth-code-point/3.0.0: |
7437 | 6256 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} |
... | ... | @@ -7442,11 +6261,6 @@ packages: |
7442 | 6261 | engines: {node: '>=12'} |
7443 | 6262 | dev: true |
7444 | 6263 | |
7445 | - /is-generator-fn/2.1.0: | |
7446 | - resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} | |
7447 | - engines: {node: '>=6'} | |
7448 | - dev: true | |
7449 | - | |
7450 | 6264 | /is-gif/3.0.0: |
7451 | 6265 | resolution: {integrity: sha512-IqJ/jlbw5WJSNfwQ/lHEDXF8rxhRgF6ythk2oiEvhpG29F704eX9NO6TvPfMiq9DrbwgcEDnETYNcZDPewQoVw==} |
7452 | 6266 | engines: {node: '>=6'} |
... | ... | @@ -7479,8 +6293,8 @@ packages: |
7479 | 6293 | resolution: {integrity: sha1-q5124dtM7VHjXeDHLr7PCfc0zeg=} |
7480 | 6294 | dev: true |
7481 | 6295 | |
7482 | - /is-negative-zero/2.0.1: | |
7483 | - resolution: {integrity: sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==} | |
6296 | + /is-negative-zero/2.0.2: | |
6297 | + resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} | |
7484 | 6298 | engines: {node: '>= 0.4'} |
7485 | 6299 | dev: true |
7486 | 6300 | |
... | ... | @@ -7543,14 +6357,6 @@ packages: |
7543 | 6357 | engines: {node: '>=8'} |
7544 | 6358 | dev: true |
7545 | 6359 | |
7546 | - /is-potential-custom-element-name/1.0.1: | |
7547 | - resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} | |
7548 | - dev: true | |
7549 | - | |
7550 | - /is-promise/2.2.2: | |
7551 | - resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} | |
7552 | - dev: true | |
7553 | - | |
7554 | 6360 | /is-regex/1.1.4: |
7555 | 6361 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} |
7556 | 6362 | engines: {node: '>= 0.4'} |
... | ... | @@ -7569,683 +6375,133 @@ packages: |
7569 | 6375 | engines: {node: '>=6'} |
7570 | 6376 | dev: true |
7571 | 6377 | |
7572 | - /is-retry-allowed/1.2.0: | |
7573 | - resolution: {integrity: sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==} | |
7574 | - engines: {node: '>=0.10.0'} | |
7575 | - dev: true | |
7576 | - | |
7577 | - /is-shared-array-buffer/1.0.1: | |
7578 | - resolution: {integrity: sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==} | |
7579 | - dev: true | |
7580 | - | |
7581 | - /is-stream/1.1.0: | |
7582 | - resolution: {integrity: sha1-EtSj3U5o4Lec6428hBc66A2RykQ=} | |
7583 | - engines: {node: '>=0.10.0'} | |
7584 | - dev: true | |
7585 | - | |
7586 | - /is-stream/2.0.1: | |
7587 | - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} | |
7588 | - engines: {node: '>=8'} | |
7589 | - dev: true | |
7590 | - | |
7591 | - /is-string/1.0.7: | |
7592 | - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} | |
7593 | - engines: {node: '>= 0.4'} | |
7594 | - dependencies: | |
7595 | - has-tostringtag: 1.0.0 | |
7596 | - dev: true | |
7597 | - | |
7598 | - /is-svg/4.3.2: | |
7599 | - resolution: {integrity: sha512-mM90duy00JGMyjqIVHu9gNTjywdZV+8qNasX8cm/EEYZ53PHDgajvbBwNVvty5dwSAxLUD3p3bdo+7sR/UMrpw==} | |
7600 | - engines: {node: '>=6'} | |
7601 | - dependencies: | |
7602 | - fast-xml-parser: 3.21.1 | |
7603 | - dev: true | |
7604 | - | |
7605 | - /is-symbol/1.0.4: | |
7606 | - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} | |
7607 | - engines: {node: '>= 0.4'} | |
7608 | - dependencies: | |
7609 | - has-symbols: 1.0.2 | |
7610 | - dev: true | |
7611 | - | |
7612 | - /is-text-path/1.0.1: | |
7613 | - resolution: {integrity: sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=} | |
7614 | - engines: {node: '>=0.10.0'} | |
7615 | - dependencies: | |
7616 | - text-extensions: 1.9.0 | |
7617 | - dev: true | |
7618 | - | |
7619 | - /is-typedarray/1.0.0: | |
7620 | - resolution: {integrity: sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=} | |
7621 | - dev: true | |
7622 | - | |
7623 | - /is-unicode-supported/0.1.0: | |
7624 | - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} | |
7625 | - engines: {node: '>=10'} | |
7626 | - dev: true | |
7627 | - | |
7628 | - /is-utf8/0.2.1: | |
7629 | - resolution: {integrity: sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=} | |
7630 | - dev: true | |
7631 | - | |
7632 | - /is-weakref/1.0.1: | |
7633 | - resolution: {integrity: sha512-b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ==} | |
7634 | - dependencies: | |
7635 | - call-bind: 1.0.2 | |
7636 | - dev: true | |
7637 | - | |
7638 | - /is-what/3.14.1: | |
7639 | - resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} | |
7640 | - dev: true | |
7641 | - | |
7642 | - /is-windows/1.0.2: | |
7643 | - resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} | |
7644 | - engines: {node: '>=0.10.0'} | |
7645 | - dev: true | |
7646 | - | |
7647 | - /is-wsl/2.2.0: | |
7648 | - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} | |
7649 | - engines: {node: '>=8'} | |
7650 | - dependencies: | |
7651 | - is-docker: 2.2.1 | |
7652 | - dev: true | |
7653 | - | |
7654 | - /isarray/1.0.0: | |
7655 | - resolution: {integrity: sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=} | |
7656 | - dev: true | |
7657 | - | |
7658 | - /isexe/2.0.0: | |
7659 | - resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=} | |
7660 | - dev: true | |
7661 | - | |
7662 | - /isobject/2.1.0: | |
7663 | - resolution: {integrity: sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=} | |
7664 | - engines: {node: '>=0.10.0'} | |
7665 | - dependencies: | |
7666 | - isarray: 1.0.0 | |
7667 | - dev: true | |
7668 | - | |
7669 | - /isobject/3.0.1: | |
7670 | - resolution: {integrity: sha1-TkMekrEalzFjaqH5yNHMvP2reN8=} | |
7671 | - engines: {node: '>=0.10.0'} | |
7672 | - dev: true | |
7673 | - | |
7674 | - /istanbul-lib-coverage/3.2.0: | |
7675 | - resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==} | |
7676 | - engines: {node: '>=8'} | |
7677 | - dev: true | |
7678 | - | |
7679 | - /istanbul-lib-instrument/4.0.3: | |
7680 | - resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} | |
7681 | - engines: {node: '>=8'} | |
7682 | - dependencies: | |
7683 | - '@babel/core': 7.16.5 | |
7684 | - '@istanbuljs/schema': 0.1.3 | |
7685 | - istanbul-lib-coverage: 3.2.0 | |
7686 | - semver: 6.3.0 | |
7687 | - transitivePeerDependencies: | |
7688 | - - supports-color | |
7689 | - dev: true | |
7690 | - | |
7691 | - /istanbul-lib-instrument/5.1.0: | |
7692 | - resolution: {integrity: sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==} | |
7693 | - engines: {node: '>=8'} | |
7694 | - dependencies: | |
7695 | - '@babel/core': 7.16.0 | |
7696 | - '@babel/parser': 7.16.4 | |
7697 | - '@istanbuljs/schema': 0.1.3 | |
7698 | - istanbul-lib-coverage: 3.2.0 | |
7699 | - semver: 6.3.0 | |
7700 | - transitivePeerDependencies: | |
7701 | - - supports-color | |
7702 | - dev: true | |
7703 | - | |
7704 | - /istanbul-lib-report/3.0.0: | |
7705 | - resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==} | |
7706 | - engines: {node: '>=8'} | |
7707 | - dependencies: | |
7708 | - istanbul-lib-coverage: 3.2.0 | |
7709 | - make-dir: 3.1.0 | |
7710 | - supports-color: 7.2.0 | |
7711 | - dev: true | |
7712 | - | |
7713 | - /istanbul-lib-source-maps/4.0.1: | |
7714 | - resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} | |
7715 | - engines: {node: '>=10'} | |
7716 | - dependencies: | |
7717 | - debug: 4.3.3 | |
7718 | - istanbul-lib-coverage: 3.2.0 | |
7719 | - source-map: 0.6.1 | |
7720 | - transitivePeerDependencies: | |
7721 | - - supports-color | |
7722 | - dev: true | |
7723 | - | |
7724 | - /istanbul-reports/3.0.5: | |
7725 | - resolution: {integrity: sha512-5+19PlhnGabNWB7kOFnuxT8H3T/iIyQzIbQMxXsURmmvKg86P2sbkrGOT77VnHw0Qr0gc2XzRaRfMZYYbSQCJQ==} | |
7726 | - engines: {node: '>=8'} | |
7727 | - dependencies: | |
7728 | - html-escaper: 2.0.2 | |
7729 | - istanbul-lib-report: 3.0.0 | |
7730 | - dev: true | |
7731 | - | |
7732 | - /isurl/1.0.0: | |
7733 | - resolution: {integrity: sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==} | |
7734 | - engines: {node: '>= 4'} | |
7735 | - dependencies: | |
7736 | - has-to-string-tag-x: 1.4.1 | |
7737 | - is-object: 1.0.2 | |
7738 | - dev: true | |
7739 | - | |
7740 | - /jake/10.8.2: | |
7741 | - resolution: {integrity: sha512-eLpKyrfG3mzvGE2Du8VoPbeSkRry093+tyNjdYaBbJS9v17knImYGNXQCUV0gLxQtF82m3E8iRb/wdSQZLoq7A==} | |
7742 | - hasBin: true | |
7743 | - dependencies: | |
7744 | - async: 0.9.2 | |
7745 | - chalk: 2.4.2 | |
7746 | - filelist: 1.0.2 | |
7747 | - minimatch: 3.0.4 | |
7748 | - dev: true | |
7749 | - | |
7750 | - /jest-changed-files/27.4.2: | |
7751 | - resolution: {integrity: sha512-/9x8MjekuzUQoPjDHbBiXbNEBauhrPU2ct7m8TfCg69ywt1y/N+yYwGh3gCpnqUS3klYWDU/lSNgv+JhoD2k1A==} | |
7752 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
7753 | - dependencies: | |
7754 | - '@jest/types': 27.4.2 | |
7755 | - execa: 5.1.1 | |
7756 | - throat: 6.0.1 | |
7757 | - dev: true | |
7758 | - | |
7759 | - /jest-circus/27.4.5: | |
7760 | - resolution: {integrity: sha512-eTNWa9wsvBwPykhMMShheafbwyakcdHZaEYh5iRrQ0PFJxkDP/e3U/FvzGuKWu2WpwUA3C3hPlfpuzvOdTVqnw==} | |
7761 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
7762 | - dependencies: | |
7763 | - '@jest/environment': 27.4.4 | |
7764 | - '@jest/test-result': 27.4.2 | |
7765 | - '@jest/types': 27.4.2 | |
7766 | - '@types/node': 17.0.5 | |
7767 | - chalk: 4.1.2 | |
7768 | - co: 4.6.0 | |
7769 | - dedent: 0.7.0 | |
7770 | - expect: 27.4.2 | |
7771 | - is-generator-fn: 2.1.0 | |
7772 | - jest-each: 27.4.2 | |
7773 | - jest-matcher-utils: 27.4.2 | |
7774 | - jest-message-util: 27.4.2 | |
7775 | - jest-runtime: 27.4.5 | |
7776 | - jest-snapshot: 27.4.5 | |
7777 | - jest-util: 27.4.2 | |
7778 | - pretty-format: 27.4.2 | |
7779 | - slash: 3.0.0 | |
7780 | - stack-utils: 2.0.5 | |
7781 | - throat: 6.0.1 | |
7782 | - transitivePeerDependencies: | |
7783 | - - supports-color | |
7784 | - dev: true | |
7785 | - | |
7786 | - /jest-cli/27.4.5_ts-node@10.4.0: | |
7787 | - resolution: {integrity: sha512-hrky3DSgE0u7sQxaCL7bdebEPHx5QzYmrGuUjaPLmPE8jx5adtvGuOlRspvMoVLTTDOHRnZDoRLYJuA+VCI7Hg==} | |
7788 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
7789 | - hasBin: true | |
7790 | - peerDependencies: | |
7791 | - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 | |
7792 | - peerDependenciesMeta: | |
7793 | - node-notifier: | |
7794 | - optional: true | |
7795 | - dependencies: | |
7796 | - '@jest/core': 27.4.5_ts-node@10.4.0 | |
7797 | - '@jest/test-result': 27.4.2 | |
7798 | - '@jest/types': 27.4.2 | |
7799 | - chalk: 4.1.2 | |
7800 | - exit: 0.1.2 | |
7801 | - graceful-fs: 4.2.8 | |
7802 | - import-local: 3.0.3 | |
7803 | - jest-config: 27.4.5_ts-node@10.4.0 | |
7804 | - jest-util: 27.4.2 | |
7805 | - jest-validate: 27.4.2 | |
7806 | - prompts: 2.4.2 | |
7807 | - yargs: 16.2.0 | |
7808 | - transitivePeerDependencies: | |
7809 | - - bufferutil | |
7810 | - - canvas | |
7811 | - - supports-color | |
7812 | - - ts-node | |
7813 | - - utf-8-validate | |
7814 | - dev: true | |
7815 | - | |
7816 | - /jest-config/27.4.5_ts-node@10.4.0: | |
7817 | - resolution: {integrity: sha512-t+STVJtPt+fpqQ8GBw850NtSQbnDOw/UzdPfzDaHQ48/AylQlW7LHj3dH+ndxhC1UxJ0Q3qkq7IH+nM1skwTwA==} | |
7818 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
7819 | - peerDependencies: | |
7820 | - ts-node: '>=9.0.0' | |
7821 | - peerDependenciesMeta: | |
7822 | - ts-node: | |
7823 | - optional: true | |
7824 | - dependencies: | |
7825 | - '@babel/core': 7.16.0 | |
7826 | - '@jest/test-sequencer': 27.4.5 | |
7827 | - '@jest/types': 27.4.2 | |
7828 | - babel-jest: 27.4.5_@babel+core@7.16.0 | |
7829 | - chalk: 4.1.2 | |
7830 | - ci-info: 3.3.0 | |
7831 | - deepmerge: 4.2.2 | |
7832 | - glob: 7.2.0 | |
7833 | - graceful-fs: 4.2.8 | |
7834 | - jest-circus: 27.4.5 | |
7835 | - jest-environment-jsdom: 27.4.4 | |
7836 | - jest-environment-node: 27.4.4 | |
7837 | - jest-get-type: 27.4.0 | |
7838 | - jest-jasmine2: 27.4.5 | |
7839 | - jest-regex-util: 27.4.0 | |
7840 | - jest-resolve: 27.4.5 | |
7841 | - jest-runner: 27.4.5 | |
7842 | - jest-util: 27.4.2 | |
7843 | - jest-validate: 27.4.2 | |
7844 | - micromatch: 4.0.4 | |
7845 | - pretty-format: 27.4.2 | |
7846 | - slash: 3.0.0 | |
7847 | - ts-node: 10.4.0_bad060d5f9aca5284661d88d739ba15b | |
7848 | - transitivePeerDependencies: | |
7849 | - - bufferutil | |
7850 | - - canvas | |
7851 | - - supports-color | |
7852 | - - utf-8-validate | |
7853 | - dev: true | |
7854 | - | |
7855 | - /jest-diff/27.3.1: | |
7856 | - resolution: {integrity: sha512-PCeuAH4AWUo2O5+ksW4pL9v5xJAcIKPUPfIhZBcG1RKv/0+dvaWTQK1Nrau8d67dp65fOqbeMdoil+6PedyEPQ==} | |
7857 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
7858 | - dependencies: | |
7859 | - chalk: 4.1.2 | |
7860 | - diff-sequences: 27.0.6 | |
7861 | - jest-get-type: 27.3.1 | |
7862 | - pretty-format: 27.3.1 | |
7863 | - dev: true | |
7864 | - | |
7865 | - /jest-diff/27.4.2: | |
7866 | - resolution: {integrity: sha512-ujc9ToyUZDh9KcqvQDkk/gkbf6zSaeEg9AiBxtttXW59H/AcqEYp1ciXAtJp+jXWva5nAf/ePtSsgWwE5mqp4Q==} | |
7867 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
7868 | - dependencies: | |
7869 | - chalk: 4.1.2 | |
7870 | - diff-sequences: 27.4.0 | |
7871 | - jest-get-type: 27.4.0 | |
7872 | - pretty-format: 27.4.2 | |
7873 | - dev: true | |
7874 | - | |
7875 | - /jest-docblock/27.4.0: | |
7876 | - resolution: {integrity: sha512-7TBazUdCKGV7svZ+gh7C8esAnweJoG+SvcF6Cjqj4l17zA2q1cMwx2JObSioubk317H+cjcHgP+7fTs60paulg==} | |
7877 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
7878 | - dependencies: | |
7879 | - detect-newline: 3.1.0 | |
7880 | - dev: true | |
7881 | - | |
7882 | - /jest-each/27.4.2: | |
7883 | - resolution: {integrity: sha512-53V2MNyW28CTruB3lXaHNk6PkiIFuzdOC9gR3C6j8YE/ACfrPnz+slB0s17AgU1TtxNzLuHyvNlLJ+8QYw9nBg==} | |
7884 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
7885 | - dependencies: | |
7886 | - '@jest/types': 27.4.2 | |
7887 | - chalk: 4.1.2 | |
7888 | - jest-get-type: 27.4.0 | |
7889 | - jest-util: 27.4.2 | |
7890 | - pretty-format: 27.4.2 | |
7891 | - dev: true | |
7892 | - | |
7893 | - /jest-environment-jsdom/27.4.4: | |
7894 | - resolution: {integrity: sha512-cYR3ndNfHBqQgFvS1RL7dNqSvD//K56j/q1s2ygNHcfTCAp12zfIromO1w3COmXrxS8hWAh7+CmZmGCIoqGcGA==} | |
7895 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
7896 | - dependencies: | |
7897 | - '@jest/environment': 27.4.4 | |
7898 | - '@jest/fake-timers': 27.4.2 | |
7899 | - '@jest/types': 27.4.2 | |
7900 | - '@types/node': 17.0.5 | |
7901 | - jest-mock: 27.4.2 | |
7902 | - jest-util: 27.4.2 | |
7903 | - jsdom: 16.7.0 | |
7904 | - transitivePeerDependencies: | |
7905 | - - bufferutil | |
7906 | - - canvas | |
7907 | - - supports-color | |
7908 | - - utf-8-validate | |
7909 | - dev: true | |
7910 | - | |
7911 | - /jest-environment-node/27.4.4: | |
7912 | - resolution: {integrity: sha512-D+v3lbJ2GjQTQR23TK0kY3vFVmSeea05giInI41HHOaJnAwOnmUHTZgUaZL+VxUB43pIzoa7PMwWtCVlIUoVoA==} | |
7913 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
7914 | - dependencies: | |
7915 | - '@jest/environment': 27.4.4 | |
7916 | - '@jest/fake-timers': 27.4.2 | |
7917 | - '@jest/types': 27.4.2 | |
7918 | - '@types/node': 17.0.5 | |
7919 | - jest-mock: 27.4.2 | |
7920 | - jest-util: 27.4.2 | |
6378 | + /is-retry-allowed/1.2.0: | |
6379 | + resolution: {integrity: sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==} | |
6380 | + engines: {node: '>=0.10.0'} | |
7921 | 6381 | dev: true |
7922 | 6382 | |
7923 | - /jest-get-type/27.3.1: | |
7924 | - resolution: {integrity: sha512-+Ilqi8hgHSAdhlQ3s12CAVNd8H96ZkQBfYoXmArzZnOfAtVAJEiPDBirjByEblvG/4LPJmkL+nBqPO3A1YJAEg==} | |
7925 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
6383 | + /is-shared-array-buffer/1.0.1: | |
6384 | + resolution: {integrity: sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==} | |
7926 | 6385 | dev: true |
7927 | 6386 | |
7928 | - /jest-get-type/27.4.0: | |
7929 | - resolution: {integrity: sha512-tk9o+ld5TWq41DkK14L4wox4s2D9MtTpKaAVzXfr5CUKm5ZK2ExcaFE0qls2W71zE/6R2TxxrK9w2r6svAFDBQ==} | |
7930 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
6387 | + /is-stream/1.1.0: | |
6388 | + resolution: {integrity: sha1-EtSj3U5o4Lec6428hBc66A2RykQ=} | |
6389 | + engines: {node: '>=0.10.0'} | |
7931 | 6390 | dev: true |
7932 | 6391 | |
7933 | - /jest-haste-map/27.4.5: | |
7934 | - resolution: {integrity: sha512-oJm1b5qhhPs78K24EDGifWS0dELYxnoBiDhatT/FThgB9yxqUm5F6li3Pv+Q+apMBmmPNzOBnZ7ZxWMB1Leq1Q==} | |
7935 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
7936 | - dependencies: | |
7937 | - '@jest/types': 27.4.2 | |
7938 | - '@types/graceful-fs': 4.1.5 | |
7939 | - '@types/node': 17.0.5 | |
7940 | - anymatch: 3.1.2 | |
7941 | - fb-watchman: 2.0.1 | |
7942 | - graceful-fs: 4.2.8 | |
7943 | - jest-regex-util: 27.4.0 | |
7944 | - jest-serializer: 27.4.0 | |
7945 | - jest-util: 27.4.2 | |
7946 | - jest-worker: 27.4.5 | |
7947 | - micromatch: 4.0.4 | |
7948 | - walker: 1.0.8 | |
7949 | - optionalDependencies: | |
7950 | - fsevents: 2.3.2 | |
6392 | + /is-stream/2.0.1: | |
6393 | + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} | |
6394 | + engines: {node: '>=8'} | |
7951 | 6395 | dev: true |
7952 | 6396 | |
7953 | - /jest-jasmine2/27.4.5: | |
7954 | - resolution: {integrity: sha512-oUnvwhJDj2LhOiUB1kdnJjkx8C5PwgUZQb9urF77mELH9DGR4e2GqpWQKBOYXWs5+uTN9BGDqRz3Aeg5Wts7aw==} | |
7955 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
6397 | + /is-string/1.0.7: | |
6398 | + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} | |
6399 | + engines: {node: '>= 0.4'} | |
7956 | 6400 | dependencies: |
7957 | - '@babel/traverse': 7.16.3 | |
7958 | - '@jest/environment': 27.4.4 | |
7959 | - '@jest/source-map': 27.4.0 | |
7960 | - '@jest/test-result': 27.4.2 | |
7961 | - '@jest/types': 27.4.2 | |
7962 | - '@types/node': 17.0.5 | |
7963 | - chalk: 4.1.2 | |
7964 | - co: 4.6.0 | |
7965 | - expect: 27.4.2 | |
7966 | - is-generator-fn: 2.1.0 | |
7967 | - jest-each: 27.4.2 | |
7968 | - jest-matcher-utils: 27.4.2 | |
7969 | - jest-message-util: 27.4.2 | |
7970 | - jest-runtime: 27.4.5 | |
7971 | - jest-snapshot: 27.4.5 | |
7972 | - jest-util: 27.4.2 | |
7973 | - pretty-format: 27.4.2 | |
7974 | - throat: 6.0.1 | |
7975 | - transitivePeerDependencies: | |
7976 | - - supports-color | |
6401 | + has-tostringtag: 1.0.0 | |
7977 | 6402 | dev: true |
7978 | 6403 | |
7979 | - /jest-leak-detector/27.4.2: | |
7980 | - resolution: {integrity: sha512-ml0KvFYZllzPBJWDei3mDzUhyp/M4ubKebX++fPaudpe8OsxUE+m+P6ciVLboQsrzOCWDjE20/eXew9QMx/VGw==} | |
7981 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
6404 | + /is-svg/4.3.2: | |
6405 | + resolution: {integrity: sha512-mM90duy00JGMyjqIVHu9gNTjywdZV+8qNasX8cm/EEYZ53PHDgajvbBwNVvty5dwSAxLUD3p3bdo+7sR/UMrpw==} | |
6406 | + engines: {node: '>=6'} | |
7982 | 6407 | dependencies: |
7983 | - jest-get-type: 27.4.0 | |
7984 | - pretty-format: 27.4.2 | |
6408 | + fast-xml-parser: 3.21.1 | |
7985 | 6409 | dev: true |
7986 | 6410 | |
7987 | - /jest-matcher-utils/27.4.2: | |
7988 | - resolution: {integrity: sha512-jyP28er3RRtMv+fmYC/PKG8wvAmfGcSNproVTW2Y0P/OY7/hWUOmsPfxN1jOhM+0u2xU984u2yEagGivz9OBGQ==} | |
7989 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
6411 | + /is-symbol/1.0.4: | |
6412 | + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} | |
6413 | + engines: {node: '>= 0.4'} | |
7990 | 6414 | dependencies: |
7991 | - chalk: 4.1.2 | |
7992 | - jest-diff: 27.4.2 | |
7993 | - jest-get-type: 27.4.0 | |
7994 | - pretty-format: 27.4.2 | |
6415 | + has-symbols: 1.0.3 | |
7995 | 6416 | dev: true |
7996 | 6417 | |
7997 | - /jest-message-util/27.4.2: | |
7998 | - resolution: {integrity: sha512-OMRqRNd9E0DkBLZpFtZkAGYOXl6ZpoMtQJWTAREJKDOFa0M6ptB7L67tp+cszMBkvSgKOhNtQp2Vbcz3ZZKo/w==} | |
7999 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
6418 | + /is-text-path/1.0.1: | |
6419 | + resolution: {integrity: sha1-Thqg+1G/vLPpJogAE5cgLBd1tm4=} | |
6420 | + engines: {node: '>=0.10.0'} | |
8000 | 6421 | dependencies: |
8001 | - '@babel/code-frame': 7.16.0 | |
8002 | - '@jest/types': 27.4.2 | |
8003 | - '@types/stack-utils': 2.0.1 | |
8004 | - chalk: 4.1.2 | |
8005 | - graceful-fs: 4.2.8 | |
8006 | - micromatch: 4.0.4 | |
8007 | - pretty-format: 27.4.2 | |
8008 | - slash: 3.0.0 | |
8009 | - stack-utils: 2.0.5 | |
6422 | + text-extensions: 1.9.0 | |
8010 | 6423 | dev: true |
8011 | 6424 | |
8012 | - /jest-mock/27.4.2: | |
8013 | - resolution: {integrity: sha512-PDDPuyhoukk20JrQKeofK12hqtSka7mWH0QQuxSNgrdiPsrnYYLS6wbzu/HDlxZRzji5ylLRULeuI/vmZZDrYA==} | |
8014 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
8015 | - dependencies: | |
8016 | - '@jest/types': 27.4.2 | |
8017 | - '@types/node': 17.0.5 | |
6425 | + /is-unicode-supported/0.1.0: | |
6426 | + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} | |
6427 | + engines: {node: '>=10'} | |
8018 | 6428 | dev: true |
8019 | 6429 | |
8020 | - /jest-pnp-resolver/1.2.2_jest-resolve@27.4.5: | |
8021 | - resolution: {integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==} | |
8022 | - engines: {node: '>=6'} | |
8023 | - peerDependencies: | |
8024 | - jest-resolve: '*' | |
8025 | - peerDependenciesMeta: | |
8026 | - jest-resolve: | |
8027 | - optional: true | |
8028 | - dependencies: | |
8029 | - jest-resolve: 27.4.5 | |
6430 | + /is-utf8/0.2.1: | |
6431 | + resolution: {integrity: sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=} | |
8030 | 6432 | dev: true |
8031 | 6433 | |
8032 | - /jest-regex-util/27.4.0: | |
8033 | - resolution: {integrity: sha512-WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg==} | |
8034 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
6434 | + /is-weakref/1.0.2: | |
6435 | + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} | |
6436 | + dependencies: | |
6437 | + call-bind: 1.0.2 | |
8035 | 6438 | dev: true |
8036 | 6439 | |
8037 | - /jest-resolve-dependencies/27.4.5: | |
8038 | - resolution: {integrity: sha512-elEVvkvRK51y037NshtEkEnukMBWvlPzZHiL847OrIljJ8yIsujD2GXRPqDXC4rEVKbcdsy7W0FxoZb4WmEs7w==} | |
8039 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
8040 | - dependencies: | |
8041 | - '@jest/types': 27.4.2 | |
8042 | - jest-regex-util: 27.4.0 | |
8043 | - jest-snapshot: 27.4.5 | |
8044 | - transitivePeerDependencies: | |
8045 | - - supports-color | |
6440 | + /is-what/3.14.1: | |
6441 | + resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==} | |
8046 | 6442 | dev: true |
8047 | 6443 | |
8048 | - /jest-resolve/27.4.5: | |
8049 | - resolution: {integrity: sha512-xU3z1BuOz/hUhVUL+918KqUgK+skqOuUsAi7A+iwoUldK6/+PW+utK8l8cxIWT9AW7IAhGNXjSAh1UYmjULZZw==} | |
8050 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
8051 | - dependencies: | |
8052 | - '@jest/types': 27.4.2 | |
8053 | - chalk: 4.1.2 | |
8054 | - graceful-fs: 4.2.8 | |
8055 | - jest-haste-map: 27.4.5 | |
8056 | - jest-pnp-resolver: 1.2.2_jest-resolve@27.4.5 | |
8057 | - jest-util: 27.4.2 | |
8058 | - jest-validate: 27.4.2 | |
8059 | - resolve: 1.20.0 | |
8060 | - resolve.exports: 1.1.0 | |
8061 | - slash: 3.0.0 | |
6444 | + /is-windows/1.0.2: | |
6445 | + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} | |
6446 | + engines: {node: '>=0.10.0'} | |
8062 | 6447 | dev: true |
8063 | 6448 | |
8064 | - /jest-runner/27.4.5: | |
8065 | - resolution: {integrity: sha512-/irauncTfmY1WkTaRQGRWcyQLzK1g98GYG/8QvIPviHgO1Fqz1JYeEIsSfF+9mc/UTA6S+IIHFgKyvUrtiBIZg==} | |
8066 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
6449 | + /is-wsl/2.2.0: | |
6450 | + resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} | |
6451 | + engines: {node: '>=8'} | |
8067 | 6452 | dependencies: |
8068 | - '@jest/console': 27.4.2 | |
8069 | - '@jest/environment': 27.4.4 | |
8070 | - '@jest/test-result': 27.4.2 | |
8071 | - '@jest/transform': 27.4.5 | |
8072 | - '@jest/types': 27.4.2 | |
8073 | - '@types/node': 17.0.5 | |
8074 | - chalk: 4.1.2 | |
8075 | - emittery: 0.8.1 | |
8076 | - exit: 0.1.2 | |
8077 | - graceful-fs: 4.2.8 | |
8078 | - jest-docblock: 27.4.0 | |
8079 | - jest-environment-jsdom: 27.4.4 | |
8080 | - jest-environment-node: 27.4.4 | |
8081 | - jest-haste-map: 27.4.5 | |
8082 | - jest-leak-detector: 27.4.2 | |
8083 | - jest-message-util: 27.4.2 | |
8084 | - jest-resolve: 27.4.5 | |
8085 | - jest-runtime: 27.4.5 | |
8086 | - jest-util: 27.4.2 | |
8087 | - jest-worker: 27.4.5 | |
8088 | - source-map-support: 0.5.21 | |
8089 | - throat: 6.0.1 | |
8090 | - transitivePeerDependencies: | |
8091 | - - bufferutil | |
8092 | - - canvas | |
8093 | - - supports-color | |
8094 | - - utf-8-validate | |
6453 | + is-docker: 2.2.1 | |
8095 | 6454 | dev: true |
8096 | 6455 | |
8097 | - /jest-runtime/27.4.5: | |
8098 | - resolution: {integrity: sha512-CIYqwuJQXHQtPd/idgrx4zgJ6iCb6uBjQq1RSAGQrw2S8XifDmoM1Ot8NRd80ooAm+ZNdHVwsktIMGlA1F1FAQ==} | |
8099 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
8100 | - dependencies: | |
8101 | - '@jest/console': 27.4.2 | |
8102 | - '@jest/environment': 27.4.4 | |
8103 | - '@jest/globals': 27.4.4 | |
8104 | - '@jest/source-map': 27.4.0 | |
8105 | - '@jest/test-result': 27.4.2 | |
8106 | - '@jest/transform': 27.4.5 | |
8107 | - '@jest/types': 27.4.2 | |
8108 | - '@types/yargs': 16.0.4 | |
8109 | - chalk: 4.1.2 | |
8110 | - cjs-module-lexer: 1.2.2 | |
8111 | - collect-v8-coverage: 1.0.1 | |
8112 | - execa: 5.1.1 | |
8113 | - exit: 0.1.2 | |
8114 | - glob: 7.2.0 | |
8115 | - graceful-fs: 4.2.8 | |
8116 | - jest-haste-map: 27.4.5 | |
8117 | - jest-message-util: 27.4.2 | |
8118 | - jest-mock: 27.4.2 | |
8119 | - jest-regex-util: 27.4.0 | |
8120 | - jest-resolve: 27.4.5 | |
8121 | - jest-snapshot: 27.4.5 | |
8122 | - jest-util: 27.4.2 | |
8123 | - jest-validate: 27.4.2 | |
8124 | - slash: 3.0.0 | |
8125 | - strip-bom: 4.0.0 | |
8126 | - yargs: 16.2.0 | |
8127 | - transitivePeerDependencies: | |
8128 | - - supports-color | |
6456 | + /isarray/1.0.0: | |
6457 | + resolution: {integrity: sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=} | |
8129 | 6458 | dev: true |
8130 | 6459 | |
8131 | - /jest-serializer/27.4.0: | |
8132 | - resolution: {integrity: sha512-RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ==} | |
8133 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
8134 | - dependencies: | |
8135 | - '@types/node': 17.0.5 | |
8136 | - graceful-fs: 4.2.8 | |
6460 | + /isexe/2.0.0: | |
6461 | + resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=} | |
8137 | 6462 | dev: true |
8138 | 6463 | |
8139 | - /jest-snapshot/27.4.5: | |
8140 | - resolution: {integrity: sha512-eCi/iM1YJFrJWiT9de4+RpWWWBqsHiYxFG9V9o/n0WXs6GpW4lUt4FAHAgFPTLPqCUVzrMQmSmTZSgQzwqR7IQ==} | |
8141 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
6464 | + /isobject/2.1.0: | |
6465 | + resolution: {integrity: sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=} | |
6466 | + engines: {node: '>=0.10.0'} | |
8142 | 6467 | dependencies: |
8143 | - '@babel/core': 7.16.5 | |
8144 | - '@babel/generator': 7.16.0 | |
8145 | - '@babel/parser': 7.16.4 | |
8146 | - '@babel/plugin-syntax-typescript': 7.16.0_@babel+core@7.16.5 | |
8147 | - '@babel/traverse': 7.16.3 | |
8148 | - '@babel/types': 7.16.0 | |
8149 | - '@jest/transform': 27.4.5 | |
8150 | - '@jest/types': 27.4.2 | |
8151 | - '@types/babel__traverse': 7.14.2 | |
8152 | - '@types/prettier': 2.4.2 | |
8153 | - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.16.5 | |
8154 | - chalk: 4.1.2 | |
8155 | - expect: 27.4.2 | |
8156 | - graceful-fs: 4.2.8 | |
8157 | - jest-diff: 27.4.2 | |
8158 | - jest-get-type: 27.4.0 | |
8159 | - jest-haste-map: 27.4.5 | |
8160 | - jest-matcher-utils: 27.4.2 | |
8161 | - jest-message-util: 27.4.2 | |
8162 | - jest-resolve: 27.4.5 | |
8163 | - jest-util: 27.4.2 | |
8164 | - natural-compare: 1.4.0 | |
8165 | - pretty-format: 27.4.2 | |
8166 | - semver: 7.3.5 | |
8167 | - transitivePeerDependencies: | |
8168 | - - supports-color | |
6468 | + isarray: 1.0.0 | |
8169 | 6469 | dev: true |
8170 | 6470 | |
8171 | - /jest-util/27.4.2: | |
8172 | - resolution: {integrity: sha512-YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA==} | |
8173 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
8174 | - dependencies: | |
8175 | - '@jest/types': 27.4.2 | |
8176 | - '@types/node': 17.0.5 | |
8177 | - chalk: 4.1.2 | |
8178 | - ci-info: 3.3.0 | |
8179 | - graceful-fs: 4.2.8 | |
8180 | - picomatch: 2.3.0 | |
6471 | + /isobject/3.0.1: | |
6472 | + resolution: {integrity: sha1-TkMekrEalzFjaqH5yNHMvP2reN8=} | |
6473 | + engines: {node: '>=0.10.0'} | |
8181 | 6474 | dev: true |
8182 | 6475 | |
8183 | - /jest-validate/27.4.2: | |
8184 | - resolution: {integrity: sha512-hWYsSUej+Fs8ZhOm5vhWzwSLmVaPAxRy+Mr+z5MzeaHm9AxUpXdoVMEW4R86y5gOobVfBsMFLk4Rb+QkiEpx1A==} | |
8185 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
6476 | + /isurl/1.0.0: | |
6477 | + resolution: {integrity: sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==} | |
6478 | + engines: {node: '>= 4'} | |
8186 | 6479 | dependencies: |
8187 | - '@jest/types': 27.4.2 | |
8188 | - camelcase: 6.2.1 | |
8189 | - chalk: 4.1.2 | |
8190 | - jest-get-type: 27.4.0 | |
8191 | - leven: 3.1.0 | |
8192 | - pretty-format: 27.4.2 | |
6480 | + has-to-string-tag-x: 1.4.1 | |
6481 | + is-object: 1.0.2 | |
8193 | 6482 | dev: true |
8194 | 6483 | |
8195 | - /jest-watcher/27.4.2: | |
8196 | - resolution: {integrity: sha512-NJvMVyyBeXfDezhWzUOCOYZrUmkSCiatpjpm+nFUid74OZEHk6aMLrZAukIiFDwdbqp6mTM6Ui1w4oc+8EobQg==} | |
8197 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
6484 | + /jake/10.8.2: | |
6485 | + resolution: {integrity: sha512-eLpKyrfG3mzvGE2Du8VoPbeSkRry093+tyNjdYaBbJS9v17knImYGNXQCUV0gLxQtF82m3E8iRb/wdSQZLoq7A==} | |
6486 | + hasBin: true | |
8198 | 6487 | dependencies: |
8199 | - '@jest/test-result': 27.4.2 | |
8200 | - '@jest/types': 27.4.2 | |
8201 | - '@types/node': 17.0.5 | |
8202 | - ansi-escapes: 4.3.2 | |
8203 | - chalk: 4.1.2 | |
8204 | - jest-util: 27.4.2 | |
8205 | - string-length: 4.0.2 | |
6488 | + async: 0.9.2 | |
6489 | + chalk: 2.4.2 | |
6490 | + filelist: 1.0.2 | |
6491 | + minimatch: 3.1.2 | |
8206 | 6492 | dev: true |
8207 | 6493 | |
8208 | 6494 | /jest-worker/26.6.2: |
8209 | 6495 | resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} |
8210 | 6496 | engines: {node: '>= 10.13.0'} |
8211 | 6497 | dependencies: |
8212 | - '@types/node': 17.0.5 | |
6498 | + '@types/node': 17.0.21 | |
8213 | 6499 | merge-stream: 2.0.0 |
8214 | 6500 | supports-color: 7.2.0 |
8215 | 6501 | dev: true |
8216 | 6502 | |
8217 | - /jest-worker/27.4.5: | |
8218 | - resolution: {integrity: sha512-f2s8kEdy15cv9r7q4KkzGXvlY0JTcmCbMHZBfSQDwW77REr45IDWwd0lksDFeVHH2jJ5pqb90T77XscrjeGzzg==} | |
8219 | - engines: {node: '>= 10.13.0'} | |
8220 | - dependencies: | |
8221 | - '@types/node': 17.0.5 | |
8222 | - merge-stream: 2.0.0 | |
8223 | - supports-color: 8.1.1 | |
8224 | - dev: true | |
8225 | - | |
8226 | - /jest/27.4.5_ts-node@10.4.0: | |
8227 | - resolution: {integrity: sha512-uT5MiVN3Jppt314kidCk47MYIRilJjA/l2mxwiuzzxGUeJIvA8/pDaJOAX5KWvjAo7SCydcW0/4WEtgbLMiJkg==} | |
8228 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
8229 | - hasBin: true | |
8230 | - peerDependencies: | |
8231 | - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 | |
8232 | - peerDependenciesMeta: | |
8233 | - node-notifier: | |
8234 | - optional: true | |
8235 | - dependencies: | |
8236 | - '@jest/core': 27.4.5_ts-node@10.4.0 | |
8237 | - import-local: 3.0.3 | |
8238 | - jest-cli: 27.4.5_ts-node@10.4.0 | |
8239 | - transitivePeerDependencies: | |
8240 | - - bufferutil | |
8241 | - - canvas | |
8242 | - - supports-color | |
8243 | - - ts-node | |
8244 | - - utf-8-validate | |
8245 | - dev: true | |
8246 | - | |
8247 | - /jiti/1.12.9: | |
8248 | - resolution: {integrity: sha512-TdcJywkQtcwLxogc4rSMAi479G2eDPzfW0fLySks7TPhgZZ4s/tM6stnzayIh3gS/db3zExWJyUx4cNWrwAmoQ==} | |
6503 | + /jiti/1.13.0: | |
6504 | + resolution: {integrity: sha512-/n9mNxZj/HDSrincJ6RP+L+yXbpnB8FybySBa+IjIaoH9FIxBbrbRT5XUbe8R7zuVM2AQqNMNDDqz0bzx3znOQ==} | |
8249 | 6505 | hasBin: true |
8250 | 6506 | dev: true |
8251 | 6507 | |
... | ... | @@ -8274,21 +6530,9 @@ packages: |
8274 | 6530 | resolution: {integrity: sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==} |
8275 | 6531 | dev: true |
8276 | 6532 | |
8277 | - /js-stringify/1.0.2: | |
8278 | - resolution: {integrity: sha1-Fzb939lyTyijaCrcYjCufk6Weds=} | |
8279 | - dev: true | |
8280 | - | |
8281 | 6533 | /js-tokens/4.0.0: |
8282 | 6534 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} |
8283 | 6535 | |
8284 | - /js-yaml/3.14.1: | |
8285 | - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} | |
8286 | - hasBin: true | |
8287 | - dependencies: | |
8288 | - argparse: 1.0.10 | |
8289 | - esprima: 4.0.1 | |
8290 | - dev: true | |
8291 | - | |
8292 | 6536 | /js-yaml/4.1.0: |
8293 | 6537 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} |
8294 | 6538 | hasBin: true |
... | ... | @@ -8296,48 +6540,6 @@ packages: |
8296 | 6540 | argparse: 2.0.1 |
8297 | 6541 | dev: true |
8298 | 6542 | |
8299 | - /jsdom/16.7.0: | |
8300 | - resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==} | |
8301 | - engines: {node: '>=10'} | |
8302 | - peerDependencies: | |
8303 | - canvas: ^2.5.0 | |
8304 | - peerDependenciesMeta: | |
8305 | - canvas: | |
8306 | - optional: true | |
8307 | - dependencies: | |
8308 | - abab: 2.0.5 | |
8309 | - acorn: 8.6.0 | |
8310 | - acorn-globals: 6.0.0 | |
8311 | - cssom: 0.4.4 | |
8312 | - cssstyle: 2.3.0 | |
8313 | - data-urls: 2.0.0 | |
8314 | - decimal.js: 10.3.1 | |
8315 | - domexception: 2.0.1 | |
8316 | - escodegen: 2.0.0 | |
8317 | - form-data: 3.0.1 | |
8318 | - html-encoding-sniffer: 2.0.1 | |
8319 | - http-proxy-agent: 4.0.1 | |
8320 | - https-proxy-agent: 5.0.0 | |
8321 | - is-potential-custom-element-name: 1.0.1 | |
8322 | - nwsapi: 2.2.0 | |
8323 | - parse5: 6.0.1 | |
8324 | - saxes: 5.0.1 | |
8325 | - symbol-tree: 3.2.4 | |
8326 | - tough-cookie: 4.0.0 | |
8327 | - w3c-hr-time: 1.0.2 | |
8328 | - w3c-xmlserializer: 2.0.0 | |
8329 | - webidl-conversions: 6.1.0 | |
8330 | - whatwg-encoding: 1.0.5 | |
8331 | - whatwg-mimetype: 2.3.0 | |
8332 | - whatwg-url: 8.7.0 | |
8333 | - ws: 7.5.6 | |
8334 | - xml-name-validator: 3.0.0 | |
8335 | - transitivePeerDependencies: | |
8336 | - - bufferutil | |
8337 | - - supports-color | |
8338 | - - utf-8-validate | |
8339 | - dev: true | |
8340 | - | |
8341 | 6543 | /jsesc/0.5.0: |
8342 | 6544 | resolution: {integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=} |
8343 | 6545 | hasBin: true |
... | ... | @@ -8396,10 +6598,6 @@ packages: |
8396 | 6598 | minimist: 1.2.5 |
8397 | 6599 | dev: true |
8398 | 6600 | |
8399 | - /jsonc-parser/2.3.1: | |
8400 | - resolution: {integrity: sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==} | |
8401 | - dev: true | |
8402 | - | |
8403 | 6601 | /jsonc-parser/3.0.0: |
8404 | 6602 | resolution: {integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==} |
8405 | 6603 | dev: true |
... | ... | @@ -8407,7 +6605,7 @@ packages: |
8407 | 6605 | /jsonfile/4.0.0: |
8408 | 6606 | resolution: {integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=} |
8409 | 6607 | optionalDependencies: |
8410 | - graceful-fs: 4.2.8 | |
6608 | + graceful-fs: 4.2.9 | |
8411 | 6609 | dev: true |
8412 | 6610 | |
8413 | 6611 | /jsonfile/6.1.0: |
... | ... | @@ -8415,7 +6613,7 @@ packages: |
8415 | 6613 | dependencies: |
8416 | 6614 | universalify: 2.0.0 |
8417 | 6615 | optionalDependencies: |
8418 | - graceful-fs: 4.2.8 | |
6616 | + graceful-fs: 4.2.9 | |
8419 | 6617 | dev: true |
8420 | 6618 | |
8421 | 6619 | /jsonparse/1.3.1: |
... | ... | @@ -8428,13 +6626,6 @@ packages: |
8428 | 6626 | engines: {node: '>=0.10.0'} |
8429 | 6627 | dev: true |
8430 | 6628 | |
8431 | - /jstransformer/1.0.0: | |
8432 | - resolution: {integrity: sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM=} | |
8433 | - dependencies: | |
8434 | - is-promise: 2.2.2 | |
8435 | - promise: 7.3.1 | |
8436 | - dev: true | |
8437 | - | |
8438 | 6629 | /junk/3.1.0: |
8439 | 6630 | resolution: {integrity: sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==} |
8440 | 6631 | engines: {node: '>=8'} |
... | ... | @@ -8470,11 +6661,6 @@ packages: |
8470 | 6661 | engines: {node: '>=0.10.0'} |
8471 | 6662 | dev: true |
8472 | 6663 | |
8473 | - /kleur/3.0.3: | |
8474 | - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} | |
8475 | - engines: {node: '>=6'} | |
8476 | - dev: true | |
8477 | - | |
8478 | 6664 | /known-css-properties/0.24.0: |
8479 | 6665 | resolution: {integrity: sha512-RTSoaUAfLvpR357vWzAz/50Q/BmHfmE6ETSWfutT0AJiw10e6CmcdYRQJlLRd95B53D0Y2aD1jSxD3V3ySF+PA==} |
8480 | 6666 | dev: true |
... | ... | @@ -8488,12 +6674,12 @@ packages: |
8488 | 6674 | engines: {node: '>=6'} |
8489 | 6675 | hasBin: true |
8490 | 6676 | dependencies: |
8491 | - copy-anything: 2.0.3 | |
6677 | + copy-anything: 2.0.6 | |
8492 | 6678 | parse-node-version: 1.0.1 |
8493 | 6679 | tslib: 2.3.1 |
8494 | 6680 | optionalDependencies: |
8495 | 6681 | errno: 0.1.8 |
8496 | - graceful-fs: 4.2.8 | |
6682 | + graceful-fs: 4.2.9 | |
8497 | 6683 | image-size: 0.5.5 |
8498 | 6684 | make-dir: 2.1.0 |
8499 | 6685 | mime: 1.6.0 |
... | ... | @@ -8506,14 +6692,6 @@ packages: |
8506 | 6692 | engines: {node: '>=6'} |
8507 | 6693 | dev: true |
8508 | 6694 | |
8509 | - /levn/0.3.0: | |
8510 | - resolution: {integrity: sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=} | |
8511 | - engines: {node: '>= 0.8.0'} | |
8512 | - dependencies: | |
8513 | - prelude-ls: 1.1.2 | |
8514 | - type-check: 0.3.2 | |
8515 | - dev: true | |
8516 | - | |
8517 | 6695 | /levn/0.4.1: |
8518 | 6696 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} |
8519 | 6697 | engines: {node: '>= 0.8.0'} |
... | ... | @@ -8531,21 +6709,22 @@ packages: |
8531 | 6709 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} |
8532 | 6710 | dev: true |
8533 | 6711 | |
8534 | - /lint-staged/12.1.4: | |
8535 | - resolution: {integrity: sha512-RgDz9nsFsE0/5eL9Vat0AvCuk0+j5mEuzBIVfrRH5FRtt5wibYe8zTjZs2nuqLFrLAGQGYnj8+HJxolcj08i/A==} | |
6712 | + /lint-staged/12.3.7: | |
6713 | + resolution: {integrity: sha512-/S4D726e2GIsDVWIk1XGvheCaDm1SJRQp8efamZFWJxQMVEbOwSysp7xb49Oo73KYCdy97mIWinhlxcoNqIfIQ==} | |
8536 | 6714 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} |
8537 | 6715 | hasBin: true |
8538 | 6716 | dependencies: |
8539 | 6717 | cli-truncate: 3.1.0 |
8540 | 6718 | colorette: 2.0.16 |
8541 | 6719 | commander: 8.3.0 |
8542 | - debug: 4.3.3_supports-color@9.2.1 | |
6720 | + debug: 4.3.4_supports-color@9.2.1 | |
8543 | 6721 | execa: 5.1.1 |
8544 | 6722 | lilconfig: 2.0.4 |
8545 | - listr2: 3.13.5 | |
6723 | + listr2: 4.0.5 | |
8546 | 6724 | micromatch: 4.0.4 |
8547 | 6725 | normalize-path: 3.0.0 |
8548 | 6726 | object-inspect: 1.12.0 |
6727 | + pidtree: 0.5.0 | |
8549 | 6728 | string-argv: 0.3.1 |
8550 | 6729 | supports-color: 9.2.1 |
8551 | 6730 | yaml: 1.10.2 |
... | ... | @@ -8553,9 +6732,9 @@ packages: |
8553 | 6732 | - enquirer |
8554 | 6733 | dev: true |
8555 | 6734 | |
8556 | - /listr2/3.13.5: | |
8557 | - resolution: {integrity: sha512-3n8heFQDSk+NcwBn3CgxEibZGaRzx+pC64n3YjpMD1qguV4nWus3Al+Oo3KooqFKTQEJ1v7MmnbnyyNspgx3NA==} | |
8558 | - engines: {node: '>=10.0.0'} | |
6735 | + /listr2/4.0.5: | |
6736 | + resolution: {integrity: sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA==} | |
6737 | + engines: {node: '>=12'} | |
8559 | 6738 | peerDependencies: |
8560 | 6739 | enquirer: '>= 2.3.0 < 3' |
8561 | 6740 | peerDependenciesMeta: |
... | ... | @@ -8567,7 +6746,7 @@ packages: |
8567 | 6746 | log-update: 4.0.0 |
8568 | 6747 | p-map: 4.0.0 |
8569 | 6748 | rfdc: 1.3.0 |
8570 | - rxjs: 7.4.0 | |
6749 | + rxjs: 7.5.5 | |
8571 | 6750 | through: 2.3.8 |
8572 | 6751 | wrap-ansi: 7.0.0 |
8573 | 6752 | dev: true |
... | ... | @@ -8576,7 +6755,7 @@ packages: |
8576 | 6755 | resolution: {integrity: sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=} |
8577 | 6756 | engines: {node: '>=0.10.0'} |
8578 | 6757 | dependencies: |
8579 | - graceful-fs: 4.2.8 | |
6758 | + graceful-fs: 4.2.9 | |
8580 | 6759 | parse-json: 2.2.0 |
8581 | 6760 | pify: 2.3.0 |
8582 | 6761 | pinkie-promise: 2.0.1 |
... | ... | @@ -8587,7 +6766,7 @@ packages: |
8587 | 6766 | resolution: {integrity: sha1-L19Fq5HjMhYjT9U62rZo607AmTs=} |
8588 | 6767 | engines: {node: '>=4'} |
8589 | 6768 | dependencies: |
8590 | - graceful-fs: 4.2.8 | |
6769 | + graceful-fs: 4.2.9 | |
8591 | 6770 | parse-json: 4.0.0 |
8592 | 6771 | pify: 3.0.0 |
8593 | 6772 | strip-bom: 3.0.0 |
... | ... | @@ -8610,14 +6789,6 @@ packages: |
8610 | 6789 | path-exists: 3.0.0 |
8611 | 6790 | dev: true |
8612 | 6791 | |
8613 | - /locate-path/3.0.0: | |
8614 | - resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} | |
8615 | - engines: {node: '>=6'} | |
8616 | - dependencies: | |
8617 | - p-locate: 3.0.0 | |
8618 | - path-exists: 3.0.0 | |
8619 | - dev: false | |
8620 | - | |
8621 | 6792 | /locate-path/5.0.0: |
8622 | 6793 | resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} |
8623 | 6794 | engines: {node: '>=8'} |
... | ... | @@ -8647,10 +6818,6 @@ packages: |
8647 | 6818 | resolution: {integrity: sha1-dx7Hg540c9nEzeKLGTlMNWL09tM=} |
8648 | 6819 | dev: true |
8649 | 6820 | |
8650 | - /lodash.memoize/4.1.2: | |
8651 | - resolution: {integrity: sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=} | |
8652 | - dev: true | |
8653 | - | |
8654 | 6821 | /lodash.merge/4.6.2: |
8655 | 6822 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} |
8656 | 6823 | dev: true |
... | ... | @@ -8714,7 +6881,7 @@ packages: |
8714 | 6881 | engines: {node: '>=0.10.0'} |
8715 | 6882 | dependencies: |
8716 | 6883 | currently-unhandled: 0.4.1 |
8717 | - signal-exit: 3.0.6 | |
6884 | + signal-exit: 3.0.7 | |
8718 | 6885 | dev: true |
8719 | 6886 | |
8720 | 6887 | /lower-case/2.0.2: |
... | ... | @@ -8758,8 +6925,8 @@ packages: |
8758 | 6925 | yallist: 4.0.0 |
8759 | 6926 | dev: true |
8760 | 6927 | |
8761 | - /magic-string/0.25.7: | |
8762 | - resolution: {integrity: sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==} | |
6928 | + /magic-string/0.25.9: | |
6929 | + resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==} | |
8763 | 6930 | dependencies: |
8764 | 6931 | sourcemap-codec: 1.4.8 |
8765 | 6932 | |
... | ... | @@ -8791,12 +6958,6 @@ packages: |
8791 | 6958 | resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} |
8792 | 6959 | dev: true |
8793 | 6960 | |
8794 | - /makeerror/1.0.12: | |
8795 | - resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} | |
8796 | - dependencies: | |
8797 | - tmpl: 1.0.5 | |
8798 | - dev: true | |
8799 | - | |
8800 | 6961 | /map-cache/0.2.2: |
8801 | 6962 | resolution: {integrity: sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=} |
8802 | 6963 | engines: {node: '>=0.10.0'} |
... | ... | @@ -8927,19 +7088,12 @@ packages: |
8927 | 7088 | engines: {node: '>=8.6'} |
8928 | 7089 | dependencies: |
8929 | 7090 | braces: 3.0.2 |
8930 | - picomatch: 2.3.0 | |
8931 | - dev: true | |
8932 | - | |
8933 | - /mime-db/1.51.0: | |
8934 | - resolution: {integrity: sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==} | |
8935 | - engines: {node: '>= 0.6'} | |
7091 | + picomatch: 2.3.1 | |
8936 | 7092 | dev: true |
8937 | 7093 | |
8938 | - /mime-types/2.1.34: | |
8939 | - resolution: {integrity: sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==} | |
7094 | + /mime-db/1.52.0: | |
7095 | + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} | |
8940 | 7096 | engines: {node: '>= 0.6'} |
8941 | - dependencies: | |
8942 | - mime-db: 1.51.0 | |
8943 | 7097 | dev: true |
8944 | 7098 | |
8945 | 7099 | /mime/1.6.0: |
... | ... | @@ -8970,8 +7124,8 @@ packages: |
8970 | 7124 | engines: {node: '>=4'} |
8971 | 7125 | dev: true |
8972 | 7126 | |
8973 | - /minimatch/3.0.4: | |
8974 | - resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==} | |
7127 | + /minimatch/3.1.2: | |
7128 | + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} | |
8975 | 7129 | dependencies: |
8976 | 7130 | brace-expansion: 1.1.11 |
8977 | 7131 | dev: true |
... | ... | @@ -9001,7 +7155,7 @@ packages: |
9001 | 7155 | resolution: {integrity: sha512-eQsKcWzIaZzEZ07NuEyO4Nw65g0hdWAyurVol1IPl1gahRwY+svqzfgfey8U8dahLwG44d6/RwEzuK52rSa/JQ==} |
9002 | 7156 | hasBin: true |
9003 | 7157 | dependencies: |
9004 | - commander: 8.3.0 | |
7158 | + commander: 9.1.0 | |
9005 | 7159 | dev: false |
9006 | 7160 | |
9007 | 7161 | /modify-values/1.0.1: |
... | ... | @@ -9044,8 +7198,8 @@ packages: |
9044 | 7198 | resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} |
9045 | 7199 | dev: true |
9046 | 7200 | |
9047 | - /nanoid/3.1.30: | |
9048 | - resolution: {integrity: sha512-zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ==} | |
7201 | + /nanoid/3.3.1: | |
7202 | + resolution: {integrity: sha512-n6Vs/3KGyxPQd6uO0eH4Bv0ojGSUvuLlIHtC3Y0kEO23YRge8H9x1GCzLn28YX0H66pMkxuaeESFq4tKISKwdw==} | |
9049 | 7203 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} |
9050 | 7204 | hasBin: true |
9051 | 7205 | |
... | ... | @@ -9101,28 +7255,33 @@ packages: |
9101 | 7255 | tslib: 2.3.1 |
9102 | 7256 | dev: true |
9103 | 7257 | |
9104 | - /node-fetch/2.6.1: | |
9105 | - resolution: {integrity: sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==} | |
7258 | + /node-fetch/2.6.7: | |
7259 | + resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} | |
9106 | 7260 | engines: {node: 4.x || >=6.0.0} |
7261 | + peerDependencies: | |
7262 | + encoding: ^0.1.0 | |
7263 | + peerDependenciesMeta: | |
7264 | + encoding: | |
7265 | + optional: true | |
7266 | + dependencies: | |
7267 | + whatwg-url: 5.0.0 | |
9107 | 7268 | |
9108 | - /node-int64/0.4.0: | |
9109 | - resolution: {integrity: sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=} | |
9110 | - dev: true | |
9111 | - | |
9112 | - /node-modules-regexp/1.0.0: | |
9113 | - resolution: {integrity: sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=} | |
9114 | - engines: {node: '>=0.10.0'} | |
7269 | + /node-html-parser/5.3.3: | |
7270 | + resolution: {integrity: sha512-ncg1033CaX9UexbyA7e1N0aAoAYRDiV8jkTvzEnfd1GDvzFdrsXLzR4p4ik8mwLgnaKP/jyUFWDy9q3jvRT2Jw==} | |
7271 | + dependencies: | |
7272 | + css-select: 4.2.1 | |
7273 | + he: 1.2.0 | |
9115 | 7274 | dev: true |
9116 | 7275 | |
9117 | - /node-releases/2.0.1: | |
9118 | - resolution: {integrity: sha512-CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA==} | |
7276 | + /node-releases/2.0.2: | |
7277 | + resolution: {integrity: sha512-XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg==} | |
9119 | 7278 | dev: true |
9120 | 7279 | |
9121 | 7280 | /normalize-package-data/2.5.0: |
9122 | 7281 | resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} |
9123 | 7282 | dependencies: |
9124 | 7283 | hosted-git-info: 2.8.9 |
9125 | - resolve: 1.20.0 | |
7284 | + resolve: 1.22.0 | |
9126 | 7285 | semver: 5.7.1 |
9127 | 7286 | validate-npm-package-license: 3.0.4 |
9128 | 7287 | dev: true |
... | ... | @@ -9131,8 +7290,8 @@ packages: |
9131 | 7290 | resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} |
9132 | 7291 | engines: {node: '>=10'} |
9133 | 7292 | dependencies: |
9134 | - hosted-git-info: 4.0.2 | |
9135 | - is-core-module: 2.8.0 | |
7293 | + hosted-git-info: 4.1.0 | |
7294 | + is-core-module: 2.8.1 | |
9136 | 7295 | semver: 7.3.5 |
9137 | 7296 | validate-npm-package-license: 3.0.4 |
9138 | 7297 | dev: true |
... | ... | @@ -9177,7 +7336,7 @@ packages: |
9177 | 7336 | chalk: 2.4.2 |
9178 | 7337 | cross-spawn: 6.0.5 |
9179 | 7338 | memorystream: 0.3.1 |
9180 | - minimatch: 3.0.4 | |
7339 | + minimatch: 3.1.2 | |
9181 | 7340 | pidtree: 0.3.1 |
9182 | 7341 | read-pkg: 3.0.0 |
9183 | 7342 | shell-quote: 1.7.3 |
... | ... | @@ -9208,10 +7367,6 @@ packages: |
9208 | 7367 | boolbase: 1.0.0 |
9209 | 7368 | dev: true |
9210 | 7369 | |
9211 | - /nwsapi/2.2.0: | |
9212 | - resolution: {integrity: sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==} | |
9213 | - dev: true | |
9214 | - | |
9215 | 7370 | /object-assign/4.1.1: |
9216 | 7371 | resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=} |
9217 | 7372 | engines: {node: '>=0.10.0'} |
... | ... | @@ -9226,12 +7381,8 @@ packages: |
9226 | 7381 | kind-of: 3.2.2 |
9227 | 7382 | dev: true |
9228 | 7383 | |
9229 | - /object-inspect/1.11.0: | |
9230 | - resolution: {integrity: sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==} | |
9231 | - | |
9232 | 7384 | /object-inspect/1.12.0: |
9233 | 7385 | resolution: {integrity: sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==} |
9234 | - dev: true | |
9235 | 7386 | |
9236 | 7387 | /object-keys/1.1.1: |
9237 | 7388 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} |
... | ... | @@ -9251,7 +7402,7 @@ packages: |
9251 | 7402 | dependencies: |
9252 | 7403 | call-bind: 1.0.2 |
9253 | 7404 | define-properties: 1.1.3 |
9254 | - has-symbols: 1.0.2 | |
7405 | + has-symbols: 1.0.3 | |
9255 | 7406 | object-keys: 1.1.1 |
9256 | 7407 | dev: true |
9257 | 7408 | |
... | ... | @@ -9289,26 +7440,15 @@ packages: |
9289 | 7440 | mimic-fn: 2.1.0 |
9290 | 7441 | dev: true |
9291 | 7442 | |
9292 | - /open/7.4.2: | |
9293 | - resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} | |
9294 | - engines: {node: '>=8'} | |
7443 | + /open/8.4.0: | |
7444 | + resolution: {integrity: sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==} | |
7445 | + engines: {node: '>=12'} | |
9295 | 7446 | dependencies: |
7447 | + define-lazy-prop: 2.0.0 | |
9296 | 7448 | is-docker: 2.2.1 |
9297 | 7449 | is-wsl: 2.2.0 |
9298 | 7450 | dev: true |
9299 | 7451 | |
9300 | - /optionator/0.8.3: | |
9301 | - resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==} | |
9302 | - engines: {node: '>= 0.8.0'} | |
9303 | - dependencies: | |
9304 | - deep-is: 0.1.4 | |
9305 | - fast-levenshtein: 2.0.6 | |
9306 | - levn: 0.3.0 | |
9307 | - prelude-ls: 1.1.2 | |
9308 | - type-check: 0.3.2 | |
9309 | - word-wrap: 1.2.3 | |
9310 | - dev: true | |
9311 | - | |
9312 | 7452 | /optionator/0.9.1: |
9313 | 7453 | resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} |
9314 | 7454 | engines: {node: '>= 0.8.0'} |
... | ... | @@ -9426,13 +7566,6 @@ packages: |
9426 | 7566 | p-limit: 1.3.0 |
9427 | 7567 | dev: true |
9428 | 7568 | |
9429 | - /p-locate/3.0.0: | |
9430 | - resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} | |
9431 | - engines: {node: '>=6'} | |
9432 | - dependencies: | |
9433 | - p-limit: 2.3.0 | |
9434 | - dev: false | |
9435 | - | |
9436 | 7569 | /p-locate/4.1.0: |
9437 | 7570 | resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} |
9438 | 7571 | engines: {node: '>=8'} |
... | ... | @@ -9526,7 +7659,7 @@ packages: |
9526 | 7659 | resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} |
9527 | 7660 | engines: {node: '>=8'} |
9528 | 7661 | dependencies: |
9529 | - '@babel/code-frame': 7.16.0 | |
7662 | + '@babel/code-frame': 7.16.7 | |
9530 | 7663 | error-ex: 1.3.2 |
9531 | 7664 | json-parse-even-better-errors: 2.3.1 |
9532 | 7665 | lines-and-columns: 1.2.4 |
... | ... | @@ -9542,10 +7675,6 @@ packages: |
9542 | 7675 | engines: {node: '>=0.10.0'} |
9543 | 7676 | dev: true |
9544 | 7677 | |
9545 | - /parse5/6.0.1: | |
9546 | - resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} | |
9547 | - dev: true | |
9548 | - | |
9549 | 7678 | /parseurl/1.3.3: |
9550 | 7679 | resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} |
9551 | 7680 | engines: {node: '>= 0.8'} |
... | ... | @@ -9580,6 +7709,7 @@ packages: |
9580 | 7709 | /path-exists/3.0.0: |
9581 | 7710 | resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=} |
9582 | 7711 | engines: {node: '>=4'} |
7712 | + dev: true | |
9583 | 7713 | |
9584 | 7714 | /path-exists/4.0.0: |
9585 | 7715 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} |
... | ... | @@ -9611,7 +7741,7 @@ packages: |
9611 | 7741 | resolution: {integrity: sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=} |
9612 | 7742 | engines: {node: '>=0.10.0'} |
9613 | 7743 | dependencies: |
9614 | - graceful-fs: 4.2.8 | |
7744 | + graceful-fs: 4.2.9 | |
9615 | 7745 | pify: 2.3.0 |
9616 | 7746 | pinkie-promise: 2.0.1 |
9617 | 7747 | dev: true |
... | ... | @@ -9632,6 +7762,10 @@ packages: |
9632 | 7762 | resolution: {integrity: sha512-mmK20YtPb4yXHlaPuOD/uPIpRu7iIK45GA/GiRSlNpIdfWDG5aEQmFT1HHtBmJB+t/6DvFOtOsEipsPA8Bx2cw==} |
9633 | 7763 | dev: true |
9634 | 7764 | |
7765 | + /pathe/0.2.0: | |
7766 | + resolution: {integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==} | |
7767 | + dev: true | |
7768 | + | |
9635 | 7769 | /pend/1.2.0: |
9636 | 7770 | resolution: {integrity: sha1-elfrVQpng/kRUzH89GY9XI4AelA=} |
9637 | 7771 | dev: true |
... | ... | @@ -9639,8 +7773,8 @@ packages: |
9639 | 7773 | /picocolors/1.0.0: |
9640 | 7774 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} |
9641 | 7775 | |
9642 | - /picomatch/2.3.0: | |
9643 | - resolution: {integrity: sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==} | |
7776 | + /picomatch/2.3.1: | |
7777 | + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} | |
9644 | 7778 | engines: {node: '>=8.6'} |
9645 | 7779 | dev: true |
9646 | 7780 | |
... | ... | @@ -9650,6 +7784,12 @@ packages: |
9650 | 7784 | hasBin: true |
9651 | 7785 | dev: true |
9652 | 7786 | |
7787 | + /pidtree/0.5.0: | |
7788 | + resolution: {integrity: sha512-9nxspIM7OpZuhBxPg73Zvyq7j1QMPMPsGKTqRc2XOaFQauDvoNz9fM1Wdkjmeo7l9GXOZiRs97sPkuayl39wjA==} | |
7789 | + engines: {node: '>=0.10'} | |
7790 | + hasBin: true | |
7791 | + dev: true | |
7792 | + | |
9653 | 7793 | /pify/2.3.0: |
9654 | 7794 | resolution: {integrity: sha1-7RQaasBDqEnqWISY59yosVMw6Qw=} |
9655 | 7795 | engines: {node: '>=0.10.0'} |
... | ... | @@ -9665,8 +7805,8 @@ packages: |
9665 | 7805 | engines: {node: '>=6'} |
9666 | 7806 | dev: true |
9667 | 7807 | |
9668 | - /pinia/2.0.9_typescript@4.5.4+vue@3.2.26: | |
9669 | - resolution: {integrity: sha512-iuYdxLJKQ07YPyOHYH05wNG9eKWqkP/4y4GE8+RqEYtz5fwHgPA5kr6zQbg/DoEJGnR2XCm1w1vdt6ppzL9ATg==} | |
7808 | + /pinia/2.0.12_typescript@4.6.2+vue@3.2.31: | |
7809 | + resolution: {integrity: sha512-tUeuYGFrLU5irmGyRAIxp35q1OTcZ8sKpGT4XkPeVcG35W4R6cfXDbCGexzmVqH5lTQJJTXXbNGutIu9yS5yew==} | |
9670 | 7810 | peerDependencies: |
9671 | 7811 | '@vue/composition-api': ^1.4.0 |
9672 | 7812 | typescript: '>=4.4.4' |
... | ... | @@ -9677,10 +7817,10 @@ packages: |
9677 | 7817 | typescript: |
9678 | 7818 | optional: true |
9679 | 7819 | dependencies: |
9680 | - '@vue/devtools-api': 6.0.0-beta.21.1 | |
9681 | - typescript: 4.5.4 | |
9682 | - vue: 3.2.26 | |
9683 | - vue-demi: 0.12.1_vue@3.2.26 | |
7820 | + '@vue/devtools-api': 6.1.3 | |
7821 | + typescript: 4.6.2 | |
7822 | + vue: 3.2.31 | |
7823 | + vue-demi: 0.12.4_vue@3.2.31 | |
9684 | 7824 | dev: false |
9685 | 7825 | |
9686 | 7826 | /pinkie-promise/2.0.1: |
... | ... | @@ -9695,20 +7835,6 @@ packages: |
9695 | 7835 | engines: {node: '>=0.10.0'} |
9696 | 7836 | dev: true |
9697 | 7837 | |
9698 | - /pirates/4.0.1: | |
9699 | - resolution: {integrity: sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==} | |
9700 | - engines: {node: '>= 6'} | |
9701 | - dependencies: | |
9702 | - node-modules-regexp: 1.0.0 | |
9703 | - dev: true | |
9704 | - | |
9705 | - /pkg-dir/4.2.0: | |
9706 | - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} | |
9707 | - engines: {node: '>=8'} | |
9708 | - dependencies: | |
9709 | - find-up: 4.1.0 | |
9710 | - dev: true | |
9711 | - | |
9712 | 7838 | /pngjs/5.0.0: |
9713 | 7839 | resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==} |
9714 | 7840 | engines: {node: '>=10.13.0'} |
... | ... | @@ -9735,56 +7861,62 @@ packages: |
9735 | 7861 | engines: {node: ^12 || >=14} |
9736 | 7862 | dependencies: |
9737 | 7863 | htmlparser2: 7.2.0 |
9738 | - postcss: 8.4.5 | |
9739 | - postcss-safe-parser: 6.0.0_postcss@8.4.5 | |
7864 | + postcss: 8.4.12 | |
7865 | + postcss-safe-parser: 6.0.0_postcss@8.4.12 | |
9740 | 7866 | dev: true |
9741 | 7867 | |
9742 | - /postcss-less/5.0.0: | |
9743 | - resolution: {integrity: sha512-djK6NlApALJeBnNx7CzLatq64eMF3BCyzBH+faYPxrvNHHM/YCimJ6XQkgWgtim2G89EzdQG4Ed0lGNCXPfD7A==} | |
7868 | + /postcss-less/6.0.0_postcss@8.4.12: | |
7869 | + resolution: {integrity: sha512-FPX16mQLyEjLzEuuJtxA8X3ejDLNGGEG503d2YGZR5Ask1SpDN8KmZUMpzCvyalWRywAn1n1VOA5dcqfCLo5rg==} | |
9744 | 7870 | engines: {node: '>=12'} |
7871 | + peerDependencies: | |
7872 | + postcss: ^8.3.5 | |
7873 | + dependencies: | |
7874 | + postcss: 8.4.12 | |
9745 | 7875 | dev: true |
9746 | 7876 | |
9747 | 7877 | /postcss-media-query-parser/0.2.3: |
9748 | 7878 | resolution: {integrity: sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ=} |
9749 | 7879 | dev: true |
9750 | 7880 | |
9751 | - /postcss-prefix-selector/1.13.0: | |
9752 | - resolution: {integrity: sha512-cZtbe79XeClbrip8WODngB8PmF/FpaeYpt8IX1aefIHarjxfBYWO6sETlNopvp2u2c7XFGYQeUTEgF1onsNJ5A==} | |
7881 | + /postcss-prefix-selector/1.15.0_postcss@5.2.18: | |
7882 | + resolution: {integrity: sha512-9taaTPs6I4906QC03zBBt0LfTWAhrqEWlKSj0jRlxrg1yV+O91h0wcquu6krcA5L6aEv3QnCeG8B1vZ5WT4ecQ==} | |
7883 | + peerDependencies: | |
7884 | + postcss: '>4 <9' | |
9753 | 7885 | dependencies: |
9754 | - postcss: 8.4.5 | |
7886 | + postcss: 5.2.18 | |
9755 | 7887 | dev: true |
9756 | 7888 | |
9757 | 7889 | /postcss-resolve-nested-selector/0.1.1: |
9758 | 7890 | resolution: {integrity: sha1-Kcy8fDfe36wwTp//C/FZaz9qDk4=} |
9759 | 7891 | dev: true |
9760 | 7892 | |
9761 | - /postcss-safe-parser/6.0.0_postcss@8.4.5: | |
7893 | + /postcss-safe-parser/6.0.0_postcss@8.4.12: | |
9762 | 7894 | resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==} |
9763 | 7895 | engines: {node: '>=12.0'} |
9764 | 7896 | peerDependencies: |
9765 | 7897 | postcss: ^8.3.3 |
9766 | 7898 | dependencies: |
9767 | - postcss: 8.4.5 | |
7899 | + postcss: 8.4.12 | |
9768 | 7900 | dev: true |
9769 | 7901 | |
9770 | - /postcss-selector-parser/6.0.8: | |
9771 | - resolution: {integrity: sha512-D5PG53d209Z1Uhcc0qAZ5U3t5HagH3cxu+WLZ22jt3gLUpXM4eXXfiO14jiDWST3NNooX/E8wISfOhZ9eIjGTQ==} | |
7902 | + /postcss-selector-parser/6.0.9: | |
7903 | + resolution: {integrity: sha512-UO3SgnZOVTwu4kyLR22UQ1xZh086RyNZppb7lLAKBFK8a32ttG5i87Y/P3+2bRSjZNyJ1B7hfFNo273tKe9YxQ==} | |
9772 | 7904 | engines: {node: '>=4'} |
9773 | 7905 | dependencies: |
9774 | 7906 | cssesc: 3.0.0 |
9775 | 7907 | util-deprecate: 1.0.2 |
9776 | 7908 | dev: true |
9777 | 7909 | |
9778 | - /postcss-sorting/7.0.1_postcss@8.4.5: | |
7910 | + /postcss-sorting/7.0.1_postcss@8.4.12: | |
9779 | 7911 | resolution: {integrity: sha512-iLBFYz6VRYyLJEJsBJ8M3TCqNcckVzz4wFounSc5Oez35ogE/X+aoC5fFu103Ot7NyvjU3/xqIXn93Gp3kJk4g==} |
9780 | 7912 | peerDependencies: |
9781 | 7913 | postcss: ^8.3.9 |
9782 | 7914 | dependencies: |
9783 | - postcss: 8.4.5 | |
7915 | + postcss: 8.4.12 | |
9784 | 7916 | dev: true |
9785 | 7917 | |
9786 | - /postcss-value-parser/4.1.0: | |
9787 | - resolution: {integrity: sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==} | |
7918 | + /postcss-value-parser/4.2.0: | |
7919 | + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} | |
9788 | 7920 | dev: true |
9789 | 7921 | |
9790 | 7922 | /postcss/5.2.18: |
... | ... | @@ -9797,13 +7929,13 @@ packages: |
9797 | 7929 | supports-color: 3.2.3 |
9798 | 7930 | dev: true |
9799 | 7931 | |
9800 | - /postcss/8.4.5: | |
9801 | - resolution: {integrity: sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg==} | |
7932 | + /postcss/8.4.12: | |
7933 | + resolution: {integrity: sha512-lg6eITwYe9v6Hr5CncVbK70SoioNQIq81nsaG86ev5hAidQvmOeETBqs7jm43K2F5/Ley3ytDtriImV6TpNiSg==} | |
9802 | 7934 | engines: {node: ^10 || ^12 || >=14} |
9803 | 7935 | dependencies: |
9804 | - nanoid: 3.1.30 | |
7936 | + nanoid: 3.3.1 | |
9805 | 7937 | picocolors: 1.0.0 |
9806 | - source-map-js: 1.0.1 | |
7938 | + source-map-js: 1.0.2 | |
9807 | 7939 | |
9808 | 7940 | /posthtml-parser/0.2.1: |
9809 | 7941 | resolution: {integrity: sha1-NdUw3jhnQMK6JP8usvrznM3ycd0=} |
... | ... | @@ -9840,15 +7972,10 @@ packages: |
9840 | 7972 | posthtml-render: 1.4.0 |
9841 | 7973 | dev: true |
9842 | 7974 | |
9843 | - /preact/10.6.1: | |
9844 | - resolution: {integrity: sha512-ydCg+ISIq70vqiThvNWStZWLRjR9U2awP/JAmGdWUKm9+Tyuy+MqVdAIyEByeIspAVtD4GWC/SJtxO8XD4knVA==} | |
7975 | + /preact/10.6.6: | |
7976 | + resolution: {integrity: sha512-dgxpTFV2vs4vizwKohYKkk7g7rmp1wOOcfd4Tz3IB3Wi+ivZzsn/SpeKJhRENSE+n8sUfsAl4S3HiCVT923ABw==} | |
9845 | 7977 | dev: false |
9846 | 7978 | |
9847 | - /prelude-ls/1.1.2: | |
9848 | - resolution: {integrity: sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=} | |
9849 | - engines: {node: '>= 0.8.0'} | |
9850 | - dev: true | |
9851 | - | |
9852 | 7979 | /prelude-ls/1.2.1: |
9853 | 7980 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} |
9854 | 7981 | engines: {node: '>= 0.8.0'} |
... | ... | @@ -9871,8 +7998,8 @@ packages: |
9871 | 7998 | fast-diff: 1.2.0 |
9872 | 7999 | dev: true |
9873 | 8000 | |
9874 | - /prettier/2.5.1: | |
9875 | - resolution: {integrity: sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==} | |
8001 | + /prettier/2.6.0: | |
8002 | + resolution: {integrity: sha512-m2FgJibYrBGGgQXNzfd0PuDGShJgRavjUoRCw1mZERIWVSXF0iLzLm+aOqTAbLnC3n6JzUhAA8uZnFVghHJ86A==} | |
9876 | 8003 | engines: {node: '>=10.13.0'} |
9877 | 8004 | hasBin: true |
9878 | 8005 | dev: true |
... | ... | @@ -9882,44 +8009,18 @@ packages: |
9882 | 8009 | engines: {node: '>=6'} |
9883 | 8010 | dev: true |
9884 | 8011 | |
9885 | - /pretty-format/27.3.1: | |
9886 | - resolution: {integrity: sha512-DR/c+pvFc52nLimLROYjnXPtolawm+uWDxr4FjuLDLUn+ktWnSN851KoHwHzzqq6rfCOjkzN8FLgDrSub6UDuA==} | |
9887 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
9888 | - dependencies: | |
9889 | - '@jest/types': 27.2.5 | |
9890 | - ansi-regex: 5.0.1 | |
9891 | - ansi-styles: 5.2.0 | |
9892 | - react-is: 17.0.2 | |
9893 | - dev: true | |
9894 | - | |
9895 | - /pretty-format/27.4.2: | |
9896 | - resolution: {integrity: sha512-p0wNtJ9oLuvgOQDEIZ9zQjZffK7KtyR6Si0jnXULIDwrlNF8Cuir3AZP0hHv0jmKuNN/edOnbMjnzd4uTcmWiw==} | |
9897 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
9898 | - dependencies: | |
9899 | - '@jest/types': 27.4.2 | |
9900 | - ansi-regex: 5.0.1 | |
9901 | - ansi-styles: 5.2.0 | |
9902 | - react-is: 17.0.2 | |
9903 | - dev: true | |
9904 | - | |
9905 | 8012 | /print-js/1.6.0: |
9906 | 8013 | resolution: {integrity: sha512-BfnOIzSKbqGRtO4o0rnj/K3681BSd2QUrsIZy/+WdCIugjIswjmx3lDEZpXB2ruGf9d4b3YNINri81+J0FsBWg==} |
9907 | 8014 | dev: false |
9908 | 8015 | |
9909 | - /printj/1.1.2: | |
9910 | - resolution: {integrity: sha512-zA2SmoLaxZyArQTOPj5LXecR+RagfPSU5Kw1qP+jkWeNlrq+eJZyY2oS68SU1Z/7/myXM4lo9716laOFAVStCQ==} | |
9911 | - engines: {node: '>=0.8'} | |
9912 | - hasBin: true | |
9913 | - dev: false | |
9914 | - | |
9915 | 8016 | /printj/1.2.3: |
9916 | 8017 | resolution: {integrity: sha512-sanczS6xOJOg7IKDvi4sGOUOe7c1tsEzjwlLFH/zgwx/uyImVM9/rgBkc8AfiQa/Vg54nRd8mkm9yI7WV/O+WA==} |
9917 | 8018 | engines: {node: '>=0.8'} |
9918 | 8019 | hasBin: true |
9919 | 8020 | dev: false |
9920 | 8021 | |
9921 | - /printj/1.3.0: | |
9922 | - resolution: {integrity: sha512-017o8YIaz8gLhaNxRB9eBv2mWXI2CtzhPJALnQTP+OPpuUfP0RMWqr/mHCzqVeu1AQxfzSfAtAq66vKB8y7Lzg==} | |
8022 | + /printj/1.3.1: | |
8023 | + resolution: {integrity: sha512-GA3TdL8szPK4AQ2YnOe/b+Y1jUFwmmGMMK/qbY7VcE3Z7FU8JstbKiKRzO6CIiAKPhTO8m01NoQ0V5f3jc4OGg==} | |
9923 | 8024 | engines: {node: '>=0.8'} |
9924 | 8025 | hasBin: true |
9925 | 8026 | dev: false |
... | ... | @@ -9928,25 +8029,6 @@ packages: |
9928 | 8029 | resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} |
9929 | 8030 | dev: true |
9930 | 8031 | |
9931 | - /progress/2.0.3: | |
9932 | - resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} | |
9933 | - engines: {node: '>=0.4.0'} | |
9934 | - dev: true | |
9935 | - | |
9936 | - /promise/7.3.1: | |
9937 | - resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} | |
9938 | - dependencies: | |
9939 | - asap: 2.0.6 | |
9940 | - dev: true | |
9941 | - | |
9942 | - /prompts/2.4.2: | |
9943 | - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} | |
9944 | - engines: {node: '>= 6'} | |
9945 | - dependencies: | |
9946 | - kleur: 3.0.3 | |
9947 | - sisteransi: 1.0.5 | |
9948 | - dev: true | |
9949 | - | |
9950 | 8032 | /proto-list/1.2.4: |
9951 | 8033 | resolution: {integrity: sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=} |
9952 | 8034 | dev: true |
... | ... | @@ -9957,48 +8039,13 @@ packages: |
9957 | 8039 | optional: true |
9958 | 8040 | |
9959 | 8041 | /pseudomap/1.0.2: |
9960 | - resolution: {integrity: sha1-8FKijacOYYkX7wqKw0wa5aaChrM=} | |
9961 | - dev: true | |
9962 | - | |
9963 | - /psl/1.8.0: | |
9964 | - resolution: {integrity: sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==} | |
9965 | - dev: true | |
9966 | - | |
9967 | - /pug-attrs/3.0.0: | |
9968 | - resolution: {integrity: sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==} | |
9969 | - dependencies: | |
9970 | - constantinople: 4.0.1 | |
9971 | - js-stringify: 1.0.2 | |
9972 | - pug-runtime: 3.0.1 | |
9973 | - dev: true | |
9974 | - | |
9975 | - /pug-code-gen/3.0.2: | |
9976 | - resolution: {integrity: sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg==} | |
9977 | - dependencies: | |
9978 | - constantinople: 4.0.1 | |
9979 | - doctypes: 1.1.0 | |
9980 | - js-stringify: 1.0.2 | |
9981 | - pug-attrs: 3.0.0 | |
9982 | - pug-error: 2.0.0 | |
9983 | - pug-runtime: 3.0.1 | |
9984 | - void-elements: 3.1.0 | |
9985 | - with: 7.0.2 | |
8042 | + resolution: {integrity: sha1-8FKijacOYYkX7wqKw0wa5aaChrM=} | |
9986 | 8043 | dev: true |
9987 | 8044 | |
9988 | 8045 | /pug-error/2.0.0: |
9989 | 8046 | resolution: {integrity: sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ==} |
9990 | 8047 | dev: true |
9991 | 8048 | |
9992 | - /pug-filters/4.0.0: | |
9993 | - resolution: {integrity: sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==} | |
9994 | - dependencies: | |
9995 | - constantinople: 4.0.1 | |
9996 | - jstransformer: 1.0.0 | |
9997 | - pug-error: 2.0.0 | |
9998 | - pug-walk: 2.0.0 | |
9999 | - resolve: 1.20.0 | |
10000 | - dev: true | |
10001 | - | |
10002 | 8049 | /pug-lexer/5.0.1: |
10003 | 8050 | resolution: {integrity: sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==} |
10004 | 8051 | dependencies: |
... | ... | @@ -10007,20 +8054,6 @@ packages: |
10007 | 8054 | pug-error: 2.0.0 |
10008 | 8055 | dev: true |
10009 | 8056 | |
10010 | - /pug-linker/4.0.0: | |
10011 | - resolution: {integrity: sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==} | |
10012 | - dependencies: | |
10013 | - pug-error: 2.0.0 | |
10014 | - pug-walk: 2.0.0 | |
10015 | - dev: true | |
10016 | - | |
10017 | - /pug-load/3.0.0: | |
10018 | - resolution: {integrity: sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==} | |
10019 | - dependencies: | |
10020 | - object-assign: 4.1.1 | |
10021 | - pug-walk: 2.0.0 | |
10022 | - dev: true | |
10023 | - | |
10024 | 8057 | /pug-parser/6.0.0: |
10025 | 8058 | resolution: {integrity: sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==} |
10026 | 8059 | dependencies: |
... | ... | @@ -10028,33 +8061,6 @@ packages: |
10028 | 8061 | token-stream: 1.0.0 |
10029 | 8062 | dev: true |
10030 | 8063 | |
10031 | - /pug-runtime/3.0.1: | |
10032 | - resolution: {integrity: sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg==} | |
10033 | - dev: true | |
10034 | - | |
10035 | - /pug-strip-comments/2.0.0: | |
10036 | - resolution: {integrity: sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==} | |
10037 | - dependencies: | |
10038 | - pug-error: 2.0.0 | |
10039 | - dev: true | |
10040 | - | |
10041 | - /pug-walk/2.0.0: | |
10042 | - resolution: {integrity: sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ==} | |
10043 | - dev: true | |
10044 | - | |
10045 | - /pug/3.0.2: | |
10046 | - resolution: {integrity: sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw==} | |
10047 | - dependencies: | |
10048 | - pug-code-gen: 3.0.2 | |
10049 | - pug-filters: 4.0.0 | |
10050 | - pug-lexer: 5.0.1 | |
10051 | - pug-linker: 4.0.0 | |
10052 | - pug-load: 3.0.0 | |
10053 | - pug-parser: 6.0.0 | |
10054 | - pug-runtime: 3.0.1 | |
10055 | - pug-strip-comments: 2.0.0 | |
10056 | - dev: true | |
10057 | - | |
10058 | 8064 | /pump/3.0.0: |
10059 | 8065 | resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} |
10060 | 8066 | dependencies: |
... | ... | @@ -10083,8 +8089,8 @@ packages: |
10083 | 8089 | yargs: 15.4.1 |
10084 | 8090 | dev: false |
10085 | 8091 | |
10086 | - /qs/6.10.2: | |
10087 | - resolution: {integrity: sha512-mSIdjzqznWgfd4pMii7sHtaYF8rx8861hBO80SraY5GT0XQibWZWJSid0avzHGkDIZLImux2S5mXO0Hfct2QCw==} | |
8092 | + /qs/6.10.3: | |
8093 | + resolution: {integrity: sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==} | |
10088 | 8094 | engines: {node: '>=0.6'} |
10089 | 8095 | dependencies: |
10090 | 8096 | side-channel: 1.0.4 |
... | ... | @@ -10122,10 +8128,6 @@ packages: |
10122 | 8128 | safe-buffer: 5.2.1 |
10123 | 8129 | dev: true |
10124 | 8130 | |
10125 | - /react-is/17.0.2: | |
10126 | - resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} | |
10127 | - dev: true | |
10128 | - | |
10129 | 8131 | /read-pkg-up/1.0.1: |
10130 | 8132 | resolution: {integrity: sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=} |
10131 | 8133 | engines: {node: '>=0.10.0'} |
... | ... | @@ -10204,7 +8206,7 @@ packages: |
10204 | 8206 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} |
10205 | 8207 | engines: {node: '>=8.10.0'} |
10206 | 8208 | dependencies: |
10207 | - picomatch: 2.3.0 | |
8209 | + picomatch: 2.3.1 | |
10208 | 8210 | dev: true |
10209 | 8211 | |
10210 | 8212 | /redent/1.0.0: |
... | ... | @@ -10223,8 +8225,8 @@ packages: |
10223 | 8225 | strip-indent: 3.0.0 |
10224 | 8226 | dev: true |
10225 | 8227 | |
10226 | - /regenerate-unicode-properties/9.0.0: | |
10227 | - resolution: {integrity: sha512-3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA==} | |
8228 | + /regenerate-unicode-properties/10.0.1: | |
8229 | + resolution: {integrity: sha512-vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw==} | |
10228 | 8230 | engines: {node: '>=4'} |
10229 | 8231 | dependencies: |
10230 | 8232 | regenerate: 1.4.2 |
... | ... | @@ -10240,7 +8242,7 @@ packages: |
10240 | 8242 | /regenerator-transform/0.14.5: |
10241 | 8243 | resolution: {integrity: sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==} |
10242 | 8244 | dependencies: |
10243 | - '@babel/runtime': 7.16.3 | |
8245 | + '@babel/runtime': 7.17.7 | |
10244 | 8246 | dev: true |
10245 | 8247 | |
10246 | 8248 | /regex-not/1.0.2: |
... | ... | @@ -10251,8 +8253,8 @@ packages: |
10251 | 8253 | safe-regex: 1.1.0 |
10252 | 8254 | dev: true |
10253 | 8255 | |
10254 | - /regexp.prototype.flags/1.3.1: | |
10255 | - resolution: {integrity: sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==} | |
8256 | + /regexp.prototype.flags/1.4.1: | |
8257 | + resolution: {integrity: sha512-pMR7hBVUUGI7PMA37m2ofIdQCsomVnas+Jn5UPGAHQ+/LlwKm/aTLJHdasmHRzlfeZwHiAOaRSo2rbBDm3nNUQ==} | |
10256 | 8258 | engines: {node: '>= 0.4'} |
10257 | 8259 | dependencies: |
10258 | 8260 | call-bind: 1.0.2 |
... | ... | @@ -10264,24 +8266,24 @@ packages: |
10264 | 8266 | engines: {node: '>=8'} |
10265 | 8267 | dev: true |
10266 | 8268 | |
10267 | - /regexpu-core/4.8.0: | |
10268 | - resolution: {integrity: sha512-1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==} | |
8269 | + /regexpu-core/5.0.1: | |
8270 | + resolution: {integrity: sha512-CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw==} | |
10269 | 8271 | engines: {node: '>=4'} |
10270 | 8272 | dependencies: |
10271 | 8273 | regenerate: 1.4.2 |
10272 | - regenerate-unicode-properties: 9.0.0 | |
10273 | - regjsgen: 0.5.2 | |
10274 | - regjsparser: 0.7.0 | |
8274 | + regenerate-unicode-properties: 10.0.1 | |
8275 | + regjsgen: 0.6.0 | |
8276 | + regjsparser: 0.8.4 | |
10275 | 8277 | unicode-match-property-ecmascript: 2.0.0 |
10276 | 8278 | unicode-match-property-value-ecmascript: 2.0.0 |
10277 | 8279 | dev: true |
10278 | 8280 | |
10279 | - /regjsgen/0.5.2: | |
10280 | - resolution: {integrity: sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==} | |
8281 | + /regjsgen/0.6.0: | |
8282 | + resolution: {integrity: sha512-ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA==} | |
10281 | 8283 | dev: true |
10282 | 8284 | |
10283 | - /regjsparser/0.7.0: | |
10284 | - resolution: {integrity: sha512-A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==} | |
8285 | + /regjsparser/0.8.4: | |
8286 | + resolution: {integrity: sha512-J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA==} | |
10285 | 8287 | hasBin: true |
10286 | 8288 | dependencies: |
10287 | 8289 | jsesc: 0.5.0 |
... | ... | @@ -10314,10 +8316,6 @@ packages: |
10314 | 8316 | engines: {node: '>= 0.10'} |
10315 | 8317 | dev: true |
10316 | 8318 | |
10317 | - /request-light/0.5.5: | |
10318 | - resolution: {integrity: sha512-AvjfJuhyT6dYfhtIBF+IpTPQco+Td1QJ6PsIJ5xui110vQ5p9HxHk+m1XJqXazLQT6CxxSx9eNv6R/+fu4bZig==} | |
10319 | - dev: true | |
10320 | - | |
10321 | 8319 | /require-directory/2.1.1: |
10322 | 8320 | resolution: {integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I=} |
10323 | 8321 | engines: {node: '>=0.10.0'} |
... | ... | @@ -10335,13 +8333,6 @@ packages: |
10335 | 8333 | resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==} |
10336 | 8334 | dev: false |
10337 | 8335 | |
10338 | - /resolve-cwd/3.0.0: | |
10339 | - resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} | |
10340 | - engines: {node: '>=8'} | |
10341 | - dependencies: | |
10342 | - resolve-from: 5.0.0 | |
10343 | - dev: true | |
10344 | - | |
10345 | 8336 | /resolve-dir/1.0.1: |
10346 | 8337 | resolution: {integrity: sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=} |
10347 | 8338 | engines: {node: '>=0.10.0'} |
... | ... | @@ -10372,16 +8363,13 @@ packages: |
10372 | 8363 | deprecated: https://github.com/lydell/resolve-url#deprecated |
10373 | 8364 | dev: true |
10374 | 8365 | |
10375 | - /resolve.exports/1.1.0: | |
10376 | - resolution: {integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==} | |
10377 | - engines: {node: '>=10'} | |
10378 | - dev: true | |
10379 | - | |
10380 | - /resolve/1.20.0: | |
10381 | - resolution: {integrity: sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==} | |
8366 | + /resolve/1.22.0: | |
8367 | + resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==} | |
8368 | + hasBin: true | |
10382 | 8369 | dependencies: |
10383 | - is-core-module: 2.8.0 | |
8370 | + is-core-module: 2.8.1 | |
10384 | 8371 | path-parse: 1.0.7 |
8372 | + supports-preserve-symlinks-flag: 1.0.0 | |
10385 | 8373 | dev: true |
10386 | 8374 | |
10387 | 8375 | /responselike/1.0.2: |
... | ... | @@ -10395,7 +8383,7 @@ packages: |
10395 | 8383 | engines: {node: '>=4'} |
10396 | 8384 | dependencies: |
10397 | 8385 | onetime: 2.0.1 |
10398 | - signal-exit: 3.0.6 | |
8386 | + signal-exit: 3.0.7 | |
10399 | 8387 | dev: true |
10400 | 8388 | |
10401 | 8389 | /restore-cursor/3.1.0: |
... | ... | @@ -10403,7 +8391,7 @@ packages: |
10403 | 8391 | engines: {node: '>=8'} |
10404 | 8392 | dependencies: |
10405 | 8393 | onetime: 5.1.2 |
10406 | - signal-exit: 3.0.6 | |
8394 | + signal-exit: 3.0.7 | |
10407 | 8395 | dev: true |
10408 | 8396 | |
10409 | 8397 | /ret/0.1.15: |
... | ... | @@ -10434,45 +8422,45 @@ packages: |
10434 | 8422 | glob: 7.2.0 |
10435 | 8423 | dev: true |
10436 | 8424 | |
10437 | - /rollup-plugin-purge-icons/0.7.0: | |
10438 | - resolution: {integrity: sha512-zAff7SrjC2nA7TCm6gaOclh1cZ2IBupX1tnebn+sfvcvrezu+avS7k0BhhAC2pAtfhdOvD6G/2a+kkkm6hvpiw==} | |
8425 | + /rollup-plugin-purge-icons/0.8.1: | |
8426 | + resolution: {integrity: sha512-7ktMV+gWtXAdOIShE8EtTcnpGhozi5H2hKk1MQVGt+7FmlLkjR+XKu1Nyzjocwd6xJvKube2Lh+SfcJ8FYYySw==} | |
10439 | 8427 | engines: {node: '>= 12'} |
10440 | 8428 | dependencies: |
10441 | - '@purge-icons/core': 0.7.0 | |
10442 | - '@purge-icons/generated': 0.7.0 | |
8429 | + '@purge-icons/core': 0.8.0 | |
8430 | + '@purge-icons/generated': 0.8.1 | |
10443 | 8431 | transitivePeerDependencies: |
8432 | + - encoding | |
10444 | 8433 | - supports-color |
10445 | 8434 | dev: true |
10446 | 8435 | |
10447 | - /rollup-plugin-terser/7.0.2_rollup@2.60.1: | |
8436 | + /rollup-plugin-terser/7.0.2_rollup@2.70.1: | |
10448 | 8437 | resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} |
10449 | 8438 | peerDependencies: |
10450 | 8439 | rollup: ^2.0.0 |
10451 | 8440 | dependencies: |
10452 | - '@babel/code-frame': 7.16.0 | |
8441 | + '@babel/code-frame': 7.16.7 | |
10453 | 8442 | jest-worker: 26.6.2 |
10454 | - rollup: 2.60.1 | |
8443 | + rollup: 2.70.1 | |
10455 | 8444 | serialize-javascript: 4.0.0 |
10456 | - terser: 5.10.0 | |
10457 | - transitivePeerDependencies: | |
10458 | - - acorn | |
8445 | + terser: 5.12.1 | |
10459 | 8446 | dev: true |
10460 | 8447 | |
10461 | - /rollup-plugin-visualizer/5.5.2: | |
10462 | - resolution: {integrity: sha512-sh+P9KhuWTzeStyRA5yNZpoEFGuj5Ph34JLMa9+muhU8CneFf9L0XE4fmAwAojJLWp//uLUEyytBPSCdZEg5AA==} | |
10463 | - engines: {node: '>=10.16'} | |
8448 | + /rollup-plugin-visualizer/5.6.0_rollup@2.70.1: | |
8449 | + resolution: {integrity: sha512-CKcc8GTUZjC+LsMytU8ocRr/cGZIfMR7+mdy4YnlyetlmIl/dM8BMnOEpD4JPIGt+ZVW7Db9ZtSsbgyeBH3uTA==} | |
8450 | + engines: {node: '>=12'} | |
10464 | 8451 | hasBin: true |
10465 | 8452 | peerDependencies: |
10466 | 8453 | rollup: ^2.0.0 |
10467 | 8454 | dependencies: |
10468 | - nanoid: 3.1.30 | |
10469 | - open: 7.4.2 | |
8455 | + nanoid: 3.3.1 | |
8456 | + open: 8.4.0 | |
8457 | + rollup: 2.70.1 | |
10470 | 8458 | source-map: 0.7.3 |
10471 | - yargs: 16.2.0 | |
8459 | + yargs: 17.3.1 | |
10472 | 8460 | dev: true |
10473 | 8461 | |
10474 | - /rollup/2.60.1: | |
10475 | - resolution: {integrity: sha512-akwfnpjY0rXEDSn1UTVfKXJhPsEBu+imi1gqBA1ZkHGydUnkV/fWCC90P7rDaLEW8KTwBcS1G3N4893Ndz+jwg==} | |
8462 | + /rollup/2.70.1: | |
8463 | + resolution: {integrity: sha512-CRYsI5EuzLbXdxC6RnYhOuRdtz4bhejPMSWjsFLfVM/7w/85n2szZv6yExqUXsBdz5KT8eoubeyDUDjhLHEslA==} | |
10476 | 8464 | engines: {node: '>=10.0.0'} |
10477 | 8465 | hasBin: true |
10478 | 8466 | optionalDependencies: |
... | ... | @@ -10497,10 +8485,10 @@ packages: |
10497 | 8485 | tslib: 1.14.1 |
10498 | 8486 | dev: true |
10499 | 8487 | |
10500 | - /rxjs/7.4.0: | |
10501 | - resolution: {integrity: sha512-7SQDi7xeTMCJpqViXh8gL/lebcwlp3d831F05+9B44A4B0WfsEwUQHR64gsH1kvJ+Ep/J9K2+n1hVl1CsGN23w==} | |
8488 | + /rxjs/7.5.5: | |
8489 | + resolution: {integrity: sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==} | |
10502 | 8490 | dependencies: |
10503 | - tslib: 2.1.0 | |
8491 | + tslib: 2.3.1 | |
10504 | 8492 | dev: true |
10505 | 8493 | |
10506 | 8494 | /safe-buffer/5.1.2: |
... | ... | @@ -10526,15 +8514,8 @@ packages: |
10526 | 8514 | dev: true |
10527 | 8515 | optional: true |
10528 | 8516 | |
10529 | - /saxes/5.0.1: | |
10530 | - resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} | |
10531 | - engines: {node: '>=10'} | |
10532 | - dependencies: | |
10533 | - xmlchars: 2.2.0 | |
10534 | - dev: true | |
10535 | - | |
10536 | - /scroll-into-view-if-needed/2.2.28: | |
10537 | - resolution: {integrity: sha512-8LuxJSuFVc92+0AdNv4QOxRL4Abeo1DgLnGNkn1XlaujPH/3cCFz3QI60r2VNu4obJJROzgnIUw5TKQkZvZI1w==} | |
8517 | + /scroll-into-view-if-needed/2.2.29: | |
8518 | + resolution: {integrity: sha512-hxpAR6AN+Gh53AdAimHM6C8oTN1ppwVZITihix+WqalywBeFcQ6LdQP5ABNl26nX8GTEL7VT+b8lKpdqq65wXg==} | |
10538 | 8519 | dependencies: |
10539 | 8520 | compute-scroll-into-view: 1.0.17 |
10540 | 8521 | dev: false |
... | ... | @@ -10641,11 +8622,11 @@ packages: |
10641 | 8622 | resolution: {integrity: sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==} |
10642 | 8623 | dev: true |
10643 | 8624 | |
10644 | - /showdown/1.9.1: | |
10645 | - resolution: {integrity: sha512-9cGuS382HcvExtf5AHk7Cb4pAeQQ+h0eTr33V1mu+crYWV4KvWAw6el92bDrqGEk5d46Ai/fhbEUwqJ/mTCNEA==} | |
8625 | + /showdown/2.0.3: | |
8626 | + resolution: {integrity: sha512-jHytkv5c5YFTAOYIIaTT1zLL/aC+7C1FiP0CIGQozhHnnFSbor1oYkaNqWFL6CpB3zJNPPSxJrAlsHgzN14knQ==} | |
10646 | 8627 | hasBin: true |
10647 | 8628 | dependencies: |
10648 | - yargs: 14.2.3 | |
8629 | + commander: 9.1.0 | |
10649 | 8630 | dev: false |
10650 | 8631 | |
10651 | 8632 | /side-channel/1.0.4: |
... | ... | @@ -10653,14 +8634,10 @@ packages: |
10653 | 8634 | dependencies: |
10654 | 8635 | call-bind: 1.0.2 |
10655 | 8636 | get-intrinsic: 1.1.1 |
10656 | - object-inspect: 1.11.0 | |
10657 | - | |
10658 | - /signal-exit/3.0.6: | |
10659 | - resolution: {integrity: sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==} | |
10660 | - dev: true | |
8637 | + object-inspect: 1.12.0 | |
10661 | 8638 | |
10662 | - /sisteransi/1.0.5: | |
10663 | - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} | |
8639 | + /signal-exit/3.0.7: | |
8640 | + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} | |
10664 | 8641 | dev: true |
10665 | 8642 | |
10666 | 8643 | /slash/3.0.0: |
... | ... | @@ -10756,12 +8733,13 @@ packages: |
10756 | 8733 | resolution: {integrity: sha512-pBXvQCs5/33fdN1/39pPL0NZF20LeRbLQ5jtnheIPN9JQAaufGjKdWduZn4U7wCtVuzKhmRkI0DFYHYRbB2H1w==} |
10757 | 8734 | dev: false |
10758 | 8735 | |
10759 | - /source-map-js/1.0.1: | |
10760 | - resolution: {integrity: sha512-4+TN2b3tqOCd/kaGRJ/sTYA0tR0mdXx26ipdolxcwtJVqEnqNYvlCAt1q3ypy4QMlYus+Zh34RNtYLoq2oQ4IA==} | |
8736 | + /source-map-js/1.0.2: | |
8737 | + resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} | |
10761 | 8738 | engines: {node: '>=0.10.0'} |
10762 | 8739 | |
10763 | 8740 | /source-map-resolve/0.5.3: |
10764 | 8741 | resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} |
8742 | + deprecated: See https://github.com/lydell/source-map-resolve#deprecated | |
10765 | 8743 | dependencies: |
10766 | 8744 | atob: 2.1.2 |
10767 | 8745 | decode-uri-component: 0.2.0 |
... | ... | @@ -10779,6 +8757,7 @@ packages: |
10779 | 8757 | |
10780 | 8758 | /source-map-url/0.4.1: |
10781 | 8759 | resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} |
8760 | + deprecated: See https://github.com/lydell/source-map-url#deprecated | |
10782 | 8761 | dev: true |
10783 | 8762 | |
10784 | 8763 | /source-map/0.5.7: |
... | ... | @@ -10851,10 +8830,6 @@ packages: |
10851 | 8830 | readable-stream: 3.6.0 |
10852 | 8831 | dev: true |
10853 | 8832 | |
10854 | - /sprintf-js/1.0.3: | |
10855 | - resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=} | |
10856 | - dev: true | |
10857 | - | |
10858 | 8833 | /squeak/1.3.0: |
10859 | 8834 | resolution: {integrity: sha1-MwRQN7ZDiLVnZ0uEMiplIQc5FsM=} |
10860 | 8835 | engines: {node: '>=0.10.0'} |
... | ... | @@ -10875,13 +8850,6 @@ packages: |
10875 | 8850 | resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} |
10876 | 8851 | dev: true |
10877 | 8852 | |
10878 | - /stack-utils/2.0.5: | |
10879 | - resolution: {integrity: sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA==} | |
10880 | - engines: {node: '>=10'} | |
10881 | - dependencies: | |
10882 | - escape-string-regexp: 2.0.0 | |
10883 | - dev: true | |
10884 | - | |
10885 | 8853 | /static-extend/0.1.2: |
10886 | 8854 | resolution: {integrity: sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=} |
10887 | 8855 | engines: {node: '>=0.10.0'} |
... | ... | @@ -10905,14 +8873,6 @@ packages: |
10905 | 8873 | engines: {node: '>=0.6.19'} |
10906 | 8874 | dev: true |
10907 | 8875 | |
10908 | - /string-length/4.0.2: | |
10909 | - resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} | |
10910 | - engines: {node: '>=10'} | |
10911 | - dependencies: | |
10912 | - char-regex: 1.0.2 | |
10913 | - strip-ansi: 6.0.1 | |
10914 | - dev: true | |
10915 | - | |
10916 | 8876 | /string-width/2.1.1: |
10917 | 8877 | resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==} |
10918 | 8878 | engines: {node: '>=4'} |
... | ... | @@ -10921,15 +8881,6 @@ packages: |
10921 | 8881 | strip-ansi: 4.0.0 |
10922 | 8882 | dev: true |
10923 | 8883 | |
10924 | - /string-width/3.1.0: | |
10925 | - resolution: {integrity: sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==} | |
10926 | - engines: {node: '>=6'} | |
10927 | - dependencies: | |
10928 | - emoji-regex: 7.0.3 | |
10929 | - is-fullwidth-code-point: 2.0.0 | |
10930 | - strip-ansi: 5.2.0 | |
10931 | - dev: false | |
10932 | - | |
10933 | 8884 | /string-width/4.2.3: |
10934 | 8885 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} |
10935 | 8886 | engines: {node: '>=8'} |
... | ... | @@ -10938,12 +8889,12 @@ packages: |
10938 | 8889 | is-fullwidth-code-point: 3.0.0 |
10939 | 8890 | strip-ansi: 6.0.1 |
10940 | 8891 | |
10941 | - /string-width/5.0.1: | |
10942 | - resolution: {integrity: sha512-5ohWO/M4//8lErlUUtrFy3b11GtNOuMOU0ysKCDXFcfXuuvUXu95akgj/i8ofmaGdN0hCqyl6uu9i8dS/mQp5g==} | |
8892 | + /string-width/5.1.2: | |
8893 | + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} | |
10943 | 8894 | engines: {node: '>=12'} |
10944 | 8895 | dependencies: |
8896 | + eastasianwidth: 0.2.0 | |
10945 | 8897 | emoji-regex: 9.2.2 |
10946 | - is-fullwidth-code-point: 4.0.0 | |
10947 | 8898 | strip-ansi: 7.0.1 |
10948 | 8899 | dev: true |
10949 | 8900 | |
... | ... | @@ -10954,9 +8905,9 @@ packages: |
10954 | 8905 | define-properties: 1.1.3 |
10955 | 8906 | es-abstract: 1.19.1 |
10956 | 8907 | get-intrinsic: 1.1.1 |
10957 | - has-symbols: 1.0.2 | |
8908 | + has-symbols: 1.0.3 | |
10958 | 8909 | internal-slot: 1.0.3 |
10959 | - regexp.prototype.flags: 1.3.1 | |
8910 | + regexp.prototype.flags: 1.4.1 | |
10960 | 8911 | side-channel: 1.0.4 |
10961 | 8912 | dev: true |
10962 | 8913 | |
... | ... | @@ -11022,7 +8973,8 @@ packages: |
11022 | 8973 | resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==} |
11023 | 8974 | engines: {node: '>=6'} |
11024 | 8975 | dependencies: |
11025 | - ansi-regex: 4.1.0 | |
8976 | + ansi-regex: 4.1.1 | |
8977 | + dev: true | |
11026 | 8978 | |
11027 | 8979 | /strip-ansi/6.0.1: |
11028 | 8980 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} |
... | ... | @@ -11107,15 +9059,15 @@ packages: |
11107 | 9059 | escape-string-regexp: 1.0.5 |
11108 | 9060 | dev: true |
11109 | 9061 | |
11110 | - /strnum/1.0.4: | |
11111 | - resolution: {integrity: sha512-lMzNMfDpaQOLt4B2mEbfzYS0+T7dvCXeojnlGf6f1AygvWDMcWyXYaLbyICfjVu29sErR8fnRagQfBW/N/hGgw==} | |
9062 | + /strnum/1.0.5: | |
9063 | + resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} | |
11112 | 9064 | dev: true |
11113 | 9065 | |
11114 | 9066 | /style-search/0.1.0: |
11115 | 9067 | resolution: {integrity: sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI=} |
11116 | 9068 | dev: true |
11117 | 9069 | |
11118 | - /stylelint-config-html/1.0.0_2d1bcf73d0f2e8e613ccd6d821b0344f: | |
9070 | + /stylelint-config-html/1.0.0_f552817e5b8b1b7dca381d844218922e: | |
11119 | 9071 | resolution: {integrity: sha512-rKQUUWDpaYC7ybsS6tLxddjn6DxhjSIXybElSmcTyVQj3ExhmU3q+l41ktrlwHRyY0M5SkTkZiwngvYPYmsgSQ==} |
11120 | 9072 | engines: {node: ^12 || >=14} |
11121 | 9073 | peerDependencies: |
... | ... | @@ -11123,62 +9075,77 @@ packages: |
11123 | 9075 | stylelint: '>=14.0.0' |
11124 | 9076 | dependencies: |
11125 | 9077 | postcss-html: 1.3.0 |
11126 | - stylelint: 14.2.0 | |
9078 | + stylelint: 14.6.0 | |
11127 | 9079 | dev: true |
11128 | 9080 | |
11129 | - /stylelint-config-prettier/9.0.3_stylelint@14.2.0: | |
9081 | + /stylelint-config-prettier/9.0.3_stylelint@14.6.0: | |
11130 | 9082 | resolution: {integrity: sha512-5n9gUDp/n5tTMCq1GLqSpA30w2sqWITSSEiAWQlpxkKGAUbjcemQ0nbkRvRUa0B1LgD3+hCvdL7B1eTxy1QHJg==} |
11131 | 9083 | engines: {node: '>= 12'} |
11132 | 9084 | hasBin: true |
11133 | 9085 | peerDependencies: |
11134 | 9086 | stylelint: '>=11.0.0' |
11135 | 9087 | dependencies: |
11136 | - stylelint: 14.2.0 | |
9088 | + stylelint: 14.6.0 | |
11137 | 9089 | dev: true |
11138 | 9090 | |
11139 | - /stylelint-config-recommended/6.0.0_stylelint@14.2.0: | |
11140 | - resolution: {integrity: sha512-ZorSSdyMcxWpROYUvLEMm0vSZud2uB7tX1hzBZwvVY9SV/uly4AvvJPPhCcymZL3fcQhEQG5AELmrxWqtmzacw==} | |
9091 | + /stylelint-config-recommended-vue/1.3.0_f552817e5b8b1b7dca381d844218922e: | |
9092 | + resolution: {integrity: sha512-UEY/MZlBO2yiQdZoJm33trtqJ1MEDzBADhIAM0pTvfYbyXe5KwdbTtmALHETG1cXfDxuuUbJTvL9uENMy2Rjug==} | |
9093 | + engines: {node: ^12 || >=14} | |
11141 | 9094 | peerDependencies: |
11142 | - stylelint: ^14.0.0 | |
9095 | + postcss-html: ^1.0.0 | |
9096 | + stylelint: '>=14.0.0' | |
11143 | 9097 | dependencies: |
11144 | - stylelint: 14.2.0 | |
9098 | + postcss-html: 1.3.0 | |
9099 | + semver: 7.3.5 | |
9100 | + stylelint: 14.6.0 | |
9101 | + stylelint-config-html: 1.0.0_f552817e5b8b1b7dca381d844218922e | |
9102 | + stylelint-config-recommended: 7.0.0_stylelint@14.6.0 | |
11145 | 9103 | dev: true |
11146 | 9104 | |
11147 | - /stylelint-config-standard/24.0.0_stylelint@14.2.0: | |
11148 | - resolution: {integrity: sha512-+RtU7fbNT+VlNbdXJvnjc3USNPZRiRVp/d2DxOF/vBDDTi0kH5RX2Ny6errdtZJH3boO+bmqIYEllEmok4jiuw==} | |
9105 | + /stylelint-config-recommended/7.0.0_stylelint@14.6.0: | |
9106 | + resolution: {integrity: sha512-yGn84Bf/q41J4luis1AZ95gj0EQwRX8lWmGmBwkwBNSkpGSpl66XcPTulxGa/Z91aPoNGuIGBmFkcM1MejMo9Q==} | |
11149 | 9107 | peerDependencies: |
11150 | - stylelint: ^14.0.0 | |
9108 | + stylelint: ^14.4.0 | |
9109 | + dependencies: | |
9110 | + stylelint: 14.6.0 | |
9111 | + dev: true | |
9112 | + | |
9113 | + /stylelint-config-standard/25.0.0_stylelint@14.6.0: | |
9114 | + resolution: {integrity: sha512-21HnP3VSpaT1wFjFvv9VjvOGDtAviv47uTp3uFmzcN+3Lt+RYRv6oAplLaV51Kf792JSxJ6svCJh/G18E9VnCA==} | |
9115 | + peerDependencies: | |
9116 | + stylelint: ^14.4.0 | |
11151 | 9117 | dependencies: |
11152 | - stylelint: 14.2.0 | |
11153 | - stylelint-config-recommended: 6.0.0_stylelint@14.2.0 | |
9118 | + stylelint: 14.6.0 | |
9119 | + stylelint-config-recommended: 7.0.0_stylelint@14.6.0 | |
11154 | 9120 | dev: true |
11155 | 9121 | |
11156 | - /stylelint-order/5.0.0_stylelint@14.2.0: | |
9122 | + /stylelint-order/5.0.0_stylelint@14.6.0: | |
11157 | 9123 | resolution: {integrity: sha512-OWQ7pmicXufDw5BlRqzdz3fkGKJPgLyDwD1rFY3AIEfIH/LQY38Vu/85v8/up0I+VPiuGRwbc2Hg3zLAsJaiyw==} |
11158 | 9124 | peerDependencies: |
11159 | 9125 | stylelint: ^14.0.0 |
11160 | 9126 | dependencies: |
11161 | - postcss: 8.4.5 | |
11162 | - postcss-sorting: 7.0.1_postcss@8.4.5 | |
11163 | - stylelint: 14.2.0 | |
9127 | + postcss: 8.4.12 | |
9128 | + postcss-sorting: 7.0.1_postcss@8.4.12 | |
9129 | + stylelint: 14.6.0 | |
11164 | 9130 | dev: true |
11165 | 9131 | |
11166 | - /stylelint/14.2.0: | |
11167 | - resolution: {integrity: sha512-i0DrmDXFNpDsWiwx6SPRs4/pyw4kvZgqpDGvsTslQMY7hpUl6r33aQvNSn6cnTg2wtZ9rreFElI7XAKpOWi1vQ==} | |
9132 | + /stylelint/14.6.0: | |
9133 | + resolution: {integrity: sha512-Xk2sqXYPi9nXgq70nBiZkbQm/QOOKd83NBTaBE1fXEWAEeRlgHnKC/E7kJFlT6K0SaNDOK5yIvR7GFPGsNLuOg==} | |
11168 | 9134 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} |
11169 | 9135 | hasBin: true |
11170 | 9136 | dependencies: |
11171 | 9137 | balanced-match: 2.0.0 |
11172 | 9138 | colord: 2.9.2 |
11173 | 9139 | cosmiconfig: 7.0.1 |
11174 | - debug: 4.3.3 | |
9140 | + css-functions-list: 3.0.1 | |
9141 | + debug: 4.3.4 | |
11175 | 9142 | execall: 2.0.0 |
11176 | - fast-glob: 3.2.7 | |
9143 | + fast-glob: 3.2.11 | |
11177 | 9144 | fastest-levenshtein: 1.0.12 |
11178 | 9145 | file-entry-cache: 6.0.1 |
11179 | 9146 | get-stdin: 8.0.0 |
11180 | 9147 | global-modules: 2.0.0 |
11181 | - globby: 11.0.4 | |
9148 | + globby: 11.1.0 | |
11182 | 9149 | globjoin: 0.1.4 |
11183 | 9150 | html-tags: 3.1.0 |
11184 | 9151 | ignore: 5.2.0 |
... | ... | @@ -11192,21 +9159,22 @@ packages: |
11192 | 9159 | normalize-path: 3.0.0 |
11193 | 9160 | normalize-selector: 0.2.0 |
11194 | 9161 | picocolors: 1.0.0 |
11195 | - postcss: 8.4.5 | |
9162 | + postcss: 8.4.12 | |
11196 | 9163 | postcss-media-query-parser: 0.2.3 |
11197 | 9164 | postcss-resolve-nested-selector: 0.1.1 |
11198 | - postcss-safe-parser: 6.0.0_postcss@8.4.5 | |
11199 | - postcss-selector-parser: 6.0.8 | |
11200 | - postcss-value-parser: 4.1.0 | |
9165 | + postcss-safe-parser: 6.0.0_postcss@8.4.12 | |
9166 | + postcss-selector-parser: 6.0.9 | |
9167 | + postcss-value-parser: 4.2.0 | |
11201 | 9168 | resolve-from: 5.0.0 |
11202 | 9169 | specificity: 0.4.1 |
11203 | 9170 | string-width: 4.2.3 |
11204 | 9171 | strip-ansi: 6.0.1 |
11205 | 9172 | style-search: 0.1.0 |
9173 | + supports-hyperlinks: 2.2.0 | |
11206 | 9174 | svg-tags: 1.0.0 |
11207 | - table: 6.7.5 | |
9175 | + table: 6.8.0 | |
11208 | 9176 | v8-compile-cache: 2.3.0 |
11209 | - write-file-atomic: 3.0.3 | |
9177 | + write-file-atomic: 4.0.1 | |
11210 | 9178 | transitivePeerDependencies: |
11211 | 9179 | - supports-color |
11212 | 9180 | dev: true |
... | ... | @@ -11237,13 +9205,6 @@ packages: |
11237 | 9205 | has-flag: 4.0.0 |
11238 | 9206 | dev: true |
11239 | 9207 | |
11240 | - /supports-color/8.1.1: | |
11241 | - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} | |
11242 | - engines: {node: '>=10'} | |
11243 | - dependencies: | |
11244 | - has-flag: 4.0.0 | |
11245 | - dev: true | |
11246 | - | |
11247 | 9208 | /supports-color/9.2.1: |
11248 | 9209 | resolution: {integrity: sha512-Obv7ycoCTG51N7y175StI9BlAXrmgZrFhZOb0/PyjHBher/NmsdBgbbQ1Inhq+gIhz6+7Gb+jWF2Vqi7Mf1xnQ==} |
11249 | 9210 | engines: {node: '>=12'} |
... | ... | @@ -11257,6 +9218,11 @@ packages: |
11257 | 9218 | supports-color: 7.2.0 |
11258 | 9219 | dev: true |
11259 | 9220 | |
9221 | + /supports-preserve-symlinks-flag/1.0.0: | |
9222 | + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} | |
9223 | + engines: {node: '>= 0.4'} | |
9224 | + dev: true | |
9225 | + | |
11260 | 9226 | /svg-baker/1.7.0: |
11261 | 9227 | resolution: {integrity: sha512-nibslMbkXOIkqKVrfcncwha45f97fGuAOn1G99YwnwTj8kF9YiM6XexPcUso97NxOm6GsP0SIvYVIosBis1xLg==} |
11262 | 9228 | dependencies: |
... | ... | @@ -11268,7 +9234,7 @@ packages: |
11268 | 9234 | merge-options: 1.0.1 |
11269 | 9235 | micromatch: 3.1.0 |
11270 | 9236 | postcss: 5.2.18 |
11271 | - postcss-prefix-selector: 1.13.0 | |
9237 | + postcss-prefix-selector: 1.15.0_postcss@5.2.18 | |
11272 | 9238 | posthtml-rename-id: 1.0.12 |
11273 | 9239 | posthtml-svg-mode: 1.0.3 |
11274 | 9240 | query-string: 4.3.4 |
... | ... | @@ -11286,26 +9252,22 @@ packages: |
11286 | 9252 | dependencies: |
11287 | 9253 | '@trysound/sax': 0.2.0 |
11288 | 9254 | commander: 7.2.0 |
11289 | - css-select: 4.1.3 | |
9255 | + css-select: 4.2.1 | |
11290 | 9256 | css-tree: 1.1.3 |
11291 | 9257 | csso: 4.2.0 |
11292 | 9258 | picocolors: 1.0.0 |
11293 | 9259 | stable: 0.1.8 |
11294 | 9260 | dev: true |
11295 | 9261 | |
11296 | - /symbol-tree/3.2.4: | |
11297 | - resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} | |
11298 | - dev: true | |
11299 | - | |
11300 | - /systemjs/6.11.0: | |
11301 | - resolution: {integrity: sha512-7YPIY44j+BoY+E6cGBSw0oCU8SNTTIHKZgftcBdwWkDzs/M86Fdlr21FrzAyph7Zo8r3CFGscyFe4rrBtixrBg==} | |
9262 | + /systemjs/6.12.1: | |
9263 | + resolution: {integrity: sha512-hqTN6kW+pN6/qro6G9OZ7ceDQOcYno020zBQKpZQLsJhYTDMCMNfXi/Y8duF5iW+4WWZr42ry0MMkcRGpbwG2A==} | |
11302 | 9264 | dev: true |
11303 | 9265 | |
11304 | - /table/6.7.5: | |
11305 | - resolution: {integrity: sha512-LFNeryOqiQHqCVKzhkymKwt6ozeRhlm8IL1mE8rNUurkir4heF6PzMyRgaTa4tlyPTGGgXuvVOF/OLWiH09Lqw==} | |
9266 | + /table/6.8.0: | |
9267 | + resolution: {integrity: sha512-s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA==} | |
11306 | 9268 | engines: {node: '>=10.0.0'} |
11307 | 9269 | dependencies: |
11308 | - ajv: 8.8.2 | |
9270 | + ajv: 8.10.0 | |
11309 | 9271 | lodash.truncate: 4.4.2 |
11310 | 9272 | slice-ansi: 4.0.0 |
11311 | 9273 | string-width: 4.2.3 |
... | ... | @@ -11361,38 +9323,17 @@ packages: |
11361 | 9323 | unique-string: 2.0.0 |
11362 | 9324 | dev: true |
11363 | 9325 | |
11364 | - /terminal-link/2.1.1: | |
11365 | - resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} | |
11366 | - engines: {node: '>=8'} | |
11367 | - dependencies: | |
11368 | - ansi-escapes: 4.3.2 | |
11369 | - supports-hyperlinks: 2.2.0 | |
11370 | - dev: true | |
11371 | - | |
11372 | - /terser/5.10.0: | |
11373 | - resolution: {integrity: sha512-AMmF99DMfEDiRJfxfY5jj5wNH/bYO09cniSqhfoyxc8sFoYIgkJy86G04UoZU5VjlpnplVu0K6Tx6E9b5+DlHA==} | |
9326 | + /terser/5.12.1: | |
9327 | + resolution: {integrity: sha512-NXbs+7nisos5E+yXwAD+y7zrcTkMqb0dEJxIGtSKPdCBzopf7ni4odPul2aechpV7EXNvOudYOX2bb5tln1jbQ==} | |
11374 | 9328 | engines: {node: '>=10'} |
11375 | 9329 | hasBin: true |
11376 | - peerDependencies: | |
11377 | - acorn: ^8.5.0 | |
11378 | - peerDependenciesMeta: | |
11379 | - acorn: | |
11380 | - optional: true | |
11381 | 9330 | dependencies: |
9331 | + acorn: 8.7.0 | |
11382 | 9332 | commander: 2.20.3 |
11383 | 9333 | source-map: 0.7.3 |
11384 | 9334 | source-map-support: 0.5.21 |
11385 | 9335 | dev: true |
11386 | 9336 | |
11387 | - /test-exclude/6.0.0: | |
11388 | - resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} | |
11389 | - engines: {node: '>=8'} | |
11390 | - dependencies: | |
11391 | - '@istanbuljs/schema': 0.1.3 | |
11392 | - glob: 7.2.0 | |
11393 | - minimatch: 3.0.4 | |
11394 | - dev: true | |
11395 | - | |
11396 | 9337 | /text-extensions/1.9.0: |
11397 | 9338 | resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} |
11398 | 9339 | engines: {node: '>=0.10'} |
... | ... | @@ -11402,10 +9343,6 @@ packages: |
11402 | 9343 | resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=} |
11403 | 9344 | dev: true |
11404 | 9345 | |
11405 | - /throat/6.0.1: | |
11406 | - resolution: {integrity: sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==} | |
11407 | - dev: true | |
11408 | - | |
11409 | 9346 | /through/2.3.8: |
11410 | 9347 | resolution: {integrity: sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=} |
11411 | 9348 | dev: true |
... | ... | @@ -11432,8 +9369,8 @@ packages: |
11432 | 9369 | resolution: {integrity: sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==} |
11433 | 9370 | dev: true |
11434 | 9371 | |
11435 | - /tinymce/5.10.2: | |
11436 | - resolution: {integrity: sha512-5QhnZ6c8F28fYucLLc00MM37fZoAZ4g7QCYzwIl38i5TwJR5xGqzOv6YMideyLM4tytCzLCRwJoQen2LI66p5A==} | |
9372 | + /tinymce/5.10.3: | |
9373 | + resolution: {integrity: sha512-O59ssHNnujWvSk5Gt8hIGrdNCMKVWVQv9F8siAgLTRgTh0t3NDHrP1UlLtCxArUi9DPWZvlBeUz8D5fJTu7vnA==} | |
11437 | 9374 | dev: false |
11438 | 9375 | |
11439 | 9376 | /tmp/0.0.33: |
... | ... | @@ -11443,10 +9380,6 @@ packages: |
11443 | 9380 | os-tmpdir: 1.0.2 |
11444 | 9381 | dev: true |
11445 | 9382 | |
11446 | - /tmpl/1.0.5: | |
11447 | - resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} | |
11448 | - dev: true | |
11449 | - | |
11450 | 9383 | /to-buffer/1.1.1: |
11451 | 9384 | resolution: {integrity: sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==} |
11452 | 9385 | dev: true |
... | ... | @@ -11492,14 +9425,8 @@ packages: |
11492 | 9425 | resolution: {integrity: sha1-zCAOqyYT9BZtJ/+a/HylbUnfbrQ=} |
11493 | 9426 | dev: true |
11494 | 9427 | |
11495 | - /tough-cookie/4.0.0: | |
11496 | - resolution: {integrity: sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==} | |
11497 | - engines: {node: '>=6'} | |
11498 | - dependencies: | |
11499 | - psl: 1.8.0 | |
11500 | - punycode: 2.1.1 | |
11501 | - universalify: 0.1.2 | |
11502 | - dev: true | |
9428 | + /tr46/0.0.3: | |
9429 | + resolution: {integrity: sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=} | |
11503 | 9430 | |
11504 | 9431 | /tr46/1.0.1: |
11505 | 9432 | resolution: {integrity: sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=} |
... | ... | @@ -11507,13 +9434,6 @@ packages: |
11507 | 9434 | punycode: 2.1.1 |
11508 | 9435 | dev: true |
11509 | 9436 | |
11510 | - /tr46/2.1.0: | |
11511 | - resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} | |
11512 | - engines: {node: '>=8'} | |
11513 | - dependencies: | |
11514 | - punycode: 2.1.1 | |
11515 | - dev: true | |
11516 | - | |
11517 | 9437 | /traverse/0.6.6: |
11518 | 9438 | resolution: {integrity: sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=} |
11519 | 9439 | dev: true |
... | ... | @@ -11535,42 +9455,8 @@ packages: |
11535 | 9455 | escape-string-regexp: 1.0.5 |
11536 | 9456 | dev: true |
11537 | 9457 | |
11538 | - /ts-jest/27.1.2_b65cae1b46840061996b6cc0ea16ca56: | |
11539 | - resolution: {integrity: sha512-eSOiJOWq6Hhs6Khzk5wKC5sgWIXgXqOCiIl1+3lfnearu58Hj4QpE5tUhQcA3xtZrELbcvAGCsd6HB8OsaVaTA==} | |
11540 | - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} | |
11541 | - hasBin: true | |
11542 | - peerDependencies: | |
11543 | - '@babel/core': '>=7.0.0-beta.0 <8' | |
11544 | - '@types/jest': ^27.0.0 | |
11545 | - babel-jest: '>=27.0.0 <28' | |
11546 | - esbuild: ~0.14.0 | |
11547 | - jest: ^27.0.0 | |
11548 | - typescript: '>=3.8 <5.0' | |
11549 | - peerDependenciesMeta: | |
11550 | - '@babel/core': | |
11551 | - optional: true | |
11552 | - '@types/jest': | |
11553 | - optional: true | |
11554 | - babel-jest: | |
11555 | - optional: true | |
11556 | - esbuild: | |
11557 | - optional: true | |
11558 | - dependencies: | |
11559 | - '@types/jest': 27.0.3 | |
11560 | - bs-logger: 0.2.6 | |
11561 | - fast-json-stable-stringify: 2.1.0 | |
11562 | - jest: 27.4.5_ts-node@10.4.0 | |
11563 | - jest-util: 27.4.2 | |
11564 | - json5: 2.2.0 | |
11565 | - lodash.memoize: 4.1.2 | |
11566 | - make-error: 1.3.6 | |
11567 | - semver: 7.3.5 | |
11568 | - typescript: 4.5.4 | |
11569 | - yargs-parser: 20.2.9 | |
11570 | - dev: true | |
11571 | - | |
11572 | - /ts-node/10.4.0_bad060d5f9aca5284661d88d739ba15b: | |
11573 | - resolution: {integrity: sha512-g0FlPvvCXSIO1JDF6S232P5jPYqBkRL9qly81ZgAOSU7rwI0stphCgd2kLiCrU9DjQCrJMWEqcNSjQL02s6d8A==} | |
9458 | + /ts-node/10.7.0_e79e62fe450383fd2d418267dc75e645: | |
9459 | + resolution: {integrity: sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A==} | |
11574 | 9460 | hasBin: true |
11575 | 9461 | peerDependencies: |
11576 | 9462 | '@swc/core': '>=1.2.50' |
... | ... | @@ -11588,14 +9474,15 @@ packages: |
11588 | 9474 | '@tsconfig/node12': 1.0.9 |
11589 | 9475 | '@tsconfig/node14': 1.0.1 |
11590 | 9476 | '@tsconfig/node16': 1.0.2 |
11591 | - '@types/node': 17.0.5 | |
11592 | - acorn: 8.6.0 | |
9477 | + '@types/node': 17.0.21 | |
9478 | + acorn: 8.7.0 | |
11593 | 9479 | acorn-walk: 8.2.0 |
11594 | 9480 | arg: 4.1.3 |
11595 | 9481 | create-require: 1.1.1 |
11596 | 9482 | diff: 4.0.2 |
11597 | 9483 | make-error: 1.3.6 |
11598 | - typescript: 4.5.4 | |
9484 | + typescript: 4.6.2 | |
9485 | + v8-compile-cache-lib: 3.0.0 | |
11599 | 9486 | yn: 3.1.1 |
11600 | 9487 | dev: true |
11601 | 9488 | |
... | ... | @@ -11603,10 +9490,6 @@ packages: |
11603 | 9490 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} |
11604 | 9491 | dev: true |
11605 | 9492 | |
11606 | - /tslib/2.1.0: | |
11607 | - resolution: {integrity: sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==} | |
11608 | - dev: true | |
11609 | - | |
11610 | 9493 | /tslib/2.3.0: |
11611 | 9494 | resolution: {integrity: sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==} |
11612 | 9495 | dev: false |
... | ... | @@ -11615,14 +9498,14 @@ packages: |
11615 | 9498 | resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==} |
11616 | 9499 | dev: true |
11617 | 9500 | |
11618 | - /tsutils/3.21.0_typescript@4.5.4: | |
9501 | + /tsutils/3.21.0_typescript@4.6.2: | |
11619 | 9502 | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} |
11620 | 9503 | engines: {node: '>= 6'} |
11621 | 9504 | peerDependencies: |
11622 | 9505 | typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' |
11623 | 9506 | dependencies: |
11624 | 9507 | tslib: 1.14.1 |
11625 | - typescript: 4.5.4 | |
9508 | + typescript: 4.6.2 | |
11626 | 9509 | dev: true |
11627 | 9510 | |
11628 | 9511 | /tunnel-agent/0.6.0: |
... | ... | @@ -11631,13 +9514,6 @@ packages: |
11631 | 9514 | safe-buffer: 5.2.1 |
11632 | 9515 | dev: true |
11633 | 9516 | |
11634 | - /type-check/0.3.2: | |
11635 | - resolution: {integrity: sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=} | |
11636 | - engines: {node: '>= 0.8.0'} | |
11637 | - dependencies: | |
11638 | - prelude-ls: 1.1.2 | |
11639 | - dev: true | |
11640 | - | |
11641 | 9517 | /type-check/0.4.0: |
11642 | 9518 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} |
11643 | 9519 | engines: {node: '>= 0.8.0'} |
... | ... | @@ -11645,11 +9521,6 @@ packages: |
11645 | 9521 | prelude-ls: 1.2.1 |
11646 | 9522 | dev: true |
11647 | 9523 | |
11648 | - /type-detect/4.0.8: | |
11649 | - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} | |
11650 | - engines: {node: '>=4'} | |
11651 | - dev: true | |
11652 | - | |
11653 | 9524 | /type-fest/0.11.0: |
11654 | 9525 | resolution: {integrity: sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==} |
11655 | 9526 | engines: {node: '>=8'} |
... | ... | @@ -11685,20 +9556,14 @@ packages: |
11685 | 9556 | engines: {node: '>=8'} |
11686 | 9557 | dev: true |
11687 | 9558 | |
11688 | - /typedarray-to-buffer/3.1.5: | |
11689 | - resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} | |
11690 | - dependencies: | |
11691 | - is-typedarray: 1.0.0 | |
11692 | - dev: true | |
11693 | - | |
11694 | - /typescript/4.5.4: | |
11695 | - resolution: {integrity: sha512-VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg==} | |
9559 | + /typescript/4.6.2: | |
9560 | + resolution: {integrity: sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg==} | |
11696 | 9561 | engines: {node: '>=4.2.0'} |
11697 | 9562 | hasBin: true |
11698 | 9563 | dev: true |
11699 | 9564 | |
11700 | - /uglify-js/3.14.3: | |
11701 | - resolution: {integrity: sha512-mic3aOdiq01DuSVx0TseaEzMIVqebMZ0Z3vaeDhFEh9bsc24hV1TFvN74reA2vs08D0ZWfNjAcJ3UbVLaBss+g==} | |
9565 | + /uglify-js/3.15.3: | |
9566 | + resolution: {integrity: sha512-6iCVm2omGJbsu3JWac+p6kUiOpg3wFO2f8lIXjfEb8RrmLjzog1wTPMmwKB7swfzzqxj9YM+sGUM++u1qN4qJg==} | |
11702 | 9567 | engines: {node: '>=0.8.0'} |
11703 | 9568 | hasBin: true |
11704 | 9569 | requiresBuild: true |
... | ... | @@ -11710,7 +9575,7 @@ packages: |
11710 | 9575 | dependencies: |
11711 | 9576 | function-bind: 1.1.1 |
11712 | 9577 | has-bigints: 1.0.1 |
11713 | - has-symbols: 1.0.2 | |
9578 | + has-symbols: 1.0.3 | |
11714 | 9579 | which-boxed-primitive: 1.0.2 |
11715 | 9580 | dev: true |
11716 | 9581 | |
... | ... | @@ -11761,6 +9626,10 @@ packages: |
11761 | 9626 | crypto-random-string: 2.0.0 |
11762 | 9627 | dev: true |
11763 | 9628 | |
9629 | + /universal-user-agent/6.0.0: | |
9630 | + resolution: {integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==} | |
9631 | + dev: true | |
9632 | + | |
11764 | 9633 | /universalify/0.1.2: |
11765 | 9634 | resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} |
11766 | 9635 | engines: {node: '>= 4.0.0'} |
... | ... | @@ -11856,17 +9725,12 @@ packages: |
11856 | 9725 | hasBin: true |
11857 | 9726 | dev: true |
11858 | 9727 | |
11859 | - /v8-compile-cache/2.3.0: | |
11860 | - resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} | |
9728 | + /v8-compile-cache-lib/3.0.0: | |
9729 | + resolution: {integrity: sha512-mpSYqfsFvASnSn5qMiwrr4VKfumbPyONLCOPmsR3A6pTY/r0+tSaVbgPWSAIuzbk3lCTa+FForeTiO+wBQGkjA==} | |
11861 | 9730 | dev: true |
11862 | 9731 | |
11863 | - /v8-to-istanbul/8.1.0: | |
11864 | - resolution: {integrity: sha512-/PRhfd8aTNp9Ggr62HPzXg2XasNFGy5PBt0Rp04du7/8GNNSgxFL6WBTkgMKSL9bFjH+8kKEG3f37FmxiTqUUA==} | |
11865 | - engines: {node: '>=10.12.0'} | |
11866 | - dependencies: | |
11867 | - '@types/istanbul-lib-coverage': 2.0.3 | |
11868 | - convert-source-map: 1.8.0 | |
11869 | - source-map: 0.7.3 | |
9732 | + /v8-compile-cache/2.3.0: | |
9733 | + resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} | |
11870 | 9734 | dev: true |
11871 | 9735 | |
11872 | 9736 | /validate-npm-package-license/3.0.4: |
... | ... | @@ -11881,43 +9745,47 @@ packages: |
11881 | 9745 | engines: {node: '>= 0.8'} |
11882 | 9746 | dev: true |
11883 | 9747 | |
11884 | - /vditor/3.8.10: | |
11885 | - resolution: {integrity: sha512-n15aA9cgcE52EJgW357HX9oFSAAiFFwICwpjDYrZPHZhVKdrdpbG3GBBYUzyiqRvLtD3LPET1IBaHGiF+8dO6g==} | |
9748 | + /vditor/3.8.12: | |
9749 | + resolution: {integrity: sha512-bpYubNGA5PcWSsOOKK6rXYOSU1Wy6plmhwdWB9oXy8D714hj6vcVtJjE/8x8+aZOyX45Rxa+a72h5xOU0SdfFg==} | |
11886 | 9750 | dependencies: |
11887 | 9751 | diff-match-patch: 1.0.5 |
11888 | 9752 | dev: false |
11889 | 9753 | |
11890 | - /vite-plugin-compression/0.4.0_vite@2.7.8: | |
11891 | - resolution: {integrity: sha512-CGC8DfIey0k4S4o54ylwFIzT1Mjb9s7cMmlXj6DMM1MZZIeWFjPCJc6YZWjnnS28ul3r7R1nmihvYvGg/lOYsQ==} | |
9754 | + /vite-plugin-compression/0.5.1_vite@2.9.0-beta.3: | |
9755 | + resolution: {integrity: sha512-5QJKBDc+gNYVqL/skgFAP81Yuzo9R+EAf19d+EtsMF/i8kFUpNi3J/H01QD3Oo8zBQn+NzoCIFkpPLynoOzaJg==} | |
11892 | 9756 | peerDependencies: |
11893 | 9757 | vite: '>=2.0.0' |
11894 | 9758 | dependencies: |
11895 | 9759 | chalk: 4.1.2 |
11896 | - debug: 4.3.3 | |
11897 | - fs-extra: 10.0.0 | |
11898 | - vite: 2.7.8_less@4.1.2 | |
9760 | + debug: 4.3.4 | |
9761 | + fs-extra: 10.0.1 | |
9762 | + vite: 2.9.0-beta.3_less@4.1.2 | |
11899 | 9763 | transitivePeerDependencies: |
11900 | 9764 | - supports-color |
11901 | 9765 | dev: true |
11902 | 9766 | |
11903 | - /vite-plugin-html/2.1.2_vite@2.7.8: | |
11904 | - resolution: {integrity: sha512-7HXkL6n7M2qDEaUV4Vnz8yM2glW4gV36d5HSBIM5gOoAG1PkuQb4Vv9FTPgPiQxq4sPRf/6IgABX0MeLVW+CyQ==} | |
9767 | + /vite-plugin-html/3.2.0_vite@2.9.0-beta.3: | |
9768 | + resolution: {integrity: sha512-2VLCeDiHmV/BqqNn5h2V+4280KRgQzCFN47cst3WiNK848klESPQnzuC3okH5XHtgwHH/6s1Ho/YV6yIO0pgoQ==} | |
11905 | 9769 | peerDependencies: |
11906 | 9770 | vite: '>=2.0.0' |
11907 | 9771 | dependencies: |
11908 | - '@rollup/pluginutils': 4.1.2 | |
11909 | - dotenv: 10.0.0 | |
11910 | - dotenv-expand: 5.1.0 | |
9772 | + '@rollup/pluginutils': 4.2.0 | |
9773 | + colorette: 2.0.16 | |
9774 | + connect-history-api-fallback: 1.6.0 | |
9775 | + consola: 2.15.3 | |
9776 | + dotenv: 16.0.0 | |
9777 | + dotenv-expand: 8.0.2 | |
11911 | 9778 | ejs: 3.1.6 |
11912 | - fs-extra: 10.0.0 | |
9779 | + fast-glob: 3.2.11 | |
9780 | + fs-extra: 10.0.1 | |
11913 | 9781 | html-minifier-terser: 6.1.0 |
11914 | - vite: 2.7.8_less@4.1.2 | |
11915 | - transitivePeerDependencies: | |
11916 | - - acorn | |
9782 | + node-html-parser: 5.3.3 | |
9783 | + pathe: 0.2.0 | |
9784 | + vite: 2.9.0-beta.3_less@4.1.2 | |
11917 | 9785 | dev: true |
11918 | 9786 | |
11919 | - /vite-plugin-imagemin/0.5.1_vite@2.7.8: | |
11920 | - resolution: {integrity: sha512-V/o/JWZZEPHOJLyhyx9a9Q9svAi91KQqXC78vMrRng1ZRMMnEn85PDlb264407WVlI7hZv2fW3p08SoSfZbyTA==} | |
9787 | + /vite-plugin-imagemin/0.6.1_vite@2.9.0-beta.3: | |
9788 | + resolution: {integrity: sha512-cP7LDn8euPrji7WYtDoNQpJEB9nkMxJHm/A+QZnvMrrCSuyo/clpMy/T1v7suDXPBavsDiDdFdVQB5p7VGD2cg==} | |
11921 | 9789 | peerDependencies: |
11922 | 9790 | vite: '>=2.0.0' |
11923 | 9791 | dependencies: |
... | ... | @@ -11926,13 +9794,14 @@ packages: |
11926 | 9794 | '@types/imagemin-jpegtran': 5.0.1 |
11927 | 9795 | '@types/imagemin-mozjpeg': 8.0.1 |
11928 | 9796 | '@types/imagemin-optipng': 5.2.1 |
11929 | - '@types/imagemin-svgo': 10.0.0 | |
9797 | + '@types/imagemin-svgo': 10.0.1 | |
11930 | 9798 | '@types/imagemin-webp': 7.0.0 |
11931 | - '@types/svgo': 2.6.0 | |
9799 | + '@types/svgo': 2.6.2 | |
11932 | 9800 | chalk: 4.1.2 |
11933 | - debug: 4.3.3 | |
11934 | - esbuild: 0.14.8 | |
11935 | - fs-extra: 10.0.0 | |
9801 | + debug: 4.3.4 | |
9802 | + esbuild: 0.14.27 | |
9803 | + fs-extra: 10.0.1 | |
9804 | + gifsicle: 5.2.0 | |
11936 | 9805 | imagemin: 7.0.1 |
11937 | 9806 | imagemin-gifsicle: 7.0.0 |
11938 | 9807 | imagemin-jpegtran: 7.0.0 |
... | ... | @@ -11942,143 +9811,156 @@ packages: |
11942 | 9811 | imagemin-svgo: 9.0.0 |
11943 | 9812 | imagemin-webp: 6.0.0 |
11944 | 9813 | jpegtran-bin: 6.0.1 |
11945 | - vite: 2.7.8_less@4.1.2 | |
9814 | + pathe: 0.2.0 | |
9815 | + vite: 2.9.0-beta.3_less@4.1.2 | |
9816 | + transitivePeerDependencies: | |
9817 | + - supports-color | |
9818 | + dev: true | |
9819 | + | |
9820 | + /vite-plugin-mkcert/1.6.0: | |
9821 | + resolution: {integrity: sha512-zVa/sKM67htmIwey0fbUf93ufpsr54iqHWg5w0pFk2/pW4qCOPoG7XhEfsAawv4SSB/oWaWdFUgoZApXVCAG4Q==} | |
9822 | + dependencies: | |
9823 | + '@octokit/rest': 18.12.0 | |
9824 | + axios: 0.21.4_debug@4.3.4 | |
9825 | + debug: 4.3.4 | |
9826 | + picocolors: 1.0.0 | |
11946 | 9827 | transitivePeerDependencies: |
9828 | + - encoding | |
11947 | 9829 | - supports-color |
11948 | 9830 | dev: true |
11949 | 9831 | |
11950 | - /vite-plugin-mock/2.9.6_mockjs@1.1.0+vite@2.7.8: | |
9832 | + /vite-plugin-mock/2.9.6_0f4f060d71e998e1697ce4d6d1a6c012: | |
11951 | 9833 | resolution: {integrity: sha512-/Rm59oPppe/ncbkSrUuAxIQihlI2YcBmnbR4ST1RA2VzM1C0tEQc1KlbQvnUGhXECAGTaQN2JyasiwXP6EtKgg==} |
11952 | 9834 | engines: {node: '>=12.0.0'} |
11953 | 9835 | peerDependencies: |
11954 | 9836 | mockjs: '>=1.1.0' |
11955 | 9837 | vite: '>=2.0.0' |
11956 | 9838 | dependencies: |
11957 | - '@rollup/plugin-node-resolve': 13.0.6 | |
11958 | - '@types/mockjs': 1.0.4 | |
9839 | + '@rollup/plugin-node-resolve': 13.1.3_rollup@2.70.1 | |
9840 | + '@types/mockjs': 1.0.6 | |
11959 | 9841 | chalk: 4.1.2 |
11960 | - chokidar: 3.5.2 | |
9842 | + chokidar: 3.5.3 | |
11961 | 9843 | connect: 3.7.0 |
11962 | - debug: 4.3.2 | |
9844 | + debug: 4.3.4 | |
11963 | 9845 | esbuild: 0.11.3 |
11964 | - fast-glob: 3.2.7 | |
9846 | + fast-glob: 3.2.11 | |
11965 | 9847 | mockjs: 1.1.0 |
11966 | 9848 | path-to-regexp: 6.2.0 |
11967 | - vite: 2.7.8_less@4.1.2 | |
9849 | + vite: 2.9.0-beta.3_less@4.1.2 | |
11968 | 9850 | transitivePeerDependencies: |
11969 | 9851 | - rollup |
11970 | 9852 | - supports-color |
11971 | 9853 | dev: true |
11972 | 9854 | |
11973 | - /vite-plugin-purge-icons/0.7.0_vite@2.7.8: | |
11974 | - resolution: {integrity: sha512-oGZUKFAL4waIZIeiCPT5KZvGbBA500AO/03oxW+ODTKUMq+0jbh9s+T8NPzfJQFC1jtE7eUb2ium82IP/gxZjA==} | |
9855 | + /vite-plugin-purge-icons/0.8.1_vite@2.9.0-beta.3: | |
9856 | + resolution: {integrity: sha512-H77YDvECkdzwsgYTu6LR5Nx0wey5Hporw+3/hTYTZh7D7YcarS+RsOvpUEgd2XG5fChgCmMBtMfnr2JmrNanSg==} | |
11975 | 9857 | engines: {node: '>= 12'} |
11976 | 9858 | peerDependencies: |
11977 | 9859 | vite: ^2.0.0-beta.3 |
11978 | 9860 | dependencies: |
11979 | - '@purge-icons/core': 0.7.0 | |
11980 | - '@purge-icons/generated': 0.7.0 | |
11981 | - rollup-plugin-purge-icons: 0.7.0 | |
11982 | - vite: 2.7.8_less@4.1.2 | |
9861 | + '@purge-icons/core': 0.8.0 | |
9862 | + '@purge-icons/generated': 0.8.1 | |
9863 | + rollup-plugin-purge-icons: 0.8.1 | |
9864 | + vite: 2.9.0-beta.3_less@4.1.2 | |
11983 | 9865 | transitivePeerDependencies: |
9866 | + - encoding | |
11984 | 9867 | - supports-color |
11985 | 9868 | dev: true |
11986 | 9869 | |
11987 | - /vite-plugin-pwa/0.11.12_vite@2.7.8: | |
11988 | - resolution: {integrity: sha512-XqFmA4y9C4RBb5osSsa26GVwOSwbzf2GNVcT5+06KYYdguqLpuI9FW7iV/akZqg0OUNUpH4tHfme8SnHA4PIXA==} | |
9870 | + /vite-plugin-pwa/0.11.13_vite@2.9.0-beta.3: | |
9871 | + resolution: {integrity: sha512-Ssj14m3TRVLfkFEAWSMcFE2d1cSdEZyrVTzfY2lSL+umHYvcIFHVDAY143sygtBCb44OPczsAOmWwBTxwOvh7g==} | |
11989 | 9872 | peerDependencies: |
11990 | 9873 | vite: ^2.0.0 |
11991 | 9874 | dependencies: |
11992 | - debug: 4.3.3 | |
11993 | - fast-glob: 3.2.7 | |
9875 | + debug: 4.3.4 | |
9876 | + fast-glob: 3.2.11 | |
11994 | 9877 | pretty-bytes: 5.6.0 |
11995 | - rollup: 2.60.1 | |
11996 | - vite: 2.7.8_less@4.1.2 | |
11997 | - workbox-build: 6.4.2 | |
11998 | - workbox-window: 6.4.2 | |
9878 | + rollup: 2.70.1 | |
9879 | + vite: 2.9.0-beta.3_less@4.1.2 | |
9880 | + workbox-build: 6.5.1 | |
9881 | + workbox-window: 6.5.1 | |
11999 | 9882 | transitivePeerDependencies: |
12000 | 9883 | - '@types/babel__core' |
12001 | - - acorn | |
12002 | 9884 | - supports-color |
12003 | 9885 | dev: true |
12004 | 9886 | |
12005 | - /vite-plugin-style-import/1.4.1_vite@2.7.8: | |
12006 | - resolution: {integrity: sha512-lJCRvm7+So0hHdnSJiJPg9gD5mxtL6YY0jmhEph+k7ArpsyvqOh6han2kG5htbWWDZxHkUN9d1BuTFL//yCLLQ==} | |
9887 | + /vite-plugin-style-import/2.0.0_vite@2.9.0-beta.3: | |
9888 | + resolution: {integrity: sha512-qtoHQae5dSUQPo/rYz/8p190VU5y19rtBaeV7ryLa/AYAU/e9CG89NrN/3+k7MR8mJy/GPIu91iJ3zk9foUOSA==} | |
12007 | 9889 | peerDependencies: |
12008 | 9890 | vite: '>=2.0.0' |
12009 | 9891 | dependencies: |
12010 | - '@rollup/pluginutils': 4.1.2 | |
9892 | + '@rollup/pluginutils': 4.2.0 | |
12011 | 9893 | change-case: 4.1.2 |
12012 | - debug: 4.3.3 | |
9894 | + console: 0.7.2 | |
12013 | 9895 | es-module-lexer: 0.9.3 |
12014 | - fs-extra: 10.0.0 | |
12015 | - magic-string: 0.25.7 | |
12016 | - vite: 2.7.8_less@4.1.2 | |
12017 | - transitivePeerDependencies: | |
12018 | - - supports-color | |
9896 | + fs-extra: 10.0.1 | |
9897 | + magic-string: 0.25.9 | |
9898 | + pathe: 0.2.0 | |
9899 | + vite: 2.9.0-beta.3_less@4.1.2 | |
12019 | 9900 | dev: true |
12020 | 9901 | |
12021 | - /vite-plugin-svg-icons/1.0.5_vite@2.7.8: | |
12022 | - resolution: {integrity: sha512-dzPwIwaxhVzVTQ/NlQgQ/vcZ8jtHFx8xhpVt4iXqM/2G+8HUz6lpew4V8yOprCy2OUAq7gToYhIxT042gKXLMw==} | |
9902 | + /vite-plugin-svg-icons/2.0.1_vite@2.9.0-beta.3: | |
9903 | + resolution: {integrity: sha512-6ktD+DhV6Rz3VtedYvBKKVA2eXF+sAQVaKkKLDSqGUfnhqXl3bj5PPkVTl3VexfTuZy66PmINi8Q6eFnVfRUmA==} | |
12023 | 9904 | peerDependencies: |
12024 | 9905 | vite: '>=2.0.0' |
12025 | 9906 | dependencies: |
12026 | - '@types/svgo': 2.6.0 | |
9907 | + '@types/svgo': 2.6.2 | |
12027 | 9908 | cors: 2.8.5 |
12028 | - debug: 4.3.2 | |
9909 | + debug: 4.3.4 | |
12029 | 9910 | etag: 1.8.1 |
12030 | - fs-extra: 10.0.0 | |
9911 | + fs-extra: 10.0.1 | |
9912 | + pathe: 0.2.0 | |
12031 | 9913 | svg-baker: 1.7.0 |
12032 | 9914 | svgo: 2.8.0 |
12033 | - vite: 2.7.8_less@4.1.2 | |
9915 | + vite: 2.9.0-beta.3_less@4.1.2 | |
12034 | 9916 | transitivePeerDependencies: |
12035 | 9917 | - supports-color |
12036 | 9918 | dev: true |
12037 | 9919 | |
12038 | - /vite-plugin-theme/0.8.1_vite@2.7.8: | |
9920 | + /vite-plugin-theme/0.8.1_vite@2.9.0-beta.3: | |
12039 | 9921 | resolution: {integrity: sha512-kyfcMW9YOBuNWHvORWJoq2tJ53Eaq3O7rFntENHtqp6hbblqdGhGlCzxXDbepVthFCxlyIel8S6EFIsCT6CVfg==} |
12040 | 9922 | peerDependencies: |
12041 | 9923 | vite: '>=2.0.0-beta.49' |
12042 | 9924 | dependencies: |
12043 | - '@types/node': 14.17.34 | |
9925 | + '@types/node': 14.18.12 | |
12044 | 9926 | '@types/tinycolor2': 1.4.3 |
12045 | 9927 | chalk: 4.1.2 |
12046 | - clean-css: 5.2.2 | |
12047 | - debug: 4.3.2 | |
9928 | + clean-css: 5.2.4 | |
9929 | + debug: 4.3.4 | |
12048 | 9930 | esbuild: 0.11.23 |
12049 | 9931 | esbuild-plugin-alias: 0.1.2 |
12050 | 9932 | tinycolor2: 1.4.2 |
12051 | - vite: 2.7.8_less@4.1.2 | |
9933 | + vite: 2.9.0-beta.3_less@4.1.2 | |
12052 | 9934 | transitivePeerDependencies: |
12053 | 9935 | - supports-color |
12054 | 9936 | dev: true |
12055 | 9937 | |
12056 | - /vite-plugin-vue-setup-extend/0.3.0_vite@2.7.8: | |
12057 | - resolution: {integrity: sha512-9Nd7Bj4TftB2CoOAD2ZI4cHLW5zjKMF3LNihWbrnAPx3nuGBn33tM9SVUGBVjBB6uv1mGAPavwKCTU0xAD8qhw==} | |
9938 | + /vite-plugin-vue-setup-extend/0.4.0_vite@2.9.0-beta.3: | |
9939 | + resolution: {integrity: sha512-WMbjPCui75fboFoUTHhdbXzu4Y/bJMv5N9QT9a7do3wNMNHHqrk+Tn2jrSJU0LS5fGl/EG+FEDBYVUeWIkDqXQ==} | |
12058 | 9940 | peerDependencies: |
12059 | 9941 | vite: '>=2.0.0' |
12060 | 9942 | dependencies: |
12061 | - '@vue/compiler-sfc': 3.2.26 | |
12062 | - magic-string: 0.25.7 | |
12063 | - vite: 2.7.8_less@4.1.2 | |
9943 | + '@vue/compiler-sfc': 3.2.31 | |
9944 | + magic-string: 0.25.9 | |
9945 | + vite: 2.9.0-beta.3_less@4.1.2 | |
12064 | 9946 | dev: true |
12065 | 9947 | |
12066 | - /vite-plugin-windicss/1.6.1_vite@2.7.8: | |
12067 | - resolution: {integrity: sha512-63uv4HqBxtSZB0WOtrZS8yhyfQPgGQwYgcBald+/BpLSlYJREcDKgX9Xd/qDgTAjpDRozxKQj/JWreIlyIahGg==} | |
9948 | + /vite-plugin-windicss/1.8.3_vite@2.9.0-beta.3: | |
9949 | + resolution: {integrity: sha512-RIw2GD6H6cKNE8wZXVOBs4L1uTicVS0FaAkeqXvy1oyuXLC4SXmvnzEuoK0+qFuWJjW0ECNwE8eU+ZZhzNQKUg==} | |
12068 | 9950 | peerDependencies: |
12069 | 9951 | vite: ^2.0.1 |
12070 | 9952 | dependencies: |
12071 | - '@windicss/plugin-utils': 1.6.1 | |
12072 | - debug: 4.3.3 | |
9953 | + '@windicss/plugin-utils': 1.8.3 | |
9954 | + debug: 4.3.4 | |
12073 | 9955 | kolorist: 1.5.1 |
12074 | - vite: 2.7.8_less@4.1.2 | |
12075 | - windicss: 3.4.1 | |
9956 | + vite: 2.9.0-beta.3_less@4.1.2 | |
9957 | + windicss: 3.5.1 | |
12076 | 9958 | transitivePeerDependencies: |
12077 | 9959 | - supports-color |
12078 | 9960 | dev: true |
12079 | 9961 | |
12080 | - /vite/2.7.8_less@4.1.2: | |
12081 | - resolution: {integrity: sha512-NOgvRtXUq4/7srE2cTQ2IU1oERdGq2njVOlZtgRrjMO+PPJpncd61/AUzxzZklQ1zBkiWXEVrw3Csq0Sbgr0rQ==} | |
9962 | + /vite/2.9.0-beta.3_less@4.1.2: | |
9963 | + resolution: {integrity: sha512-x3G5GGQQlapvyjr2jhFTT16NIbKJdcfYOa6oD8OZuy+WqGTSYolowGJP7tUrTe9y5n641CBKLuhjqXc4gpwUVQ==} | |
12082 | 9964 | engines: {node: '>=12.2.0'} |
12083 | 9965 | hasBin: true |
12084 | 9966 | peerDependencies: |
... | ... | @@ -12093,138 +9975,77 @@ packages: |
12093 | 9975 | stylus: |
12094 | 9976 | optional: true |
12095 | 9977 | dependencies: |
12096 | - esbuild: 0.13.15 | |
9978 | + esbuild: 0.14.27 | |
12097 | 9979 | less: 4.1.2 |
12098 | - postcss: 8.4.5 | |
12099 | - resolve: 1.20.0 | |
12100 | - rollup: 2.60.1 | |
9980 | + postcss: 8.4.12 | |
9981 | + resolve: 1.22.0 | |
9982 | + rollup: 2.70.1 | |
12101 | 9983 | optionalDependencies: |
12102 | 9984 | fsevents: 2.3.2 |
12103 | 9985 | dev: true |
12104 | 9986 | |
12105 | - /void-elements/3.1.0: | |
12106 | - resolution: {integrity: sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=} | |
12107 | - engines: {node: '>=0.10.0'} | |
12108 | - dev: true | |
12109 | - | |
12110 | - /vscode-css-languageservice/5.1.8: | |
12111 | - resolution: {integrity: sha512-Si1sMykS8U/p8LYgLGPCfZD1YFT0AtvUJQp9XJGw64DZWhtwYo28G2l64USLS9ge4ZPMZpwdpOK7PfbVKfgiiA==} | |
9987 | + /vscode-css-languageservice/5.1.13: | |
9988 | + resolution: {integrity: sha512-FA0foqMzMmEoO0WJP+MjoD4dRERhKS+Ag+yBrtmWQDmw2OuZ1R/5FkvI/XdTkCpHmTD9VMczugpHRejQyTXCNQ==} | |
12112 | 9989 | dependencies: |
12113 | - vscode-languageserver-textdocument: 1.0.3 | |
9990 | + vscode-languageserver-textdocument: 1.0.4 | |
12114 | 9991 | vscode-languageserver-types: 3.16.0 |
12115 | 9992 | vscode-nls: 5.0.0 |
12116 | - vscode-uri: 3.0.2 | |
9993 | + vscode-uri: 3.0.3 | |
12117 | 9994 | dev: true |
12118 | 9995 | |
12119 | - /vscode-html-languageservice/4.1.1: | |
12120 | - resolution: {integrity: sha512-rrDyCiOgMwOPgchpPGAeLzjYVVEW/Ror2/a1BWUEI3S9+NQhA9vj4SQkzmH6g2Bq9S9SV0OQeadD+xphOf1N3w==} | |
9996 | + /vscode-html-languageservice/4.2.2: | |
9997 | + resolution: {integrity: sha512-4ICwlpplGbiNQq6D/LZr4qLbPZuMmnSQeX/57UAYP7jD1LOvKeru4lVI+f6d6Eyd7uS46nLJ5DUY4AAlq35C0g==} | |
12121 | 9998 | dependencies: |
12122 | - vscode-languageserver-textdocument: 1.0.3 | |
9999 | + vscode-languageserver-textdocument: 1.0.4 | |
12123 | 10000 | vscode-languageserver-types: 3.16.0 |
12124 | 10001 | vscode-nls: 5.0.0 |
12125 | - vscode-uri: 3.0.2 | |
10002 | + vscode-uri: 3.0.3 | |
12126 | 10003 | dev: true |
12127 | 10004 | |
12128 | - /vscode-json-languageservice/4.1.10: | |
12129 | - resolution: {integrity: sha512-IHliMEEYSY0tJjJt0ECb8ESx/nRXpoy9kN42WVQXgaqGyizFAf3jibSiezDQTrrY7f3kywXggCU+kkJEM+OLZQ==} | |
10005 | + /vscode-json-languageservice/4.2.0: | |
10006 | + resolution: {integrity: sha512-XNawv0Vdy/sUK0S+hGf7cq/qsVAbIniGJr89TvZOqMCNJmpgKTy1e8PL1aWW0uy6BfWMG7vxa5lZb3ypuFtuGQ==} | |
12130 | 10007 | dependencies: |
12131 | 10008 | jsonc-parser: 3.0.0 |
12132 | - vscode-languageserver-textdocument: 1.0.3 | |
10009 | + vscode-languageserver-textdocument: 1.0.4 | |
12133 | 10010 | vscode-languageserver-types: 3.16.0 |
12134 | 10011 | vscode-nls: 5.0.0 |
12135 | - vscode-uri: 3.0.2 | |
10012 | + vscode-uri: 3.0.3 | |
12136 | 10013 | dev: true |
12137 | 10014 | |
12138 | - /vscode-jsonrpc/8.0.0-next.4: | |
12139 | - resolution: {integrity: sha512-i+wvza5Wd0YV/t9qhnS8I+dJdhJ1fHIhRW4f262rXXM9Mgts5VZhYrRZufGcai4y99RlbZvwaZhplQ6diRXkaA==} | |
12140 | - engines: {node: '>=8.0.0 || >=10.0.0'} | |
10015 | + /vscode-jsonrpc/8.0.0-next.7: | |
10016 | + resolution: {integrity: sha512-JX/F31LEsims0dAlOTKFE4E+AJMiJvdRSRViifFJSqSN7EzeYyWlfuDchF7g91oRNPZOIWfibTkDf3/UMsQGzQ==} | |
10017 | + engines: {node: '>=14.0.0'} | |
12141 | 10018 | dev: true |
12142 | 10019 | |
12143 | - /vscode-languageserver-protocol/3.17.0-next.11: | |
12144 | - resolution: {integrity: sha512-9FqHT7XvM6tWFsnLvRfuQA7Zh7wZZYAwA9dK85lYthA8M1aXpXEP9drXVvO/Fe03MUeJpKVf2e4/NvDaFUnttg==} | |
10020 | + /vscode-languageserver-protocol/3.17.0-next.16: | |
10021 | + resolution: {integrity: sha512-tx4DnXw9u3N7vw+bx6n2NKp6FoxoNwiP/biH83AS30I2AnTGyLd7afSeH6Oewn2E8jvB7K15bs12sMppkKOVeQ==} | |
12145 | 10022 | dependencies: |
12146 | - vscode-jsonrpc: 8.0.0-next.4 | |
12147 | - vscode-languageserver-types: 3.17.0-next.5 | |
10023 | + vscode-jsonrpc: 8.0.0-next.7 | |
10024 | + vscode-languageserver-types: 3.17.0-next.9 | |
12148 | 10025 | dev: true |
12149 | 10026 | |
12150 | - /vscode-languageserver-textdocument/1.0.3: | |
12151 | - resolution: {integrity: sha512-ynEGytvgTb6HVSUwPJIAZgiHQmPCx8bZ8w5um5Lz+q5DjP0Zj8wTFhQpyg8xaMvefDytw2+HH5yzqS+FhsR28A==} | |
10027 | + /vscode-languageserver-textdocument/1.0.4: | |
10028 | + resolution: {integrity: sha512-/xhqXP/2A2RSs+J8JNXpiiNVvvNM0oTosNVmQnunlKvq9o4mupHOBAnnzH0lwIPKazXKvAKsVp1kr+H/K4lgoQ==} | |
12152 | 10029 | dev: true |
12153 | 10030 | |
12154 | 10031 | /vscode-languageserver-types/3.16.0: |
12155 | 10032 | resolution: {integrity: sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==} |
12156 | 10033 | dev: true |
12157 | 10034 | |
12158 | - /vscode-languageserver-types/3.17.0-next.5: | |
12159 | - resolution: {integrity: sha512-Zcfaw8BznhlJWB09LDR0dscXyxn9+liREqJnPF4pigeUCHwKxYapYqizwuCpMHQ/oLYiAvKwU+f28hPleYu7pA==} | |
12160 | - dev: true | |
12161 | - | |
12162 | - /vscode-languageserver/8.0.0-next.5: | |
12163 | - resolution: {integrity: sha512-3E2W0eWtGKb6QAJqspOnD0thrBRRo8IGUMV5jpDNMcMKvmtkcxMwsBh0VxdvuWaZ51PiNyR4L+B+GUvkYsyFEg==} | |
12164 | - hasBin: true | |
12165 | - dependencies: | |
12166 | - vscode-languageserver-protocol: 3.17.0-next.11 | |
10035 | + /vscode-languageserver-types/3.17.0-next.9: | |
10036 | + resolution: {integrity: sha512-9/PeDNPYduaoXRUzYpqmu4ZV9L01HGo0wH9FUt+sSHR7IXwA7xoXBfNUlv8gB9H0D2WwEmMomSy1NmhjKQyn3A==} | |
12167 | 10037 | dev: true |
12168 | 10038 | |
12169 | 10039 | /vscode-nls/5.0.0: |
12170 | 10040 | resolution: {integrity: sha512-u0Lw+IYlgbEJFF6/qAqG2d1jQmJl0eyAGJHoAJqr2HT4M2BNuQYSEiSE75f52pXHSJm8AlTjnLLbBFPrdz2hpA==} |
12171 | 10041 | dev: true |
12172 | 10042 | |
12173 | - /vscode-pug-languageservice/0.30.1: | |
12174 | - resolution: {integrity: sha512-ytco+lziRQNrpHpI8X+/rhYaX4KUWAnYZHd1f1epu2m+9WoIf9swbk8/slIOeyec1DPg4Y7AS8hTLcEfOfY71g==} | |
12175 | - dependencies: | |
12176 | - '@volar/code-gen': 0.30.1 | |
12177 | - '@volar/shared': 0.30.1 | |
12178 | - '@volar/source-map': 0.30.1 | |
12179 | - '@volar/transforms': 0.30.1 | |
12180 | - pug-lexer: 5.0.1 | |
12181 | - pug-parser: 6.0.0 | |
12182 | - vscode-languageserver: 8.0.0-next.5 | |
12183 | - dev: true | |
12184 | - | |
12185 | - /vscode-typescript-languageservice/0.30.1: | |
12186 | - resolution: {integrity: sha512-7EBJiaLXThlrbm2K5VU+qWPR3z+RtmCFLWiZaNdJYO/E5UFBQiPmO8qXlxcB2x1N7zId2GZoogAbT15oexY2eQ==} | |
12187 | - dependencies: | |
12188 | - '@volar/shared': 0.30.1 | |
12189 | - semver: 7.3.5 | |
12190 | - upath: 2.0.1 | |
12191 | - vscode-languageserver: 8.0.0-next.5 | |
12192 | - vscode-languageserver-textdocument: 1.0.3 | |
12193 | - dev: true | |
12194 | - | |
12195 | - /vscode-uri/2.1.2: | |
12196 | - resolution: {integrity: sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==} | |
12197 | - dev: true | |
12198 | - | |
12199 | - /vscode-uri/3.0.2: | |
12200 | - resolution: {integrity: sha512-jkjy6pjU1fxUvI51P+gCsxg1u2n8LSt0W6KrCNQceaziKzff74GoWmjVG46KieVzybO1sttPQmYfrwSHey7GUA==} | |
12201 | - dev: true | |
12202 | - | |
12203 | - /vscode-vue-languageservice/0.30.1: | |
12204 | - resolution: {integrity: sha512-l9R5vXkrGY0N4hA2o9ZFBIKL44z7UbHc45YjOmnslGwYL15YXfb7T4quW8VYSWJNRbiFBTNnNLWORIDEcWazBA==} | |
12205 | - dependencies: | |
12206 | - '@volar/code-gen': 0.30.1 | |
12207 | - '@volar/html2pug': 0.30.1 | |
12208 | - '@volar/shared': 0.30.1 | |
12209 | - '@volar/source-map': 0.30.1 | |
12210 | - '@volar/transforms': 0.30.1 | |
12211 | - '@volar/vue-code-gen': 0.30.1 | |
12212 | - '@vscode/emmet-helper': 2.8.2 | |
12213 | - '@vue/reactivity': 3.2.26 | |
12214 | - '@vue/shared': 3.2.26 | |
12215 | - request-light: 0.5.5 | |
12216 | - upath: 2.0.1 | |
12217 | - vscode-css-languageservice: 5.1.8 | |
12218 | - vscode-html-languageservice: 4.1.1 | |
12219 | - vscode-json-languageservice: 4.1.10 | |
12220 | - vscode-languageserver: 8.0.0-next.5 | |
12221 | - vscode-languageserver-textdocument: 1.0.3 | |
12222 | - vscode-pug-languageservice: 0.30.1 | |
12223 | - vscode-typescript-languageservice: 0.30.1 | |
10043 | + /vscode-uri/3.0.3: | |
10044 | + resolution: {integrity: sha512-EcswR2S8bpR7fD0YPeS7r2xXExrScVMxg4MedACaWHEtx9ftCF/qHG1xGkolzTPcEmjTavCQgbVzHUIdTMzFGA==} | |
12224 | 10045 | dev: true |
12225 | 10046 | |
12226 | - /vue-demi/0.12.1_vue@3.2.26: | |
12227 | - resolution: {integrity: sha512-QL3ny+wX8c6Xm1/EZylbgzdoDolye+VpCXRhI2hug9dJTP3OUJ3lmiKN3CsVV3mOJKwFi0nsstbgob0vG7aoIw==} | |
10047 | + /vue-demi/0.12.4_vue@3.2.31: | |
10048 | + resolution: {integrity: sha512-ztPDkFt0TSUdoq1ZI6oD730vgztBkiByhUW7L1cOTebiSBqSYfSQgnhYakYigBkyAybqCTH7h44yZuDJf2xILQ==} | |
12228 | 10049 | engines: {node: '>=12'} |
12229 | 10050 | hasBin: true |
12230 | 10051 | requiresBuild: true |
... | ... | @@ -12235,20 +10056,20 @@ packages: |
12235 | 10056 | '@vue/composition-api': |
12236 | 10057 | optional: true |
12237 | 10058 | dependencies: |
12238 | - vue: 3.2.26 | |
10059 | + vue: 3.2.31 | |
12239 | 10060 | dev: false |
12240 | 10061 | |
12241 | - /vue-eslint-parser/8.0.1_eslint@8.5.0: | |
12242 | - resolution: {integrity: sha512-lhWjDXJhe3UZw2uu3ztX51SJAPGPey1Tff2RK3TyZURwbuI4vximQLzz4nQfCv8CZq4xx7uIiogHMMoSJPr33A==} | |
10062 | + /vue-eslint-parser/8.3.0_eslint@8.11.0: | |
10063 | + resolution: {integrity: sha512-dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g==} | |
12243 | 10064 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} |
12244 | 10065 | peerDependencies: |
12245 | 10066 | eslint: '>=6.0.0' |
12246 | 10067 | dependencies: |
12247 | - debug: 4.3.2 | |
12248 | - eslint: 8.5.0 | |
12249 | - eslint-scope: 6.0.0 | |
12250 | - eslint-visitor-keys: 3.1.0 | |
12251 | - espree: 9.1.0 | |
10068 | + debug: 4.3.4 | |
10069 | + eslint: 8.11.0 | |
10070 | + eslint-scope: 7.1.1 | |
10071 | + eslint-visitor-keys: 3.3.0 | |
10072 | + espree: 9.3.1 | |
12252 | 10073 | esquery: 1.4.0 |
12253 | 10074 | lodash: 4.17.21 |
12254 | 10075 | semver: 7.3.5 |
... | ... | @@ -12256,7 +10077,7 @@ packages: |
12256 | 10077 | - supports-color |
12257 | 10078 | dev: true |
12258 | 10079 | |
12259 | - /vue-i18n/9.1.9_vue@3.2.26: | |
10080 | + /vue-i18n/9.1.9_vue@3.2.31: | |
12260 | 10081 | resolution: {integrity: sha512-JeRdNVxS2OGp1E+pye5XB6+M6BBkHwAv9C80Q7+kzoMdUDGRna06tjC0vCB/jDX9aWrl5swxOMFcyAr7or8XTA==} |
12261 | 10082 | engines: {node: '>= 10'} |
12262 | 10083 | peerDependencies: |
... | ... | @@ -12265,84 +10086,69 @@ packages: |
12265 | 10086 | '@intlify/core-base': 9.1.9 |
12266 | 10087 | '@intlify/shared': 9.1.9 |
12267 | 10088 | '@intlify/vue-devtools': 9.1.9 |
12268 | - '@vue/devtools-api': 6.0.0-beta.20.1 | |
12269 | - vue: 3.2.26 | |
10089 | + '@vue/devtools-api': 6.1.3 | |
10090 | + vue: 3.2.31 | |
12270 | 10091 | dev: false |
12271 | 10092 | |
12272 | - /vue-json-pretty/1.8.2: | |
12273 | - resolution: {integrity: sha512-8DbgvyXpBrhDdBzz8RTe+POZ+HI6nSa33DqsPMWhMkv0u0ATklgxErUM3XRRvTzOQ/02Sh1LNWJ/rkqTow2rbA==} | |
10093 | + /vue-json-pretty/2.0.6_vue@3.2.31: | |
10094 | + resolution: {integrity: sha512-aVdxw8ZRGR/Uj8GEaJ1/W2Ks/MdCfv5t2HRbbd+ICp3nL7msKRLN+1qOkSzaMvDygbDPxGhwUHBxZz8nxP+r3A==} | |
12274 | 10095 | engines: {node: '>= 10.0.0', npm: '>= 5.0.0'} |
10096 | + peerDependencies: | |
10097 | + vue: '>=3.0.0' | |
10098 | + dependencies: | |
10099 | + vue: 3.2.31 | |
12275 | 10100 | dev: false |
12276 | 10101 | |
12277 | - /vue-router/4.0.12_vue@3.2.26: | |
12278 | - resolution: {integrity: sha512-CPXvfqe+mZLB1kBWssssTiWg4EQERyqJZes7USiqfW9B5N2x+nHlnsM1D3b5CaJ6qgCvMmYJnz+G0iWjNCvXrg==} | |
10102 | + /vue-router/4.0.14_vue@3.2.31: | |
10103 | + resolution: {integrity: sha512-wAO6zF9zxA3u+7AkMPqw9LjoUCjSxfFvINQj3E/DceTt6uEz1XZLraDhdg2EYmvVwTBSGlLYsUw8bDmx0754Mw==} | |
12279 | 10104 | peerDependencies: |
12280 | - vue: ^3.0.0 | |
10105 | + vue: ^3.2.0 | |
12281 | 10106 | dependencies: |
12282 | - '@vue/devtools-api': 6.0.0-beta.20.1 | |
12283 | - vue: 3.2.26 | |
10107 | + '@vue/devtools-api': 6.1.3 | |
10108 | + vue: 3.2.31 | |
12284 | 10109 | dev: false |
12285 | 10110 | |
12286 | - /vue-tsc/0.30.1_typescript@4.5.4: | |
12287 | - resolution: {integrity: sha512-AVBPWF70LvuzAt6phaF3U8pg1WmjmZQBfZvkX4Ve9EHTPh4R2JiJnSjf3MQgnx03qF5w0PGkBJ90l12aaLZeKQ==} | |
10111 | + /vue-tsc/0.33.2_typescript@4.6.2: | |
10112 | + resolution: {integrity: sha512-MjTCMNCRVo6rVL+fM6W2LYTyQzMZImFKyPC4iIC2IuG6f9E9PNiJEGv7uZj58kAgyXWQBWynfAKRxtICPshUNQ==} | |
12288 | 10113 | hasBin: true |
12289 | 10114 | peerDependencies: |
12290 | 10115 | typescript: '*' |
12291 | 10116 | dependencies: |
12292 | - '@volar/shared': 0.30.1 | |
12293 | - typescript: 4.5.4 | |
12294 | - vscode-vue-languageservice: 0.30.1 | |
10117 | + '@volar/shared': 0.33.2 | |
10118 | + '@volar/vue-typescript': 0.33.2 | |
10119 | + typescript: 4.6.2 | |
12295 | 10120 | dev: true |
12296 | 10121 | |
12297 | - /vue-types/3.0.2_vue@3.2.26: | |
10122 | + /vue-types/3.0.2_vue@3.2.31: | |
12298 | 10123 | resolution: {integrity: sha512-IwUC0Aq2zwaXqy74h4WCvFCUtoV0iSWr0snWnE9TnU18S66GAQyqQbRf2qfJtUuiFsBf6qp0MEwdonlwznlcrw==} |
12299 | 10124 | engines: {node: '>=10.15.0'} |
12300 | 10125 | peerDependencies: |
12301 | 10126 | vue: ^3.0.0 |
12302 | 10127 | dependencies: |
12303 | 10128 | is-plain-object: 3.0.1 |
12304 | - vue: 3.2.26 | |
10129 | + vue: 3.2.31 | |
12305 | 10130 | dev: false |
12306 | 10131 | |
12307 | - /vue-types/4.1.1_vue@3.2.26: | |
10132 | + /vue-types/4.1.1_vue@3.2.31: | |
12308 | 10133 | resolution: {integrity: sha512-Jq2GZ/w6rExJbLA/h7nHBFLciu+YNekgox0DB64wN1snZ4IIJMq+qnqp1/vE4fc7vEjZcP5KGhLzkkSjIHLRzw==} |
12309 | 10134 | engines: {node: '>=12.16.0'} |
12310 | 10135 | peerDependencies: |
12311 | 10136 | vue: ^2.0.0 || ^3.0.0 |
12312 | 10137 | dependencies: |
12313 | 10138 | is-plain-object: 5.0.0 |
12314 | - vue: 3.2.26 | |
10139 | + vue: 3.2.31 | |
12315 | 10140 | dev: false |
12316 | 10141 | |
12317 | - /vue/3.2.26: | |
12318 | - resolution: {integrity: sha512-KD4lULmskL5cCsEkfhERVRIOEDrfEL9CwAsLYpzptOGjaGFNWo3BQ9g8MAb7RaIO71rmVOziZ/uEN/rHwcUIhg==} | |
10142 | + /vue/3.2.31: | |
10143 | + resolution: {integrity: sha512-odT3W2tcffTiQCy57nOT93INw1auq5lYLLYtWpPYQQYQOOdHiqFct9Xhna6GJ+pJQaF67yZABraH47oywkJgFw==} | |
12319 | 10144 | dependencies: |
12320 | - '@vue/compiler-dom': 3.2.26 | |
12321 | - '@vue/compiler-sfc': 3.2.26 | |
12322 | - '@vue/runtime-dom': 3.2.26 | |
12323 | - '@vue/server-renderer': 3.2.26_vue@3.2.26 | |
12324 | - '@vue/shared': 3.2.26 | |
10145 | + '@vue/compiler-dom': 3.2.31 | |
10146 | + '@vue/compiler-sfc': 3.2.31 | |
10147 | + '@vue/runtime-dom': 3.2.31 | |
10148 | + '@vue/server-renderer': 3.2.31_vue@3.2.31 | |
10149 | + '@vue/shared': 3.2.31 | |
12325 | 10150 | dev: false |
12326 | 10151 | |
12327 | - /w3c-hr-time/1.0.2: | |
12328 | - resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} | |
12329 | - dependencies: | |
12330 | - browser-process-hrtime: 1.0.0 | |
12331 | - dev: true | |
12332 | - | |
12333 | - /w3c-xmlserializer/2.0.0: | |
12334 | - resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==} | |
12335 | - engines: {node: '>=10'} | |
12336 | - dependencies: | |
12337 | - xml-name-validator: 3.0.0 | |
12338 | - dev: true | |
12339 | - | |
12340 | - /walker/1.0.8: | |
12341 | - resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} | |
12342 | - dependencies: | |
12343 | - makeerror: 1.0.12 | |
12344 | - dev: true | |
12345 | - | |
12346 | 10152 | /warning/4.0.3: |
12347 | 10153 | resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==} |
12348 | 10154 | dependencies: |
... | ... | @@ -12355,29 +10161,18 @@ packages: |
12355 | 10161 | defaults: 1.0.3 |
12356 | 10162 | dev: true |
12357 | 10163 | |
10164 | + /webidl-conversions/3.0.1: | |
10165 | + resolution: {integrity: sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=} | |
10166 | + | |
12358 | 10167 | /webidl-conversions/4.0.2: |
12359 | 10168 | resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} |
12360 | 10169 | dev: true |
12361 | 10170 | |
12362 | - /webidl-conversions/5.0.0: | |
12363 | - resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} | |
12364 | - engines: {node: '>=8'} | |
12365 | - dev: true | |
12366 | - | |
12367 | - /webidl-conversions/6.1.0: | |
12368 | - resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} | |
12369 | - engines: {node: '>=10.4'} | |
12370 | - dev: true | |
12371 | - | |
12372 | - /whatwg-encoding/1.0.5: | |
12373 | - resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} | |
10171 | + /whatwg-url/5.0.0: | |
10172 | + resolution: {integrity: sha1-lmRU6HZUYuN2RNNib2dCzotwll0=} | |
12374 | 10173 | dependencies: |
12375 | - iconv-lite: 0.4.24 | |
12376 | - dev: true | |
12377 | - | |
12378 | - /whatwg-mimetype/2.3.0: | |
12379 | - resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} | |
12380 | - dev: true | |
10174 | + tr46: 0.0.3 | |
10175 | + webidl-conversions: 3.0.1 | |
12381 | 10176 | |
12382 | 10177 | /whatwg-url/7.1.0: |
12383 | 10178 | resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} |
... | ... | @@ -12387,15 +10182,6 @@ packages: |
12387 | 10182 | webidl-conversions: 4.0.2 |
12388 | 10183 | dev: true |
12389 | 10184 | |
12390 | - /whatwg-url/8.7.0: | |
12391 | - resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} | |
12392 | - engines: {node: '>=10'} | |
12393 | - dependencies: | |
12394 | - lodash: 4.17.21 | |
12395 | - tr46: 2.1.0 | |
12396 | - webidl-conversions: 6.1.0 | |
12397 | - dev: true | |
12398 | - | |
12399 | 10185 | /which-boxed-primitive/1.0.2: |
12400 | 10186 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} |
12401 | 10187 | dependencies: |
... | ... | @@ -12425,22 +10211,12 @@ packages: |
12425 | 10211 | isexe: 2.0.0 |
12426 | 10212 | dev: true |
12427 | 10213 | |
12428 | - /windicss/3.4.1: | |
12429 | - resolution: {integrity: sha512-g6mX0q8divtPT+TSWqvI35lc77pOhGwMrwCdcX48dFA16wUlSDn1kOv5z1msZy3SlWLx3Bjbe7FA6uNTvdVH8A==} | |
10214 | + /windicss/3.5.1: | |
10215 | + resolution: {integrity: sha512-E1hYZATcZFci/XhGS0sJAMRxULjnK+glNukE78Ku7xeb3jxgMY55fFOdIrav+GjQCsgR+IZxPq9/DwmO6eyc4Q==} | |
12430 | 10216 | engines: {node: '>= 12'} |
12431 | 10217 | hasBin: true |
12432 | 10218 | dev: true |
12433 | 10219 | |
12434 | - /with/7.0.2: | |
12435 | - resolution: {integrity: sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==} | |
12436 | - engines: {node: '>= 10.0.0'} | |
12437 | - dependencies: | |
12438 | - '@babel/parser': 7.16.6 | |
12439 | - '@babel/types': 7.16.0 | |
12440 | - assert-never: 1.2.1 | |
12441 | - babel-walk: 3.0.0-canary-5 | |
12442 | - dev: true | |
12443 | - | |
12444 | 10220 | /wmf/1.0.2: |
12445 | 10221 | resolution: {integrity: sha512-/p9K7bEh0Dj6WbXg4JG0xvLQmIadrner1bi45VMJTfnbVHsc7yIajZyoSoK60/dtVBs12Fm6WkUI5/3WAVsNMw==} |
12446 | 10222 | engines: {node: '>=0.8'} |
... | ... | @@ -12460,163 +10236,152 @@ packages: |
12460 | 10236 | resolution: {integrity: sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=} |
12461 | 10237 | dev: true |
12462 | 10238 | |
12463 | - /workbox-background-sync/6.4.2: | |
12464 | - resolution: {integrity: sha512-P7c8uG5X2k+DMICH9xeSA9eUlCOjHHYoB42Rq+RtUpuwBxUOflAXR1zdsMWj81LopE4gjKXlTw7BFd1BDAHo7g==} | |
10239 | + /workbox-background-sync/6.5.1: | |
10240 | + resolution: {integrity: sha512-T5a35fagLXQvV8Dr4+bDU+XYsP90jJ3eBLjZMKuCNELMQZNj+VekCODz1QK44jgoBeQk+vp94pkZV6G+e41pgg==} | |
12465 | 10241 | dependencies: |
12466 | 10242 | idb: 6.1.5 |
12467 | - workbox-core: 6.4.2 | |
10243 | + workbox-core: 6.5.1 | |
12468 | 10244 | dev: true |
12469 | 10245 | |
12470 | - /workbox-broadcast-update/6.4.2: | |
12471 | - resolution: {integrity: sha512-qnBwQyE0+PWFFc/n4ISXINE49m44gbEreJUYt2ldGH3+CNrLmJ1egJOOyUqqu9R4Eb7QrXcmB34ClXG7S37LbA==} | |
10246 | + /workbox-broadcast-update/6.5.1: | |
10247 | + resolution: {integrity: sha512-mb/oyblyEpDbw167cCTyHnC3RqCnCQHtFYuYZd+QTpuExxM60qZuBH1AuQCgvLtDcztBKdEYK2VFD9SZYgRbaQ==} | |
12472 | 10248 | dependencies: |
12473 | - workbox-core: 6.4.2 | |
10249 | + workbox-core: 6.5.1 | |
12474 | 10250 | dev: true |
12475 | 10251 | |
12476 | - /workbox-build/6.4.2: | |
12477 | - resolution: {integrity: sha512-WMdYLhDIsuzViOTXDH+tJ1GijkFp5khSYolnxR/11zmfhNDtuo7jof72xPGFy+KRpsz6tug39RhivCj77qqO0w==} | |
10252 | + /workbox-build/6.5.1: | |
10253 | + resolution: {integrity: sha512-coDUDzHvFZ1ADOl3wKCsCSyOBvkPKlPgcQDb6LMMShN1zgF31Mev/1HzN3+9T2cjjWAgFwZKkuRyExqc1v21Zw==} | |
12478 | 10254 | engines: {node: '>=10.0.0'} |
12479 | 10255 | dependencies: |
12480 | - '@apideck/better-ajv-errors': 0.3.1_ajv@8.8.2 | |
12481 | - '@babel/core': 7.16.0 | |
12482 | - '@babel/preset-env': 7.16.4_@babel+core@7.16.0 | |
12483 | - '@babel/runtime': 7.16.3 | |
12484 | - '@rollup/plugin-babel': 5.3.0_@babel+core@7.16.0+rollup@2.60.1 | |
12485 | - '@rollup/plugin-node-resolve': 11.2.1_rollup@2.60.1 | |
12486 | - '@rollup/plugin-replace': 2.4.2_rollup@2.60.1 | |
10256 | + '@apideck/better-ajv-errors': 0.3.3_ajv@8.10.0 | |
10257 | + '@babel/core': 7.17.7 | |
10258 | + '@babel/preset-env': 7.16.11_@babel+core@7.17.7 | |
10259 | + '@babel/runtime': 7.17.7 | |
10260 | + '@rollup/plugin-babel': 5.3.1_@babel+core@7.17.7+rollup@2.70.1 | |
10261 | + '@rollup/plugin-node-resolve': 11.2.1_rollup@2.70.1 | |
10262 | + '@rollup/plugin-replace': 2.4.2_rollup@2.70.1 | |
12487 | 10263 | '@surma/rollup-plugin-off-main-thread': 2.2.3 |
12488 | - ajv: 8.8.2 | |
10264 | + ajv: 8.10.0 | |
12489 | 10265 | common-tags: 1.8.2 |
12490 | 10266 | fast-json-stable-stringify: 2.1.0 |
12491 | 10267 | fs-extra: 9.1.0 |
12492 | 10268 | glob: 7.2.0 |
12493 | 10269 | lodash: 4.17.21 |
12494 | 10270 | pretty-bytes: 5.6.0 |
12495 | - rollup: 2.60.1 | |
12496 | - rollup-plugin-terser: 7.0.2_rollup@2.60.1 | |
10271 | + rollup: 2.70.1 | |
10272 | + rollup-plugin-terser: 7.0.2_rollup@2.70.1 | |
12497 | 10273 | source-map: 0.8.0-beta.0 |
12498 | - source-map-url: 0.4.1 | |
12499 | 10274 | stringify-object: 3.3.0 |
12500 | 10275 | strip-comments: 2.0.1 |
12501 | 10276 | tempy: 0.6.0 |
12502 | 10277 | upath: 1.2.0 |
12503 | - workbox-background-sync: 6.4.2 | |
12504 | - workbox-broadcast-update: 6.4.2 | |
12505 | - workbox-cacheable-response: 6.4.2 | |
12506 | - workbox-core: 6.4.2 | |
12507 | - workbox-expiration: 6.4.2 | |
12508 | - workbox-google-analytics: 6.4.2 | |
12509 | - workbox-navigation-preload: 6.4.2 | |
12510 | - workbox-precaching: 6.4.2 | |
12511 | - workbox-range-requests: 6.4.2 | |
12512 | - workbox-recipes: 6.4.2 | |
12513 | - workbox-routing: 6.4.2 | |
12514 | - workbox-strategies: 6.4.2 | |
12515 | - workbox-streams: 6.4.2 | |
12516 | - workbox-sw: 6.4.2 | |
12517 | - workbox-window: 6.4.2 | |
10278 | + workbox-background-sync: 6.5.1 | |
10279 | + workbox-broadcast-update: 6.5.1 | |
10280 | + workbox-cacheable-response: 6.5.1 | |
10281 | + workbox-core: 6.5.1 | |
10282 | + workbox-expiration: 6.5.1 | |
10283 | + workbox-google-analytics: 6.5.1 | |
10284 | + workbox-navigation-preload: 6.5.1 | |
10285 | + workbox-precaching: 6.5.1 | |
10286 | + workbox-range-requests: 6.5.1 | |
10287 | + workbox-recipes: 6.5.1 | |
10288 | + workbox-routing: 6.5.1 | |
10289 | + workbox-strategies: 6.5.1 | |
10290 | + workbox-streams: 6.5.1 | |
10291 | + workbox-sw: 6.5.1 | |
10292 | + workbox-window: 6.5.1 | |
12518 | 10293 | transitivePeerDependencies: |
12519 | 10294 | - '@types/babel__core' |
12520 | - - acorn | |
12521 | 10295 | - supports-color |
12522 | 10296 | dev: true |
12523 | 10297 | |
12524 | - /workbox-cacheable-response/6.4.2: | |
12525 | - resolution: {integrity: sha512-9FE1W/cKffk1AJzImxgEN0ceWpyz1tqNjZVtA3/LAvYL3AC5SbIkhc7ZCO82WmO9IjTfu8Vut2X/C7ViMSF7TA==} | |
10298 | + /workbox-cacheable-response/6.5.1: | |
10299 | + resolution: {integrity: sha512-3TdtH/luDiytmM+Cn72HCBLZXmbeRNJqZx2yaVOfUZhj0IVwZqQXhNarlGE9/k6U5Jelb+TtpH2mLVhnzfiSMg==} | |
12526 | 10300 | dependencies: |
12527 | - workbox-core: 6.4.2 | |
10301 | + workbox-core: 6.5.1 | |
12528 | 10302 | dev: true |
12529 | 10303 | |
12530 | - /workbox-core/6.4.2: | |
12531 | - resolution: {integrity: sha512-1U6cdEYPcajRXiboSlpJx6U7TvhIKbxRRerfepAJu2hniKwJ3DHILjpU/zx3yvzSBCWcNJDoFalf7Vgd7ey/rw==} | |
10304 | + /workbox-core/6.5.1: | |
10305 | + resolution: {integrity: sha512-qObXZ39aFJ2N8X7IUbGrJHKWguliCuU1jOXM/I4MTT84u9BiKD2rHMkIzgeRP1Ixu9+cXU4/XHJq3Cy0Qqc5hw==} | |
12532 | 10306 | dev: true |
12533 | 10307 | |
12534 | - /workbox-expiration/6.4.2: | |
12535 | - resolution: {integrity: sha512-0hbpBj0tDnW+DZOUmwZqntB/8xrXOgO34i7s00Si/VlFJvvpRKg1leXdHHU8ykoSBd6+F2KDcMP3swoCi5guLw==} | |
10308 | + /workbox-expiration/6.5.1: | |
10309 | + resolution: {integrity: sha512-iY/cTADAQATMmPkUBRmQdacqq0TJd2wMHimBQz+tRnPGHSMH+/BoLPABPnu7O7rT/g/s59CUYYRGxe3mEgoJCA==} | |
12536 | 10310 | dependencies: |
12537 | 10311 | idb: 6.1.5 |
12538 | - workbox-core: 6.4.2 | |
10312 | + workbox-core: 6.5.1 | |
12539 | 10313 | dev: true |
12540 | 10314 | |
12541 | - /workbox-google-analytics/6.4.2: | |
12542 | - resolution: {integrity: sha512-u+gxs3jXovPb1oul4CTBOb+T9fS1oZG+ZE6AzS7l40vnyfJV79DaLBvlpEZfXGv3CjMdV1sT/ltdOrKzo7HcGw==} | |
10315 | + /workbox-google-analytics/6.5.1: | |
10316 | + resolution: {integrity: sha512-qZU46/h4dbionYT6Yk6iBkUwpiEzAfnO1W7KkI+AMmY7G9/gA03dQQ7rpTw8F4vWrG7ahTUGWDFv6fERtaw1BQ==} | |
12543 | 10317 | dependencies: |
12544 | - workbox-background-sync: 6.4.2 | |
12545 | - workbox-core: 6.4.2 | |
12546 | - workbox-routing: 6.4.2 | |
12547 | - workbox-strategies: 6.4.2 | |
10318 | + workbox-background-sync: 6.5.1 | |
10319 | + workbox-core: 6.5.1 | |
10320 | + workbox-routing: 6.5.1 | |
10321 | + workbox-strategies: 6.5.1 | |
12548 | 10322 | dev: true |
12549 | 10323 | |
12550 | - /workbox-navigation-preload/6.4.2: | |
12551 | - resolution: {integrity: sha512-viyejlCtlKsbJCBHwhSBbWc57MwPXvUrc8P7d+87AxBGPU+JuWkT6nvBANgVgFz6FUhCvRC8aYt+B1helo166g==} | |
10324 | + /workbox-navigation-preload/6.5.1: | |
10325 | + resolution: {integrity: sha512-aKrgAbn2IMgzTowTi/ZyKdQUcES2m++9aGtpxqsX7Gn9ovCY8zcssaMEAMMwrIeveij5HiWNBrmj6MWDHi+0rg==} | |
12552 | 10326 | dependencies: |
12553 | - workbox-core: 6.4.2 | |
10327 | + workbox-core: 6.5.1 | |
12554 | 10328 | dev: true |
12555 | 10329 | |
12556 | - /workbox-precaching/6.4.2: | |
12557 | - resolution: {integrity: sha512-CZ6uwFN/2wb4noHVlALL7UqPFbLfez/9S2GAzGAb0Sk876ul9ukRKPJJ6gtsxfE2HSTwqwuyNVa6xWyeyJ1XSA==} | |
10330 | + /workbox-precaching/6.5.1: | |
10331 | + resolution: {integrity: sha512-EzlPBxvmjGfE56YZzsT/vpVkpLG1XJhoplgXa5RPyVWLUL1LbwEAxhkrENElSS/R9tgiTw80IFwysidfUqLihg==} | |
12558 | 10332 | dependencies: |
12559 | - workbox-core: 6.4.2 | |
12560 | - workbox-routing: 6.4.2 | |
12561 | - workbox-strategies: 6.4.2 | |
10333 | + workbox-core: 6.5.1 | |
10334 | + workbox-routing: 6.5.1 | |
10335 | + workbox-strategies: 6.5.1 | |
12562 | 10336 | dev: true |
12563 | 10337 | |
12564 | - /workbox-range-requests/6.4.2: | |
12565 | - resolution: {integrity: sha512-SowF3z69hr3Po/w7+xarWfzxJX/3Fo0uSG72Zg4g5FWWnHpq2zPvgbWerBZIa81zpJVUdYpMa3akJJsv+LaO1Q==} | |
10338 | + /workbox-range-requests/6.5.1: | |
10339 | + resolution: {integrity: sha512-57Da/qRbd9v33YlHX0rlSUVFmE4THCjKqwkmfhY3tNLnSKN2L5YBS3qhWeDO0IrMNgUj+rGve2moKYXeUqQt4A==} | |
12566 | 10340 | dependencies: |
12567 | - workbox-core: 6.4.2 | |
10341 | + workbox-core: 6.5.1 | |
12568 | 10342 | dev: true |
12569 | 10343 | |
12570 | - /workbox-recipes/6.4.2: | |
12571 | - resolution: {integrity: sha512-/oVxlZFpAjFVbY+3PoGEXe8qyvtmqMrTdWhbOfbwokNFtUZ/JCtanDKgwDv9x3AebqGAoJRvQNSru0F4nG+gWA==} | |
10344 | + /workbox-recipes/6.5.1: | |
10345 | + resolution: {integrity: sha512-DGsyKygHggcGPQpWafC/Nmbm1Ny3sB2vE9r//3UbeidXiQ+pLF14KEG1/0NNGRaY+lfOXOagq6d1H7SC8KA+rA==} | |
12572 | 10346 | dependencies: |
12573 | - workbox-cacheable-response: 6.4.2 | |
12574 | - workbox-core: 6.4.2 | |
12575 | - workbox-expiration: 6.4.2 | |
12576 | - workbox-precaching: 6.4.2 | |
12577 | - workbox-routing: 6.4.2 | |
12578 | - workbox-strategies: 6.4.2 | |
10347 | + workbox-cacheable-response: 6.5.1 | |
10348 | + workbox-core: 6.5.1 | |
10349 | + workbox-expiration: 6.5.1 | |
10350 | + workbox-precaching: 6.5.1 | |
10351 | + workbox-routing: 6.5.1 | |
10352 | + workbox-strategies: 6.5.1 | |
12579 | 10353 | dev: true |
12580 | 10354 | |
12581 | - /workbox-routing/6.4.2: | |
12582 | - resolution: {integrity: sha512-0ss/n9PAcHjTy4Ad7l2puuod4WtsnRYu9BrmHcu6Dk4PgWeJo1t5VnGufPxNtcuyPGQ3OdnMdlmhMJ57sSrrSw==} | |
10355 | + /workbox-routing/6.5.1: | |
10356 | + resolution: {integrity: sha512-yAAncdTwanvlR8KPjubyvFKeAok8ZcIws6UKxvIAg0I+wsf7UYi93DXNuZr6RBSQrByrN6HkCyjuhmk8P63+PA==} | |
12583 | 10357 | dependencies: |
12584 | - workbox-core: 6.4.2 | |
10358 | + workbox-core: 6.5.1 | |
12585 | 10359 | dev: true |
12586 | 10360 | |
12587 | - /workbox-strategies/6.4.2: | |
12588 | - resolution: {integrity: sha512-YXh9E9dZGEO1EiPC3jPe2CbztO5WT8Ruj8wiYZM56XqEJp5YlGTtqRjghV+JovWOqkWdR+amJpV31KPWQUvn1Q==} | |
10361 | + /workbox-strategies/6.5.1: | |
10362 | + resolution: {integrity: sha512-JNaTXPy8wXzKkr+6za7/eJX9opoZk7UgY261I2kPxl80XQD8lMjz0vo9EOcBwvD72v3ZhGJbW84ZaDwFEhFvWA==} | |
12589 | 10363 | dependencies: |
12590 | - workbox-core: 6.4.2 | |
10364 | + workbox-core: 6.5.1 | |
12591 | 10365 | dev: true |
12592 | 10366 | |
12593 | - /workbox-streams/6.4.2: | |
12594 | - resolution: {integrity: sha512-ROEGlZHGVEgpa5bOZefiJEVsi5PsFjJG9Xd+wnDbApsCO9xq9rYFopF+IRq9tChyYzhBnyk2hJxbQVWphz3sog==} | |
10367 | + /workbox-streams/6.5.1: | |
10368 | + resolution: {integrity: sha512-7jaTWm6HRGJ/ewECnhb+UgjTT50R42E0/uNCC4eTKQwnLO/NzNGjoXTdQgFjo4zteR+L/K6AtFAiYKH3ZJbAYw==} | |
12595 | 10369 | dependencies: |
12596 | - workbox-core: 6.4.2 | |
12597 | - workbox-routing: 6.4.2 | |
10370 | + workbox-core: 6.5.1 | |
10371 | + workbox-routing: 6.5.1 | |
12598 | 10372 | dev: true |
12599 | 10373 | |
12600 | - /workbox-sw/6.4.2: | |
12601 | - resolution: {integrity: sha512-A2qdu9TLktfIM5NE/8+yYwfWu+JgDaCkbo5ikrky2c7r9v2X6DcJ+zSLphNHHLwM/0eVk5XVf1mC5HGhYpMhhg==} | |
10374 | + /workbox-sw/6.5.1: | |
10375 | + resolution: {integrity: sha512-hVrQa19yo9wzN1fQQ/h2JlkzFpkuH2qzYT2/rk7CLaWt6tLnTJVFCNHlGRRPhytZSf++LoIy7zThT714sowT/Q==} | |
12602 | 10376 | dev: true |
12603 | 10377 | |
12604 | - /workbox-window/6.4.2: | |
12605 | - resolution: {integrity: sha512-KVyRKmrJg7iB+uym/B/CnEUEFG9CvnTU1Bq5xpXHbtgD9l+ShDekSl1wYpqw/O0JfeeQVOFb8CiNfvnwWwqnWQ==} | |
10378 | + /workbox-window/6.5.1: | |
10379 | + resolution: {integrity: sha512-oRlun9u7b7YEjo2fIDBqJkU2hXtrEljXcOytRhfeQRbqXxjUOpFgXSGRSAkmDx1MlKUNOSbr+zfi8h5n7In3yA==} | |
12606 | 10380 | dependencies: |
12607 | 10381 | '@types/trusted-types': 2.0.2 |
12608 | - workbox-core: 6.4.2 | |
10382 | + workbox-core: 6.5.1 | |
12609 | 10383 | dev: true |
12610 | 10384 | |
12611 | - /wrap-ansi/5.1.0: | |
12612 | - resolution: {integrity: sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==} | |
12613 | - engines: {node: '>=6'} | |
12614 | - dependencies: | |
12615 | - ansi-styles: 3.2.1 | |
12616 | - string-width: 3.1.0 | |
12617 | - strip-ansi: 5.2.0 | |
12618 | - dev: false | |
12619 | - | |
12620 | 10385 | /wrap-ansi/6.2.0: |
12621 | 10386 | resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} |
12622 | 10387 | engines: {node: '>=8'} |
... | ... | @@ -12638,50 +10403,28 @@ packages: |
12638 | 10403 | resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=} |
12639 | 10404 | dev: true |
12640 | 10405 | |
12641 | - /write-file-atomic/3.0.3: | |
12642 | - resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} | |
10406 | + /write-file-atomic/4.0.1: | |
10407 | + resolution: {integrity: sha512-nSKUxgAbyioruk6hU87QzVbY279oYT6uiwgDoujth2ju4mJ+TZau7SQBhtbTmUyuNYTuXnSyRn66FV0+eCgcrQ==} | |
10408 | + engines: {node: ^12.13.0 || ^14.15.0 || >=16} | |
12643 | 10409 | dependencies: |
12644 | 10410 | imurmurhash: 0.1.4 |
12645 | - is-typedarray: 1.0.0 | |
12646 | - signal-exit: 3.0.6 | |
12647 | - typedarray-to-buffer: 3.1.5 | |
12648 | - dev: true | |
12649 | - | |
12650 | - /ws/7.5.6: | |
12651 | - resolution: {integrity: sha512-6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA==} | |
12652 | - engines: {node: '>=8.3.0'} | |
12653 | - peerDependencies: | |
12654 | - bufferutil: ^4.0.1 | |
12655 | - utf-8-validate: ^5.0.2 | |
12656 | - peerDependenciesMeta: | |
12657 | - bufferutil: | |
12658 | - optional: true | |
12659 | - utf-8-validate: | |
12660 | - optional: true | |
10411 | + signal-exit: 3.0.7 | |
12661 | 10412 | dev: true |
12662 | 10413 | |
12663 | - /xlsx/0.17.4: | |
12664 | - resolution: {integrity: sha512-9aKt8g9ZLP0CUdBX8L5xnoMDFwSiLI997eQnDThCaqQMYB9AEBIRzblSSNN/ICMGLYIHUO3VKaItcedZJ3ijIg==} | |
10414 | + /xlsx/0.18.4: | |
10415 | + resolution: {integrity: sha512-u2plLVR/Ju2NxByPcWuxW3eOHEE/EH8w0vDyvHx8pFa8qO3fpq+l/57msr/Eq4cY5LErFOFD4sp4jIyPd6nFzQ==} | |
12665 | 10416 | engines: {node: '>=0.8'} |
12666 | 10417 | hasBin: true |
12667 | 10418 | dependencies: |
12668 | - adler-32: 1.2.0 | |
10419 | + adler-32: 1.3.0 | |
12669 | 10420 | cfb: 1.2.1 |
12670 | 10421 | codepage: 1.15.0 |
12671 | - crc-32: 1.2.0 | |
10422 | + crc-32: 1.2.1 | |
12672 | 10423 | ssf: 0.11.2 |
12673 | 10424 | wmf: 1.0.2 |
12674 | 10425 | word: 0.3.0 |
12675 | 10426 | dev: false |
12676 | 10427 | |
12677 | - /xml-name-validator/3.0.0: | |
12678 | - resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} | |
12679 | - dev: true | |
12680 | - | |
12681 | - /xmlchars/2.2.0: | |
12682 | - resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} | |
12683 | - dev: true | |
12684 | - | |
12685 | 10428 | /xtend/4.0.2: |
12686 | 10429 | resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} |
12687 | 10430 | engines: {node: '>=0.4'} |
... | ... | @@ -12709,13 +10452,6 @@ packages: |
12709 | 10452 | engines: {node: '>= 6'} |
12710 | 10453 | dev: true |
12711 | 10454 | |
12712 | - /yargs-parser/15.0.3: | |
12713 | - resolution: {integrity: sha512-/MVEVjTXy/cGAjdtQf8dW3V9b97bPN7rNn8ETj6BmAQL7ibC7O1Q9SPJbGjgh3SlwoBNXMzj/ZGIj8mBgl12YA==} | |
12714 | - dependencies: | |
12715 | - camelcase: 5.3.1 | |
12716 | - decamelize: 1.2.0 | |
12717 | - dev: false | |
12718 | - | |
12719 | 10455 | /yargs-parser/18.1.3: |
12720 | 10456 | resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} |
12721 | 10457 | engines: {node: '>=6'} |
... | ... | @@ -12729,21 +10465,10 @@ packages: |
12729 | 10465 | engines: {node: '>=10'} |
12730 | 10466 | dev: true |
12731 | 10467 | |
12732 | - /yargs/14.2.3: | |
12733 | - resolution: {integrity: sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg==} | |
12734 | - dependencies: | |
12735 | - cliui: 5.0.0 | |
12736 | - decamelize: 1.2.0 | |
12737 | - find-up: 3.0.0 | |
12738 | - get-caller-file: 2.0.5 | |
12739 | - require-directory: 2.1.1 | |
12740 | - require-main-filename: 2.0.0 | |
12741 | - set-blocking: 2.0.0 | |
12742 | - string-width: 3.1.0 | |
12743 | - which-module: 2.0.0 | |
12744 | - y18n: 4.0.3 | |
12745 | - yargs-parser: 15.0.3 | |
12746 | - dev: false | |
10468 | + /yargs-parser/21.0.1: | |
10469 | + resolution: {integrity: sha512-9BK1jFpLzJROCI5TzwZL/TU4gqjK5xiHV/RfWLOahrjAko/e4DJkRDZQXfvqAsiZzzYhgAzbgz6lg48jcm4GLg==} | |
10470 | + engines: {node: '>=12'} | |
10471 | + dev: true | |
12747 | 10472 | |
12748 | 10473 | /yargs/15.4.1: |
12749 | 10474 | resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} |
... | ... | @@ -12775,8 +10500,8 @@ packages: |
12775 | 10500 | yargs-parser: 20.2.9 |
12776 | 10501 | dev: true |
12777 | 10502 | |
12778 | - /yargs/17.2.1: | |
12779 | - resolution: {integrity: sha512-XfR8du6ua4K6uLGm5S6fA+FIJom/MdJcFNVY8geLlp2v8GYbOXD4EB1tPNZsRn4vBzKGMgb5DRZMeWuFc2GO8Q==} | |
10503 | + /yargs/17.3.1: | |
10504 | + resolution: {integrity: sha512-WUANQeVgjLbNsEmGk20f+nlHgOqzRFpiGWVaBrYGYIGANIIu3lWjoyi0fNlFmJkvfhCZ6BXINe7/W2O2bV4iaA==} | |
12780 | 10505 | engines: {node: '>=12'} |
12781 | 10506 | dependencies: |
12782 | 10507 | cliui: 7.0.4 |
... | ... | @@ -12785,7 +10510,7 @@ packages: |
12785 | 10510 | require-directory: 2.1.1 |
12786 | 10511 | string-width: 4.2.3 |
12787 | 10512 | y18n: 5.0.8 |
12788 | - yargs-parser: 20.2.9 | |
10513 | + yargs-parser: 21.0.1 | |
12789 | 10514 | dev: true |
12790 | 10515 | |
12791 | 10516 | /yauzl/2.10.0: |
... | ... | @@ -12805,8 +10530,8 @@ packages: |
12805 | 10530 | engines: {node: '>=10'} |
12806 | 10531 | dev: true |
12807 | 10532 | |
12808 | - /zrender/5.2.1: | |
12809 | - resolution: {integrity: sha512-M3bPGZuyLTNBC6LiNKXJwSCtglMp8XUEqEBG+2MdICDI3d1s500Y4P0CzldQGsqpRVB7fkvf3BKQQRxsEaTlsw==} | |
10533 | + /zrender/5.3.1: | |
10534 | + resolution: {integrity: sha512-7olqIjy0gWfznKr6vgfnGBk7y4UtdMvdwFmK92vVQsQeDPyzkHW1OlrLEKg6GHz1W5ePf0FeN1q2vkl/HFqhXw==} | |
12810 | 10535 | dependencies: |
12811 | 10536 | tslib: 2.3.0 |
12812 | 10537 | dev: false | ... | ... |
src/api/sys/user.ts
... | ... | @@ -8,6 +8,7 @@ enum Api { |
8 | 8 | Logout = '/logout', |
9 | 9 | GetUserInfo = '/getUserInfo', |
10 | 10 | GetPermCode = '/getPermCode', |
11 | + TestRetry = '/testRetry', | |
11 | 12 | } |
12 | 13 | |
13 | 14 | /** |
... | ... | @@ -39,3 +40,16 @@ export function getPermCode() { |
39 | 40 | export function doLogout() { |
40 | 41 | return defHttp.get({ url: Api.Logout }); |
41 | 42 | } |
43 | + | |
44 | +export function testRetry() { | |
45 | + return defHttp.get( | |
46 | + { url: Api.TestRetry }, | |
47 | + { | |
48 | + retryRequest: { | |
49 | + isOpenRetry: true, | |
50 | + count: 5, | |
51 | + waitTime: 1000, | |
52 | + }, | |
53 | + }, | |
54 | + ); | |
55 | +} | ... | ... |
src/components/Application/src/AppLocalePicker.vue
... | ... | @@ -4,11 +4,11 @@ |
4 | 4 | --> |
5 | 5 | <template> |
6 | 6 | <Dropdown |
7 | - placement="bottomCenter" | |
7 | + placement="bottom" | |
8 | 8 | :trigger="['click']" |
9 | 9 | :dropMenuList="localeList" |
10 | 10 | :selectedKeys="selectedKeys" |
11 | - @menuEvent="handleMenuEvent" | |
11 | + @menu-event="handleMenuEvent" | |
12 | 12 | overlayClassName="app-locale-picker-overlay" |
13 | 13 | > |
14 | 14 | <span class="cursor-pointer flex items-center"> | ... | ... |
src/components/CardList/src/CardList.vue
... | ... | @@ -3,7 +3,6 @@ |
3 | 3 | <div class="p-4 mb-2 bg-white"> |
4 | 4 | <BasicForm @register="registerForm" /> |
5 | 5 | </div> |
6 | - {{ sliderProp.width }} | |
7 | 6 | <div class="p-2 bg-white"> |
8 | 7 | <List |
9 | 8 | :grid="{ gutter: 5, xs: 1, sm: 2, md: 4, lg: 4, xl: 6, xxl: grid }" |
... | ... | @@ -39,7 +38,7 @@ |
39 | 38 | <Image :src="item.imgs[0]" /> |
40 | 39 | </div> |
41 | 40 | </template> |
42 | - <template class="ant-card-actions" #actions> | |
41 | + <template #actions> | |
43 | 42 | <!-- <SettingOutlined key="setting" />--> |
44 | 43 | <EditOutlined key="edit" /> |
45 | 44 | <Dropdown | ... | ... |
src/components/ContextMenu/src/ContextMenu.vue
src/components/Cropper/src/CropperAvatar.vue
src/components/Excel/src/Export2Excel.ts
src/components/Excel/src/ImportExcel.vue
... | ... | @@ -14,7 +14,7 @@ |
14 | 14 | </template> |
15 | 15 | <script lang="ts"> |
16 | 16 | import { defineComponent, ref, unref } from 'vue'; |
17 | - import XLSX from 'xlsx'; | |
17 | + import * as XLSX from 'xlsx'; | |
18 | 18 | import { dateUtil } from '/@/utils/dateUtil'; |
19 | 19 | |
20 | 20 | import type { ExcelData } from './typing'; | ... | ... |
src/components/Form/index.ts
... | ... | @@ -9,6 +9,7 @@ export { useForm } from './src/hooks/useForm'; |
9 | 9 | export { default as ApiSelect } from './src/components/ApiSelect.vue'; |
10 | 10 | export { default as RadioButtonGroup } from './src/components/RadioButtonGroup.vue'; |
11 | 11 | export { default as ApiTreeSelect } from './src/components/ApiTreeSelect.vue'; |
12 | +export { default as ApiTree } from './src/components/ApiTree.vue'; | |
12 | 13 | export { default as ApiRadioGroup } from './src/components/ApiRadioGroup.vue'; |
13 | 14 | export { default as ApiCascader } from './src/components/ApiCascader.vue'; |
14 | 15 | ... | ... |
src/components/Form/src/componentMap.ts
... | ... | @@ -24,6 +24,7 @@ import { |
24 | 24 | import ApiRadioGroup from './components/ApiRadioGroup.vue'; |
25 | 25 | import RadioButtonGroup from './components/RadioButtonGroup.vue'; |
26 | 26 | import ApiSelect from './components/ApiSelect.vue'; |
27 | +import ApiTree from './components/ApiTree.vue'; | |
27 | 28 | import ApiTreeSelect from './components/ApiTreeSelect.vue'; |
28 | 29 | import ApiCascader from './components/ApiCascader.vue'; |
29 | 30 | import { BasicUpload } from '/@/components/Upload'; |
... | ... | @@ -43,6 +44,7 @@ componentMap.set('AutoComplete', AutoComplete); |
43 | 44 | |
44 | 45 | componentMap.set('Select', Select); |
45 | 46 | componentMap.set('ApiSelect', ApiSelect); |
47 | +componentMap.set('ApiTree', ApiTree); | |
46 | 48 | componentMap.set('TreeSelect', TreeSelect); |
47 | 49 | componentMap.set('ApiTreeSelect', ApiTreeSelect); |
48 | 50 | componentMap.set('ApiRadioGroup', ApiRadioGroup); | ... | ... |
src/components/Form/src/components/ApiCascader.vue
... | ... | @@ -26,7 +26,7 @@ |
26 | 26 | import { get, omit } from 'lodash-es'; |
27 | 27 | import { useRuleFormItem } from '/@/hooks/component/useFormItem'; |
28 | 28 | import { LoadingOutlined } from '@ant-design/icons-vue'; |
29 | - | |
29 | + import { useI18n } from '/@/hooks/web/useI18n'; | |
30 | 30 | interface Option { |
31 | 31 | value: string; |
32 | 32 | label: string; |
... | ... | @@ -76,7 +76,7 @@ |
76 | 76 | const loading = ref<boolean>(false); |
77 | 77 | const emitData = ref<any[]>([]); |
78 | 78 | const isFirstLoad = ref(true); |
79 | - | |
79 | + const { t } = useI18n(); | |
80 | 80 | // Embedded in the form, just use the hook binding to perform form verification |
81 | 81 | const [state] = useRuleFormItem(props, 'value', 'change', emitData); |
82 | 82 | |
... | ... | @@ -188,6 +188,7 @@ |
188 | 188 | state, |
189 | 189 | options, |
190 | 190 | loading, |
191 | + t, | |
191 | 192 | handleChange, |
192 | 193 | loadData, |
193 | 194 | handleRenderDisplay, | ... | ... |
src/components/Form/src/components/ApiTree.vue
0 → 100644
1 | +<template> | |
2 | + <a-tree v-bind="getAttrs" @change="handleChange"> | |
3 | + <template #[item]="data" v-for="item in Object.keys($slots)"> | |
4 | + <slot :name="item" v-bind="data || {}"></slot> | |
5 | + </template> | |
6 | + <template #suffixIcon v-if="loading"> | |
7 | + <LoadingOutlined spin /> | |
8 | + </template> | |
9 | + </a-tree> | |
10 | +</template> | |
11 | + | |
12 | +<script lang="ts"> | |
13 | + import { computed, defineComponent, watch, ref, onMounted, unref } from 'vue'; | |
14 | + import { Tree } from 'ant-design-vue'; | |
15 | + import { isArray, isFunction } from '/@/utils/is'; | |
16 | + import { get } from 'lodash-es'; | |
17 | + import { propTypes } from '/@/utils/propTypes'; | |
18 | + import { LoadingOutlined } from '@ant-design/icons-vue'; | |
19 | + export default defineComponent({ | |
20 | + name: 'ApiTree', | |
21 | + components: { ATree: Tree, LoadingOutlined }, | |
22 | + props: { | |
23 | + api: { type: Function as PropType<(arg?: Recordable) => Promise<Recordable>> }, | |
24 | + params: { type: Object }, | |
25 | + immediate: { type: Boolean, default: true }, | |
26 | + resultField: propTypes.string.def(''), | |
27 | + }, | |
28 | + emits: ['options-change', 'change'], | |
29 | + setup(props, { attrs, emit }) { | |
30 | + const treeData = ref<Recordable[]>([]); | |
31 | + const isFirstLoaded = ref<Boolean>(false); | |
32 | + const loading = ref(false); | |
33 | + const getAttrs = computed(() => { | |
34 | + return { | |
35 | + ...(props.api ? { treeData: unref(treeData) } : {}), | |
36 | + ...attrs, | |
37 | + }; | |
38 | + }); | |
39 | + | |
40 | + function handleChange(...args) { | |
41 | + emit('change', ...args); | |
42 | + } | |
43 | + | |
44 | + watch( | |
45 | + () => props.params, | |
46 | + () => { | |
47 | + !unref(isFirstLoaded) && fetch(); | |
48 | + }, | |
49 | + { deep: true }, | |
50 | + ); | |
51 | + | |
52 | + watch( | |
53 | + () => props.immediate, | |
54 | + (v) => { | |
55 | + v && !isFirstLoaded.value && fetch(); | |
56 | + }, | |
57 | + ); | |
58 | + | |
59 | + onMounted(() => { | |
60 | + props.immediate && fetch(); | |
61 | + }); | |
62 | + | |
63 | + async function fetch() { | |
64 | + const { api } = props; | |
65 | + if (!api || !isFunction(api)) return; | |
66 | + loading.value = true; | |
67 | + treeData.value = []; | |
68 | + let result; | |
69 | + try { | |
70 | + result = await api(props.params); | |
71 | + } catch (e) { | |
72 | + console.error(e); | |
73 | + } | |
74 | + loading.value = false; | |
75 | + if (!result) return; | |
76 | + if (!isArray(result)) { | |
77 | + result = get(result, props.resultField); | |
78 | + } | |
79 | + treeData.value = (result as Recordable[]) || []; | |
80 | + isFirstLoaded.value = true; | |
81 | + emit('options-change', treeData.value); | |
82 | + } | |
83 | + return { getAttrs, loading, handleChange }; | |
84 | + }, | |
85 | + }); | |
86 | +</script> | ... | ... |
src/components/Form/src/hooks/useFormEvents.ts
... | ... | @@ -2,7 +2,7 @@ import type { ComputedRef, Ref } from 'vue'; |
2 | 2 | import type { FormProps, FormSchema, FormActionType } from '../types/form'; |
3 | 3 | import type { NamePath } from 'ant-design-vue/lib/form/interface'; |
4 | 4 | import { unref, toRaw, nextTick } from 'vue'; |
5 | -import { isArray, isFunction, isObject, isString } from '/@/utils/is'; | |
5 | +import { isArray, isFunction, isNullOrUnDef, isObject, isString } from '/@/utils/is'; | |
6 | 6 | import { deepMerge } from '/@/utils'; |
7 | 7 | import { dateItemType, handleInputNumberValue, defaultValueComponents } from '../helper'; |
8 | 8 | import { dateUtil } from '/@/utils/dateUtil'; |
... | ... | @@ -132,11 +132,14 @@ export function useFormEvents({ |
132 | 132 | if (!prefixField || index === -1 || first) { |
133 | 133 | first ? schemaList.unshift(schema) : schemaList.push(schema); |
134 | 134 | schemaRef.value = schemaList; |
135 | + _setDefaultValue(schema); | |
135 | 136 | return; |
136 | 137 | } |
137 | 138 | if (index !== -1) { |
138 | 139 | schemaList.splice(index + 1, 0, schema); |
139 | 140 | } |
141 | + _setDefaultValue(schema); | |
142 | + | |
140 | 143 | schemaRef.value = schemaList; |
141 | 144 | } |
142 | 145 | |
... | ... | @@ -192,9 +195,34 @@ export function useFormEvents({ |
192 | 195 | } |
193 | 196 | }); |
194 | 197 | }); |
198 | + _setDefaultValue(schema); | |
199 | + | |
195 | 200 | schemaRef.value = uniqBy(schema, 'field'); |
196 | 201 | } |
197 | 202 | |
203 | + function _setDefaultValue(data: FormSchema | FormSchema[]) { | |
204 | + let schemas: FormSchema[] = []; | |
205 | + if (isObject(data)) { | |
206 | + schemas.push(data as FormSchema); | |
207 | + } | |
208 | + if (isArray(data)) { | |
209 | + schemas = [...data]; | |
210 | + } | |
211 | + | |
212 | + const obj: Recordable = {}; | |
213 | + schemas.forEach((item) => { | |
214 | + if ( | |
215 | + item.component != 'Divider' && | |
216 | + Reflect.has(item, 'field') && | |
217 | + item.field && | |
218 | + !isNullOrUnDef(item.defaultValue) | |
219 | + ) { | |
220 | + obj[item.field] = item.defaultValue; | |
221 | + } | |
222 | + }); | |
223 | + setFieldsValue(obj); | |
224 | + } | |
225 | + | |
198 | 226 | function getFieldsValue(): Recordable { |
199 | 227 | const formEl = unref(formElRef); |
200 | 228 | if (!formEl) return {}; | ... | ... |
src/components/Form/src/hooks/useFormValues.ts
... | ... | @@ -11,6 +11,43 @@ interface UseFormValuesContext { |
11 | 11 | getProps: ComputedRef<FormProps>; |
12 | 12 | formModel: Recordable; |
13 | 13 | } |
14 | + | |
15 | +/** | |
16 | + * @desription deconstruct array-link key. This method will mutate the target. | |
17 | + */ | |
18 | +function tryDeconstructArray(key: string, value: any, target: Recordable) { | |
19 | + const pattern = /^\[(.+)\]$/; | |
20 | + if (pattern.test(key)) { | |
21 | + const match = key.match(pattern); | |
22 | + if (match && match[1]) { | |
23 | + const keys = match[1].split(','); | |
24 | + value = Array.isArray(value) ? value : [value]; | |
25 | + keys.forEach((k, index) => { | |
26 | + set(target, k.trim(), value[index]); | |
27 | + }); | |
28 | + return true; | |
29 | + } | |
30 | + } | |
31 | +} | |
32 | + | |
33 | +/** | |
34 | + * @desription deconstruct object-link key. This method will mutate the target. | |
35 | + */ | |
36 | +function tryDeconstructObject(key: string, value: any, target: Recordable) { | |
37 | + const pattern = /^\{(.+)\}$/; | |
38 | + if (pattern.test(key)) { | |
39 | + const match = key.match(pattern); | |
40 | + if (match && match[1]) { | |
41 | + const keys = match[1].split(','); | |
42 | + value = isObject(value) ? value : {}; | |
43 | + keys.forEach((k) => { | |
44 | + set(target, k.trim(), value[k.trim()]); | |
45 | + }); | |
46 | + return true; | |
47 | + } | |
48 | + } | |
49 | +} | |
50 | + | |
14 | 51 | export function useFormValues({ |
15 | 52 | defaultValueRef, |
16 | 53 | getSchema, |
... | ... | @@ -41,7 +78,10 @@ export function useFormValues({ |
41 | 78 | if (isString(value)) { |
42 | 79 | value = value.trim(); |
43 | 80 | } |
44 | - set(res, key, value); | |
81 | + if (!tryDeconstructArray(key, value, res) && !tryDeconstructObject(key, value, res)) { | |
82 | + // 没有解构成功的,按原样赋值 | |
83 | + set(res, key, value); | |
84 | + } | |
45 | 85 | } |
46 | 86 | return handleRangeTimeValue(res); |
47 | 87 | } | ... | ... |
src/components/Form/src/types/index.ts
src/components/Icon/src/IconPicker.vue
... | ... | @@ -31,18 +31,7 @@ |
31 | 31 | v-for="icon in getPaginationList" |
32 | 32 | :key="icon" |
33 | 33 | :class="currentSelect === icon ? 'border border-primary' : ''" |
34 | - class=" | |
35 | - p-2 | |
36 | - w-1/8 | |
37 | - cursor-pointer | |
38 | - mr-1 | |
39 | - mt-1 | |
40 | - flex | |
41 | - justify-center | |
42 | - items-center | |
43 | - border border-solid | |
44 | - hover:border-primary | |
45 | - " | |
34 | + class="p-2 w-1/8 cursor-pointer mr-1 mt-1 flex justify-center items-center border border-solid hover:border-primary" | |
46 | 35 | @click="handleClick(icon)" |
47 | 36 | :title="icon" |
48 | 37 | > | ... | ... |
src/components/Markdown/src/MarkdownViewer.vue
src/components/Menu/src/BasicMenu.vue
src/components/SimpleMenu/src/components/SubMenuItem.vue
src/components/SimpleMenu/src/components/menu.less
... | ... | @@ -13,8 +13,8 @@ |
13 | 13 | bottom: 0; |
14 | 14 | display: block; |
15 | 15 | width: 2px; |
16 | - background-color: @primary-color; | |
17 | 16 | content: ''; |
17 | + background-color: @primary-color; | |
18 | 18 | } |
19 | 19 | } |
20 | 20 | |
... | ... | @@ -45,8 +45,8 @@ |
45 | 45 | position: absolute; |
46 | 46 | top: 50%; |
47 | 47 | right: 18px; |
48 | - transform: translateY(-50%) rotate(-90deg); | |
49 | 48 | transition: transform @transition-time @ease-in-out; |
49 | + transform: translateY(-50%) rotate(-90deg); | |
50 | 50 | } |
51 | 51 | } |
52 | 52 | |
... | ... | @@ -128,12 +128,12 @@ |
128 | 128 | position: relative; |
129 | 129 | z-index: 1; |
130 | 130 | display: flex; |
131 | + align-items: center; | |
131 | 132 | font-size: @font-size-base; |
132 | 133 | color: inherit; |
133 | 134 | list-style: none; |
134 | 135 | cursor: pointer; |
135 | 136 | outline: none; |
136 | - align-items: center; | |
137 | 137 | |
138 | 138 | &:hover, |
139 | 139 | &:active { |
... | ... | @@ -178,8 +178,8 @@ |
178 | 178 | &-vertical &-submenu-collapse { |
179 | 179 | .@{submenu-popup-prefix-cls} { |
180 | 180 | display: flex; |
181 | - justify-content: center; | |
182 | 181 | align-items: center; |
182 | + justify-content: center; | |
183 | 183 | } |
184 | 184 | .@{menu-prefix-cls}-submenu-collapsed-show-tit { |
185 | 185 | flex-direction: column; |
... | ... | @@ -244,8 +244,8 @@ |
244 | 244 | left: 0; |
245 | 245 | width: 3px; |
246 | 246 | height: 100%; |
247 | - background-color: @primary-color; | |
248 | 247 | content: ''; |
248 | + background-color: @primary-color; | |
249 | 249 | } |
250 | 250 | } |
251 | 251 | } |
... | ... | @@ -276,8 +276,8 @@ |
276 | 276 | left: 0; |
277 | 277 | width: 3px; |
278 | 278 | height: 100%; |
279 | - background-color: @primary-color; | |
280 | 279 | content: ''; |
280 | + background-color: @primary-color; | |
281 | 281 | } |
282 | 282 | |
283 | 283 | .@{menu-prefix-cls}-submenu-collapse { | ... | ... |
src/components/Table/src/BasicTable.vue
... | ... | @@ -25,10 +25,12 @@ |
25 | 25 | <template #[item]="data" v-for="item in Object.keys($slots)" :key="item"> |
26 | 26 | <slot :name="item" v-bind="data || {}"></slot> |
27 | 27 | </template> |
28 | - | |
29 | - <template #[`header-${column.dataIndex}`] v-for="(column, index) in columns" :key="index"> | |
28 | + <template #headerCell="{ column }"> | |
30 | 29 | <HeaderCell :column="column" /> |
31 | 30 | </template> |
31 | + <!-- <template #[`header-${column.dataIndex}`] v-for="(column, index) in columns" :key="index">--> | |
32 | + <!-- <HeaderCell :column="column" />--> | |
33 | + <!-- </template>--> | |
32 | 34 | </Table> |
33 | 35 | </div> |
34 | 36 | </template> | ... | ... |
src/components/Table/src/components/HeaderCell.vue
... | ... | @@ -29,7 +29,7 @@ |
29 | 29 | const { prefixCls } = useDesign('basic-table-header-cell'); |
30 | 30 | |
31 | 31 | const getIsEdit = computed(() => !!props.column?.edit); |
32 | - const getTitle = computed(() => props.column?.customTitle); | |
32 | + const getTitle = computed(() => props.column?.customTitle || props.column?.title); | |
33 | 33 | const getHelpMessage = computed(() => props.column?.helpMessage); |
34 | 34 | |
35 | 35 | return { prefixCls, getIsEdit, getTitle, getHelpMessage }; | ... | ... |
src/components/Table/src/components/editable/EditableCell.vue
1 | -<template> | |
2 | - <div :class="prefixCls"> | |
3 | - <div | |
4 | - v-show="!isEdit" | |
5 | - :class="{ [`${prefixCls}__normal`]: true, 'ellipsis-cell': column.ellipsis }" | |
6 | - @click="handleEdit" | |
7 | - > | |
8 | - <div class="cell-content" :title="column.ellipsis ? getValues ?? '' : ''"> | |
9 | - {{ getValues || getValues === 0 ? getValues : ' ' }} | |
10 | - </div> | |
11 | - <FormOutlined :class="`${prefixCls}__normal-icon`" v-if="!column.editRow" /> | |
12 | - </div> | |
13 | - | |
14 | - <a-spin v-if="isEdit" :spinning="spinning"> | |
15 | - <div :class="`${prefixCls}__wrapper`" v-click-outside="onClickOutside"> | |
16 | - <CellComponent | |
17 | - v-bind="getComponentProps" | |
18 | - :component="getComponent" | |
19 | - :style="getWrapperStyle" | |
20 | - :popoverVisible="getRuleVisible" | |
21 | - :rule="getRule" | |
22 | - :ruleMessage="ruleMessage" | |
23 | - :class="getWrapperClass" | |
24 | - ref="elRef" | |
25 | - @change="handleChange" | |
26 | - @options-change="handleOptionsChange" | |
27 | - @pressEnter="handleEnter" | |
28 | - /> | |
29 | - <div :class="`${prefixCls}__action`" v-if="!getRowEditable"> | |
30 | - <CheckOutlined :class="[`${prefixCls}__icon`, 'mx-2']" @click="handleSubmitClick" /> | |
31 | - <CloseOutlined :class="`${prefixCls}__icon `" @click="handleCancel" /> | |
32 | - </div> | |
33 | - </div> | |
34 | - </a-spin> | |
35 | - </div> | |
36 | -</template> | |
37 | -<script lang="ts"> | |
1 | +<script lang="tsx"> | |
38 | 2 | import type { CSSProperties, PropType } from 'vue'; |
39 | 3 | import { computed, defineComponent, nextTick, ref, toRaw, unref, watchEffect } from 'vue'; |
40 | 4 | import type { BasicColumn } from '../../types/table'; |
... | ... | @@ -56,7 +20,7 @@ |
56 | 20 | |
57 | 21 | export default defineComponent({ |
58 | 22 | name: 'EditableCell', |
59 | - components: { FormOutlined, CloseOutlined, CheckOutlined, CellComponent, ASpin: Spin }, | |
23 | + components: { FormOutlined, CloseOutlined, CheckOutlined, CellComponent, Spin }, | |
60 | 24 | directives: { |
61 | 25 | clickOutside, |
62 | 26 | }, |
... | ... | @@ -100,13 +64,6 @@ |
100 | 64 | }); |
101 | 65 | |
102 | 66 | const getComponentProps = computed(() => { |
103 | - const compProps = props.column?.editComponentProps ?? {}; | |
104 | - const component = unref(getComponent); | |
105 | - const apiSelectProps: Recordable = {}; | |
106 | - if (component === 'ApiSelect') { | |
107 | - apiSelectProps.cache = true; | |
108 | - } | |
109 | - | |
110 | 67 | const isCheckValue = unref(getIsCheckComp); |
111 | 68 | |
112 | 69 | const valueField = isCheckValue ? 'checked' : 'value'; |
... | ... | @@ -114,19 +71,30 @@ |
114 | 71 | |
115 | 72 | const value = isCheckValue ? (isNumber(val) && isBoolean(val) ? val : !!val) : val; |
116 | 73 | |
74 | + let compProps = props.column?.editComponentProps ?? {}; | |
75 | + const { record, column, index } = props; | |
76 | + | |
77 | + if (isFunction(compProps)) { | |
78 | + compProps = compProps({ text: val, record, column, index }) ?? {}; | |
79 | + } | |
80 | + const component = unref(getComponent); | |
81 | + const apiSelectProps: Recordable = {}; | |
82 | + if (component === 'ApiSelect') { | |
83 | + apiSelectProps.cache = true; | |
84 | + } | |
85 | + | |
117 | 86 | return { |
118 | 87 | size: 'small', |
119 | 88 | getPopupContainer: () => unref(table?.wrapRef.value) ?? document.body, |
120 | - getCalendarContainer: () => unref(table?.wrapRef.value) ?? document.body, | |
121 | 89 | placeholder: createPlaceholderMessage(unref(getComponent)), |
122 | 90 | ...apiSelectProps, |
123 | 91 | ...omit(compProps, 'onChange'), |
124 | 92 | [valueField]: value, |
125 | - }; | |
93 | + } as any; | |
126 | 94 | }); |
127 | 95 | |
128 | 96 | const getValues = computed(() => { |
129 | - const { editComponentProps, editValueMap } = props.column; | |
97 | + const { editValueMap } = props.column; | |
130 | 98 | |
131 | 99 | const value = unref(currentValueRef); |
132 | 100 | |
... | ... | @@ -139,7 +107,8 @@ |
139 | 107 | return value; |
140 | 108 | } |
141 | 109 | |
142 | - const options: LabelValueOptions = editComponentProps?.options ?? (unref(optionsRef) || []); | |
110 | + const options: LabelValueOptions = | |
111 | + unref(getComponentProps)?.options ?? (unref(optionsRef) || []); | |
143 | 112 | const option = options.find((item) => `${item.value}` === `${value}`); |
144 | 113 | |
145 | 114 | return option?.label ?? value; |
... | ... | @@ -199,7 +168,7 @@ |
199 | 168 | } else if (isString(e) || isBoolean(e) || isNumber(e)) { |
200 | 169 | currentValueRef.value = e; |
201 | 170 | } |
202 | - const onChange = props.column?.editComponentProps?.onChange; | |
171 | + const onChange = unref(getComponentProps)?.onChange; | |
203 | 172 | if (onChange && isFunction(onChange)) onChange(...arguments); |
204 | 173 | |
205 | 174 | table.emit?.('edit-change', { |
... | ... | @@ -267,7 +236,7 @@ |
267 | 236 | result = await beforeEditSubmit({ |
268 | 237 | record: pick(record, keys), |
269 | 238 | index, |
270 | - key: key as string, | |
239 | + key: dataKey as string, | |
271 | 240 | value, |
272 | 241 | }); |
273 | 242 | } catch (e) { |
... | ... | @@ -283,7 +252,7 @@ |
283 | 252 | |
284 | 253 | set(record, dataKey, value); |
285 | 254 | //const record = await table.updateTableData(index, dataKey, value); |
286 | - needEmit && table.emit?.('edit-end', { record, index, key, value }); | |
255 | + needEmit && table.emit?.('edit-end', { record, index, key: dataKey, value }); | |
287 | 256 | isEdit.value = false; |
288 | 257 | } |
289 | 258 | |
... | ... | @@ -324,7 +293,7 @@ |
324 | 293 | |
325 | 294 | // only ApiSelect or TreeSelect |
326 | 295 | function handleOptionsChange(options: LabelValueOptions) { |
327 | - const { replaceFields } = props.column?.editComponentProps ?? {}; | |
296 | + const { replaceFields } = unref(getComponentProps); | |
328 | 297 | const component = unref(getComponent); |
329 | 298 | if (component === 'ApiTreeSelect') { |
330 | 299 | const { title = 'title', value = 'value', children = 'children' } = replaceFields || {}; |
... | ... | @@ -357,7 +326,7 @@ |
357 | 326 | |
358 | 327 | if (props.column.dataIndex) { |
359 | 328 | if (!props.record.editValueRefs) props.record.editValueRefs = {}; |
360 | - props.record.editValueRefs[props.column.dataIndex] = currentValueRef; | |
329 | + props.record.editValueRefs[props.column.dataIndex as any] = currentValueRef; | |
361 | 330 | } |
362 | 331 | /* eslint-disable */ |
363 | 332 | props.record.onCancelEdit = () => { |
... | ... | @@ -400,6 +369,59 @@ |
400 | 369 | spinning, |
401 | 370 | }; |
402 | 371 | }, |
372 | + render() { | |
373 | + return ( | |
374 | + <div class={this.prefixCls}> | |
375 | + <div | |
376 | + v-show={!this.isEdit} | |
377 | + class={{ [`${this.prefixCls}__normal`]: true, 'ellipsis-cell': this.column.ellipsis }} | |
378 | + onClick={this.handleEdit} | |
379 | + > | |
380 | + <div class="cell-content" title={this.column.ellipsis ? this.getValues ?? '' : ''}> | |
381 | + {this.column.editRender | |
382 | + ? this.column.editRender({ | |
383 | + text: this.value, | |
384 | + record: this.record as Recordable, | |
385 | + column: this.column, | |
386 | + index: this.index, | |
387 | + }) | |
388 | + : this.getValues | |
389 | + ? this.getValues | |
390 | + : '\u00A0'} | |
391 | + </div> | |
392 | + {!this.column.editRow && <FormOutlined class={`${this.prefixCls}__normal-icon`} />} | |
393 | + </div> | |
394 | + {this.isEdit && ( | |
395 | + <Spin spinning={this.spinning}> | |
396 | + <div class={`${this.prefixCls}__wrapper`} v-click-outside={this.onClickOutside}> | |
397 | + <CellComponent | |
398 | + {...this.getComponentProps} | |
399 | + component={this.getComponent} | |
400 | + style={this.getWrapperStyle} | |
401 | + popoverVisible={this.getRuleVisible} | |
402 | + rule={this.getRule} | |
403 | + ruleMessage={this.ruleMessage} | |
404 | + class={this.getWrapperClass} | |
405 | + ref="elRef" | |
406 | + onChange={this.handleChange} | |
407 | + onOptionsChange={this.handleOptionsChange} | |
408 | + onPressEnter={this.handleEnter} | |
409 | + /> | |
410 | + {!this.getRowEditable && ( | |
411 | + <div class={`${this.prefixCls}__action`}> | |
412 | + <CheckOutlined | |
413 | + class={[`${this.prefixCls}__icon`, 'mx-2']} | |
414 | + onClick={this.handleSubmitClick} | |
415 | + /> | |
416 | + <CloseOutlined class={`${this.prefixCls}__icon `} onClick={this.handleCancel} /> | |
417 | + </div> | |
418 | + )} | |
419 | + </div> | |
420 | + </Spin> | |
421 | + )} | |
422 | + </div> | |
423 | + ); | |
424 | + }, | |
403 | 425 | }); |
404 | 426 | </script> |
405 | 427 | <style lang="less"> | ... | ... |
src/components/Table/src/components/settings/ColumnSetting.vue
src/components/Table/src/components/settings/SizeSetting.vue
... | ... | @@ -4,7 +4,7 @@ |
4 | 4 | <span>{{ t('component.table.settingDens') }}</span> |
5 | 5 | </template> |
6 | 6 | |
7 | - <Dropdown placement="bottomCenter" :trigger="['click']" :getPopupContainer="getPopupContainer"> | |
7 | + <Dropdown placement="bottom" :trigger="['click']" :getPopupContainer="getPopupContainer"> | |
8 | 8 | <ColumnHeightOutlined /> |
9 | 9 | <template #overlay> |
10 | 10 | <Menu @click="handleTitleClick" selectable v-model:selectedKeys="selectedKeysRef"> | ... | ... |
src/components/Table/src/hooks/useColumns.ts
... | ... | @@ -152,10 +152,10 @@ export function useColumns( |
152 | 152 | return hasPermission(column.auth) && isIfShow(column); |
153 | 153 | }) |
154 | 154 | .map((column) => { |
155 | - const { slots, dataIndex, customRender, format, edit, editRow, flag } = column; | |
155 | + const { slots, customRender, format, edit, editRow, flag } = column; | |
156 | 156 | |
157 | 157 | if (!slots || !slots?.title) { |
158 | - column.slots = { title: `header-${dataIndex}`, ...(slots || {}) }; | |
158 | + // column.slots = { title: `header-${dataIndex}`, ...(slots || {}) }; | |
159 | 159 | column.customTitle = column.title; |
160 | 160 | Reflect.deleteProperty(column, 'title'); |
161 | 161 | } |
... | ... | @@ -197,7 +197,7 @@ export function useColumns( |
197 | 197 | * set columns |
198 | 198 | * @param columnList key|column |
199 | 199 | */ |
200 | - function setColumns(columnList: Partial<BasicColumn>[] | string[]) { | |
200 | + function setColumns(columnList: Partial<BasicColumn>[] | (string | string[])[]) { | |
201 | 201 | const columns = cloneDeep(columnList); |
202 | 202 | if (!isArray(columns)) return; |
203 | 203 | |
... | ... | @@ -210,23 +210,23 @@ export function useColumns( |
210 | 210 | |
211 | 211 | const cacheKeys = cacheColumns.map((item) => item.dataIndex); |
212 | 212 | |
213 | - if (!isString(firstColumn)) { | |
213 | + if (!isString(firstColumn) && !isArray(firstColumn)) { | |
214 | 214 | columnsRef.value = columns as BasicColumn[]; |
215 | 215 | } else { |
216 | - const columnKeys = columns as string[]; | |
216 | + const columnKeys = (columns as (string | string[])[]).map(m => m.toString()); | |
217 | 217 | const newColumns: BasicColumn[] = []; |
218 | 218 | cacheColumns.forEach((item) => { |
219 | 219 | newColumns.push({ |
220 | 220 | ...item, |
221 | - defaultHidden: !columnKeys.includes(item.dataIndex! || (item.key as string)), | |
221 | + defaultHidden: !columnKeys.includes(item.dataIndex?.toString() || (item.key as string)) | |
222 | 222 | }); |
223 | 223 | }); |
224 | 224 | // Sort according to another array |
225 | 225 | if (!isEqual(cacheKeys, columns)) { |
226 | 226 | newColumns.sort((prev, next) => { |
227 | 227 | return ( |
228 | - columnKeys.indexOf(prev.dataIndex as string) - | |
229 | - columnKeys.indexOf(next.dataIndex as string) | |
228 | + columnKeys.indexOf(prev.dataIndex?.toString() as string) - | |
229 | + columnKeys.indexOf(next.dataIndex?.toString() as string) | |
230 | 230 | ); |
231 | 231 | }); |
232 | 232 | } | ... | ... |
src/components/Table/src/hooks/useDataSource.ts
... | ... | @@ -292,7 +292,7 @@ export function useDataSource( |
292 | 292 | const isArrayResult = Array.isArray(res); |
293 | 293 | |
294 | 294 | let resultItems: Recordable[] = isArrayResult ? res : get(res, listField); |
295 | - const resultTotal: number = isArrayResult ? 0 : get(res, totalField); | |
295 | + const resultTotal: number = isArrayResult ? res.length : get(res, totalField); | |
296 | 296 | |
297 | 297 | // 假如数据变少,导致总页数变少并小于当前选中页码,通过getPaginationRef获取到的页码是不正确的,需获取正确的页码再次执行 |
298 | 298 | if (resultTotal) { | ... | ... |
src/components/Table/src/types/table.ts
... | ... | @@ -412,7 +412,7 @@ export type CellFormat = |
412 | 412 | | Map<string | number, any>; |
413 | 413 | |
414 | 414 | // @ts-ignore |
415 | -export interface BasicColumn extends ColumnProps { | |
415 | +export interface BasicColumn extends ColumnProps<Recordable> { | |
416 | 416 | children?: BasicColumn[]; |
417 | 417 | filters?: { |
418 | 418 | text: string; |
... | ... | @@ -441,7 +441,14 @@ export interface BasicColumn extends ColumnProps { |
441 | 441 | editRow?: boolean; |
442 | 442 | editable?: boolean; |
443 | 443 | editComponent?: ComponentType; |
444 | - editComponentProps?: Recordable; | |
444 | + editComponentProps?: | |
445 | + | ((opt: { | |
446 | + text: string | number | boolean | Recordable; | |
447 | + record: Recordable; | |
448 | + column: BasicColumn; | |
449 | + index: number; | |
450 | + }) => Recordable) | |
451 | + | Recordable; | |
445 | 452 | editRule?: boolean | ((text: string, record: Recordable) => Promise<string>); |
446 | 453 | editValueMap?: (value: any) => string; |
447 | 454 | onEditRow?: () => void; |
... | ... | @@ -449,6 +456,13 @@ export interface BasicColumn extends ColumnProps { |
449 | 456 | auth?: RoleEnum | RoleEnum[] | string | string[]; |
450 | 457 | // 业务控制是否显示 |
451 | 458 | ifShow?: boolean | ((column: BasicColumn) => boolean); |
459 | + // 自定义修改后显示的内容 | |
460 | + editRender?: (opt: { | |
461 | + text: string | number | boolean | Recordable; | |
462 | + record: Recordable; | |
463 | + column: BasicColumn; | |
464 | + index: number; | |
465 | + }) => VNodeChild | JSX.Element; | |
452 | 466 | } |
453 | 467 | |
454 | 468 | export type ColumnChangeParam = { | ... | ... |
src/design/ant/index.less
src/layouts/default/header/components/lock/LockModal.vue
src/layouts/default/header/components/user-dropdown/DropMenuItem.vue
src/layouts/default/sider/MixSider.vue
src/layouts/default/tabs/components/TabContent.vue
1 | 1 | <template> |
2 | - <Dropdown :dropMenuList="getDropMenuList" :trigger="getTrigger" @menuEvent="handleMenuEvent"> | |
2 | + <Dropdown | |
3 | + :dropMenuList="getDropMenuList" | |
4 | + :trigger="getTrigger" | |
5 | + placement="bottom" | |
6 | + overlayClassName="multiple-tabs__dropdown" | |
7 | + @menu-event="handleMenuEvent" | |
8 | + > | |
3 | 9 | <div :class="`${prefixCls}__info`" @contextmenu="handleContext" v-if="getIsTabs"> |
4 | 10 | <span class="ml-1">{{ getTitle }}</span> |
5 | 11 | </div> | ... | ... |
src/layouts/default/tabs/index.less
... | ... | @@ -180,3 +180,28 @@ html[data-theme='light'] { |
180 | 180 | } |
181 | 181 | } |
182 | 182 | } |
183 | + | |
184 | +.ant-tabs-dropdown-menu { | |
185 | + &-title-content { | |
186 | + display: flex; | |
187 | + align-items: center; | |
188 | + | |
189 | + .@{prefix-cls} { | |
190 | + &-content__info { | |
191 | + width: auto; | |
192 | + margin-left: 0; | |
193 | + line-height: 28px; | |
194 | + } | |
195 | + } | |
196 | + } | |
197 | + | |
198 | + &-item-remove { | |
199 | + margin-left: auto; | |
200 | + } | |
201 | +} | |
202 | + | |
203 | +.multiple-tabs__dropdown { | |
204 | + .ant-dropdown-content { | |
205 | + width: 172px; | |
206 | + } | |
207 | +} | ... | ... |
src/locales/lang/en/routes/demo.ts
... | ... | @@ -92,6 +92,7 @@ export default { |
92 | 92 | breadcrumb: 'Breadcrumbs', |
93 | 93 | breadcrumbFlat: 'Flat Mode', |
94 | 94 | breadcrumbFlatDetail: 'Flat mode details', |
95 | + requestDemo: 'Retry request demo', | |
95 | 96 | |
96 | 97 | breadcrumbChildren: 'Level mode', |
97 | 98 | breadcrumbChildrenDetail: 'Level mode detail', | ... | ... |
src/locales/lang/zh-CN/routes/demo.ts
src/router/routes/modules/demo/feat.ts
... | ... | @@ -32,6 +32,15 @@ const feat: AppRouteModule = { |
32 | 32 | }, |
33 | 33 | }, |
34 | 34 | { |
35 | + path: 'request', | |
36 | + name: 'RequestDemo', | |
37 | + // @ts-ignore | |
38 | + component: () => import('/@/views/demo/feat/request-demo/index.vue'), | |
39 | + meta: { | |
40 | + title: t('routes.demo.feat.requestDemo'), | |
41 | + }, | |
42 | + }, | |
43 | + { | |
35 | 44 | path: 'session-timeout', |
36 | 45 | name: 'SessionTimeout', |
37 | 46 | component: () => import('/@/views/demo/feat/session-timeout/index.vue'), | ... | ... |
src/utils/cache/memory.ts
... | ... | @@ -58,7 +58,12 @@ export class Memory<T = any, V = any> { |
58 | 58 | return value; |
59 | 59 | } |
60 | 60 | const now = new Date().getTime(); |
61 | - item.time = now + this.alive; | |
61 | + /** | |
62 | + * Prevent overflow of the setTimeout Maximum delay value | |
63 | + * Maximum delay value 2,147,483,647 ms | |
64 | + * https://developer.mozilla.org/en-US/docs/Web/API/setTimeout#maximum_delay_value | |
65 | + */ | |
66 | + item.time = expires > now ? expires : now + expires; | |
62 | 67 | item.timeoutId = setTimeout( |
63 | 68 | () => { |
64 | 69 | this.remove(key); | ... | ... |
src/utils/http/axios/Axios.ts
... | ... | @@ -111,7 +111,10 @@ export class VAxios { |
111 | 111 | // Response result interceptor error capture |
112 | 112 | responseInterceptorsCatch && |
113 | 113 | isFunction(responseInterceptorsCatch) && |
114 | - this.axiosInstance.interceptors.response.use(undefined, responseInterceptorsCatch); | |
114 | + this.axiosInstance.interceptors.response.use(undefined, (error) => { | |
115 | + // @ts-ignore | |
116 | + responseInterceptorsCatch(this.axiosInstance, error); | |
117 | + }); | |
115 | 118 | } |
116 | 119 | |
117 | 120 | /** | ... | ... |
src/utils/http/axios/axiosRetry.ts
0 → 100644
1 | +import { AxiosError, AxiosInstance } from 'axios'; | |
2 | +/** | |
3 | + * 请求重试机制 | |
4 | + */ | |
5 | + | |
6 | +export class AxiosRetry { | |
7 | + /** | |
8 | + * 重试 | |
9 | + */ | |
10 | + retry(AxiosInstance: AxiosInstance, error: AxiosError) { | |
11 | + // @ts-ignore | |
12 | + const { config } = error.response; | |
13 | + const { waitTime, count } = config?.requestOptions?.retryRequest; | |
14 | + config.__retryCount = config.__retryCount || 0; | |
15 | + if (config.__retryCount >= count) { | |
16 | + return Promise.reject(error); | |
17 | + } | |
18 | + config.__retryCount += 1; | |
19 | + return this.delay(waitTime).then(() => AxiosInstance(config)); | |
20 | + } | |
21 | + | |
22 | + /** | |
23 | + * 延迟 | |
24 | + */ | |
25 | + private delay(waitTime: number) { | |
26 | + return new Promise((resolve) => setTimeout(resolve, waitTime)); | |
27 | + } | |
28 | +} | ... | ... |
src/utils/http/axios/axiosTransform.ts
src/utils/http/axios/index.ts
... | ... | @@ -17,6 +17,7 @@ import { useErrorLogStoreWithOut } from '/@/store/modules/errorLog'; |
17 | 17 | import { useI18n } from '/@/hooks/web/useI18n'; |
18 | 18 | import { joinTimestamp, formatRequestDate } from './helper'; |
19 | 19 | import { useUserStoreWithOut } from '/@/store/modules/user'; |
20 | +import { AxiosRetry } from '/@/utils/http/axios/axiosRetry'; | |
20 | 21 | |
21 | 22 | const globSetting = useGlobSetting(); |
22 | 23 | const urlPrefix = globSetting.urlPrefix; |
... | ... | @@ -158,7 +159,7 @@ const transform: AxiosTransform = { |
158 | 159 | /** |
159 | 160 | * @description: 响应错误处理 |
160 | 161 | */ |
161 | - responseInterceptorsCatch: (error: any) => { | |
162 | + responseInterceptorsCatch: (axiosInstance: AxiosResponse, error: any) => { | |
162 | 163 | const { t } = useI18n(); |
163 | 164 | const errorLogStore = useErrorLogStoreWithOut(); |
164 | 165 | errorLogStore.addAjaxErrorInfo(error); |
... | ... | @@ -189,6 +190,14 @@ const transform: AxiosTransform = { |
189 | 190 | } |
190 | 191 | |
191 | 192 | checkStatus(error?.response?.status, msg, errorMessageMode); |
193 | + | |
194 | + // 添加自动重试机制 保险起见 只针对GET请求 | |
195 | + const retryRequest = new AxiosRetry(); | |
196 | + const { isOpenRetry } = config.requestOptions.retryRequest; | |
197 | + config.method?.toUpperCase() === RequestEnum.GET && | |
198 | + isOpenRetry && | |
199 | + // @ts-ignore | |
200 | + retryRequest.retry(axiosInstance, error); | |
192 | 201 | return Promise.reject(error); |
193 | 202 | }, |
194 | 203 | }; |
... | ... | @@ -234,6 +243,11 @@ function createAxios(opt?: Partial<CreateAxiosOptions>) { |
234 | 243 | ignoreCancelToken: true, |
235 | 244 | // 是否携带token |
236 | 245 | withToken: true, |
246 | + retryRequest: { | |
247 | + isOpenRetry: true, | |
248 | + count: 5, | |
249 | + waitTime: 100, | |
250 | + }, | |
237 | 251 | }, |
238 | 252 | }, |
239 | 253 | opt || {}, | ... | ... |
src/views/dashboard/analysis/components/SiteAnalysis.vue
src/views/dashboard/analysis/components/VisitRadar.vue
... | ... | @@ -39,28 +39,22 @@ |
39 | 39 | splitNumber: 8, |
40 | 40 | indicator: [ |
41 | 41 | { |
42 | - text: '电脑', | |
43 | - max: 100, | |
42 | + name: '电脑', | |
44 | 43 | }, |
45 | 44 | { |
46 | - text: '充电器', | |
47 | - max: 100, | |
45 | + name: '充电器', | |
48 | 46 | }, |
49 | 47 | { |
50 | - text: '耳机', | |
51 | - max: 100, | |
48 | + name: '耳机', | |
52 | 49 | }, |
53 | 50 | { |
54 | - text: '手机', | |
55 | - max: 100, | |
51 | + name: '手机', | |
56 | 52 | }, |
57 | 53 | { |
58 | - text: 'Ipad', | |
59 | - max: 100, | |
54 | + name: 'Ipad', | |
60 | 55 | }, |
61 | 56 | { |
62 | - text: '耳机', | |
63 | - max: 100, | |
57 | + name: '耳机', | |
64 | 58 | }, |
65 | 59 | ], |
66 | 60 | }, | ... | ... |
src/views/dashboard/workbench/components/SaleRadar.vue
... | ... | @@ -39,28 +39,22 @@ |
39 | 39 | splitNumber: 8, |
40 | 40 | indicator: [ |
41 | 41 | { |
42 | - text: '2017', | |
43 | - max: 100, | |
42 | + name: '2017', | |
44 | 43 | }, |
45 | 44 | { |
46 | - text: '2017', | |
47 | - max: 100, | |
45 | + name: '2017', | |
48 | 46 | }, |
49 | 47 | { |
50 | - text: '2018', | |
51 | - max: 100, | |
48 | + name: '2018', | |
52 | 49 | }, |
53 | 50 | { |
54 | - text: '2019', | |
55 | - max: 100, | |
51 | + name: '2019', | |
56 | 52 | }, |
57 | 53 | { |
58 | - text: '2020', | |
59 | - max: 100, | |
54 | + name: '2020', | |
60 | 55 | }, |
61 | 56 | { |
62 | - text: '2021', | |
63 | - max: 100, | |
57 | + name: '2021', | |
64 | 58 | }, |
65 | 59 | ], |
66 | 60 | }, | ... | ... |
src/views/demo/charts/SaleRadar.vue
... | ... | @@ -43,28 +43,22 @@ |
43 | 43 | splitNumber: 8, |
44 | 44 | indicator: [ |
45 | 45 | { |
46 | - text: '2017', | |
47 | - max: 100, | |
46 | + name: '2017', | |
48 | 47 | }, |
49 | 48 | { |
50 | - text: '2017', | |
51 | - max: 100, | |
49 | + name: '2017', | |
52 | 50 | }, |
53 | 51 | { |
54 | - text: '2018', | |
55 | - max: 100, | |
52 | + name: '2018', | |
56 | 53 | }, |
57 | 54 | { |
58 | - text: '2019', | |
59 | - max: 100, | |
55 | + name: '2019', | |
60 | 56 | }, |
61 | 57 | { |
62 | - text: '2020', | |
63 | - max: 100, | |
58 | + name: '2020', | |
64 | 59 | }, |
65 | 60 | { |
66 | - text: '2021', | |
67 | - max: 100, | |
61 | + name: '2021', | |
68 | 62 | }, |
69 | 63 | ], |
70 | 64 | }, | ... | ... |
src/views/demo/comp/card-list/index.vue
1 | 1 | <template> |
2 | 2 | <PageWrapper title="卡片列表示例" content="基础封装"> |
3 | - <CardList :params="params" :api="demoListApi" @getMethod="getMethod" @delete="handleDel"> | |
3 | + <CardList :params="params" :api="demoListApi" @get-method="getMethod" @delete="handleDel"> | |
4 | 4 | <template #header> |
5 | 5 | <Button type="primary" color="error"> 按钮1 </Button> |
6 | 6 | <Button type="primary" color="success"> 按钮2 </Button> | ... | ... |
src/views/demo/feat/click-out-side/index.vue
src/views/demo/feat/request-demo/index.vue
0 → 100644
1 | +<template> | |
2 | + <div class="request-box"> | |
3 | + <a-button @click="handleClick" type="primary"> 点击会重新发起请求5次 </a-button> | |
4 | + <p>打开浏览器的network面板,可以看到发出了六次请求</p> | |
5 | + </div> | |
6 | +</template> | |
7 | +<script lang="ts" setup> | |
8 | + import { testRetry } from '/@/api/sys/user'; | |
9 | + // @ts-ignore | |
10 | + const handleClick = async () => { | |
11 | + await testRetry(); | |
12 | + }; | |
13 | +</script> | |
14 | + | |
15 | +<style lang="less"> | |
16 | + .request-box { | |
17 | + margin: 50px; | |
18 | + } | |
19 | + | |
20 | + p { | |
21 | + margin-top: 10px; | |
22 | + } | |
23 | +</style> | ... | ... |
src/views/demo/form/index.vue
... | ... | @@ -142,6 +142,9 @@ |
142 | 142 | field: 'divider-basic', |
143 | 143 | component: 'Divider', |
144 | 144 | label: '基础字段', |
145 | + colProps: { | |
146 | + span: 24, | |
147 | + }, | |
145 | 148 | }, |
146 | 149 | { |
147 | 150 | field: 'field1', |
... | ... | @@ -340,6 +343,9 @@ |
340 | 343 | field: 'divider-api-select', |
341 | 344 | component: 'Divider', |
342 | 345 | label: '远程下拉演示', |
346 | + colProps: { | |
347 | + span: 24, | |
348 | + }, | |
343 | 349 | }, |
344 | 350 | { |
345 | 351 | field: 'field30', |
... | ... | @@ -458,6 +464,9 @@ |
458 | 464 | field: 'divider-linked', |
459 | 465 | component: 'Divider', |
460 | 466 | label: '字段联动', |
467 | + colProps: { | |
468 | + span: 24, | |
469 | + }, | |
461 | 470 | }, |
462 | 471 | { |
463 | 472 | field: 'province', |
... | ... | @@ -509,6 +518,9 @@ |
509 | 518 | component: 'Divider', |
510 | 519 | label: '互斥多选', |
511 | 520 | helpMessage: ['两个Select共用数据源', '但不可选择对方已选中的项目'], |
521 | + colProps: { | |
522 | + span: 24, | |
523 | + }, | |
512 | 524 | }, |
513 | 525 | { |
514 | 526 | field: 'selectA', |
... | ... | @@ -531,9 +543,31 @@ |
531 | 543 | }, |
532 | 544 | }, |
533 | 545 | { |
546 | + field: 'divider-deconstruct', | |
547 | + component: 'Divider', | |
548 | + label: '字段解构', | |
549 | + helpMessage: ['如果组件的值是 array 或者 object', '可以根据 ES6 的解构语法分别取值'], | |
550 | + colProps: { | |
551 | + span: 24, | |
552 | + }, | |
553 | + }, | |
554 | + { | |
555 | + field: '[startTime, endTime]', | |
556 | + label: '时间范围', | |
557 | + component: 'RangePicker', | |
558 | + componentProps: { | |
559 | + format: 'YYYY-MM-DD HH:mm:ss', | |
560 | + placeholder: ['开始时间', '结束时间'], | |
561 | + showTime: { format: 'HH:mm:ss' }, | |
562 | + }, | |
563 | + }, | |
564 | + { | |
534 | 565 | field: 'divider-others', |
535 | 566 | component: 'Divider', |
536 | 567 | label: '其它', |
568 | + colProps: { | |
569 | + span: 24, | |
570 | + }, | |
537 | 571 | }, |
538 | 572 | { |
539 | 573 | field: 'field20', |
... | ... | @@ -602,6 +636,7 @@ |
602 | 636 | keyword.value = ''; |
603 | 637 | }, |
604 | 638 | handleSubmit: (values: any) => { |
639 | + console.log('values', values); | |
605 | 640 | createMessage.success('click search,values:' + JSON.stringify(values)); |
606 | 641 | }, |
607 | 642 | check, | ... | ... |
src/views/demo/page/form/basic/data.ts
1 | 1 | import { FormSchema } from '/@/components/Form'; |
2 | +const colProps = { | |
3 | + span: 8, | |
4 | +}; | |
2 | 5 | |
3 | 6 | export const schemas: FormSchema[] = [ |
4 | 7 | { |
5 | 8 | field: 'title', |
6 | 9 | component: 'Input', |
7 | 10 | label: '标题', |
11 | + colProps, | |
8 | 12 | componentProps: { |
9 | 13 | placeholder: '给目标起个名字', |
10 | 14 | }, |
... | ... | @@ -14,12 +18,37 @@ export const schemas: FormSchema[] = [ |
14 | 18 | field: 'time', |
15 | 19 | component: 'RangePicker', |
16 | 20 | label: '起止日期', |
21 | + colProps, | |
17 | 22 | required: true, |
18 | 23 | }, |
19 | 24 | { |
25 | + field: 'client', | |
26 | + component: 'Input', | |
27 | + colProps, | |
28 | + label: '客户', | |
29 | + helpMessage: '目标的服务对象', | |
30 | + subLabel: '( 选填 )', | |
31 | + componentProps: { | |
32 | + placeholder: '请描述你服务的客户,内部客户直接 @姓名/工号', | |
33 | + }, | |
34 | + }, | |
35 | + { | |
36 | + field: 'weights', | |
37 | + component: 'InputNumber', | |
38 | + label: '权重', | |
39 | + colProps, | |
40 | + subLabel: '( 选填 )', | |
41 | + componentProps: { | |
42 | + formatter: (value: string) => (value ? `${value}%` : ''), | |
43 | + parser: (value: string) => value.replace('%', ''), | |
44 | + placeholder: '请输入', | |
45 | + }, | |
46 | + }, | |
47 | + { | |
20 | 48 | field: 'target', |
21 | 49 | component: 'InputTextArea', |
22 | 50 | label: '目标描述', |
51 | + colProps, | |
23 | 52 | componentProps: { |
24 | 53 | placeholder: '请输入你的阶段性工作目标', |
25 | 54 | rows: 4, |
... | ... | @@ -30,46 +59,33 @@ export const schemas: FormSchema[] = [ |
30 | 59 | field: 'metrics', |
31 | 60 | component: 'InputTextArea', |
32 | 61 | label: '衡量标准', |
62 | + colProps, | |
33 | 63 | componentProps: { |
34 | 64 | placeholder: '请输入衡量标准', |
35 | 65 | rows: 4, |
36 | 66 | }, |
37 | 67 | required: true, |
38 | 68 | }, |
39 | - { | |
40 | - field: 'client', | |
41 | - component: 'Input', | |
42 | - label: '客户', | |
43 | - helpMessage: '目标的服务对象', | |
44 | - subLabel: '( 选填 )', | |
45 | - componentProps: { | |
46 | - placeholder: '请描述你服务的客户,内部客户直接 @姓名/工号', | |
47 | - }, | |
48 | - }, | |
69 | + | |
49 | 70 | { |
50 | 71 | field: 'inviteer', |
51 | 72 | component: 'Input', |
52 | 73 | label: '邀评人', |
53 | - subLabel: '( 选填 )', | |
54 | - componentProps: { | |
55 | - placeholder: '请直接 @姓名/工号,最多可邀请 5 人', | |
74 | + colProps: { | |
75 | + span: 8, | |
56 | 76 | }, |
57 | - }, | |
58 | - { | |
59 | - field: 'weights', | |
60 | - component: 'InputNumber', | |
61 | - label: '权重', | |
62 | 77 | subLabel: '( 选填 )', |
63 | 78 | componentProps: { |
64 | - formatter: (value: string) => (value ? `${value}%` : ''), | |
65 | - parser: (value: string) => value.replace('%', ''), | |
66 | - placeholder: '请输入', | |
79 | + placeholder: '请直接 @姓名/工号,最多可邀请 5 人', | |
67 | 80 | }, |
68 | 81 | }, |
69 | 82 | { |
70 | 83 | field: 'disclosure', |
71 | 84 | component: 'RadioGroup', |
72 | 85 | label: '目标公开', |
86 | + colProps: { | |
87 | + span: 16, | |
88 | + }, | |
73 | 89 | itemProps: { |
74 | 90 | extra: '客户、邀评人默认被分享', |
75 | 91 | }, |
... | ... | @@ -91,9 +107,12 @@ export const schemas: FormSchema[] = [ |
91 | 107 | }, |
92 | 108 | }, |
93 | 109 | { |
94 | - field: 'disclosurer', | |
110 | + field: 'disclosure', | |
95 | 111 | component: 'Select', |
96 | 112 | label: ' ', |
113 | + colProps: { | |
114 | + span: 8, | |
115 | + }, | |
97 | 116 | show: ({ model }) => { |
98 | 117 | return model.disclosure === '2'; |
99 | 118 | }, | ... | ... |
src/views/demo/page/form/basic/index.vue
src/views/demo/page/form/high/index.vue
... | ... | @@ -34,6 +34,7 @@ |
34 | 34 | const tableRef = ref<{ getDataSource: () => any } | null>(null); |
35 | 35 | |
36 | 36 | const [register, { validate }] = useForm({ |
37 | + layout: 'vertical', | |
37 | 38 | baseColProps: { |
38 | 39 | span: 6, |
39 | 40 | }, |
... | ... | @@ -42,6 +43,7 @@ |
42 | 43 | }); |
43 | 44 | |
44 | 45 | const [registerTask, { validate: validateTaskForm }] = useForm({ |
46 | + layout: 'vertical', | |
45 | 47 | baseColProps: { |
46 | 48 | span: 6, |
47 | 49 | }, | ... | ... |
src/views/demo/page/form/step/data.tsx
... | ... | @@ -15,6 +15,9 @@ export const step1Schemas: FormSchema[] = [ |
15 | 15 | }, |
16 | 16 | ], |
17 | 17 | }, |
18 | + colProps: { | |
19 | + span: 24, | |
20 | + }, | |
18 | 21 | }, |
19 | 22 | { |
20 | 23 | field: 'fac', |
... | ... | @@ -23,6 +26,9 @@ export const step1Schemas: FormSchema[] = [ |
23 | 26 | required: true, |
24 | 27 | defaultValue: 'test@example.com', |
25 | 28 | slot: 'fac', |
29 | + colProps: { | |
30 | + span: 24, | |
31 | + }, | |
26 | 32 | }, |
27 | 33 | { |
28 | 34 | field: 'pay', |
... | ... | @@ -37,6 +43,9 @@ export const step1Schemas: FormSchema[] = [ |
37 | 43 | label: '收款人姓名', |
38 | 44 | defaultValue: 'Vben', |
39 | 45 | required: true, |
46 | + colProps: { | |
47 | + span: 24, | |
48 | + }, | |
40 | 49 | }, |
41 | 50 | { |
42 | 51 | field: 'money', |
... | ... | @@ -49,6 +58,9 @@ export const step1Schemas: FormSchema[] = [ |
49 | 58 | prefix: () => '¥', |
50 | 59 | }; |
51 | 60 | }, |
61 | + colProps: { | |
62 | + span: 24, | |
63 | + }, | |
52 | 64 | }, |
53 | 65 | ]; |
54 | 66 | |
... | ... | @@ -59,5 +71,8 @@ export const step2Schemas: FormSchema[] = [ |
59 | 71 | label: '支付密码', |
60 | 72 | required: true, |
61 | 73 | defaultValue: '123456', |
74 | + colProps: { | |
75 | + span: 24, | |
76 | + }, | |
62 | 77 | }, |
63 | 78 | ]; | ... | ... |
src/views/demo/table/CustomerCell.vue
... | ... | @@ -32,13 +32,13 @@ |
32 | 32 | { |
33 | 33 | title: 'ID', |
34 | 34 | dataIndex: 'id', |
35 | - slots: { customRender: 'id' }, | |
35 | + // slots: { customRender: 'id' }, | |
36 | 36 | }, |
37 | 37 | { |
38 | 38 | title: '头像', |
39 | 39 | dataIndex: 'avatar', |
40 | 40 | width: 100, |
41 | - slots: { customRender: 'avatar' }, | |
41 | + // slots: { customRender: 'avatar' }, | |
42 | 42 | }, |
43 | 43 | { |
44 | 44 | title: '分类', |
... | ... | @@ -46,7 +46,7 @@ |
46 | 46 | width: 80, |
47 | 47 | align: 'center', |
48 | 48 | defaultHidden: true, |
49 | - slots: { customRender: 'category' }, | |
49 | + // slots: { customRender: 'category' }, | |
50 | 50 | }, |
51 | 51 | { |
52 | 52 | title: '姓名', |
... | ... | @@ -58,13 +58,13 @@ |
58 | 58 | dataIndex: 'imgArr', |
59 | 59 | helpMessage: ['这是简单模式的图片列表', '只会显示一张在表格中', '但点击可预览多张图片'], |
60 | 60 | width: 140, |
61 | - slots: { customRender: 'img' }, | |
61 | + // slots: { customRender: 'img' }, | |
62 | 62 | }, |
63 | 63 | { |
64 | 64 | title: '照片列表2', |
65 | 65 | dataIndex: 'imgs', |
66 | 66 | width: 160, |
67 | - slots: { customRender: 'imgs' }, | |
67 | + // slots: { customRender: 'imgs' }, | |
68 | 68 | }, |
69 | 69 | { |
70 | 70 | title: '地址', |
... | ... | @@ -73,7 +73,7 @@ |
73 | 73 | { |
74 | 74 | title: '编号', |
75 | 75 | dataIndex: 'no', |
76 | - slots: { customRender: 'no' }, | |
76 | + // slots: { customRender: 'no' }, | |
77 | 77 | }, |
78 | 78 | { |
79 | 79 | title: '开始时间', | ... | ... |
src/views/demo/table/EditCellTable.vue
... | ... | @@ -9,13 +9,14 @@ |
9 | 9 | </div> |
10 | 10 | </template> |
11 | 11 | <script lang="ts"> |
12 | - import { defineComponent } from 'vue'; | |
12 | + import { defineComponent, h } from 'vue'; | |
13 | 13 | import { BasicTable, useTable, BasicColumn } from '/@/components/Table'; |
14 | 14 | import { optionsListApi } from '/@/api/demo/select'; |
15 | 15 | |
16 | 16 | import { demoListApi } from '/@/api/demo/table'; |
17 | 17 | import { treeOptionsListApi } from '/@/api/demo/tree'; |
18 | 18 | import { useMessage } from '/@/hooks/web/useMessage'; |
19 | + import { Progress } from 'ant-design-vue'; | |
19 | 20 | const columns: BasicColumn[] = [ |
20 | 21 | { |
21 | 22 | title: '输入框', |
... | ... | @@ -60,6 +61,15 @@ |
60 | 61 | editRule: true, |
61 | 62 | editComponent: 'InputNumber', |
62 | 63 | width: 200, |
64 | + editComponentProps: () => { | |
65 | + return { | |
66 | + max: 100, | |
67 | + min: 0, | |
68 | + }; | |
69 | + }, | |
70 | + editRender: ({ text }) => { | |
71 | + return h(Progress, { percent: Number(text) }); | |
72 | + }, | |
63 | 73 | }, |
64 | 74 | { |
65 | 75 | title: '下拉框', | ... | ... |
src/views/demo/table/ExpandTable.vue
src/views/demo/table/FixedColumn.vue
src/views/demo/table/tableData.tsx
... | ... | @@ -123,13 +123,13 @@ export function getCustomHeaderColumns(): BasicColumn[] { |
123 | 123 | // title: '姓名', |
124 | 124 | dataIndex: 'name', |
125 | 125 | width: 120, |
126 | - slots: { title: 'customTitle' }, | |
126 | + // slots: { title: 'customTitle' }, | |
127 | 127 | }, |
128 | 128 | { |
129 | 129 | // title: '地址', |
130 | 130 | dataIndex: 'address', |
131 | 131 | width: 120, |
132 | - slots: { title: 'customAddress' }, | |
132 | + // slots: { title: 'customAddress' }, | |
133 | 133 | sorter: true, |
134 | 134 | }, |
135 | 135 | ... | ... |
src/views/sys/lock/LockPage.vue
... | ... | @@ -5,23 +5,7 @@ |
5 | 5 | > |
6 | 6 | <div |
7 | 7 | :class="`${prefixCls}__unlock`" |
8 | - class=" | |
9 | - absolute | |
10 | - top-0 | |
11 | - left-1/2 | |
12 | - flex | |
13 | - pt-5 | |
14 | - h-16 | |
15 | - items-center | |
16 | - justify-center | |
17 | - sm:text-md | |
18 | - xl:text-xl | |
19 | - text-white | |
20 | - flex-col | |
21 | - cursor-pointer | |
22 | - transform | |
23 | - translate-x-1/2 | |
24 | - " | |
8 | + class="absolute top-0 left-1/2 flex pt-5 h-16 items-center justify-center sm:text-md xl:text-xl text-white flex-col cursor-pointer transform translate-x-1/2" | |
25 | 9 | @click="handleShowForm(false)" |
26 | 10 | v-show="showDate" |
27 | 11 | > | ... | ... |
src/views/sys/login/Login.vue
... | ... | @@ -32,23 +32,7 @@ |
32 | 32 | <div class="flex w-full h-full py-5 xl:h-auto xl:py-0 xl:my-0 xl:w-6/12"> |
33 | 33 | <div |
34 | 34 | :class="`${prefixCls}-form`" |
35 | - class=" | |
36 | - relative | |
37 | - w-full | |
38 | - px-5 | |
39 | - py-8 | |
40 | - mx-auto | |
41 | - my-auto | |
42 | - rounded-md | |
43 | - shadow-md | |
44 | - xl:ml-16 xl:bg-transparent | |
45 | - sm:px-8 | |
46 | - xl:p-4 xl:shadow-none | |
47 | - sm:w-3/4 | |
48 | - lg:w-2/4 | |
49 | - xl:w-auto | |
50 | - enter-x | |
51 | - " | |
35 | + class="relative w-full px-5 py-8 mx-auto my-auto rounded-md shadow-md xl:ml-16 xl:bg-transparent sm:px-8 xl:p-4 xl:shadow-none sm:w-3/4 lg:w-2/4 xl:w-auto enter-x" | |
52 | 36 | > |
53 | 37 | <LoginForm /> |
54 | 38 | <ForgetPasswordForm /> | ... | ... |
stylelint.config.js
1 | 1 | module.exports = { |
2 | 2 | root: true, |
3 | 3 | plugins: ['stylelint-order'], |
4 | - customSyntax: 'postcss-html', | |
5 | 4 | extends: ['stylelint-config-standard', 'stylelint-config-prettier'], |
5 | + customSyntax: 'postcss-html', | |
6 | 6 | rules: { |
7 | + 'function-no-unknown': null, | |
7 | 8 | 'selector-class-pattern': null, |
8 | 9 | 'selector-pseudo-class-no-unknown': [ |
9 | 10 | true, |
... | ... | @@ -35,6 +36,7 @@ module.exports = { |
35 | 36 | }, |
36 | 37 | ], |
37 | 38 | 'no-empty-source': null, |
39 | + 'string-quotes': null, | |
38 | 40 | 'named-grid-areas-no-invalid': null, |
39 | 41 | 'unicode-bom': 'never', |
40 | 42 | 'no-descending-specificity': null, |
... | ... | @@ -72,7 +74,7 @@ module.exports = { |
72 | 74 | overrides: [ |
73 | 75 | { |
74 | 76 | files: ['*.vue', '**/*.vue', '*.html', '**/*.html'], |
75 | - extends: ['stylelint-config-recommended', 'stylelint-config-html'], | |
77 | + extends: ['stylelint-config-recommended'], | |
76 | 78 | rules: { |
77 | 79 | 'keyframes-name-pattern': null, |
78 | 80 | 'selector-pseudo-class-no-unknown': [ |
... | ... | @@ -89,5 +91,10 @@ module.exports = { |
89 | 91 | ], |
90 | 92 | }, |
91 | 93 | }, |
94 | + { | |
95 | + files: ['*.less', '**/*.less'], | |
96 | + customSyntax: 'postcss-less', | |
97 | + extends: ['stylelint-config-standard', 'stylelint-config-recommended-vue'], | |
98 | + }, | |
92 | 99 | ], |
93 | 100 | }; | ... | ... |
tests/__mocks__/fileMock.ts deleted
100644 → 0
1 | -export default ''; |
tests/__mocks__/styleMock.ts deleted
100644 → 0
1 | -export default {}; |
tests/__mocks__/workerMock.ts deleted
100644 → 0
tests/server/package.json
... | ... | @@ -10,7 +10,7 @@ |
10 | 10 | "stop": "npx pm2 stop ecosystem.config.js" |
11 | 11 | }, |
12 | 12 | "dependencies": { |
13 | - "fs-extra": "^10.0.0", | |
13 | + "fs-extra": "^10.0.1", | |
14 | 14 | "koa": "^2.13.4", |
15 | 15 | "koa-body": "^4.2.0", |
16 | 16 | "koa-bodyparser": "^4.3.0", |
... | ... | @@ -24,13 +24,13 @@ |
24 | 24 | "@types/koa": "^2.13.4", |
25 | 25 | "@types/koa-bodyparser": "^5.0.2", |
26 | 26 | "@types/koa-router": "^7.4.4", |
27 | - "@types/node": "^17.0.5", | |
27 | + "@types/node": "^17.0.21", | |
28 | 28 | "nodemon": "^2.0.15", |
29 | - "pm2": "^5.1.2", | |
29 | + "pm2": "^5.2.0", | |
30 | 30 | "rimraf": "^3.0.2", |
31 | - "ts-node": "^10.4.0", | |
32 | - "tsconfig-paths": "^3.12.0", | |
33 | - "tsup": "^5.11.9", | |
34 | - "typescript": "^4.5.4" | |
31 | + "ts-node": "^10.7.0", | |
32 | + "tsconfig-paths": "^3.14.0", | |
33 | + "tsup": "^5.12.1", | |
34 | + "typescript": "^4.6.2" | |
35 | 35 | } |
36 | 36 | } | ... | ... |
tests/test.spec.ts deleted
100644 → 0
1 | -// import { mount } from '@vue/test-utils'; | |
2 | -// import { Button } from '/@/components/Button'; | |
3 | - | |
4 | -test('if jest is normal.', async () => { | |
5 | - expect('jest').toEqual('jest'); | |
6 | -}); | |
7 | - | |
8 | -// TODO Vue component testing is not supported temporarily | |
9 | -// test('is a Vue instance.', async () => { | |
10 | -// const wrapper = mount(Button, { | |
11 | -// slots: { | |
12 | -// default: 'Button text', | |
13 | -// }, | |
14 | -// }); | |
15 | -// expect(wrapper.html()).toContain('Button text'); | |
16 | -// }); |
types/axios.d.ts
... | ... | @@ -23,8 +23,15 @@ export interface RequestOptions { |
23 | 23 | ignoreCancelToken?: boolean; |
24 | 24 | // Whether to send token in header |
25 | 25 | withToken?: boolean; |
26 | + // 请求重试机制 | |
27 | + retryRequest?: RetryRequest; | |
26 | 28 | } |
27 | 29 | |
30 | +export interface RetryRequest { | |
31 | + isOpenRetry: boolean; | |
32 | + count: number; | |
33 | + waitTime: number; | |
34 | +} | |
28 | 35 | export interface Result<T = any> { |
29 | 36 | code: number; |
30 | 37 | type: 'success' | 'error' | 'warning'; | ... | ... |
vite.config.ts
... | ... | @@ -53,24 +53,31 @@ export default ({ command, mode }: ConfigEnv): UserConfig => { |
53 | 53 | ], |
54 | 54 | }, |
55 | 55 | server: { |
56 | + https: true, | |
56 | 57 | // Listening on all local IPs |
57 | 58 | host: true, |
58 | 59 | port: VITE_PORT, |
59 | 60 | // Load proxy configuration from .env |
60 | 61 | proxy: createProxy(VITE_PROXY), |
61 | 62 | }, |
63 | + esbuild: { | |
64 | + pure: VITE_DROP_CONSOLE ? ['console.log', 'debugger'] : [], | |
65 | + }, | |
62 | 66 | build: { |
63 | - minify: false, | |
64 | - // target: 'es2015', | |
65 | - // cssTarget: 'chrome86', | |
67 | + target: 'es2015', | |
68 | + cssTarget: 'chrome80', | |
66 | 69 | outDir: OUTPUT_DIR, |
67 | - terserOptions: { | |
68 | - compress: { | |
69 | - keep_infinity: true, | |
70 | - // Used to delete console in production environment | |
71 | - drop_console: VITE_DROP_CONSOLE, | |
72 | - }, | |
73 | - }, | |
70 | + // minify: 'terser', | |
71 | + /** | |
72 | + * 当 minify=“minify:'terser'” 解开注释 | |
73 | + * Uncomment when minify="minify:'terser'" | |
74 | + */ | |
75 | + // terserOptions: { | |
76 | + // compress: { | |
77 | + // keep_infinity: true, | |
78 | + // drop_console: VITE_DROP_CONSOLE, | |
79 | + // }, | |
80 | + // }, | |
74 | 81 | // Turning off brotliSize display can slightly reduce packaging time |
75 | 82 | brotliSize: false, |
76 | 83 | chunkSizeWarningLimit: 2000, | ... | ... |