chore: update deps

This commit is contained in:
Anthony Fu 2022-11-17 01:27:16 +08:00
parent 65aec3f101
commit 94b5fdddad
9 changed files with 249 additions and 238 deletions

View File

@ -15,9 +15,9 @@
"up": "taze major -I" "up": "taze major -I"
}, },
"dependencies": { "dependencies": {
"@unocss/reset": "^0.46.4", "@unocss/reset": "^0.46.5",
"@vueuse/core": "^9.5.0", "@vueuse/core": "^9.5.0",
"@vueuse/head": "^0.9.8", "@vueuse/head": "^1.0.16",
"nprogress": "^0.2.0", "nprogress": "^0.2.0",
"pinia": "^2.0.23", "pinia": "^2.0.23",
"vue": "^3.2.45", "vue": "^3.2.45",
@ -26,37 +26,37 @@
"vue-router": "^4.1.6" "vue-router": "^4.1.6"
}, },
"devDependencies": { "devDependencies": {
"@antfu/eslint-config": "^0.29.4", "@antfu/eslint-config": "^0.30.1",
"@iconify-json/carbon": "^1.1.9", "@iconify-json/carbon": "^1.1.10",
"@intlify/vite-plugin-vue-i18n": "^6.0.3", "@intlify/vite-plugin-vue-i18n": "^6.0.3",
"@types/markdown-it-link-attributes": "^3.0.1", "@types/markdown-it-link-attributes": "^3.0.1",
"@types/nprogress": "^0.2.0", "@types/nprogress": "^0.2.0",
"@vitejs/plugin-vue": "^3.2.0", "@vitejs/plugin-vue": "^3.2.0",
"@vue/test-utils": "^2.2.1", "@vue/test-utils": "^2.2.3",
"critters": "^0.0.16", "critters": "^0.0.16",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"cypress": "^11.0.1", "cypress": "^11.1.0",
"eslint": "^8.27.0", "eslint": "^8.27.0",
"eslint-plugin-cypress": "^2.12.1", "eslint-plugin-cypress": "^2.12.1",
"https-localhost": "^4.7.1", "https-localhost": "^4.7.1",
"markdown-it-link-attributes": "^4.0.1", "markdown-it-link-attributes": "^4.0.1",
"markdown-it-shiki": "^0.6.1", "markdown-it-shiki": "^0.6.1",
"pnpm": "^7.15.0", "pnpm": "^7.16.1",
"shiki": "^0.11.1", "shiki": "^0.11.1",
"taze": "^0.8.3", "taze": "^0.8.4",
"typescript": "^4.8.4", "typescript": "^4.9.3",
"unocss": "^0.46.4", "unocss": "^0.46.5",
"unplugin-auto-import": "^0.11.4", "unplugin-auto-import": "^0.11.4",
"unplugin-vue-components": "^0.22.9", "unplugin-vue-components": "^0.22.9",
"vite": "^3.2.3", "vite": "^3.2.4",
"vite-plugin-inspect": "^0.7.7", "vite-plugin-inspect": "^0.7.8",
"vite-plugin-pages": "^0.27.1", "vite-plugin-pages": "^0.27.1",
"vite-plugin-pwa": "^0.13.3", "vite-plugin-pwa": "^0.13.3",
"vite-plugin-vue-layouts": "^0.7.0", "vite-plugin-vue-layouts": "^0.7.0",
"vite-plugin-vue-markdown": "^0.22.1", "vite-plugin-vue-markdown": "^0.22.1",
"vite-ssg": "^0.21.2", "vite-ssg": "^0.21.2",
"vite-ssg-sitemap": "^0.4.3", "vite-ssg-sitemap": "^0.4.3",
"vitest": "^0.25.1", "vitest": "^0.25.2",
"vue-tsc": "^1.0.9" "vue-tsc": "^1.0.9"
} }
} }

View File

@ -7,6 +7,8 @@ export const install: UserModule = ({ isClient, router }) => {
if (to.path !== from.path) if (to.path !== from.path)
NProgress.start() NProgress.start()
}) })
router.afterEach(() => { NProgress.done() }) router.afterEach(() => {
NProgress.done()
})
} }
} }

View File

@ -17,6 +17,6 @@
"eslint": "^8.27.0", "eslint": "^8.27.0",
"eslint-plugin-antfu": "workspace:*", "eslint-plugin-antfu": "workspace:*",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"typescript": "^4.8.4" "typescript": "^4.9.3"
} }
} }

View File

@ -17,8 +17,8 @@
}, },
"dependencies": { "dependencies": {
"@antfu/eslint-config-vue": "workspace:*", "@antfu/eslint-config-vue": "workspace:*",
"@typescript-eslint/eslint-plugin": "^5.42.1", "@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.42.1", "@typescript-eslint/parser": "^5.43.0",
"eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-html": "^7.1.0", "eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.26.0", "eslint-plugin-import": "^2.26.0",

View File

@ -285,7 +285,7 @@ module.exports = {
'require-await': 'off', 'require-await': 'off',
'no-return-assign': 'off', 'no-return-assign': 'off',
'operator-linebreak': ['error', 'before'], 'operator-linebreak': ['error', 'before'],
'max-statements-per-line': ['error', { 'max': 1 }], 'max-statements-per-line': ['error', { max: 1 }],
// unicorns // unicorns
// Pass error message when throwing errors // Pass error message when throwing errors

View File

@ -16,11 +16,11 @@
"prepublishOnly": "nr build" "prepublishOnly": "nr build"
}, },
"dependencies": { "dependencies": {
"@typescript-eslint/utils": "^5.42.1" "@typescript-eslint/utils": "^5.43.0"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^18.11.9", "@types/node": "^18.11.9",
"unbuild": "^0.9.4", "unbuild": "^1.0.1",
"vitest": "^0.25.1" "vitest": "^0.25.2"
} }
} }

View File

@ -26,6 +26,6 @@
"devDependencies": { "devDependencies": {
"eslint": "^8.27.0", "eslint": "^8.27.0",
"react": "^18.2.0", "react": "^18.2.0",
"typescript": "^4.8.4" "typescript": "^4.9.3"
} }
} }

View File

