mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-27 15:41:45 +01:00
Updates packages
This commit is contained in:
2
.github/dependabot.yml
vendored
2
.github/dependabot.yml
vendored
@@ -31,7 +31,7 @@ updates:
|
||||
schedule:
|
||||
interval: daily
|
||||
- package-ecosystem: npm
|
||||
directory: "/integration"
|
||||
directory: "/e2e"
|
||||
labels:
|
||||
- "npm"
|
||||
- "dependencies"
|
||||
|
||||
170
package.json
170
package.json
@@ -1,89 +1,89 @@
|
||||
{
|
||||
"name": "dozzle",
|
||||
"version": "3.9.0",
|
||||
"description": "Realtime log viewer for docker containers. ",
|
||||
"homepage": "https://github.com/amir20/dozzle#readme",
|
||||
"bugs": {
|
||||
"url": "https://github.com/amir20/dozzle/issues"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/amir20/dozzle.git"
|
||||
},
|
||||
"license": "ISC",
|
||||
"author": "Amir Raminfar <findamir@gmail.com>",
|
||||
"scripts": {
|
||||
"watch:assets": "vite --open",
|
||||
"watch:server": "LIVE_FS=true DOZZLE_ADDR=:3100 reflex -c .reflex",
|
||||
"dev": "make fake_assets && npm-run-all -p watch:assets watch:server",
|
||||
"build": "vite build",
|
||||
"release": "release-it",
|
||||
"test": "TZ=UTC jest",
|
||||
"postinstall": "husky install"
|
||||
},
|
||||
"dependencies": {
|
||||
"@iconify-json/carbon": "^1.0.10",
|
||||
"@iconify-json/cil": "^1.0.1",
|
||||
"@iconify-json/mdi": "^1.0.10",
|
||||
"@iconify-json/mdi-light": "^1.0.1",
|
||||
"@iconify-json/octicon": "^1.0.5",
|
||||
"@oruga-ui/oruga-next": "^0.4.7",
|
||||
"@oruga-ui/theme-bulma": "^0.1.3",
|
||||
"@vitejs/plugin-vue": "^1.9.4",
|
||||
"@vueuse/core": "^6.9.1",
|
||||
"ansi-to-html": "^0.7.2",
|
||||
"bulma": "^0.9.3",
|
||||
"date-fns": "^2.25.0",
|
||||
"fuzzysort": "^1.1.4",
|
||||
"hotkeys-js": "^3.8.7",
|
||||
"lodash.debounce": "^4.0.8",
|
||||
"lodash.throttle": "^4.1.1",
|
||||
"pinia": "^2.0.3",
|
||||
"sass": "^1.43.4",
|
||||
"semver": "^7.3.5",
|
||||
"splitpanes": "^3.0.6",
|
||||
"typescript": "^4.4.4",
|
||||
"unplugin-auto-import": "^0.4.14",
|
||||
"unplugin-icons": "^0.12.18",
|
||||
"unplugin-vue-components": "^0.17.2",
|
||||
"vite": "^2.6.14",
|
||||
"vue": "^3.2.22",
|
||||
"vue-router": "^4.0.12"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/plugin-transform-runtime": "^7.16.0",
|
||||
"@babel/preset-env": "^7.16.0",
|
||||
"@pinia/testing": "^0.0.6",
|
||||
"@types/jest": "^27.0.2",
|
||||
"@types/lodash.debounce": "^4.0.6",
|
||||
"@types/lodash.throttle": "^4.1.6",
|
||||
"@types/semver": "^7.3.9",
|
||||
"@vue/compiler-sfc": "^3.2.22",
|
||||
"@vue/test-utils": "^2.0.0-rc.16",
|
||||
"@vue/vue3-jest": "^27.0.0-alpha.3",
|
||||
"eventsourcemock": "^2.0.0",
|
||||
"husky": "^7.0.4",
|
||||
"jest": "^27.3.1",
|
||||
"jest-serializer-vue": "^2.0.2",
|
||||
"lint-staged": "^11.2.6",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"prettier": "^2.4.1",
|
||||
"release-it": "^14.11.7",
|
||||
"ts-jest": "^27.0.7",
|
||||
"ts-node": "^10.4.0"
|
||||
},
|
||||
"lint-staged": {
|
||||
"*.{js,vue,css}": [
|
||||
"prettier --write"
|
||||
]
|
||||
},
|
||||
"release-it": {
|
||||
"github": {
|
||||
"release": false,
|
||||
"releaseNotes": "git log --pretty=format:\"* %s (%h)\" $(git describe --abbrev=0 --tags $(git rev-list --tags --skip=1 --max-count=1))...HEAD~1"
|
||||
"name": "dozzle",
|
||||
"version": "3.9.0",
|
||||
"description": "Realtime log viewer for docker containers. ",
|
||||
"homepage": "https://github.com/amir20/dozzle#readme",
|
||||
"bugs": {
|
||||
"url": "https://github.com/amir20/dozzle/issues"
|
||||
},
|
||||
"npm": {
|
||||
"publish": false
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/amir20/dozzle.git"
|
||||
},
|
||||
"license": "ISC",
|
||||
"author": "Amir Raminfar <findamir@gmail.com>",
|
||||
"scripts": {
|
||||
"watch:assets": "vite --open",
|
||||
"watch:server": "LIVE_FS=true DOZZLE_ADDR=:3100 reflex -c .reflex",
|
||||
"dev": "make fake_assets && npm-run-all -p watch:assets watch:server",
|
||||
"build": "vite build",
|
||||
"release": "release-it",
|
||||
"test": "TZ=UTC jest",
|
||||
"postinstall": "husky install"
|
||||
},
|
||||
"dependencies": {
|
||||
"@iconify-json/carbon": "^1.0.11",
|
||||
"@iconify-json/cil": "^1.0.1",
|
||||
"@iconify-json/mdi": "^1.0.10",
|
||||
"@iconify-json/mdi-light": "^1.0.1",
|
||||
"@iconify-json/octicon": "^1.0.5",
|
||||
"@oruga-ui/oruga-next": "^0.4.8",
|
||||
"@oruga-ui/theme-bulma": "^0.1.4",
|
||||
"@vitejs/plugin-vue": "^1.9.4",
|
||||
"@vueuse/core": "^6.9.2",
|
||||
"ansi-to-html": "^0.7.2",
|
||||
"bulma": "^0.9.3",
|
||||
"date-fns": "^2.26.0",
|
||||
"fuzzysort": "^1.1.4",
|
||||
"hotkeys-js": "^3.8.7",
|
||||
"lodash.debounce": "^4.0.8",
|
||||
"lodash.throttle": "^4.1.1",
|
||||
"pinia": "^2.0.4",
|
||||
"sass": "^1.43.4",
|
||||
"semver": "^7.3.5",
|
||||
"splitpanes": "^3.0.6",
|
||||
"typescript": "^4.5.2",
|
||||
"unplugin-auto-import": "^0.4.14",
|
||||
"unplugin-icons": "^0.12.18",
|
||||
"unplugin-vue-components": "^0.17.2",
|
||||
"vite": "^2.6.14",
|
||||
"vue": "^3.2.22",
|
||||
"vue-router": "^4.0.12"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/plugin-transform-runtime": "^7.16.4",
|
||||
"@babel/preset-env": "^7.16.4",
|
||||
"@pinia/testing": "^0.0.6",
|
||||
"@types/jest": "^27.0.3",
|
||||
"@types/lodash.debounce": "^4.0.6",
|
||||
"@types/lodash.throttle": "^4.1.6",
|
||||
"@types/semver": "^7.3.9",
|
||||
"@vue/compiler-sfc": "^3.2.22",
|
||||
"@vue/test-utils": "^2.0.0-rc.16",
|
||||
"@vue/vue3-jest": "^27.0.0-alpha.3",
|
||||
"eventsourcemock": "^2.0.0",
|
||||
"husky": "^7.0.4",
|
||||
"jest": "^27.3.1",
|
||||
"jest-serializer-vue": "^2.0.2",
|
||||
"lint-staged": "^11.2.6",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"prettier": "^2.4.1",
|
||||
"release-it": "^14.11.8",
|
||||
"ts-jest": "^27.0.7",
|
||||
"ts-node": "^10.4.0"
|
||||
},
|
||||
"lint-staged": {
|
||||
"*.{js,vue,css}": [
|
||||
"prettier --write"
|
||||
]
|
||||
},
|
||||
"release-it": {
|
||||
"github": {
|
||||
"release": false,
|
||||
"releaseNotes": "git log --pretty=format:\"* %s (%h)\" $(git describe --abbrev=0 --tags $(git rev-list --tags --skip=1 --max-count=1))...HEAD~1"
|
||||
},
|
||||
"npm": {
|
||||
"publish": false
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
375
pnpm-lock.yaml
generated
375
pnpm-lock.yaml
generated
@@ -1,17 +1,17 @@
|
||||
lockfileVersion: 5.3
|
||||
|
||||
specifiers:
|
||||
'@babel/plugin-transform-runtime': ^7.16.0
|
||||
'@babel/preset-env': ^7.16.0
|
||||
'@iconify-json/carbon': ^1.0.10
|
||||
'@babel/plugin-transform-runtime': ^7.16.4
|
||||
'@babel/preset-env': ^7.16.4
|
||||
'@iconify-json/carbon': ^1.0.11
|
||||
'@iconify-json/cil': ^1.0.1
|
||||
'@iconify-json/mdi': ^1.0.10
|
||||
'@iconify-json/mdi-light': ^1.0.1
|
||||
'@iconify-json/octicon': ^1.0.5
|
||||
'@oruga-ui/oruga-next': ^0.4.7
|
||||
'@oruga-ui/theme-bulma': ^0.1.3
|
||||
'@oruga-ui/oruga-next': ^0.4.8
|
||||
'@oruga-ui/theme-bulma': ^0.1.4
|
||||
'@pinia/testing': ^0.0.6
|
||||
'@types/jest': ^27.0.2
|
||||
'@types/jest': ^27.0.3
|
||||
'@types/lodash.debounce': ^4.0.6
|
||||
'@types/lodash.throttle': ^4.1.6
|
||||
'@types/semver': ^7.3.9
|
||||
@@ -19,10 +19,10 @@ specifiers:
|
||||
'@vue/compiler-sfc': ^3.2.22
|
||||
'@vue/test-utils': ^2.0.0-rc.16
|
||||
'@vue/vue3-jest': ^27.0.0-alpha.3
|
||||
'@vueuse/core': ^6.9.1
|
||||
'@vueuse/core': ^6.9.2
|
||||
ansi-to-html: ^0.7.2
|
||||
bulma: ^0.9.3
|
||||
date-fns: ^2.25.0
|
||||
date-fns: ^2.26.0
|
||||
eventsourcemock: ^2.0.0
|
||||
fuzzysort: ^1.1.4
|
||||
hotkeys-js: ^3.8.7
|
||||
@@ -33,15 +33,15 @@ specifiers:
|
||||
lodash.debounce: ^4.0.8
|
||||
lodash.throttle: ^4.1.1
|
||||
npm-run-all: ^4.1.5
|
||||
pinia: ^2.0.3
|
||||
pinia: ^2.0.4
|
||||
prettier: ^2.4.1
|
||||
release-it: ^14.11.7
|
||||
release-it: ^14.11.8
|
||||
sass: ^1.43.4
|
||||
semver: ^7.3.5
|
||||
splitpanes: ^3.0.6
|
||||
ts-jest: ^27.0.7
|
||||
ts-node: ^10.4.0
|
||||
typescript: ^4.4.4
|
||||
typescript: ^4.5.2
|
||||
unplugin-auto-import: ^0.4.14
|
||||
unplugin-icons: ^0.12.18
|
||||
unplugin-vue-components: ^0.17.2
|
||||
@@ -50,28 +50,28 @@ specifiers:
|
||||
vue-router: ^4.0.12
|
||||
|
||||
dependencies:
|
||||
'@iconify-json/carbon': 1.0.10
|
||||
'@iconify-json/carbon': 1.0.11
|
||||
'@iconify-json/cil': 1.0.1
|
||||
'@iconify-json/mdi': 1.0.10
|
||||
'@iconify-json/mdi-light': 1.0.1
|
||||
'@iconify-json/octicon': 1.0.5
|
||||
'@oruga-ui/oruga-next': 0.4.7_vue@3.2.22
|
||||
'@oruga-ui/theme-bulma': 0.1.3
|
||||
'@oruga-ui/oruga-next': 0.4.8_vue@3.2.22
|
||||
'@oruga-ui/theme-bulma': 0.1.4
|
||||
'@vitejs/plugin-vue': 1.9.4_vite@2.6.14
|
||||
'@vueuse/core': 6.9.1_vue@3.2.22
|
||||
'@vueuse/core': 6.9.2_vue@3.2.22
|
||||
ansi-to-html: 0.7.2
|
||||
bulma: 0.9.3
|
||||
date-fns: 2.25.0
|
||||
date-fns: 2.26.0
|
||||
fuzzysort: 1.1.4
|
||||
hotkeys-js: 3.8.7
|
||||
lodash.debounce: 4.0.8
|
||||
lodash.throttle: 4.1.1
|
||||
pinia: 2.0.3_typescript@4.4.4+vue@3.2.22
|
||||
pinia: 2.0.4_typescript@4.5.2+vue@3.2.22
|
||||
sass: 1.43.4
|
||||
semver: 7.3.5
|
||||
splitpanes: 3.0.6
|
||||
typescript: 4.4.4
|
||||
unplugin-auto-import: 0.4.14_@vueuse+core@6.9.1+vite@2.6.14
|
||||
typescript: 4.5.2
|
||||
unplugin-auto-import: 0.4.14_@vueuse+core@6.9.2+vite@2.6.14
|
||||
unplugin-icons: 0.12.18_744c3dc4f4777e47e76c501a561da7bf
|
||||
unplugin-vue-components: 0.17.2_vite@2.6.14+vue@3.2.22
|
||||
vite: 2.6.14_sass@1.43.4
|
||||
@@ -79,16 +79,16 @@ dependencies:
|
||||
vue-router: 4.0.12_vue@3.2.22
|
||||
|
||||
devDependencies:
|
||||
'@babel/plugin-transform-runtime': 7.16.0
|
||||
'@babel/preset-env': 7.16.0
|
||||
'@pinia/testing': 0.0.6_pinia@2.0.3+vue@3.2.22
|
||||
'@types/jest': 27.0.2
|
||||
'@babel/plugin-transform-runtime': 7.16.4
|
||||
'@babel/preset-env': 7.16.4
|
||||
'@pinia/testing': 0.0.6_pinia@2.0.4+vue@3.2.22
|
||||
'@types/jest': 27.0.3
|
||||
'@types/lodash.debounce': 4.0.6
|
||||
'@types/lodash.throttle': 4.1.6
|
||||
'@types/semver': 7.3.9
|
||||
'@vue/compiler-sfc': 3.2.22
|
||||
'@vue/test-utils': 2.0.0-rc.16_vue@3.2.22
|
||||
'@vue/vue3-jest': 27.0.0-alpha.3_ebe0a67a4fae2cf0b4be307c93b4d0a3
|
||||
'@vue/vue3-jest': 27.0.0-alpha.3_2aa927d9e5c70099d9e9ab020bd2b8a6
|
||||
eventsourcemock: 2.0.0
|
||||
husky: 7.0.4
|
||||
jest: 27.3.1_ts-node@10.4.0
|
||||
@@ -96,9 +96,9 @@ devDependencies:
|
||||
lint-staged: 11.2.6
|
||||
npm-run-all: 4.1.5
|
||||
prettier: 2.4.1
|
||||
release-it: 14.11.7
|
||||
ts-jest: 27.0.7_2c4ca6574207836d1023f54689cc81ac
|
||||
ts-node: 10.4.0_typescript@4.4.4
|
||||
release-it: 14.11.8
|
||||
ts-jest: 27.0.7_7e2a439bb7b53c38ff0c1a3c5e04c2c5
|
||||
ts-node: 10.4.0_typescript@4.5.2
|
||||
|
||||
packages:
|
||||
|
||||
@@ -129,8 +129,8 @@ packages:
|
||||
'@babel/highlight': 7.16.0
|
||||
dev: true
|
||||
|
||||
/@babel/compat-data/7.16.0:
|
||||
resolution: {integrity: sha512-DGjt2QZse5SGd9nfOSqO4WLJ8NN/oHkijbXbPrxuoJO3oIPJL3TciZs9FX+cOHNiY9E9l0opL8g7BmLe3T+9ew==}
|
||||
/@babel/compat-data/7.16.4:
|
||||
resolution: {integrity: sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
dev: true
|
||||
|
||||
@@ -140,12 +140,12 @@ packages:
|
||||
dependencies:
|
||||
'@babel/code-frame': 7.16.0
|
||||
'@babel/generator': 7.16.0
|
||||
'@babel/helper-compilation-targets': 7.16.0_@babel+core@7.16.0
|
||||
'@babel/helper-compilation-targets': 7.16.3_@babel+core@7.16.0
|
||||
'@babel/helper-module-transforms': 7.16.0
|
||||
'@babel/helpers': 7.16.0
|
||||
'@babel/parser': 7.16.3
|
||||
'@babel/parser': 7.16.4
|
||||
'@babel/template': 7.16.0
|
||||
'@babel/traverse': 7.16.0
|
||||
'@babel/traverse': 7.16.3
|
||||
'@babel/types': 7.16.0
|
||||
convert-source-map: 1.8.0
|
||||
debug: 4.3.2
|
||||
@@ -181,28 +181,28 @@ packages:
|
||||
'@babel/types': 7.16.0
|
||||
dev: true
|
||||
|
||||
/@babel/helper-compilation-targets/7.16.0:
|
||||
resolution: {integrity: sha512-S7iaOT1SYlqK0sQaCi21RX4+13hmdmnxIEAnQUB/eh7GeAnRjOUgTYpLkUOiRXzD+yog1JxP0qyAQZ7ZxVxLVg==}
|
||||
/@babel/helper-compilation-targets/7.16.3:
|
||||
resolution: {integrity: sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0
|
||||
dependencies:
|
||||
'@babel/compat-data': 7.16.0
|
||||
'@babel/compat-data': 7.16.4
|
||||
'@babel/helper-validator-option': 7.14.5
|
||||
browserslist: 4.17.6
|
||||
browserslist: 4.18.1
|
||||
semver: 6.3.0
|
||||
dev: true
|
||||
|
||||
/@babel/helper-compilation-targets/7.16.0_@babel+core@7.16.0:
|
||||
resolution: {integrity: sha512-S7iaOT1SYlqK0sQaCi21RX4+13hmdmnxIEAnQUB/eh7GeAnRjOUgTYpLkUOiRXzD+yog1JxP0qyAQZ7ZxVxLVg==}
|
||||
/@babel/helper-compilation-targets/7.16.3_@babel+core@7.16.0:
|
||||
resolution: {integrity: sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0
|
||||
dependencies:
|
||||
'@babel/compat-data': 7.16.0
|
||||
'@babel/compat-data': 7.16.4
|
||||
'@babel/core': 7.16.0
|
||||
'@babel/helper-validator-option': 7.14.5
|
||||
browserslist: 4.17.6
|
||||
browserslist: 4.18.1
|
||||
semver: 6.3.0
|
||||
dev: true
|
||||
|
||||
@@ -232,15 +232,15 @@ packages:
|
||||
regexpu-core: 4.8.0
|
||||
dev: true
|
||||
|
||||
/@babel/helper-define-polyfill-provider/0.2.4:
|
||||
resolution: {integrity: sha512-OrpPZ97s+aPi6h2n1OXzdhVis1SGSsMU2aMHgLcOKfsp4/v1NWpx3CWT3lBj5eeBq9cDkPkh+YCfdF7O12uNDQ==}
|
||||
/@babel/helper-define-polyfill-provider/0.3.0:
|
||||
resolution: {integrity: sha512-7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.4.0-0
|
||||
dependencies:
|
||||
'@babel/helper-compilation-targets': 7.16.0
|
||||
'@babel/helper-compilation-targets': 7.16.3
|
||||
'@babel/helper-module-imports': 7.16.0
|
||||
'@babel/helper-plugin-utils': 7.14.5
|
||||
'@babel/traverse': 7.16.0
|
||||
'@babel/traverse': 7.16.3
|
||||
debug: 4.3.2
|
||||
lodash.debounce: 4.0.8
|
||||
resolve: 1.20.0
|
||||
@@ -303,7 +303,7 @@ packages:
|
||||
'@babel/helper-split-export-declaration': 7.16.0
|
||||
'@babel/helper-validator-identifier': 7.15.7
|
||||
'@babel/template': 7.16.0
|
||||
'@babel/traverse': 7.16.0
|
||||
'@babel/traverse': 7.16.3
|
||||
'@babel/types': 7.16.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
@@ -332,13 +332,24 @@ packages:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@babel/helper-remap-async-to-generator/7.16.4:
|
||||
resolution: {integrity: sha512-vGERmmhR+s7eH5Y/cp8PCVzj4XEjerq8jooMfxFdA5xVtAk9Sh4AQsrWgiErUEBjtGrBtOFKDUcWQFW4/dFwMA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/helper-annotate-as-pure': 7.16.0
|
||||
'@babel/helper-wrap-function': 7.16.0
|
||||
'@babel/types': 7.16.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@babel/helper-replace-supers/7.16.0:
|
||||
resolution: {integrity: sha512-TQxuQfSCdoha7cpRNJvfaYxxxzmbxXw/+6cS7V02eeDYyhxderSoMVALvwupA54/pZcOTtVeJ0xccp1nGWladA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/helper-member-expression-to-functions': 7.16.0
|
||||
'@babel/helper-optimise-call-expression': 7.16.0
|
||||
'@babel/traverse': 7.16.0
|
||||
'@babel/traverse': 7.16.3
|
||||
'@babel/types': 7.16.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
@@ -381,7 +392,7 @@ packages:
|
||||
dependencies:
|
||||
'@babel/helper-function-name': 7.16.0
|
||||
'@babel/template': 7.16.0
|
||||
'@babel/traverse': 7.16.0
|
||||
'@babel/traverse': 7.16.3
|
||||
'@babel/types': 7.16.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
@@ -392,7 +403,7 @@ packages:
|
||||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/template': 7.16.0
|
||||
'@babel/traverse': 7.16.0
|
||||
'@babel/traverse': 7.16.3
|
||||
'@babel/types': 7.16.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
@@ -418,6 +429,12 @@ packages:
|
||||
hasBin: true
|
||||
dev: true
|
||||
|
||||
/@babel/parser/7.16.4:
|
||||
resolution: {integrity: sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng==}
|
||||
engines: {node: '>=6.0.0'}
|
||||
hasBin: true
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.2:
|
||||
resolution: {integrity: sha512-h37CvpLSf8gb2lIJ2CgC3t+EjFbi0t8qS7LCS1xcJIlEXE4czlofwaW7W1HA8zpgOCzI9C1nmoqNR1zWkk0pQg==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
@@ -438,14 +455,14 @@ packages:
|
||||
'@babel/plugin-proposal-optional-chaining': 7.16.0
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-proposal-async-generator-functions/7.16.0:
|
||||
resolution: {integrity: sha512-nyYmIo7ZqKsY6P4lnVmBlxp9B3a96CscbLotlsNuktMHahkDwoPYEjXrZHU0Tj844Z9f1IthVxQln57mhkcExw==}
|
||||
/@babel/plugin-proposal-async-generator-functions/7.16.4:
|
||||
resolution: {integrity: sha512-/CUekqaAaZCQHleSK/9HajvcD/zdnJiKRiuUFq8ITE+0HsPzquf53cpFiqAwl/UfmJbR6n5uGPQSPdrmKOvHHg==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/helper-plugin-utils': 7.14.5
|
||||
'@babel/helper-remap-async-to-generator': 7.16.0
|
||||
'@babel/helper-remap-async-to-generator': 7.16.4
|
||||
'@babel/plugin-syntax-async-generators': 7.8.4
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
@@ -542,11 +559,11 @@ packages:
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/compat-data': 7.16.0
|
||||
'@babel/helper-compilation-targets': 7.16.0
|
||||
'@babel/compat-data': 7.16.4
|
||||
'@babel/helper-compilation-targets': 7.16.3
|
||||
'@babel/helper-plugin-utils': 7.14.5
|
||||
'@babel/plugin-syntax-object-rest-spread': 7.8.3
|
||||
'@babel/plugin-transform-parameters': 7.16.0
|
||||
'@babel/plugin-transform-parameters': 7.16.3
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-proposal-optional-catch-binding/7.16.0:
|
||||
@@ -1065,8 +1082,8 @@ packages:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-parameters/7.16.0:
|
||||
resolution: {integrity: sha512-XgnQEm1CevKROPx+udOi/8f8TiGhrUWiHiaUCIp47tE0tpFDjzXNTZc9E5CmCwxNjXTWEVqvRfWZYOTFvMa/ZQ==}
|
||||
/@babel/plugin-transform-parameters/7.16.3:
|
||||
resolution: {integrity: sha512-3MaDpJrOXT1MZ/WCmkOFo7EtmVVC8H4EUZVrHvFOsmwkk4lOjQj8rzv8JKUZV4YoQKeoIgk07GO+acPU9IMu/w==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
@@ -1101,17 +1118,17 @@ packages:
|
||||
'@babel/helper-plugin-utils': 7.14.5
|
||||
dev: true
|
||||
|
||||
/@babel/plugin-transform-runtime/7.16.0:
|
||||
resolution: {integrity: sha512-zlPf1/XFn5+vWdve3AAhf+Sxl+MVa5VlwTwWgnLx23u4GlatSRQJ3Eoo9vllf0a9il3woQsT4SK+5Z7c06h8ag==}
|
||||
/@babel/plugin-transform-runtime/7.16.4:
|
||||
resolution: {integrity: sha512-pru6+yHANMTukMtEZGC4fs7XPwg35v8sj5CIEmE+gEkFljFiVJxEWxx/7ZDkTK+iZRYo1bFXBtfIN95+K3cJ5A==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/helper-module-imports': 7.16.0
|
||||
'@babel/helper-plugin-utils': 7.14.5
|
||||
babel-plugin-polyfill-corejs2: 0.2.3
|
||||
babel-plugin-polyfill-corejs3: 0.3.0
|
||||
babel-plugin-polyfill-regenerator: 0.2.3
|
||||
babel-plugin-polyfill-corejs2: 0.3.0
|
||||
babel-plugin-polyfill-corejs3: 0.4.0
|
||||
babel-plugin-polyfill-regenerator: 0.3.0
|
||||
semver: 6.3.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
@@ -1182,19 +1199,19 @@ packages:
|
||||
'@babel/helper-plugin-utils': 7.14.5
|
||||
dev: true
|
||||
|
||||
/@babel/preset-env/7.16.0:
|
||||
resolution: {integrity: sha512-cdTu/W0IrviamtnZiTfixPfIncr2M1VqRrkjzZWlr1B4TVYimCFK5jkyOdP4qw2MrlKHi+b3ORj6x8GoCew8Dg==}
|
||||
/@babel/preset-env/7.16.4:
|
||||
resolution: {integrity: sha512-v0QtNd81v/xKj4gNKeuAerQ/azeNn/G1B1qMLeXOcV8+4TWlD2j3NV1u8q29SDFBXx/NBq5kyEAO+0mpRgacjA==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/compat-data': 7.16.0
|
||||
'@babel/helper-compilation-targets': 7.16.0
|
||||
'@babel/compat-data': 7.16.4
|
||||
'@babel/helper-compilation-targets': 7.16.3
|
||||
'@babel/helper-plugin-utils': 7.14.5
|
||||
'@babel/helper-validator-option': 7.14.5
|
||||
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.2
|
||||
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.0
|
||||
'@babel/plugin-proposal-async-generator-functions': 7.16.0
|
||||
'@babel/plugin-proposal-async-generator-functions': 7.16.4
|
||||
'@babel/plugin-proposal-class-properties': 7.16.0
|
||||
'@babel/plugin-proposal-class-static-block': 7.16.0
|
||||
'@babel/plugin-proposal-dynamic-import': 7.16.0
|
||||
@@ -1244,7 +1261,7 @@ packages:
|
||||
'@babel/plugin-transform-named-capturing-groups-regex': 7.16.0
|
||||
'@babel/plugin-transform-new-target': 7.16.0
|
||||
'@babel/plugin-transform-object-super': 7.16.0
|
||||
'@babel/plugin-transform-parameters': 7.16.0
|
||||
'@babel/plugin-transform-parameters': 7.16.3
|
||||
'@babel/plugin-transform-property-literals': 7.16.0
|
||||
'@babel/plugin-transform-regenerator': 7.16.0
|
||||
'@babel/plugin-transform-reserved-words': 7.16.0
|
||||
@@ -1257,9 +1274,9 @@ packages:
|
||||
'@babel/plugin-transform-unicode-regex': 7.16.0
|
||||
'@babel/preset-modules': 0.1.5
|
||||
'@babel/types': 7.16.0
|
||||
babel-plugin-polyfill-corejs2: 0.2.3
|
||||
babel-plugin-polyfill-corejs3: 0.3.0
|
||||
babel-plugin-polyfill-regenerator: 0.2.3
|
||||
babel-plugin-polyfill-corejs2: 0.3.0
|
||||
babel-plugin-polyfill-corejs3: 0.4.0
|
||||
babel-plugin-polyfill-regenerator: 0.3.0
|
||||
core-js-compat: 3.19.1
|
||||
semver: 6.3.0
|
||||
transitivePeerDependencies:
|
||||
@@ -1290,12 +1307,12 @@ packages:
|
||||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/code-frame': 7.16.0
|
||||
'@babel/parser': 7.16.3
|
||||
'@babel/parser': 7.16.4
|
||||
'@babel/types': 7.16.0
|
||||
dev: true
|
||||
|
||||
/@babel/traverse/7.16.0:
|
||||
resolution: {integrity: sha512-qQ84jIs1aRQxaGaxSysII9TuDaguZ5yVrEuC0BN2vcPlalwfLovVmCjbFDPECPXcYM/wLvNFfp8uDOliLxIoUQ==}
|
||||
/@babel/traverse/7.16.3:
|
||||
resolution: {integrity: sha512-eolumr1vVMjqevCpwVO99yN/LoGL0EyHiLO5I043aYQvwOJ9eR5UsZSClHVCzfhBduMAsSzgA/6AyqPjNayJag==}
|
||||
engines: {node: '>=6.9.0'}
|
||||
dependencies:
|
||||
'@babel/code-frame': 7.16.0
|
||||
@@ -1303,7 +1320,7 @@ packages:
|
||||
'@babel/helper-function-name': 7.16.0
|
||||
'@babel/helper-hoist-variables': 7.16.0
|
||||
'@babel/helper-split-export-declaration': 7.16.0
|
||||
'@babel/parser': 7.16.3
|
||||
'@babel/parser': 7.16.4
|
||||
'@babel/types': 7.16.0
|
||||
debug: 4.3.2
|
||||
globals: 11.12.0
|
||||
@@ -1339,8 +1356,8 @@ packages:
|
||||
resolution: {integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==}
|
||||
dev: true
|
||||
|
||||
/@iconify-json/carbon/1.0.10:
|
||||
resolution: {integrity: sha512-Tw/bjIWIJ8cx3lTqqvETkui3Z7dNW1j/kYTckAmjiGNJhlMi7b4pL7iFyxnkb3Y7dpia1ZNQOwzHUXMxxxk6WA==}
|
||||
/@iconify-json/carbon/1.0.11:
|
||||
resolution: {integrity: sha512-vwjG7/uzD7ToQwt+dBHjLJ6Fd2AsnxrFOYjypiuuleqRX/zEQTMC58GsdqO77IuVz4E/HcO+DJ83w+QItCRDRg==}
|
||||
dependencies:
|
||||
'@iconify/types': 1.0.10
|
||||
dev: false
|
||||
@@ -1684,12 +1701,12 @@ packages:
|
||||
'@octokit/request-error': 2.1.0
|
||||
'@octokit/types': 6.34.0
|
||||
is-plain-object: 5.0.0
|
||||
node-fetch: 2.6.5
|
||||
node-fetch: 2.6.6
|
||||
universal-user-agent: 6.0.0
|
||||
dev: true
|
||||
|
||||
/@octokit/rest/18.10.0:
|
||||
resolution: {integrity: sha512-esHR5OKy38bccL/sajHqZudZCvmv4yjovMJzyXlphaUo7xykmtOdILGJ3aAm0mFHmMLmPFmDMJXf39cAjNJsrw==}
|
||||
/@octokit/rest/18.12.0:
|
||||
resolution: {integrity: sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==}
|
||||
dependencies:
|
||||
'@octokit/core': 3.5.1
|
||||
'@octokit/plugin-paginate-rest': 2.17.0_@octokit+core@3.5.1
|
||||
@@ -1703,26 +1720,26 @@ packages:
|
||||
'@octokit/openapi-types': 11.2.0
|
||||
dev: true
|
||||
|
||||
/@oruga-ui/oruga-next/0.4.7_vue@3.2.22:
|
||||
resolution: {integrity: sha512-3BPqgjZwNFcUWH97CoQR4CH4VAL5mDm+0+joWdHEx0hqdxeKn/VL3M0OdIIqPsNxOScteP0fBhXNvzll5mLXDQ==}
|
||||
/@oruga-ui/oruga-next/0.4.8_vue@3.2.22:
|
||||
resolution: {integrity: sha512-gIN26oHacUcJTeNfQEmgnDWSa0EKOAzGfBqLslFnHpTIHvow/NIiO5raI7N6SqNOvw0q+BU5PKw7AYC2ecAQRw==}
|
||||
peerDependencies:
|
||||
vue: ^3.0.0
|
||||
dependencies:
|
||||
vue: 3.2.22
|
||||
dev: false
|
||||
|
||||
/@oruga-ui/theme-bulma/0.1.3:
|
||||
resolution: {integrity: sha512-lzNtYA9QX/LwdkALTvOJV9iyHTFdrfom9omP2yquaiYvZTdgm9xsM6CyghjMA/QkyePowDDuu/sIFrbRKDRP8w==}
|
||||
/@oruga-ui/theme-bulma/0.1.4:
|
||||
resolution: {integrity: sha512-QlAtkL0Q2eOyAvdhZlt5318ihDLkKee5tIyBdSqaNQuYqZI3Ud4YCrLa3mqs5UYqy1bzyzhVfGEduW2vIvsjIg==}
|
||||
dependencies:
|
||||
bulma: 0.9.3
|
||||
dev: false
|
||||
|
||||
/@pinia/testing/0.0.6_pinia@2.0.3+vue@3.2.22:
|
||||
/@pinia/testing/0.0.6_pinia@2.0.4+vue@3.2.22:
|
||||
resolution: {integrity: sha512-Jb+M5Cu0HCBULvpl7sSYn6hZ0v30pAMWGfPNO6DmoCJ1RnDbz0VtEF4A5C7Cuuo485cJaCm074V+2VO8Fs+Usg==}
|
||||
peerDependencies:
|
||||
pinia: ~2.0.4
|
||||
dependencies:
|
||||
pinia: 2.0.3_typescript@4.4.4+vue@3.2.22
|
||||
pinia: 2.0.4_typescript@4.5.2+vue@3.2.22
|
||||
vue-demi: 0.12.1_vue@3.2.22
|
||||
transitivePeerDependencies:
|
||||
- '@vue/composition-api'
|
||||
@@ -1797,7 +1814,7 @@ packages:
|
||||
/@types/babel__core/7.1.16:
|
||||
resolution: {integrity: sha512-EAEHtisTMM+KaKwfWdC3oyllIqswlznXCIVCt7/oRNrh+DhgT4UEBNC/jlADNjvw7UnfbcdkGQcPVZ1xYiLcrQ==}
|
||||
dependencies:
|
||||
'@babel/parser': 7.16.3
|
||||
'@babel/parser': 7.16.4
|
||||
'@babel/types': 7.16.0
|
||||
'@types/babel__generator': 7.6.3
|
||||
'@types/babel__template': 7.4.1
|
||||
@@ -1813,7 +1830,7 @@ packages:
|
||||
/@types/babel__template/7.4.1:
|
||||
resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
|
||||
dependencies:
|
||||
'@babel/parser': 7.16.3
|
||||
'@babel/parser': 7.16.4
|
||||
'@babel/types': 7.16.0
|
||||
dev: true
|
||||
|
||||
@@ -1828,7 +1845,7 @@ packages:
|
||||
dependencies:
|
||||
'@types/http-cache-semantics': 4.0.1
|
||||
'@types/keyv': 3.1.3
|
||||
'@types/node': 16.11.6
|
||||
'@types/node': 16.11.9
|
||||
'@types/responselike': 1.0.0
|
||||
dev: true
|
||||
|
||||
@@ -1858,8 +1875,8 @@ packages:
|
||||
'@types/istanbul-lib-report': 3.0.0
|
||||
dev: true
|
||||
|
||||
/@types/jest/27.0.2:
|
||||
resolution: {integrity: sha512-4dRxkS/AFX0c5XW6IPMNOydLn2tEhNhJV7DnYK+0bjoJZ+QTmfucBlihX7aoEsh/ocYtkLC73UbnBXBXIxsULA==}
|
||||
/@types/jest/27.0.3:
|
||||
resolution: {integrity: sha512-cmmwv9t7gBYt7hNKH5Spu7Kuu/DotGa+Ff+JGRKZ4db5eh8PnKS4LuebJ3YLUoyOyIHraTGyULn23YtEAm0VSg==}
|
||||
dependencies:
|
||||
jest-diff: 27.3.1
|
||||
pretty-format: 27.3.1
|
||||
@@ -1868,7 +1885,7 @@ packages:
|
||||
/@types/keyv/3.1.3:
|
||||
resolution: {integrity: sha512-FXCJgyyN3ivVgRoml4h94G/p3kY+u/B86La+QptcqJaWtBWtmc6TtkNfS40n9bIvyLteHh7zXOtgbobORKPbDg==}
|
||||
dependencies:
|
||||
'@types/node': 16.11.6
|
||||
'@types/node': 16.11.9
|
||||
dev: true
|
||||
|
||||
/@types/lodash.debounce/4.0.6:
|
||||
@@ -1891,6 +1908,10 @@ packages:
|
||||
resolution: {integrity: sha512-ua7PgUoeQFjmWPcoo9khiPum3Pd60k4/2ZGXt18sm2Slk0W0xZTqt5Y0Ny1NyBiN1EVQ/+FaF9NcY4Qe6rwk5w==}
|
||||
dev: true
|
||||
|
||||
/@types/node/16.11.9:
|
||||
resolution: {integrity: sha512-MKmdASMf3LtPzwLyRrFjtFFZ48cMf8jmX5VRYrDQiJa8Ybu5VAmkqBWqKU8fdCwD8ysw4mQ9nrEHvzg6gunR7A==}
|
||||
dev: true
|
||||
|
||||
/@types/parse-json/4.0.0:
|
||||
resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
|
||||
dev: true
|
||||
@@ -1902,7 +1923,7 @@ packages:
|
||||
/@types/responselike/1.0.0:
|
||||
resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==}
|
||||
dependencies:
|
||||
'@types/node': 16.11.6
|
||||
'@types/node': 16.11.9
|
||||
dev: true
|
||||
|
||||
/@types/semver/7.3.9:
|
||||
@@ -1982,6 +2003,10 @@ packages:
|
||||
resolution: {integrity: sha512-21u2jFOk8jbAneeGpDwZQ0W66RJa0IBDUyVl6SgKnn2cRFjLWzKj+ukXjpLhYr1KASyCe5E5U4jXwChVo0YUAw==}
|
||||
dev: false
|
||||
|
||||
/@vue/devtools-api/6.0.0-beta.20.1:
|
||||
resolution: {integrity: sha512-R2rfiRY+kZugzWh9ZyITaovx+jpU4vgivAEAiz80kvh3yviiTU3CBuGuyWpSwGz9/C7TkSWVM/FtQRGlZ16n8Q==}
|
||||
dev: false
|
||||
|
||||
/@vue/reactivity/3.2.22:
|
||||
resolution: {integrity: sha512-xNkLAItjI0xB+lFeDgKCrSItmrHTaAzSnt8LmdSCPQnDyarmzbi/u4ESQnckWvlL7lSRKiEaOvblaNyqAa7OnQ==}
|
||||
dependencies:
|
||||
@@ -2033,7 +2058,7 @@ packages:
|
||||
vue: 3.2.22
|
||||
dev: true
|
||||
|
||||
/@vue/vue3-jest/27.0.0-alpha.3_ebe0a67a4fae2cf0b4be307c93b4d0a3:
|
||||
/@vue/vue3-jest/27.0.0-alpha.3_2aa927d9e5c70099d9e9ab020bd2b8a6:
|
||||
resolution: {integrity: sha512-q6Ij39J/qPMkMHhttq0r4Yx/leaN1rMnUrwicLwad9YuVO6sPAbiaiUa+A5jbcHcHGMhXcJ69oGIf4dj7oGidg==}
|
||||
peerDependencies:
|
||||
'@babel/core': 7.x
|
||||
@@ -2054,16 +2079,16 @@ packages:
|
||||
extract-from-css: 0.4.4
|
||||
jest: 27.3.1_ts-node@10.4.0
|
||||
source-map: 0.5.6
|
||||
ts-jest: 27.0.7_2c4ca6574207836d1023f54689cc81ac
|
||||
ts-jest: 27.0.7_7e2a439bb7b53c38ff0c1a3c5e04c2c5
|
||||
tsconfig: 7.0.0
|
||||
typescript: 4.4.4
|
||||
typescript: 4.5.2
|
||||
vue: 3.2.22
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/@vueuse/core/6.9.1_vue@3.2.22:
|
||||
resolution: {integrity: sha512-msa36DxnnbIu41bUTvfSudF6TL4wo0+Yrpw6yr1bFtwtYTOo8GZXYWPKyvXUVGhBBqrTVNTqsTtD0eXXHJ3roA==}
|
||||
/@vueuse/core/6.9.2_vue@3.2.22:
|
||||
resolution: {integrity: sha512-FRwl4ccSFuHZBHLGgS9TMv/+Dd6XFaL4o9nph2qtgQIV+z29RBFokw08XjHfykiENRzB01MjYHJ7iRUnsIFQXg==}
|
||||
peerDependencies:
|
||||
'@vue/composition-api': ^1.1.0
|
||||
vue: ^2.6.0 || ^3.2.0
|
||||
@@ -2073,13 +2098,13 @@ packages:
|
||||
vue:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@vueuse/shared': 6.9.1_vue@3.2.22
|
||||
'@vueuse/shared': 6.9.2_vue@3.2.22
|
||||
vue: 3.2.22
|
||||
vue-demi: 0.12.1_vue@3.2.22
|
||||
dev: false
|
||||
|
||||
/@vueuse/shared/6.9.1_vue@3.2.22:
|
||||
resolution: {integrity: sha512-nQh+ayxkeCKUU9MZjyQpE7KfOb18e/QOHolOE2ZK5dpoHzCZK7MSXzgDtvb9omGkgK0mjXlLSJsVdGhG+QW7Aw==}
|
||||
/@vueuse/shared/6.9.2_vue@3.2.22:
|
||||
resolution: {integrity: sha512-lAiMh6XROs0kSKVd0Yb/6GKoQMxC1fYrFDi6opvQWISPtcqRNluRrQxLUZ3WTI78ovtoKRLktjhkFAtydcfFDg==}
|
||||
peerDependencies:
|
||||
'@vue/composition-api': ^1.1.0
|
||||
vue: ^2.6.0 || ^3.2.0
|
||||
@@ -2288,35 +2313,35 @@ packages:
|
||||
'@types/babel__traverse': 7.14.2
|
||||
dev: true
|
||||
|
||||
/babel-plugin-polyfill-corejs2/0.2.3:
|
||||
resolution: {integrity: sha512-NDZ0auNRzmAfE1oDDPW2JhzIMXUk+FFe2ICejmt5T4ocKgiQx3e0VCRx9NCAidcMtL2RUZaWtXnmjTCkx0tcbA==}
|
||||
/babel-plugin-polyfill-corejs2/0.3.0:
|
||||
resolution: {integrity: sha512-wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/compat-data': 7.16.0
|
||||
'@babel/helper-define-polyfill-provider': 0.2.4
|
||||
'@babel/compat-data': 7.16.4
|
||||
'@babel/helper-define-polyfill-provider': 0.3.0
|
||||
semver: 6.3.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/babel-plugin-polyfill-corejs3/0.3.0:
|
||||
resolution: {integrity: sha512-JLwi9vloVdXLjzACL80j24bG6/T1gYxwowG44dg6HN/7aTPdyPbJJidf6ajoA3RPHHtW0j9KMrSOLpIZpAnPpg==}
|
||||
/babel-plugin-polyfill-corejs3/0.4.0:
|
||||
resolution: {integrity: sha512-YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/helper-define-polyfill-provider': 0.2.4
|
||||
'@babel/helper-define-polyfill-provider': 0.3.0
|
||||
core-js-compat: 3.19.1
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/babel-plugin-polyfill-regenerator/0.2.3:
|
||||
resolution: {integrity: sha512-JVE78oRZPKFIeUqFGrSORNzQnrDwZR16oiWeGM8ZyjBn2XAT5OjP+wXx5ESuo33nUsFUEJYjtklnsKbxW5L+7g==}
|
||||
/babel-plugin-polyfill-regenerator/0.3.0:
|
||||
resolution: {integrity: sha512-dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg==}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.0.0-0
|
||||
dependencies:
|
||||
'@babel/helper-define-polyfill-provider': 0.2.4
|
||||
'@babel/helper-define-polyfill-provider': 0.3.0
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: true
|
||||
@@ -2406,13 +2431,13 @@ packages:
|
||||
resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==}
|
||||
dev: true
|
||||
|
||||
/browserslist/4.17.6:
|
||||
resolution: {integrity: sha512-uPgz3vyRTlEiCv4ee9KlsKgo2V6qPk7Jsn0KAn2OBqbqKo3iNcPEC1Ti6J4dwnz+aIRfEEEuOzC9IBk8tXUomw==}
|
||||
/browserslist/4.18.1:
|
||||
resolution: {integrity: sha512-8ScCzdpPwR2wQh8IT82CA2VgDwjHyqMovPBZSNH54+tm4Jk2pCuv90gmAdH6J84OCRWi0b4gMe6O6XPXuJnjgQ==}
|
||||
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
caniuse-lite: 1.0.30001278
|
||||
electron-to-chromium: 1.3.890
|
||||
caniuse-lite: 1.0.30001282
|
||||
electron-to-chromium: 1.3.904
|
||||
escalade: 3.1.1
|
||||
node-releases: 2.0.1
|
||||
picocolors: 1.0.0
|
||||
@@ -2477,7 +2502,7 @@ packages:
|
||||
clone-response: 1.0.2
|
||||
get-stream: 5.2.0
|
||||
http-cache-semantics: 4.1.0
|
||||
keyv: 4.0.3
|
||||
keyv: 4.0.4
|
||||
lowercase-keys: 2.0.0
|
||||
normalize-url: 6.1.0
|
||||
responselike: 2.0.0
|
||||
@@ -2505,8 +2530,8 @@ packages:
|
||||
engines: {node: '>=10'}
|
||||
dev: true
|
||||
|
||||
/caniuse-lite/1.0.30001278:
|
||||
resolution: {integrity: sha512-mpF9KeH8u5cMoEmIic/cr7PNS+F5LWBk0t2ekGT60lFf0Wq+n9LspAj0g3P+o7DQhD3sUdlMln4YFAWhFYn9jg==}
|
||||
/caniuse-lite/1.0.30001282:
|
||||
resolution: {integrity: sha512-YhF/hG6nqBEllymSIjLtR2iWDDnChvhnVJqp+vloyt2tEHFG1yBR+ac2B/rOw0qOK0m0lEXU2dv4E/sMk5P9Kg==}
|
||||
dev: true
|
||||
|
||||
/chalk/2.4.2:
|
||||
@@ -2710,7 +2735,7 @@ packages:
|
||||
/core-js-compat/3.19.1:
|
||||
resolution: {integrity: sha512-Q/VJ7jAF/y68+aUsQJ/afPOewdsGkDtcMb40J8MbuWKlK3Y+wtHq8bTHKPj2WKWLIqmS5JhHs4CzHtz6pT2W6g==}
|
||||
dependencies:
|
||||
browserslist: 4.17.6
|
||||
browserslist: 4.18.1
|
||||
semver: 7.0.0
|
||||
dev: true
|
||||
|
||||
@@ -2790,8 +2815,8 @@ packages:
|
||||
whatwg-url: 8.7.0
|
||||
dev: true
|
||||
|
||||
/date-fns/2.25.0:
|
||||
resolution: {integrity: sha512-ovYRFnTrbGPD4nqaEqescPEv1mNwvt+UTqI3Ay9SzNtey9NZnYu6E2qCcBBgJ6/2VF1zGGygpyTDITqpQQ5e+w==}
|
||||
/date-fns/2.26.0:
|
||||
resolution: {integrity: sha512-VQI812dRi3cusdY/fhoBKvc6l2W8BPWU1FNVnFH9Nttjx4AFBRzfSVb/Eyc7jBT6e9sg1XtAGsYpBQ6c/jygbg==}
|
||||
engines: {node: '>=0.11'}
|
||||
dev: false
|
||||
|
||||
@@ -2949,8 +2974,8 @@ packages:
|
||||
sigmund: 1.0.1
|
||||
dev: true
|
||||
|
||||
/electron-to-chromium/1.3.890:
|
||||
resolution: {integrity: sha512-VWlVXSkv0cA/OOehrEyqjUTHwV8YXCPTfPvbtoeU2aHR21vI4Ejh5aC4AxUwOmbLbBgb6Gd3URZahoCxtBqCYQ==}
|
||||
/electron-to-chromium/1.3.904:
|
||||
resolution: {integrity: sha512-x5uZWXcVNYkTh4JubD7KSC1VMKz0vZwJUqVwY3ihsW0bst1BXDe494Uqbg3Y0fDGVjJqA8vEeGuvO5foyH2+qw==}
|
||||
dev: true
|
||||
|
||||
/emittery/0.8.1:
|
||||
@@ -3247,7 +3272,7 @@ packages:
|
||||
merge-stream: 2.0.0
|
||||
npm-run-path: 4.0.1
|
||||
onetime: 5.1.2
|
||||
signal-exit: 3.0.5
|
||||
signal-exit: 3.0.6
|
||||
strip-final-newline: 2.0.0
|
||||
dev: true
|
||||
|
||||
@@ -3379,7 +3404,7 @@ packages:
|
||||
dependencies:
|
||||
asynckit: 0.4.0
|
||||
combined-stream: 1.0.8
|
||||
mime-types: 2.1.33
|
||||
mime-types: 2.1.34
|
||||
dev: true
|
||||
|
||||
/form-data/4.0.0:
|
||||
@@ -3388,7 +3413,7 @@ packages:
|
||||
dependencies:
|
||||
asynckit: 0.4.0
|
||||
combined-stream: 1.0.8
|
||||
mime-types: 2.1.32
|
||||
mime-types: 2.1.34
|
||||
dev: true
|
||||
|
||||
/fs.realpath/1.0.0:
|
||||
@@ -3516,8 +3541,8 @@ packages:
|
||||
slash: 3.0.0
|
||||
dev: true
|
||||
|
||||
/got/11.8.2:
|
||||
resolution: {integrity: sha512-D0QywKgIe30ODs+fm8wMZiAcZjypcCodPNuMz5H9Mny7RJ+IjJ10BdmGW7OM7fHXP+O7r6ZwapQ/YQmMSvB0UQ==}
|
||||
/got/11.8.3:
|
||||
resolution: {integrity: sha512-7gtQ5KiPh1RtGS9/Jbv1ofDpBFuq42gyfEib+ejaRBJuj/3tQFeR5+gw57e4ipaU8c/rCjvX6fkQz2lyDlGAOg==}
|
||||
engines: {node: '>=10.19.0'}
|
||||
dependencies:
|
||||
'@sindresorhus/is': 4.2.0
|
||||
@@ -3746,8 +3771,8 @@ packages:
|
||||
engines: {node: '>=10'}
|
||||
dev: true
|
||||
|
||||
/inquirer/8.1.5:
|
||||
resolution: {integrity: sha512-G6/9xUqmt/r+UvufSyrPpt84NYwhKZ9jLsgMbQzlx804XErNupor8WQdBnBRrXmBfTPpuwf1sV+ss2ovjgdXIg==}
|
||||
/inquirer/8.2.0:
|
||||
resolution: {integrity: sha512-0crLweprevJ02tTuA6ThpoAERAGyVILC4sS74uib58Xf/zSr1/ZWtmm7D5CI+bSQEaA04f0K7idaHpQbSWgiVQ==}
|
||||
engines: {node: '>=8.0.0'}
|
||||
dependencies:
|
||||
ansi-escapes: 4.3.2
|
||||
@@ -3821,8 +3846,8 @@ packages:
|
||||
ci-info: 2.0.0
|
||||
dev: true
|
||||
|
||||
/is-ci/3.0.0:
|
||||
resolution: {integrity: sha512-kDXyttuLeslKAHYL/K28F2YkM3x5jvFPEw3yXbRptXydjD9rpLEz+C5K5iutY9ZiUu6AP41JdvRQwF4Iqs4ZCQ==}
|
||||
/is-ci/3.0.1:
|
||||
resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
ci-info: 3.2.0
|
||||
@@ -4026,7 +4051,7 @@ packages:
|
||||
engines: {node: '>=8'}
|
||||
dependencies:
|
||||
'@babel/core': 7.16.0
|
||||
'@babel/parser': 7.16.3
|
||||
'@babel/parser': 7.16.4
|
||||
'@istanbuljs/schema': 0.1.3
|
||||
istanbul-lib-coverage: 3.2.0
|
||||
semver: 6.3.0
|
||||
@@ -4158,7 +4183,7 @@ packages:
|
||||
jest-validate: 27.3.1
|
||||
micromatch: 4.0.4
|
||||
pretty-format: 27.3.1
|
||||
ts-node: 10.4.0_typescript@4.4.4
|
||||
ts-node: 10.4.0_typescript@4.5.2
|
||||
transitivePeerDependencies:
|
||||
- bufferutil
|
||||
- canvas
|
||||
@@ -4253,7 +4278,7 @@ packages:
|
||||
resolution: {integrity: sha512-WK11ZUetDQaC09w4/j7o4FZDUIp+4iYWH/Lik34Pv7ukL+DuXFGdnmmi7dT58J2ZYKFB5r13GyE0z3NPeyJmsg==}
|
||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||
dependencies:
|
||||
'@babel/traverse': 7.16.0
|
||||
'@babel/traverse': 7.16.3
|
||||
'@jest/environment': 27.3.1
|
||||
'@jest/source-map': 27.0.6
|
||||
'@jest/test-result': 27.3.1
|
||||
@@ -4449,7 +4474,7 @@ packages:
|
||||
'@babel/generator': 7.16.0
|
||||
'@babel/parser': 7.16.3
|
||||
'@babel/plugin-syntax-typescript': 7.14.5_@babel+core@7.16.0
|
||||
'@babel/traverse': 7.16.0
|
||||
'@babel/traverse': 7.16.3
|
||||
'@babel/types': 7.16.0
|
||||
'@jest/transform': 27.3.1
|
||||
'@jest/types': 27.2.5
|
||||
@@ -4646,8 +4671,8 @@ packages:
|
||||
json-buffer: 3.0.0
|
||||
dev: true
|
||||
|
||||
/keyv/4.0.3:
|
||||
resolution: {integrity: sha512-zdGa2TOpSZPq5mU6iowDARnMBZgtCqJ11dJROFi6tg6kTn4nuUdU09lFyLFSaHrWqpIJ+EBq4E8/Dc0Vx5vLdA==}
|
||||
/keyv/4.0.4:
|
||||
resolution: {integrity: sha512-vqNHbAc8BBsxk+7QBYLW0Y219rWcClspR6WSeoHYKG5mnsSoOH+BL1pWq02DDCVdvvuUny5rkBlzMRzoqc+GIg==}
|
||||
dependencies:
|
||||
json-buffer: 3.0.1
|
||||
dev: true
|
||||
@@ -4867,28 +4892,16 @@ packages:
|
||||
braces: 3.0.2
|
||||
picomatch: 2.3.0
|
||||
|
||||
/mime-db/1.49.0:
|
||||
resolution: {integrity: sha512-CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA==}
|
||||
/mime-db/1.51.0:
|
||||
resolution: {integrity: sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==}
|
||||
engines: {node: '>= 0.6'}
|
||||
dev: true
|
||||
|
||||
/mime-db/1.50.0:
|
||||
resolution: {integrity: sha512-9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A==}
|
||||
engines: {node: '>= 0.6'}
|
||||
dev: true
|
||||
|
||||
/mime-types/2.1.32:
|
||||
resolution: {integrity: sha512-hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A==}
|
||||
/mime-types/2.1.34:
|
||||
resolution: {integrity: sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==}
|
||||
engines: {node: '>= 0.6'}
|
||||
dependencies:
|
||||
mime-db: 1.49.0
|
||||
dev: true
|
||||
|
||||
/mime-types/2.1.33:
|
||||
resolution: {integrity: sha512-plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g==}
|
||||
engines: {node: '>= 0.6'}
|
||||
dependencies:
|
||||
mime-db: 1.50.0
|
||||
mime-db: 1.51.0
|
||||
dev: true
|
||||
|
||||
/mimic-fn/2.1.0:
|
||||
@@ -4947,8 +4960,8 @@ packages:
|
||||
resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
|
||||
dev: true
|
||||
|
||||
/node-fetch/2.6.5:
|
||||
resolution: {integrity: sha512-mmlIVHJEu5rnIxgEgez6b9GgWXbkZj5YZ7fx+2r94a2E+Uirsp6HsPTPlomfdHtpt/B0cdKviwkoaM6pyvUOpQ==}
|
||||
/node-fetch/2.6.6:
|
||||
resolution: {integrity: sha512-Z8/6vRlTUChSdIgMa51jxQ4lrw/Jy5SOW10ObaA47/RElsAN2c5Pn8bTgFGWn/ibwzXTE8qwr1Yzx28vsecXEA==}
|
||||
engines: {node: 4.x || >=6.0.0}
|
||||
dependencies:
|
||||
whatwg-url: 5.0.0
|
||||
@@ -5261,10 +5274,10 @@ packages:
|
||||
engines: {node: '>=4'}
|
||||
dev: true
|
||||
|
||||
/pinia/2.0.3_typescript@4.4.4+vue@3.2.22:
|
||||
resolution: {integrity: sha512-jNq+eVCAbFQS/uOiqskSRsKsFzLcQpgegcpjI8eAzU3QOwmsdLLHZBE1dvy802jecRC3FPPJSlj1MISF/sRV2w==}
|
||||
/pinia/2.0.4_typescript@4.5.2+vue@3.2.22:
|
||||
resolution: {integrity: sha512-nAc2f9HmOcBbWRlnGDuBGedM1G6uFAR10FnJWP1/dgm1I2tM5jbgKL/3IgynP4mBnPCy//ky7g0WpCZl5Mmxsg==}
|
||||
peerDependencies:
|
||||
'@vue/composition-api': ^1.3.3
|
||||
'@vue/composition-api': ^1.4.0
|
||||
typescript: ^4.4.4
|
||||
vue: ^2.6.14 || ^3.2.0
|
||||
peerDependenciesMeta:
|
||||
@@ -5273,8 +5286,8 @@ packages:
|
||||
typescript:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@vue/devtools-api': 6.0.0-beta.20
|
||||
typescript: 4.4.4
|
||||
'@vue/devtools-api': 6.0.0-beta.20.1
|
||||
typescript: 4.5.2
|
||||
vue: 3.2.22
|
||||
vue-demi: 0.12.1_vue@3.2.22
|
||||
dev: false
|
||||
@@ -5514,13 +5527,13 @@ packages:
|
||||
jsesc: 0.5.0
|
||||
dev: true
|
||||
|
||||
/release-it/14.11.7:
|
||||
resolution: {integrity: sha512-m4p9+x6AEQPczc96Jyg6dGFeovpJVgRCtA1lxeIgTmQVt9dutYPkkjZeJngZgUJ17/Lb1bx6ZzW2qsKmopKnbQ==}
|
||||
/release-it/14.11.8:
|
||||
resolution: {integrity: sha512-951DJ0kwjwU7CwGU3BCvRBgLxuJsOPRrZkqx0AsugJdSyPpUdwY9nlU0RAoSKqgh+VTerzecXLIIwgsGIpNxlA==}
|
||||
engines: {node: '>=10'}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
'@iarna/toml': 2.2.5
|
||||
'@octokit/rest': 18.10.0
|
||||
'@octokit/rest': 18.12.0
|
||||
async-retry: 1.3.3
|
||||
chalk: 4.1.2
|
||||
cosmiconfig: 7.0.1
|
||||
@@ -5530,12 +5543,12 @@ packages:
|
||||
form-data: 4.0.0
|
||||
git-url-parse: 11.6.0
|
||||
globby: 11.0.4
|
||||
got: 11.8.2
|
||||
got: 11.8.3
|
||||
import-cwd: 3.0.0
|
||||
inquirer: 8.1.5
|
||||
is-ci: 3.0.0
|
||||
inquirer: 8.2.0
|
||||
is-ci: 3.0.1
|
||||
lodash: 4.17.21
|
||||
mime-types: 2.1.32
|
||||
mime-types: 2.1.34
|
||||
new-github-release-url: 1.0.0
|
||||
open: 7.4.2
|
||||
ora: 5.4.1
|
||||
@@ -5611,7 +5624,7 @@ packages:
|
||||
engines: {node: '>=8'}
|
||||
dependencies:
|
||||
onetime: 5.1.2
|
||||
signal-exit: 3.0.5
|
||||
signal-exit: 3.0.6
|
||||
dev: true
|
||||
|
||||
/retry/0.13.1:
|
||||
@@ -5772,6 +5785,10 @@ packages:
|
||||
/signal-exit/3.0.5:
|
||||
resolution: {integrity: sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ==}
|
||||
|
||||
/signal-exit/3.0.6:
|
||||
resolution: {integrity: sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==}
|
||||
dev: true
|
||||
|
||||
/sisteransi/1.0.5:
|
||||
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
|
||||
dev: true
|
||||
@@ -6084,7 +6101,7 @@ packages:
|
||||
punycode: 2.1.1
|
||||
dev: true
|
||||
|
||||
/ts-jest/27.0.7_2c4ca6574207836d1023f54689cc81ac:
|
||||
/ts-jest/27.0.7_7e2a439bb7b53c38ff0c1a3c5e04c2c5:
|
||||
resolution: {integrity: sha512-O41shibMqzdafpuP+CkrOL7ykbmLh+FqQrXEmV9CydQ5JBk0Sj0uAEF5TNNe94fZWKm3yYvWa/IbyV4Yg1zK2Q==}
|
||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||
hasBin: true
|
||||
@@ -6102,7 +6119,7 @@ packages:
|
||||
babel-jest:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@types/jest': 27.0.2
|
||||
'@types/jest': 27.0.3
|
||||
bs-logger: 0.2.6
|
||||
fast-json-stable-stringify: 2.1.0
|
||||
jest: 27.3.1_ts-node@10.4.0
|
||||
@@ -6111,11 +6128,11 @@ packages:
|
||||
lodash.memoize: 4.1.2
|
||||
make-error: 1.3.6
|
||||
semver: 7.3.5
|
||||
typescript: 4.4.4
|
||||
typescript: 4.5.2
|
||||
yargs-parser: 20.2.9
|
||||
dev: true
|
||||
|
||||
/ts-node/10.4.0_typescript@4.4.4:
|
||||
/ts-node/10.4.0_typescript@4.5.2:
|
||||
resolution: {integrity: sha512-g0FlPvvCXSIO1JDF6S232P5jPYqBkRL9qly81ZgAOSU7rwI0stphCgd2kLiCrU9DjQCrJMWEqcNSjQL02s6d8A==}
|
||||
hasBin: true
|
||||
peerDependencies:
|
||||
@@ -6140,7 +6157,7 @@ packages:
|
||||
create-require: 1.1.1
|
||||
diff: 4.0.2
|
||||
make-error: 1.3.6
|
||||
typescript: 4.4.4
|
||||
typescript: 4.5.2
|
||||
yn: 3.1.1
|
||||
dev: true
|
||||
|
||||
@@ -6194,8 +6211,8 @@ packages:
|
||||
is-typedarray: 1.0.0
|
||||
dev: true
|
||||
|
||||
/typescript/4.4.4:
|
||||
resolution: {integrity: sha512-DqGhF5IKoBl8WNf8C1gu8q0xZSInh9j1kJJMqT3a94w1JzVaBU4EXOSMrz9yDqMT0xt3selp83fuFMQ0uzv6qA==}
|
||||
/typescript/4.5.2:
|
||||
resolution: {integrity: sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==}
|
||||
engines: {node: '>=4.2.0'}
|
||||
hasBin: true
|
||||
dev: false
|
||||
@@ -6248,7 +6265,7 @@ packages:
|
||||
engines: {node: '>= 4.0.0'}
|
||||
dev: true
|
||||
|
||||
/unplugin-auto-import/0.4.14_@vueuse+core@6.9.1+vite@2.6.14:
|
||||
/unplugin-auto-import/0.4.14_@vueuse+core@6.9.2+vite@2.6.14:
|
||||
resolution: {integrity: sha512-ui+M+E30xrdbXGt0+MMEM4fKhDqoBlv+xVKiYllVqUplqg/sFuXe28DBxM2xi2zAbwd/Vw3KUcLdvSmjzpA7+A==}
|
||||
engines: {node: '>=14'}
|
||||
peerDependencies:
|
||||
@@ -6259,7 +6276,7 @@ packages:
|
||||
dependencies:
|
||||
'@antfu/utils': 0.3.0
|
||||
'@rollup/pluginutils': 4.1.1
|
||||
'@vueuse/core': 6.9.1_vue@3.2.22
|
||||
'@vueuse/core': 6.9.2_vue@3.2.22
|
||||
local-pkg: 0.1.0
|
||||
magic-string: 0.25.7
|
||||
resolve: 1.20.0
|
||||
@@ -6609,7 +6626,7 @@ packages:
|
||||
dependencies:
|
||||
imurmurhash: 0.1.4
|
||||
is-typedarray: 1.0.0
|
||||
signal-exit: 3.0.5
|
||||
signal-exit: 3.0.6
|
||||
typedarray-to-buffer: 3.1.5
|
||||
dev: true
|
||||
|
||||
|
||||
Reference in New Issue
Block a user