@ -18,8 +18,8 @@
}, },
"dependencies": { "dependencies": {
"@antfu/eslint-config-basic": "workspace:*", "@antfu/eslint-config-basic": "workspace:*",
"@typescript-eslint/eslint-plugin": "^5.42.1", "@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.42.1" "@typescript-eslint/parser": "^5.43.0"
}, },
"devDependencies": { "devDependencies": {
"eslint": "^8.27.0" "eslint": "^8.27.0"

View File

@ -9,20 +9,20 @@ importers:
eslint: ^8.27.0 eslint: ^8.27.0
eslint-plugin-antfu: workspace:* eslint-plugin-antfu: workspace:*
rimraf: ^3.0.2 rimraf: ^3.0.2
typescript: ^4.8.4 typescript: ^4.9.3
devDependencies: devDependencies:
'@antfu/eslint-config': link:packages/all '@antfu/eslint-config': link:packages/all
bumpp: 8.2.1 bumpp: 8.2.1
eslint: 8.27.0 eslint: 8.27.0
eslint-plugin-antfu: link:packages/eslint-plugin-antfu eslint-plugin-antfu: link:packages/eslint-plugin-antfu
rimraf: 3.0.2 rimraf: 3.0.2
typescript: 4.8.4 typescript: 4.9.3
packages/all: packages/all:
specifiers: specifiers:
'@antfu/eslint-config-vue': workspace:* '@antfu/eslint-config-vue': workspace:*
'@typescript-eslint/eslint-plugin': ^5.42.1 '@typescript-eslint/eslint-plugin': ^5.43.0
'@typescript-eslint/parser': ^5.42.1 '@typescript-eslint/parser': ^5.43.0
eslint: ^8.27.0 eslint: ^8.27.0
eslint-plugin-eslint-comments: ^3.2.0 eslint-plugin-eslint-comments: ^3.2.0
eslint-plugin-html: ^7.1.0 eslint-plugin-html: ^7.1.0
@ -37,11 +37,11 @@ importers:
yaml-eslint-parser: ^1.1.0 yaml-eslint-parser: ^1.1.0
dependencies: dependencies:
'@antfu/eslint-config-vue': link:../vue '@antfu/eslint-config-vue': link:../vue
'@typescript-eslint/eslint-plugin': 5.42.1_jnohwm7eexgw7uduhweedcbnpe '@typescript-eslint/eslint-plugin': 5.43.0_wbsj7pk5g7hogwvhsif6xntns4
'@typescript-eslint/parser': 5.42.1_eslint@8.27.0 '@typescript-eslint/parser': 5.43.0_eslint@8.27.0
eslint-plugin-eslint-comments: 3.2.0_eslint@8.27.0 eslint-plugin-eslint-comments: 3.2.0_eslint@8.27.0
eslint-plugin-html: 7.1.0 eslint-plugin-html: 7.1.0
eslint-plugin-import: 2.26.0_jnohwm7eexgw7uduhweedcbnpe eslint-plugin-import: 2.26.0_wbsj7pk5g7hogwvhsif6xntns4
eslint-plugin-jsonc: 2.5.0_eslint@8.27.0 eslint-plugin-jsonc: 2.5.0_eslint@8.27.0
eslint-plugin-n: 15.5.1_eslint@8.27.0 eslint-plugin-n: 15.5.1_eslint@8.27.0
eslint-plugin-promise: 6.1.1_eslint@8.27.0 eslint-plugin-promise: 6.1.1_eslint@8.27.0
@ -89,15 +89,15 @@ importers:
packages/eslint-plugin-antfu: packages/eslint-plugin-antfu:
specifiers: specifiers:
'@types/node': ^18.11.9 '@types/node': ^18.11.9
'@typescript-eslint/utils': ^5.42.1 '@typescript-eslint/utils': ^5.43.0
unbuild: ^0.9.4 unbuild: ^1.0.1
vitest: ^0.25.1 vitest: ^0.25.2
dependencies: dependencies:
'@typescript-eslint/utils': 5.42.1 '@typescript-eslint/utils': 5.43.0
devDependencies: devDependencies:
'@types/node': 18.11.9 '@types/node': 18.11.9
unbuild: 0.9.4 unbuild: 1.0.1
vitest: 0.25.1 vitest: 0.25.2
packages/react: packages/react:
specifiers: specifiers:
@ -106,7 +106,7 @@ importers:
eslint-plugin-react: ^7.31.10 eslint-plugin-react: ^7.31.10
eslint-plugin-react-hooks: ^4.6.0 eslint-plugin-react-hooks: ^4.6.0
react: ^18.2.0 react: ^18.2.0
typescript: ^4.8.4 typescript: ^4.9.3
dependencies: dependencies:
'@antfu/eslint-config-ts': link:../typescript '@antfu/eslint-config-ts': link:../typescript
eslint-plugin-react: 7.31.10_eslint@8.27.0 eslint-plugin-react: 7.31.10_eslint@8.27.0
@ -114,18 +114,18 @@ importers:
devDependencies: devDependencies:
eslint: 8.27.0 eslint: 8.27.0
react: 18.2.0 react: 18.2.0
typescript: 4.8.4 typescript: 4.9.3
packages/typescript: packages/typescript:
specifiers: specifiers:
'@antfu/eslint-config-basic': workspace:* '@antfu/eslint-config-basic': workspace:*
'@typescript-eslint/eslint-plugin': ^5.42.1 '@typescript-eslint/eslint-plugin': ^5.43.0
'@typescript-eslint/parser': ^5.42.1 '@typescript-eslint/parser': ^5.43.0
eslint: ^8.27.0 eslint: ^8.27.0
dependencies: dependencies:
'@antfu/eslint-config-basic': link:../basic '@antfu/eslint-config-basic': link:../basic
'@typescript-eslint/eslint-plugin': 5.42.1_jnohwm7eexgw7uduhweedcbnpe '@typescript-eslint/eslint-plugin': 5.43.0_wbsj7pk5g7hogwvhsif6xntns4
'@typescript-eslint/parser': 5.42.1_eslint@8.27.0 '@typescript-eslint/parser': 5.43.0_eslint@8.27.0
devDependencies: devDependencies:
eslint: 8.27.0 eslint: 8.27.0
@ -348,8 +348,8 @@ packages:
to-fast-properties: 2.0.0 to-fast-properties: 2.0.0
dev: true dev: true
/@esbuild/android-arm/0.15.13: /@esbuild/android-arm/0.15.14:
resolution: {integrity: sha512-RY2fVI8O0iFUNvZirXaQ1vMvK0xhCcl0gqRj74Z6yEiO1zAUa7hbsdwZM1kzqbxHK7LFyMizipfXT3JME+12Hw==} resolution: {integrity: sha512-+Rb20XXxRGisNu2WmNKk+scpanb7nL5yhuI1KR9wQFiC43ddPj/V1fmNyzlFC9bKiG4mYzxW7egtoHVcynr+OA==}
engines: {node: '>=12'} engines: {node: '>=12'}
cpu: [arm] cpu: [arm]
os: [android] os: [android]
@ -366,8 +366,8 @@ packages:
dev: true dev: true
optional: true optional: true
/@esbuild/linux-loong64/0.15.13: /@esbuild/linux-loong64/0.15.14:
resolution: {integrity: sha512-+BoyIm4I8uJmH/QDIH0fu7MG0AEx9OXEDXnqptXCwKOlOqZiS4iraH1Nr7/ObLMokW3sOCeBNyD68ATcV9b9Ag==} resolution: {integrity: sha512-eQi9rosGNVQFJyJWV0HCA5WZae/qWIQME7s8/j8DMvnylfBv62Pbu+zJ2eUDqNf2O4u3WB+OEXyfkpBoe194sg==}
engines: {node: '>=12'} engines: {node: '>=12'}
cpu: [loong64] cpu: [loong64]
os: [linux] os: [linux]
@ -605,8 +605,8 @@ packages:
resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==} resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==}
dev: false dev: false
/@typescript-eslint/eslint-plugin/5.42.1_jnohwm7eexgw7uduhweedcbnpe: /@typescript-eslint/eslint-plugin/5.43.0_wbsj7pk5g7hogwvhsif6xntns4:
resolution: {integrity: sha512-LyR6x784JCiJ1j6sH5Y0K6cdExqCCm8DJUTcwG5ThNXJj/G8o5E56u5EdG4SLy+bZAwZBswC+GYn3eGdttBVCg==} resolution: {integrity: sha512-wNPzG+eDR6+hhW4yobEmpR36jrqqQv1vxBq5LJO3fBAktjkvekfr4BRl+3Fn1CM/A+s8/EiGUbOMDoYqWdbtXA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies: peerDependencies:
'@typescript-eslint/parser': ^5.0.0 '@typescript-eslint/parser': ^5.0.0
@ -616,23 +616,23 @@ packages:
typescript: typescript:
optional: true optional: true
dependencies: dependencies:
'@typescript-eslint/parser': 5.42.1_eslint@8.27.0 '@typescript-eslint/parser': 5.43.0_eslint@8.27.0
'@typescript-eslint/scope-manager': 5.42.1 '@typescript-eslint/scope-manager': 5.43.0
'@typescript-eslint/type-utils': 5.42.1_eslint@8.27.0 '@typescript-eslint/type-utils': 5.43.0_eslint@8.27.0
'@typescript-eslint/utils': 5.42.1_eslint@8.27.0 '@typescript-eslint/utils': 5.43.0_eslint@8.27.0
debug: 4.3.4 debug: 4.3.4
eslint: 8.27.0 eslint: 8.27.0
ignore: 5.2.0 ignore: 5.2.0
natural-compare-lite: 1.4.0 natural-compare-lite: 1.4.0
regexpp: 3.2.0 regexpp: 3.2.0
semver: 7.3.7 semver: 7.3.8
tsutils: 3.21.0 tsutils: 3.21.0
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
dev: false dev: false
/@typescript-eslint/parser/5.42.1_eslint@8.27.0: /@typescript-eslint/parser/5.43.0_eslint@8.27.0:
resolution: {integrity: sha512-kAV+NiNBWVQDY9gDJDToTE/NO8BHi4f6b7zTsVAJoTkmB/zlfOpiEVBzHOKtlgTndCKe8vj9F/PuolemZSh50Q==} resolution: {integrity: sha512-2iHUK2Lh7PwNUlhFxxLI2haSDNyXvebBO9izhjhMoDC+S3XI9qt2DGFUsiJ89m2k7gGYch2aEpYqV5F/+nwZug==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies: peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
@ -641,25 +641,25 @@ packages:
typescript: typescript:
optional: true optional: true
dependencies: dependencies:
'@typescript-eslint/scope-manager': 5.42.1 '@typescript-eslint/scope-manager': 5.43.0
'@typescript-eslint/types': 5.42.1 '@typescript-eslint/types': 5.43.0
'@typescript-eslint/typescript-estree': 5.42.1 '@typescript-eslint/typescript-estree': 5.43.0
debug: 4.3.4 debug: 4.3.4
eslint: 8.27.0 eslint: 8.27.0
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
dev: false dev: false
/@typescript-eslint/scope-manager/5.42.1: /@typescript-eslint/scope-manager/5.43.0:
resolution: {integrity: sha512-QAZY/CBP1Emx4rzxurgqj3rUinfsh/6mvuKbLNMfJMMKYLRBfweus8brgXF8f64ABkIZ3zdj2/rYYtF8eiuksQ==} resolution: {integrity: sha512-XNWnGaqAtTJsUiZaoiGIrdJYHsUOd3BZ3Qj5zKp9w6km6HsrjPk/TGZv0qMTWyWj0+1QOqpHQ2gZOLXaGA9Ekw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies: dependencies:
'@typescript-eslint/types': 5.42.1 '@typescript-eslint/types': 5.43.0
'@typescript-eslint/visitor-keys': 5.42.1 '@typescript-eslint/visitor-keys': 5.43.0
dev: false dev: false
/@typescript-eslint/type-utils/5.42.1_eslint@8.27.0: /@typescript-eslint/type-utils/5.43.0_eslint@8.27.0:
resolution: {integrity: sha512-WWiMChneex5w4xPIX56SSnQQo0tEOy5ZV2dqmj8Z371LJ0E+aymWD25JQ/l4FOuuX+Q49A7pzh/CGIQflxMVXg==} resolution: {integrity: sha512-K21f+KY2/VvYggLf5Pk4tgBOPs2otTaIHy2zjclo7UZGLyFH86VfUOm5iq+OtDtxq/Zwu2I3ujDBykVW4Xtmtg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies: peerDependencies:
eslint: '*' eslint: '*'
@ -668,8 +668,8 @@ packages:
typescript: typescript:
optional: true optional: true
dependencies: dependencies:
'@typescript-eslint/typescript-estree': 5.42.1 '@typescript-eslint/typescript-estree': 5.43.0
'@typescript-eslint/utils': 5.42.1_eslint@8.27.0 '@typescript-eslint/utils': 5.43.0_eslint@8.27.0
debug: 4.3.4 debug: 4.3.4
eslint: 8.27.0 eslint: 8.27.0
tsutils: 3.21.0 tsutils: 3.21.0
@ -677,13 +677,13 @@ packages:
- supports-color - supports-color
dev: false dev: false
/@typescript-eslint/types/5.42.1: /@typescript-eslint/types/5.43.0:
resolution: {integrity: sha512-Qrco9dsFF5lhalz+lLFtxs3ui1/YfC6NdXu+RAGBa8uSfn01cjO7ssCsjIsUs484vny9Xm699FSKwpkCcqwWwA==} resolution: {integrity: sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: false dev: false
/@typescript-eslint/typescript-estree/5.42.1: /@typescript-eslint/typescript-estree/5.43.0:
resolution: {integrity: sha512-qElc0bDOuO0B8wDhhW4mYVgi/LZL+igPwXtV87n69/kYC/7NG3MES0jHxJNCr4EP7kY1XVsRy8C/u3DYeTKQmw==} resolution: {integrity: sha512-BZ1WVe+QQ+igWal2tDbNg1j2HWUkAa+CVqdU79L4HP9izQY6CNhXfkNwd1SS4+sSZAP/EthI1uiCSY/+H0pROg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies: peerDependencies:
typescript: '*' typescript: '*'
@ -691,8 +691,8 @@ packages:
typescript: typescript:
optional: true optional: true
dependencies: dependencies:
'@typescript-eslint/types': 5.42.1 '@typescript-eslint/types': 5.43.0
'@typescript-eslint/visitor-keys': 5.42.1 '@typescript-eslint/visitor-keys': 5.43.0
debug: 4.3.4 debug: 4.3.4
globby: 11.1.0 globby: 11.1.0
is-glob: 4.0.3 is-glob: 4.0.3
@ -702,50 +702,50 @@ packages:
- supports-color - supports-color
dev: false dev: false
/@typescript-eslint/utils/5.42.1: /@typescript-eslint/utils/5.43.0:
resolution: {integrity: sha512-Gxvf12xSp3iYZd/fLqiQRD4uKZjDNR01bQ+j8zvhPjpsZ4HmvEFL/tC4amGNyxN9Rq+iqvpHLhlqx6KTxz9ZyQ==} resolution: {integrity: sha512-8nVpA6yX0sCjf7v/NDfeaOlyaIIqL7OaIGOWSPFqUKK59Gnumd3Wa+2l8oAaYO2lk0sO+SbWFWRSvhu8gLGv4A==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies: peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies: dependencies:
'@types/json-schema': 7.0.9 '@types/json-schema': 7.0.9
'@types/semver': 7.3.13 '@types/semver': 7.3.13
'@typescript-eslint/scope-manager': 5.42.1 '@typescript-eslint/scope-manager': 5.43.0
'@typescript-eslint/types': 5.42.1 '@typescript-eslint/types': 5.43.0
'@typescript-eslint/typescript-estree': 5.42.1 '@typescript-eslint/typescript-estree': 5.43.0
eslint-scope: 5.1.1 eslint-scope: 5.1.1
eslint-utils: 3.0.0 eslint-utils: 3.0.0
semver: 7.3.7 semver: 7.3.8
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
- typescript - typescript
dev: false dev: false
/@typescript-eslint/utils/5.42.1_eslint@8.27.0: /@typescript-eslint/utils/5.43.0_eslint@8.27.0:
resolution: {integrity: sha512-Gxvf12xSp3iYZd/fLqiQRD4uKZjDNR01bQ+j8zvhPjpsZ4HmvEFL/tC4amGNyxN9Rq+iqvpHLhlqx6KTxz9ZyQ==} resolution: {integrity: sha512-8nVpA6yX0sCjf7v/NDfeaOlyaIIqL7OaIGOWSPFqUKK59Gnumd3Wa+2l8oAaYO2lk0sO+SbWFWRSvhu8gLGv4A==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies: peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies: dependencies:
'@types/json-schema': 7.0.9 '@types/json-schema': 7.0.9
'@types/semver': 7.3.13 '@types/semver': 7.3.13
'@typescript-eslint/scope-manager': 5.42.1 '@typescript-eslint/scope-manager': 5.43.0
'@typescript-eslint/types': 5.42.1 '@typescript-eslint/types': 5.43.0
'@typescript-eslint/typescript-estree': 5.42.1 '@typescript-eslint/typescript-estree': 5.43.0
eslint: 8.27.0 eslint: 8.27.0
eslint-scope: 5.1.1 eslint-scope: 5.1.1
eslint-utils: 3.0.0_eslint@8.27.0 eslint-utils: 3.0.0_eslint@8.27.0
semver: 7.3.7 semver: 7.3.8
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
- typescript - typescript
dev: false dev: false
/@typescript-eslint/visitor-keys/5.42.1: /@typescript-eslint/visitor-keys/5.43.0:
resolution: {integrity: sha512-LOQtSF4z+hejmpUvitPlc4hA7ERGoj2BVkesOcG91HCn8edLGUXbTrErmutmPbl8Bo9HjAvOO/zBKQHExXNA2A==} resolution: {integrity: sha512-icl1jNH/d18OVHLfcwdL3bWUKsBeIiKYTGxMJCoGe7xFht+E4QgzOqoWYrU8XSLJWhVw8nTacbm03v23J/hFTg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies: dependencies:
'@typescript-eslint/types': 5.42.1 '@typescript-eslint/types': 5.43.0
eslint-visitor-keys: 3.3.0 eslint-visitor-keys: 3.3.0
dev: false dev: false
@ -780,6 +780,12 @@ packages:
engines: {node: '>=0.4.0'} engines: {node: '>=0.4.0'}
hasBin: true hasBin: true
/acorn/8.8.1:
resolution: {integrity: sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==}
engines: {node: '>=0.4.0'}
hasBin: true
dev: true
/ajv/6.12.6: /ajv/6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
dependencies: dependencies:
@ -832,6 +838,7 @@ packages:
/array-union/2.1.0: /array-union/2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'} engines: {node: '>=8'}
dev: false
/array.prototype.flat/1.2.5: /array.prototype.flat/1.2.5:
resolution: {integrity: sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==} resolution: {integrity: sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==}
@ -1110,8 +1117,8 @@ packages:
object-keys: 1.1.1 object-keys: 1.1.1
dev: false dev: false
/defu/6.1.0: /defu/6.1.1:
resolution: {integrity: sha512-pOFYRTIhoKujrmbTRhcW5lYQLBXw/dlTwfI8IguF1QCDJOcJzNH1w+YFjxqy6BAuJrClTy6MUE8q+oKJ2FLsIw==} resolution: {integrity: sha512-aA964RUCsBt0FGoNIlA3uFgo2hO+WWC0fiC6DBps/0SFzkKcYoM/3CzVLIa5xSsrFjdioMdYgAIbwo80qp2MoA==}
dev: true dev: true
/dir-glob/3.0.1: /dir-glob/3.0.1:
@ -1254,8 +1261,8 @@ packages:
dev: true dev: true
optional: true optional: true
/esbuild-android-64/0.15.13: /esbuild-android-64/0.15.14:
resolution: {integrity: sha512-yRorukXBlokwTip+Sy4MYskLhJsO0Kn0/Fj43s1krVblfwP+hMD37a4Wmg139GEsMLl+vh8WXp2mq/cTA9J97g==} resolution: {integrity: sha512-HuilVIb4rk9abT4U6bcFdU35UHOzcWVGLSjEmC58OVr96q5UiRqzDtWjPlCMugjhgUGKEs8Zf4ueIvYbOStbIg==}
engines: {node: '>=12'} engines: {node: '>=12'}
cpu: [x64] cpu: [x64]
os: [android] os: [android]
@ -1272,8 +1279,8 @@ packages:
dev: true dev: true
optional: true optional: true
/esbuild-android-arm64/0.15.13: /esbuild-android-arm64/0.15.14:
resolution: {integrity: sha512-TKzyymLD6PiVeyYa4c5wdPw87BeAiTXNtK6amWUcXZxkV51gOk5u5qzmDaYSwiWeecSNHamFsaFjLoi32QR5/w==} resolution: {integrity: sha512-/QnxRVxsR2Vtf3XottAHj7hENAMW2wCs6S+OZcAbc/8nlhbAL/bCQRCVD78VtI5mdwqWkVi3wMqM94kScQCgqg==}
engines: {node: '>=12'} engines: {node: '>=12'}
cpu: [arm64] cpu: [arm64]
os: [android] os: [android]
@ -1290,8 +1297,8 @@ packages:
dev: true dev: true
optional: true optional: true
/esbuild-darwin-64/0.15.13: /esbuild-darwin-64/0.15.14:
resolution: {integrity: sha512-WAx7c2DaOS6CrRcoYCgXgkXDliLnFv3pQLV6GeW1YcGEZq2Gnl8s9Pg7ahValZkpOa0iE/ojRVQ87sbUhF1Cbg==} resolution: {integrity: sha512-ToNuf1uifu8hhwWvoZJGCdLIX/1zpo8cOGnT0XAhDQXiKOKYaotVNx7pOVB1f+wHoWwTLInrOmh3EmA7Fd+8Vg==}
engines: {node: '>=12'} engines: {node: '>=12'}
cpu: [x64] cpu: [x64]
os: [darwin] os: [darwin]
@ -1308,8 +1315,8 @@ packages:
dev: true dev: true
optional: true optional: true
/esbuild-darwin-arm64/0.15.13: /esbuild-darwin-arm64/0.15.14:
resolution: {integrity: sha512-U6jFsPfSSxC3V1CLiQqwvDuj3GGrtQNB3P3nNC3+q99EKf94UGpsG9l4CQ83zBs1NHrk1rtCSYT0+KfK5LsD8A==} resolution: {integrity: sha512-KgGP+y77GszfYJgceO0Wi/PiRtYo5y2Xo9rhBUpxTPaBgWDJ14gqYN0+NMbu+qC2fykxXaipHxN4Scaj9tUS1A==}
engines: {node: '>=12'} engines: {node: '>=12'}
cpu: [arm64] cpu: [arm64]
os: [darwin] os: [darwin]
@ -1326,8 +1333,8 @@ packages:
dev: true dev: true
optional: true optional: true
/esbuild-freebsd-64/0.15.13: /esbuild-freebsd-64/0.15.14:
resolution: {integrity: sha512-whItJgDiOXaDG/idy75qqevIpZjnReZkMGCgQaBWZuKHoElDJC1rh7MpoUgupMcdfOd+PgdEwNQW9DAE6i8wyA==} resolution: {integrity: sha512-xr0E2n5lyWw3uFSwwUXHc0EcaBDtsal/iIfLioflHdhAe10KSctV978Te7YsfnsMKzcoGeS366+tqbCXdqDHQA==}
engines: {node: '>=12'} engines: {node: '>=12'}
cpu: [x64] cpu: [x64]
os: [freebsd] os: [freebsd]
@ -1344,8 +1351,8 @@ packages:
dev: true dev: true
optional: true optional: true
/esbuild-freebsd-arm64/0.15.13: /esbuild-freebsd-arm64/0.15.14:
resolution: {integrity: sha512-6pCSWt8mLUbPtygv7cufV0sZLeylaMwS5Fznj6Rsx9G2AJJsAjQ9ifA+0rQEIg7DwJmi9it+WjzNTEAzzdoM3Q==} resolution: {integrity: sha512-8XH96sOQ4b1LhMlO10eEWOjEngmZ2oyw3pW4o8kvBcpF6pULr56eeYVP5radtgw54g3T8nKHDHYEI5AItvskZg==}
engines: {node: '>=12'} engines: {node: '>=12'}
cpu: [arm64] cpu: [arm64]
os: [freebsd] os: [freebsd]
@ -1362,8 +1369,8 @@ packages:
dev: true dev: true
optional: true optional: true
/esbuild-linux-32/0.15.13: /esbuild-linux-32/0.15.14:
resolution: {integrity: sha512-VbZdWOEdrJiYApm2kkxoTOgsoCO1krBZ3quHdYk3g3ivWaMwNIVPIfEE0f0XQQ0u5pJtBsnk2/7OPiCFIPOe/w==} resolution: {integrity: sha512-6ssnvwaTAi8AzKN8By2V0nS+WF5jTP7SfuK6sStGnDP7MCJo/4zHgM9oE1eQTS2jPmo3D673rckuCzRlig+HMA==}
engines: {node: '>=12'} engines: {node: '>=12'}
cpu: [ia32] cpu: [ia32]
os: [linux] os: [linux]
@ -1380,8 +1387,8 @@ packages:
dev: true dev: true
optional: true optional: true
/esbuild-linux-64/0.15.13: /esbuild-linux-64/0.15.14:
resolution: {integrity: sha512-rXmnArVNio6yANSqDQlIO4WiP+Cv7+9EuAHNnag7rByAqFVuRusLbGi2697A5dFPNXoO//IiogVwi3AdcfPC6A==} resolution: {integrity: sha512-ONySx3U0wAJOJuxGUlXBWxVKFVpWv88JEv0NZ6NlHknmDd1yCbf4AEdClSgLrqKQDXYywmw4gYDvdLsS6z0hcw==}
engines: {node: '>=12'} engines: {node: '>=12'}
cpu: [x64] cpu: [x64]
os: [linux] os: [linux]
@ -1398,8 +1405,8 @@ packages:
dev: true dev: true
optional: true optional: true
/esbuild-linux-arm/0.15.13: /esbuild-linux-arm/0.15.14:
resolution: {integrity: sha512-Ac6LpfmJO8WhCMQmO253xX2IU2B3wPDbl4IvR0hnqcPrdfCaUa2j/lLMGTjmQ4W5JsJIdHEdW12dG8lFS0MbxQ==} resolution: {integrity: sha512-D2LImAIV3QzL7lHURyCHBkycVFbKwkDb1XEUWan+2fb4qfW7qAeUtul7ZIcIwFKZgPcl+6gKZmvLgPSj26RQ2Q==}
engines: {node: '>=12'} engines: {node: '>=12'}
cpu: [arm] cpu: [arm]
os: [linux] os: [linux]
@ -1416,8 +1423,8 @@ packages:
dev: true dev: true
optional: true optional: true
/esbuild-linux-arm64/0.15.13: /esbuild-linux-arm64/0.15.14:
resolution: {integrity: sha512-alEMGU4Z+d17U7KQQw2IV8tQycO6T+rOrgW8OS22Ua25x6kHxoG6Ngry6Aq6uranC+pNWNMB6aHFPh7aTQdORQ==} resolution: {integrity: sha512-kle2Ov6a1e5AjlHlMQl1e+c4myGTeggrRzArQFmWp6O6JoqqB9hT+B28EW4tjFWgV/NxUq46pWYpgaWXsXRPAg==}
engines: {node: '>=12'} engines: {node: '>=12'}
cpu: [arm64] cpu: [arm64]
os: [linux] os: [linux]
@ -1434,8 +1441,8 @@ packages:
dev: true dev: true
optional: true optional: true
/esbuild-linux-mips64le/0.15.13: /esbuild-linux-mips64le/0.15.14:
resolution: {integrity: sha512-47PgmyYEu+yN5rD/MbwS6DxP2FSGPo4Uxg5LwIdxTiyGC2XKwHhHyW7YYEDlSuXLQXEdTO7mYe8zQ74czP7W8A==} resolution: {integrity: sha512-FVdMYIzOLXUq+OE7XYKesuEAqZhmAIV6qOoYahvUp93oXy0MOVTP370ECbPfGXXUdlvc0TNgkJa3YhEwyZ6MRA==}
engines: {node: '>=12'} engines: {node: '>=12'}
cpu: [mips64el] cpu: [mips64el]
os: [linux] os: [linux]
@ -1452,8 +1459,8 @@ packages:
dev: true dev: true
optional: true optional: true
/esbuild-linux-ppc64le/0.15.13: /esbuild-linux-ppc64le/0.15.14:
resolution: {integrity: sha512-z6n28h2+PC1Ayle9DjKoBRcx/4cxHoOa2e689e2aDJSaKug3jXcQw7mM+GLg+9ydYoNzj8QxNL8ihOv/OnezhA==} resolution: {integrity: sha512-2NzH+iuzMDA+jjtPjuIz/OhRDf8tzbQ1tRZJI//aT25o1HKc0reMMXxKIYq/8nSHXiJSnYV4ODzTiv45s+h73w==}
engines: {node: '>=12'} engines: {node: '>=12'}
cpu: [ppc64] cpu: [ppc64]
os: [linux] os: [linux]
@ -1470,8 +1477,8 @@ packages:
dev: true dev: true
optional: true optional: true
/esbuild-linux-riscv64/0.15.13: /esbuild-linux-riscv64/0.15.14:
resolution: {integrity: sha512-+Lu4zuuXuQhgLUGyZloWCqTslcCAjMZH1k3Xc9MSEJEpEFdpsSU0sRDXAnk18FKOfEjhu4YMGaykx9xjtpA6ow==} resolution: {integrity: sha512-VqxvutZNlQxmUNS7Ac+aczttLEoHBJ9e3OYGqnULrfipRvG97qLrAv9EUY9iSrRKBqeEbSvS9bSfstZqwz0T4Q==}
engines: {node: '>=12'} engines: {node: '>=12'}
cpu: [riscv64] cpu: [riscv64]
os: [linux] os: [linux]
@ -1488,8 +1495,8 @@ packages:
dev: true dev: true
optional: true optional: true
/esbuild-linux-s390x/0.15.13: /esbuild-linux-s390x/0.15.14:
resolution: {integrity: sha512-BMeXRljruf7J0TMxD5CIXS65y7puiZkAh+s4XFV9qy16SxOuMhxhVIXYLnbdfLrsYGFzx7U9mcdpFWkkvy/Uag==} resolution: {integrity: sha512-+KVHEUshX5n6VP6Vp/AKv9fZIl5kr2ph8EUFmQUJnDpHwcfTSn2AQgYYm0HTBR2Mr4d0Wlr0FxF/Cs5pbFgiOw==}
engines: {node: '>=12'} engines: {node: '>=12'}
cpu: [s390x] cpu: [s390x]
os: [linux] os: [linux]
@ -1506,8 +1513,8 @@ packages:
dev: true dev: true
optional: true optional: true
/esbuild-netbsd-64/0.15.13: /esbuild-netbsd-64/0.15.14:
resolution: {integrity: sha512-EHj9QZOTel581JPj7UO3xYbltFTYnHy+SIqJVq6yd3KkCrsHRbapiPb0Lx3EOOtybBEE9EyqbmfW1NlSDsSzvQ==} resolution: {integrity: sha512-6D/dr17piEgevIm1xJfZP2SjB9Z+g8ERhNnBdlZPBWZl+KSPUKLGF13AbvC+nzGh8IxOH2TyTIdRMvKMP0nEzQ==}
engines: {node: '>=12'} engines: {node: '>=12'}
cpu: [x64] cpu: [x64]
os: [netbsd] os: [netbsd]
@ -1524,8 +1531,8 @@ packages:
dev: true dev: true
optional: true optional: true
/esbuild-openbsd-64/0.15.13: /esbuild-openbsd-64/0.15.14:
resolution: {integrity: sha512-nkuDlIjF/sfUhfx8SKq0+U+Fgx5K9JcPq1mUodnxI0x4kBdCv46rOGWbuJ6eof2n3wdoCLccOoJAbg9ba/bT2w==} resolution: {integrity: sha512-rREQBIlMibBetgr2E9Lywt2Qxv2ZdpmYahR4IUlAQ1Efv/A5gYdO0/VIN3iowDbCNTLxp0bb57Vf0LFcffD6kA==}
engines: {node: '>=12'} engines: {node: '>=12'}
cpu: [x64] cpu: [x64]
os: [openbsd] os: [openbsd]
@ -1542,8 +1549,8 @@ packages:
dev: true dev: true
optional: true optional: true
/esbuild-sunos-64/0.15.13: /esbuild-sunos-64/0.15.14:
resolution: {integrity: sha512-jVeu2GfxZQ++6lRdY43CS0Tm/r4WuQQ0Pdsrxbw+aOrHQPHV0+LNOLnvbN28M7BSUGnJnHkHm2HozGgNGyeIRw==} resolution: {integrity: sha512-DNVjSp/BY4IfwtdUAvWGIDaIjJXY5KI4uD82+15v6k/w7px9dnaDaJJ2R6Mu+KCgr5oklmFc0KjBjh311Gxl9Q==}
engines: {node: '>=12'} engines: {node: '>=12'}
cpu: [x64] cpu: [x64]
os: [sunos] os: [sunos]
@ -1560,8 +1567,8 @@ packages:
dev: true dev: true
optional: true optional: true
/esbuild-windows-32/0.15.13: /esbuild-windows-32/0.15.14:
resolution: {integrity: sha512-XoF2iBf0wnqo16SDq+aDGi/+QbaLFpkiRarPVssMh9KYbFNCqPLlGAWwDvxEVz+ywX6Si37J2AKm+AXq1kC0JA==} resolution: {integrity: sha512-pHBWrcA+/oLgvViuG9FO3kNPO635gkoVrRQwe6ZY1S0jdET07xe2toUvQoJQ8KT3/OkxqUasIty5hpuKFLD+eg==}
engines: {node: '>=12'} engines: {node: '>=12'}
cpu: [ia32] cpu: [ia32]
os: [win32] os: [win32]
@ -1578,8 +1585,8 @@ packages:
dev: true dev: true
optional: true optional: true
/esbuild-windows-64/0.15.13: /esbuild-windows-64/0.15.14:
resolution: {integrity: sha512-Et6htEfGycjDrtqb2ng6nT+baesZPYQIW+HUEHK4D1ncggNrDNk3yoboYQ5KtiVrw/JaDMNttz8rrPubV/fvPQ==} resolution: {integrity: sha512-CszIGQVk/P8FOS5UgAH4hKc9zOaFo69fe+k1rqgBHx3CSK3Opyk5lwYriIamaWOVjBt7IwEP6NALz+tkVWdFog==}
engines: {node: '>=12'} engines: {node: '>=12'}
cpu: [x64] cpu: [x64]
os: [win32] os: [win32]
@ -1596,8 +1603,8 @@ packages:
dev: true dev: true
optional: true optional: true
/esbuild-windows-arm64/0.15.13: /esbuild-windows-arm64/0.15.14:
resolution: {integrity: sha512-3bv7tqntThQC9SWLRouMDmZnlOukBhOCTlkzNqzGCmrkCJI7io5LLjwJBOVY6kOUlIvdxbooNZwjtBvj+7uuVg==} resolution: {integrity: sha512-KW9W4psdZceaS9A7Jsgl4WialOznSURvqX/oHZk3gOP7KbjtHLSsnmSvNdzagGJfxbAe30UVGXRe8q8nDsOSQw==}
engines: {node: '>=12'} engines: {node: '>=12'}
cpu: [arm64] cpu: [arm64]
os: [win32] os: [win32]
@ -1634,34 +1641,34 @@ packages:
esbuild-windows-arm64: 0.14.53 esbuild-windows-arm64: 0.14.53
dev: true dev: true
/esbuild/0.15.13: /esbuild/0.15.14:
resolution: {integrity: sha512-Cu3SC84oyzzhrK/YyN4iEVy2jZu5t2fz66HEOShHURcjSkOSAVL8C/gfUT+lDJxkVHpg8GZ10DD0rMHRPqMFaQ==} resolution: {integrity: sha512-pJN8j42fvWLFWwSMG4luuupl2Me7mxciUOsMegKvwCmhEbJ2covUdFnihxm0FMIBV+cbwbtMoHgMCCI+pj1btQ==}
engines: {node: '>=12'} engines: {node: '>=12'}
hasBin: true hasBin: true
requiresBuild: true requiresBuild: true
optionalDependencies: optionalDependencies:
'@esbuild/android-arm': 0.15.13 '@esbuild/android-arm': 0.15.14
'@esbuild/linux-loong64': 0.15.13 '@esbuild/linux-loong64': 0.15.14
esbuild-android-64: 0.15.13 esbuild-android-64: 0.15.14
esbuild-android-arm64: 0.15.13 esbuild-android-arm64: 0.15.14
esbuild-darwin-64: 0.15.13 esbuild-darwin-64: 0.15.14
esbuild-darwin-arm64: 0.15.13 esbuild-darwin-arm64: 0.15.14
esbuild-freebsd-64: 0.15.13 esbuild-freebsd-64: 0.15.14
esbuild-freebsd-arm64: 0.15.13 esbuild-freebsd-arm64: 0.15.14
esbuild-linux-32: 0.15.13 esbuild-linux-32: 0.15.14
esbuild-linux-64: 0.15.13 esbuild-linux-64: 0.15.14
esbuild-linux-arm: 0.15.13 esbuild-linux-arm: 0.15.14
esbuild-linux-arm64: 0.15.13 esbuild-linux-arm64: 0.15.14
esbuild-linux-mips64le: 0.15.13 esbuild-linux-mips64le: 0.15.14
esbuild-linux-ppc64le: 0.15.13 esbuild-linux-ppc64le: 0.15.14
esbuild-linux-riscv64: 0.15.13 esbuild-linux-riscv64: 0.15.14
esbuild-linux-s390x: 0.15.13 esbuild-linux-s390x: 0.15.14
esbuild-netbsd-64: 0.15.13 esbuild-netbsd-64: 0.15.14
esbuild-openbsd-64: 0.15.13 esbuild-openbsd-64: 0.15.14
esbuild-sunos-64: 0.15.13 esbuild-sunos-64: 0.15.14
esbuild-windows-32: 0.15.13 esbuild-windows-32: 0.15.14
esbuild-windows-64: 0.15.13 esbuild-windows-64: 0.15.14
esbuild-windows-arm64: 0.15.13 esbuild-windows-arm64: 0.15.14
dev: true dev: true
/escalade/3.1.1: /escalade/3.1.1:
@ -1686,6 +1693,32 @@ packages:
- supports-color - supports-color
dev: false dev: false
/eslint-module-utils/2.7.3_fmuy6wfytpxcy4lufnxcokvnry:
resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
eslint-import-resolver-node: '*'
eslint-import-resolver-typescript: '*'
eslint-import-resolver-webpack: '*'
peerDependenciesMeta:
'@typescript-eslint/parser':
optional: true
eslint-import-resolver-node:
optional: true
eslint-import-resolver-typescript:
optional: true
eslint-import-resolver-webpack:
optional: true
dependencies:
'@typescript-eslint/parser': 5.43.0_eslint@8.27.0
debug: 3.2.7
eslint-import-resolver-node: 0.3.6
find-up: 2.1.0
transitivePeerDependencies:
- supports-color
dev: false
/eslint-module-utils/2.7.3_ulu2225r2ychl26a37c6o2rfje: /eslint-module-utils/2.7.3_ulu2225r2ychl26a37c6o2rfje:
resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==}
engines: {node: '>=4'} engines: {node: '>=4'}
@ -1711,32 +1744,6 @@ packages:
- supports-color - supports-color
dev: false dev: false
/eslint-module-utils/2.7.3_v6ns2aycyui732mqoyv5gwdjve:
resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
eslint-import-resolver-node: '*'
eslint-import-resolver-typescript: '*'
eslint-import-resolver-webpack: '*'
peerDependenciesMeta:
'@typescript-eslint/parser':
optional: true
eslint-import-resolver-node:
optional: true
eslint-import-resolver-typescript:
optional: true
eslint-import-resolver-webpack:
optional: true
dependencies:
'@typescript-eslint/parser': 5.42.1_eslint@8.27.0
debug: 3.2.7
eslint-import-resolver-node: 0.3.6
find-up: 2.1.0
transitivePeerDependencies:
- supports-color
dev: false
/eslint-plugin-es/4.1.0_eslint@8.27.0: /eslint-plugin-es/4.1.0_eslint@8.27.0:
resolution: {integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==} resolution: {integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==}
engines: {node: '>=8.10.0'} engines: {node: '>=8.10.0'}
@ -1795,7 +1802,7 @@ packages:
- supports-color - supports-color
dev: false dev: false
/eslint-plugin-import/2.26.0_jnohwm7eexgw7uduhweedcbnpe: /eslint-plugin-import/2.26.0_wbsj7pk5g7hogwvhsif6xntns4:
resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
engines: {node: '>=4'} engines: {node: '>=4'}
peerDependencies: peerDependencies:
@ -1805,14 +1812,14 @@ packages:
'@typescript-eslint/parser': '@typescript-eslint/parser':
optional: true optional: true
dependencies: dependencies:
'@typescript-eslint/parser': 5.42.1_eslint@8.27.0 '@typescript-eslint/parser': 5.43.0_eslint@8.27.0
array-includes: 3.1.4 array-includes: 3.1.4
array.prototype.flat: 1.2.5 array.prototype.flat: 1.2.5
debug: 2.6.9 debug: 2.6.9
doctrine: 2.1.0 doctrine: 2.1.0
eslint: 8.27.0 eslint: 8.27.0
eslint-import-resolver-node: 0.3.6 eslint-import-resolver-node: 0.3.6
eslint-module-utils: 2.7.3_v6ns2aycyui732mqoyv5gwdjve eslint-module-utils: 2.7.3_fmuy6wfytpxcy4lufnxcokvnry
has: 1.0.3 has: 1.0.3
is-core-module: 2.8.1 is-core-module: 2.8.1
is-glob: 4.0.3 is-glob: 4.0.3
@ -2188,8 +2195,8 @@ packages:
/flatted/3.2.7: /flatted/3.2.7:
resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
/fs-extra/10.0.1: /fs-extra/10.1.0:
resolution: {integrity: sha512-NbdoVMZso2Lsrn/QwLXOy6rm0ufY2zEOKCDzJR/0kBsb0E6qed0P3iYK+Ath3BfvXEeu4JhEtXLgILx5psUfag==} resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
engines: {node: '>=12'} engines: {node: '>=12'}
dependencies: dependencies:
graceful-fs: 4.2.9 graceful-fs: 4.2.9
@ -2304,6 +2311,7 @@ packages:
ignore: 5.2.0 ignore: 5.2.0
merge2: 1.4.1 merge2: 1.4.1
slash: 3.0.0 slash: 3.0.0
dev: false
/globby/13.1.2: /globby/13.1.2:
resolution: {integrity: sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==} resolution: {integrity: sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==}
@ -2368,8 +2376,8 @@ packages:
dependencies: dependencies:
function-bind: 1.1.1 function-bind: 1.1.1
/hookable/5.4.1: /hookable/5.4.2:
resolution: {integrity: sha512-i808BglQ1OuSIcgPSZoWsDapCMLXKe5wLS6XZvIXpaBWdWLUZARM8vOLayu6cXewj5TSbaZaMzKnq+pRnfscEQ==} resolution: {integrity: sha512-6rOvaUiNKy9lET1X0ECnyZ5O5kSV0PJbtA5yZUgdEF7fGJEVwSLSislltyt7nFwVVALYHQJtfGeAR2Y0A0uJkg==}
dev: true dev: true
/hosted-git-info/2.8.8: /hosted-git-info/2.8.8:
@ -2796,32 +2804,35 @@ packages:
hasBin: true hasBin: true
dev: true dev: true
/mkdist/0.3.13_typescript@4.8.4: /mkdist/1.0.0_typescript@4.9.3:
resolution: {integrity: sha512-+eCPpkr8l2X630y5PIlkts2tzYEsb+aGIgXdrQv9ZGtWE2bLlD6kVIFfI6FJwFpjjw4dPPyorxQc6Uhm/oXlvg==} resolution: {integrity: sha512-aJke+yvXwwcrOh+3KfAdDgDA+MPe7c+R8hQ7IPfp0gqL1/WPZZUS9rwS6CNjdwDJmHm6DTMA9KwX1FNjZG3I1Q==}
hasBin: true hasBin: true
peerDependencies: peerDependencies:
typescript: '>=4.7.4' sass: ^1.56.1
typescript: '>=4.8.4'
peerDependenciesMeta: peerDependenciesMeta:
sass:
optional: true
typescript: typescript:
optional: true optional: true
dependencies: dependencies:
defu: 6.1.0 defu: 6.1.1
esbuild: 0.14.53 esbuild: 0.15.14
fs-extra: 10.0.1 fs-extra: 10.1.0
globby: 11.1.0 globby: 13.1.2
jiti: 1.16.0 jiti: 1.16.0
mri: 1.2.0 mri: 1.2.0
pathe: 0.2.0 pathe: 1.0.0
typescript: 4.8.4 typescript: 4.9.3
dev: true dev: true
/mlly/0.5.16: /mlly/1.0.0:
resolution: {integrity: sha512-LaJ8yuh4v0zEmge/g3c7jjFlhoCPfQn6RCjXgm9A0Qiuochq4BcuOxVfWmdnCoLTlg2MV+hqhOek+W2OhG0Lwg==} resolution: {integrity: sha512-QL108Hwt+u9bXdWgOI0dhzZfACovn5Aen4Xvc8Jasd9ouRH4NjnrXEiyP3nVvJo91zPlYjVRckta0Nt2zfoR6g==}
dependencies: dependencies:
acorn: 8.8.0 acorn: 8.8.1
pathe: 0.3.9 pathe: 1.0.0
pkg-types: 0.3.6 pkg-types: 1.0.1
ufo: 0.8.5 ufo: 1.0.0
dev: true dev: true
/mri/1.2.0: /mri/1.2.0:
@ -3047,12 +3058,8 @@ packages:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'} engines: {node: '>=8'}
/pathe/0.2.0: /pathe/1.0.0:
resolution: {integrity: sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==} resolution: {integrity: sha512-nPdMG0Pd09HuSsr7QOKUXO2Jr9eqaDiZvDwdyIhNG5SHYujkQHYKDfGQkulBxvbDHz8oHLsTgKN86LSwYzSHAg==}
dev: true
/pathe/0.3.9:
resolution: {integrity: sha512-6Y6s0vT112P3jD8dGfuS6r+lpa0qqNrLyHPOwvXMnyNTQaYiwgau2DP3aNDsR13xqtGj7rrPo+jFUATpU6/s+g==}
dev: true dev: true
/pathval/1.1.1: /pathval/1.1.1:
@ -3067,12 +3074,12 @@ packages:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'} engines: {node: '>=8.6'}
/pkg-types/0.3.6: /pkg-types/1.0.1:
resolution: {integrity: sha512-uQZutkkh6axl1GxDm5/+8ivVdwuJ5pyDGqJeSiIWIUWIqYiK3p9QKozN/Rv6eVvFoeSWkN1uoYeSDBwwBJBtbg==} resolution: {integrity: sha512-jHv9HB+Ho7dj6ItwppRDDl0iZRYBD0jsakHXtFgoLr+cHSF6xC+QL54sJmWxyGxOLYSHm0afhXhXcQDQqH9z8g==}
dependencies: dependencies:
jsonc-parser: 3.2.0 jsonc-parser: 3.2.0
mlly: 0.5.16 mlly: 1.0.0
pathe: 0.3.9 pathe: 1.0.0
dev: true dev: true
/pluralize/8.0.0: /pluralize/8.0.0:
@ -3215,7 +3222,7 @@ packages:
dependencies: dependencies:
glob: 7.2.3 glob: 7.2.3
/rollup-plugin-dts/5.0.0_aoc4guvlpr5bfeyf2nus4ubkpu: /rollup-plugin-dts/5.0.0_6annma2bj33shm6er7hwi5u4z4:
resolution: {integrity: sha512-OO8ayCvuJCKaQSShyVTARxGurVVk4ulzbuvz+0zFd1f93vlnWFU5pBMT7HFeS6uj7MvvZLx4kUAarGATSU1+Ng==} resolution: {integrity: sha512-OO8ayCvuJCKaQSShyVTARxGurVVk4ulzbuvz+0zFd1f93vlnWFU5pBMT7HFeS6uj7MvvZLx4kUAarGATSU1+Ng==}
engines: {node: '>=v14'} engines: {node: '>=v14'}
peerDependencies: peerDependencies:
@ -3224,7 +3231,7 @@ packages:
dependencies: dependencies:
magic-string: 0.26.7 magic-string: 0.26.7
rollup: 3.3.0 rollup: 3.3.0
typescript: 4.8.4 typescript: 4.9.3
optionalDependencies: optionalDependencies:
'@babel/code-frame': 7.18.6 '@babel/code-frame': 7.18.6
dev: true dev: true
@ -3260,8 +3267,8 @@ packages:
regexp-tree: 0.1.24 regexp-tree: 0.1.24
dev: false dev: false
/scule/0.3.2: /scule/1.0.0:
resolution: {integrity: sha512-zIvPdjOH8fv8CgrPT5eqtxHQXmPNnV/vHJYffZhE43KZkvULvpCTvOt1HPlFaCZx287INL9qaqrZg34e8NgI4g==} resolution: {integrity: sha512-4AsO/FrViE/iDNEPaAQlb77tf0csuq27EsVpy6ett584EcRTp6pTDLoGWVxCD77y5iU5FauOvhsI4o1APwPoSQ==}
dev: true dev: true
/semver/5.7.1: /semver/5.7.1:
@ -3321,6 +3328,7 @@ packages:
/slash/3.0.0: /slash/3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'} engines: {node: '>=8'}
dev: false
/slash/4.0.0: /slash/4.0.0:
resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
@ -3530,14 +3538,14 @@ packages:
engines: {node: '>=8'} engines: {node: '>=8'}
dev: false dev: false
/typescript/4.8.4: /typescript/4.9.3:
resolution: {integrity: sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==} resolution: {integrity: sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==}
engines: {node: '>=4.2.0'} engines: {node: '>=4.2.0'}
hasBin: true hasBin: true
dev: true dev: true
/ufo/0.8.5: /ufo/1.0.0:
resolution: {integrity: sha512-e4+UtA5IRO+ha6hYklwj6r7BjiGMxS0O+UaSg9HbaTefg4kMkzj4tXzEBajRR+wkxf+golgAWKzLbytCUDMJAA==} resolution: {integrity: sha512-DRty0ZBNlJ2R59y4mEupJRKLbkLQsc4qtxjpQv78AwEDuBkaUogMc2LkeqW3HddFlw6NwnXYfdThEZOiNgkmmQ==}
dev: true dev: true
/unbox-primitive/1.0.1: /unbox-primitive/1.0.1:
@ -3558,8 +3566,8 @@ packages:
which-boxed-primitive: 1.0.2 which-boxed-primitive: 1.0.2
dev: false dev: false
/unbuild/0.9.4: /unbuild/1.0.1:
resolution: {integrity: sha512-IkKPqzazcCNfwTSs5bDRS2bOvg1Zh9gPYQq/ruVarCoM4f7KXclSrcb0jyJiSU/5qhakZ8K5B2CzwX4ZaaVKdQ==} resolution: {integrity: sha512-i2mkbLNFZDJJdpsbg4JflHldKeF3J0K+mLGUdh8jrHBSTHZBw8qFWI7t/AUrGjHxa/O/vkIod65LXu9ktPiUHw==}
hasBin: true hasBin: true
dependencies: dependencies:
'@rollup/plugin-alias': 4.0.2_rollup@3.3.0 '@rollup/plugin-alias': 4.0.2_rollup@3.3.0
@ -3570,26 +3578,27 @@ packages:
'@rollup/pluginutils': 5.0.2_rollup@3.3.0 '@rollup/pluginutils': 5.0.2_rollup@3.3.0
chalk: 5.1.2 chalk: 5.1.2
consola: 2.15.3 consola: 2.15.3
defu: 6.1.0 defu: 6.1.1
esbuild: 0.15.13 esbuild: 0.15.14
globby: 13.1.2 globby: 13.1.2
hookable: 5.4.1 hookable: 5.4.2
jiti: 1.16.0 jiti: 1.16.0
magic-string: 0.26.7 magic-string: 0.26.7
mkdirp: 1.0.4 mkdirp: 1.0.4
mkdist: 0.3.13_typescript@4.8.4 mkdist: 1.0.0_typescript@4.9.3
mlly: 0.5.16 mlly: 1.0.0
mri: 1.2.0 mri: 1.2.0
pathe: 0.3.9 pathe: 1.0.0
pkg-types: 0.3.6 pkg-types: 1.0.1
pretty-bytes: 6.0.0 pretty-bytes: 6.0.0
rimraf: 3.0.2 rimraf: 3.0.2
rollup: 3.3.0 rollup: 3.3.0
rollup-plugin-dts: 5.0.0_aoc4guvlpr5bfeyf2nus4ubkpu rollup-plugin-dts: 5.0.0_6annma2bj33shm6er7hwi5u4z4
scule: 0.3.2 scule: 1.0.0
typescript: 4.8.4 typescript: 4.9.3
untyped: 0.5.0 untyped: 1.0.0
transitivePeerDependencies: transitivePeerDependencies:
- sass
- supports-color - supports-color
dev: true dev: true
@ -3604,13 +3613,13 @@ packages:
engines: {node: '>= 10.0.0'} engines: {node: '>= 10.0.0'}
dev: true dev: true
/untyped/0.5.0: /untyped/1.0.0:
resolution: {integrity: sha512-2Sre5A1a7G61bjaAKZnSFaVgbJMwwbbYQpJFH69hAYcDfN7kIaktlSphS02XJilz4+/jR1tsJ5MHo1oMoCezxg==} resolution: {integrity: sha512-aBeR3Z51038d7zVzsNShYEdO7u/VCp5R17fxpPXlD2QvG9g6uVJ+JM+zMJ7KFPIt1BNf3I6bU6PhAlsAFkIfdA==}
dependencies: dependencies:
'@babel/core': 7.20.2 '@babel/core': 7.20.2
'@babel/standalone': 7.20.4 '@babel/standalone': 7.20.4
'@babel/types': 7.20.2 '@babel/types': 7.20.2
scule: 0.3.2 scule: 1.0.0
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
dev: true dev: true
@ -3669,8 +3678,8 @@ packages:
fsevents: 2.3.2 fsevents: 2.3.2
dev: true dev: true
/vitest/0.25.1: /vitest/0.25.2:
resolution: {integrity: sha512-eH74h6MkuEgsqR4mAQZeMK9O0PROiKY+i+1GMz/fBi5A3L2ml5U7JQs7LfPU7+uWUziZyLHagl+rkyfR8SLhlA==} resolution: {integrity: sha512-qqkzfzglEFbQY7IGkgSJkdOhoqHjwAao/OrphnHboeYHC5JzsVFoLCaB2lnAy8krhj7sbrFTVRApzpkTOeuDWQ==}
engines: {node: '>=v14.16.0'} engines: {node: '>=v14.16.0'}
hasBin: true hasBin: true
peerDependencies: peerDependencies: