diff --git a/docs/.vitepress/head.ts b/docs/.vitepress/head.ts index f44f195..f7f04d0 100644 --- a/docs/.vitepress/head.ts +++ b/docs/.vitepress/head.ts @@ -6,5 +6,5 @@ export const head: HeadConfig[] = [ ['meta', { property: 'og:url', content: 'https://github.com/vtrbo/utils' }], ['meta', { name: 'referrer', content: 'no-referrer' }], ['link', { rel: 'icon', href: '/logo.svg', type: 'image/svg+xml' }], - ['script', { src: 'https://cdnjs.cloudflare.com/ajax/libs/typescript/5.2.2/typescript.min.js' }], + ['script', { src: 'https://cdnjs.cloudflare.com/ajax/libs/typescript/5.3.2/typescript.min.js' }], ] diff --git a/docs/.vitepress/theme/index.ts b/docs/.vitepress/theme/index.ts index 1003670..97ca879 100644 --- a/docs/.vitepress/theme/index.ts +++ b/docs/.vitepress/theme/index.ts @@ -2,8 +2,7 @@ import theme from 'vitepress/theme' import { h } from 'vue' import './style.css' import 'uno.css' - -// import './install' +import './install' import RunCodeEditor from '../components/run-code-editor' export default { diff --git a/docs/package.json b/docs/package.json index 67c9545..114b757 100644 --- a/docs/package.json +++ b/docs/package.json @@ -35,14 +35,6 @@ "devDependencies": { "@iconify/json": "^2.2.144", "@vitejs/plugin-vue": "^4.5.0", - "@vtrbo/utils-arr": "workspace:*", - "@vtrbo/utils-color": "workspace:*", - "@vtrbo/utils-is": "workspace:*", - "@vtrbo/utils-log": "workspace:*", - "@vtrbo/utils-obj": "workspace:*", - "@vtrbo/utils-str": "workspace:*", - "@vtrbo/utils-tool": "workspace:*", - "@vtrbo/utils-tree": "workspace:*", "@vueuse/core": "^10.6.1", "pretty-format": "^29.7.0", "sass": "^1.69.5", diff --git a/package.json b/package.json index 2fa450f..0c644fe 100644 --- a/package.json +++ b/package.json @@ -26,16 +26,9 @@ "require": "./dist/index.cjs" } }, - "main": "./dist/index.cjs", - "module": "./dist/index.js", - "types": "./dist/index.d.ts", - "typesVersions": { - "*": { - "*": [ - "./dist/index.d.ts" - ] - } - }, + "main": "dist/index.cjs", + "module": "dist/index.js", + "types": "dist/index.d.ts", "files": [ "dist" ], @@ -73,7 +66,7 @@ }, "devDependencies": { "@antfu/eslint-config": "2.0.0", - "@types/node": "^20.9.2", + "@types/node": "^20.9.3", "@types/shelljs": "^0.8.15", "bumpp": "^9.2.0", "eslint": "^8.54.0", @@ -84,7 +77,7 @@ "shelljs": "^0.8.5", "simple-git-hooks": "^2.9.0", "tsup": "^8.0.0", - "typescript": "^5.2.2", + "typescript": "^5.3.2", "vitest": "^0.34.6" }, "pnpm": { diff --git a/packages/arr/package.json b/packages/arr/package.json index 4b00f6b..3a19a68 100644 --- a/packages/arr/package.json +++ b/packages/arr/package.json @@ -26,16 +26,9 @@ "require": "./dist/index.cjs" } }, - "main": "./dist/index.cjs", - "module": "./dist/index.js", - "types": "./dist/index.d.ts", - "typesVersions": { - "*": { - "*": [ - "./dist/index.d.ts" - ] - } - }, + "main": "dist/index.cjs", + "module": "dist/index.js", + "types": "dist/index.d.ts", "files": [ "dist" ], diff --git a/packages/color/package.json b/packages/color/package.json index cbfce20..30cd275 100644 --- a/packages/color/package.json +++ b/packages/color/package.json @@ -26,16 +26,9 @@ "require": "./dist/index.cjs" } }, - "main": "./dist/index.cjs", - "module": "./dist/index.js", - "types": "./dist/index.d.ts", - "typesVersions": { - "*": { - "*": [ - "./dist/index.d.ts" - ] - } - }, + "main": "dist/index.cjs", + "module": "dist/index.js", + "types": "dist/index.d.ts", "files": [ "dist" ], diff --git a/packages/is/package.json b/packages/is/package.json index 7beab59..754fe1f 100644 --- a/packages/is/package.json +++ b/packages/is/package.json @@ -26,16 +26,9 @@ "require": "./dist/index.cjs" } }, - "main": "./dist/index.cjs", - "module": "./dist/index.js", - "types": "./dist/index.d.ts", - "typesVersions": { - "*": { - "*": [ - "./dist/index.d.ts" - ] - } - }, + "main": "dist/index.cjs", + "module": "dist/index.js", + "types": "dist/index.d.ts", "files": [ "dist" ], diff --git a/packages/log/package.json b/packages/log/package.json index d0e0536..34ac721 100644 --- a/packages/log/package.json +++ b/packages/log/package.json @@ -26,16 +26,9 @@ "require": "./dist/index.cjs" } }, - "main": "./dist/index.cjs", - "module": "./dist/index.js", - "types": "./dist/index.d.ts", - "typesVersions": { - "*": { - "*": [ - "./dist/index.d.ts" - ] - } - }, + "main": "dist/index.cjs", + "module": "dist/index.js", + "types": "dist/index.d.ts", "files": [ "dist" ], diff --git a/packages/obj/package.json b/packages/obj/package.json index c3b84db..6e53e90 100644 --- a/packages/obj/package.json +++ b/packages/obj/package.json @@ -26,16 +26,9 @@ "require": "./dist/index.cjs" } }, - "main": "./dist/index.cjs", - "module": "./dist/index.js", - "types": "./dist/index.d.ts", - "typesVersions": { - "*": { - "*": [ - "./dist/index.d.ts" - ] - } - }, + "main": "dist/index.cjs", + "module": "dist/index.js", + "types": "dist/index.d.ts", "files": [ "dist" ], diff --git a/packages/str/package.json b/packages/str/package.json index 3c71618..9b71fd9 100644 --- a/packages/str/package.json +++ b/packages/str/package.json @@ -26,16 +26,9 @@ "require": "./dist/index.cjs" } }, - "main": "./dist/index.cjs", - "module": "./dist/index.js", - "types": "./dist/index.d.ts", - "typesVersions": { - "*": { - "*": [ - "./dist/index.d.ts" - ] - } - }, + "main": "dist/index.cjs", + "module": "dist/index.js", + "types": "dist/index.d.ts", "files": [ "dist" ], diff --git a/packages/tool/package.json b/packages/tool/package.json index dfbbe4c..74f6e6b 100644 --- a/packages/tool/package.json +++ b/packages/tool/package.json @@ -26,16 +26,9 @@ "require": "./dist/index.cjs" } }, - "main": "./dist/index.cjs", - "module": "./dist/index.js", - "types": "./dist/index.d.ts", - "typesVersions": { - "*": { - "*": [ - "./dist/index.d.ts" - ] - } - }, + "main": "dist/index.cjs", + "module": "dist/index.js", + "types": "dist/index.d.ts", "files": [ "dist" ], diff --git a/packages/tree/package.json b/packages/tree/package.json index cf5c7ea..a84c0e4 100644 --- a/packages/tree/package.json +++ b/packages/tree/package.json @@ -26,16 +26,9 @@ "require": "./dist/index.cjs" } }, - "main": "./dist/index.cjs", - "module": "./dist/index.js", - "types": "./dist/index.d.ts", - "typesVersions": { - "*": { - "*": [ - "./dist/index.d.ts" - ] - } - }, + "main": "dist/index.cjs", + "module": "dist/index.js", + "types": "dist/index.d.ts", "files": [ "dist" ], diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9aa501c..f37d98b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -40,10 +40,10 @@ importers: devDependencies: '@antfu/eslint-config': specifier: 2.0.0 - version: 2.0.0(eslint@8.54.0)(typescript@5.2.2)(vitest@0.34.6) + version: 2.0.0(eslint@8.54.0)(typescript@5.3.2)(vitest@0.34.6) '@types/node': - specifier: ^20.9.2 - version: 20.9.2 + specifier: ^20.9.3 + version: 20.9.3 '@types/shelljs': specifier: ^0.8.15 version: 0.8.15 @@ -73,10 +73,10 @@ importers: version: 2.9.0 tsup: specifier: ^8.0.0 - version: 8.0.0(typescript@5.2.2) + version: 8.0.0(typescript@5.3.2) typescript: - specifier: ^5.2.2 - version: 5.2.2 + specifier: ^5.3.2 + version: 5.3.2 vitest: specifier: ^0.34.6 version: 0.34.6 @@ -96,30 +96,6 @@ importers: '@vitejs/plugin-vue': specifier: ^4.5.0 version: 4.5.0(vite@5.0.0)(vue@3.3.8) - '@vtrbo/utils-arr': - specifier: workspace:* - version: link:../packages/arr - '@vtrbo/utils-color': - specifier: workspace:* - version: link:../packages/color - '@vtrbo/utils-is': - specifier: workspace:* - version: link:../packages/is - '@vtrbo/utils-log': - specifier: workspace:* - version: link:../packages/log - '@vtrbo/utils-obj': - specifier: workspace:* - version: link:../packages/obj - '@vtrbo/utils-str': - specifier: workspace:* - version: link:../packages/str - '@vtrbo/utils-tool': - specifier: workspace:* - version: link:../packages/tool - '@vtrbo/utils-tree': - specifier: workspace:* - version: link:../packages/tree '@vueuse/core': specifier: ^10.6.1 version: 10.6.1(vue@3.3.8) @@ -134,16 +110,16 @@ importers: version: 0.57.6(postcss@8.4.31)(vite@5.0.0) vite: specifier: ^5.0.0 - version: 5.0.0(@types/node@20.9.2)(sass@1.69.5) + version: 5.0.0(@types/node@20.9.3)(sass@1.69.5) vite-plugin-externals: specifier: ^0.6.2 version: 0.6.2(vite@5.0.0) vitepress: specifier: 1.0.0-rc.29 - version: 1.0.0-rc.29(@algolia/client-search@4.20.0)(@types/node@20.9.2)(postcss@8.4.31)(sass@1.69.5)(search-insights@2.11.0)(typescript@5.2.2) + version: 1.0.0-rc.29(@algolia/client-search@4.20.0)(@types/node@20.9.3)(postcss@8.4.31)(sass@1.69.5)(search-insights@2.11.0)(typescript@5.3.2) vue: specifier: ^3.3.8 - version: 3.3.8(typescript@5.2.2) + version: 3.3.8(typescript@5.3.2) packages/arr: dependencies: @@ -211,10 +187,10 @@ importers: version: link:.. vite: specifier: ^5.0.0 - version: 5.0.0(@types/node@20.9.2)(sass@1.69.5) + version: 5.0.0(@types/node@20.9.3)(sass@1.69.5) vue: specifier: ^3.3.8 - version: 3.3.8(typescript@5.2.2) + version: 3.3.8(typescript@5.3.2) packages: @@ -365,7 +341,7 @@ packages: '@jridgewell/trace-mapping': 0.3.20 dev: true - /@antfu/eslint-config@2.0.0(eslint@8.54.0)(typescript@5.2.2)(vitest@0.34.6): + /@antfu/eslint-config@2.0.0(eslint@8.54.0)(typescript@5.3.2)(vitest@0.34.6): resolution: {integrity: sha512-kAhbg7loDbT7g3rkLkgZ1R7C5v43wzAOjLMAcdT1xFMGEhAtG8MhBMUXrRCwdaV8ebvLYjO+mqUVCdgrHaFPOA==} hasBin: true peerDependencies: @@ -375,9 +351,9 @@ packages: '@eslint-types/jsdoc': 46.8.2-1 '@eslint-types/typescript-eslint': 6.11.0 '@eslint-types/unicorn': 49.0.0 - '@stylistic/eslint-plugin': 1.4.0(eslint@8.54.0)(typescript@5.2.2) - '@typescript-eslint/eslint-plugin': 6.11.0(@typescript-eslint/parser@6.11.0)(eslint@8.54.0)(typescript@5.2.2) - '@typescript-eslint/parser': 6.11.0(eslint@8.54.0)(typescript@5.2.2) + '@stylistic/eslint-plugin': 1.4.0(eslint@8.54.0)(typescript@5.3.2) + '@typescript-eslint/eslint-plugin': 6.11.0(@typescript-eslint/parser@6.11.0)(eslint@8.54.0)(typescript@5.3.2) + '@typescript-eslint/parser': 6.11.0(eslint@8.54.0)(typescript@5.3.2) eslint: 8.54.0 eslint-config-flat-gitignore: 0.1.1 eslint-plugin-antfu: 1.0.10(eslint@8.54.0) @@ -388,10 +364,10 @@ packages: eslint-plugin-markdown: 3.0.1(eslint@8.54.0) eslint-plugin-n: 16.3.1(eslint@8.54.0) eslint-plugin-no-only-tests: 3.1.0 - eslint-plugin-perfectionist: 2.4.0(eslint@8.54.0)(typescript@5.2.2)(vue-eslint-parser@9.3.2) + eslint-plugin-perfectionist: 2.4.0(eslint@8.54.0)(typescript@5.3.2)(vue-eslint-parser@9.3.2) eslint-plugin-unicorn: 49.0.0(eslint@8.54.0) eslint-plugin-unused-imports: 3.0.0(@typescript-eslint/eslint-plugin@6.11.0)(eslint@8.54.0) - eslint-plugin-vitest: 0.3.10(@typescript-eslint/eslint-plugin@6.11.0)(eslint@8.54.0)(typescript@5.2.2)(vitest@0.34.6) + eslint-plugin-vitest: 0.3.10(@typescript-eslint/eslint-plugin@6.11.0)(eslint@8.54.0)(typescript@5.3.2)(vitest@0.34.6) eslint-plugin-vue: 9.18.1(eslint@8.54.0) eslint-plugin-yml: 1.10.0(eslint@8.54.0) execa: 8.0.1 @@ -1603,13 +1579,13 @@ packages: estraverse: 5.3.0 dev: true - /@stylistic/eslint-plugin-ts@1.4.0(eslint@8.54.0)(typescript@5.2.2): + /@stylistic/eslint-plugin-ts@1.4.0(eslint@8.54.0)(typescript@5.3.2): resolution: {integrity: sha512-eNEC0MufXfe2v9fW+g5yDzMMcws80cn1gKIt9CaLVjUuWnwCdY4SG1hUtDfEpBCTNBZgG/LKKls15dSa1x++0g==} peerDependencies: eslint: '*' dependencies: '@stylistic/eslint-plugin-js': 1.4.0 - '@typescript-eslint/utils': 6.11.0(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/utils': 6.11.0(eslint@8.54.0)(typescript@5.3.2) eslint: 8.54.0 graphemer: 1.4.0 transitivePeerDependencies: @@ -1617,14 +1593,14 @@ packages: - typescript dev: true - /@stylistic/eslint-plugin@1.4.0(eslint@8.54.0)(typescript@5.2.2): + /@stylistic/eslint-plugin@1.4.0(eslint@8.54.0)(typescript@5.3.2): resolution: {integrity: sha512-DtPiS4jr7m+A2nlcn8Ls4LEsOj1KC8x+KvAmoUI+nTcnin4Hkb8/I9Vteuu2CFLyVmlnKIQhrL5JC/xUEMyE9w==} peerDependencies: eslint: '*' dependencies: '@stylistic/eslint-plugin-js': 1.4.0 '@stylistic/eslint-plugin-jsx': 1.4.0 - '@stylistic/eslint-plugin-ts': 1.4.0(eslint@8.54.0)(typescript@5.2.2) + '@stylistic/eslint-plugin-ts': 1.4.0(eslint@8.54.0)(typescript@5.3.2) eslint: 8.54.0 transitivePeerDependencies: - supports-color @@ -1649,7 +1625,7 @@ packages: resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: '@types/minimatch': 5.1.2 - '@types/node': 20.9.2 + '@types/node': 20.9.3 dev: true /@types/json-schema@7.0.15: @@ -1681,8 +1657,8 @@ packages: resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} dev: true - /@types/node@20.9.2: - resolution: {integrity: sha512-WHZXKFCEyIUJzAwh3NyyTHYSR35SevJ6mZ1nWwJafKtiQbqRTIKSRcw3Ma3acqgsent3RRDqeVwpHntMk+9irg==} + /@types/node@20.9.3: + resolution: {integrity: sha512-nk5wXLAXGBKfrhLB0cyHGbSqopS+nz0BUgZkUQqSHSSgdee0kssp1IAqlQOu333bW+gMNs2QREx7iynm19Abxw==} dependencies: undici-types: 5.26.5 dev: true @@ -1699,7 +1675,7 @@ packages: resolution: {integrity: sha512-vzmnCHl6hViPu9GNLQJ+DZFd6BQI2DBTUeOvYHqkWQLMfKAAQYMb/xAmZkTogZI/vqXHCWkqDRymDI5p0QTi5Q==} dependencies: '@types/glob': 7.2.0 - '@types/node': 20.9.2 + '@types/node': 20.9.3 dev: true /@types/unist@2.0.10: @@ -1710,7 +1686,7 @@ packages: resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==} dev: true - /@typescript-eslint/eslint-plugin@6.11.0(@typescript-eslint/parser@6.11.0)(eslint@8.54.0)(typescript@5.2.2): + /@typescript-eslint/eslint-plugin@6.11.0(@typescript-eslint/parser@6.11.0)(eslint@8.54.0)(typescript@5.3.2): resolution: {integrity: sha512-uXnpZDc4VRjY4iuypDBKzW1rz9T5YBBK0snMn8MaTSNd2kMlj50LnLBABELjJiOL5YHk7ZD8hbSpI9ubzqYI0w==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -1722,10 +1698,10 @@ packages: optional: true dependencies: '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 6.11.0(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/parser': 6.11.0(eslint@8.54.0)(typescript@5.3.2) '@typescript-eslint/scope-manager': 6.11.0 - '@typescript-eslint/type-utils': 6.11.0(eslint@8.54.0)(typescript@5.2.2) - '@typescript-eslint/utils': 6.11.0(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/type-utils': 6.11.0(eslint@8.54.0)(typescript@5.3.2) + '@typescript-eslint/utils': 6.11.0(eslint@8.54.0)(typescript@5.3.2) '@typescript-eslint/visitor-keys': 6.11.0 debug: 4.3.4 eslint: 8.54.0 @@ -1733,13 +1709,13 @@ packages: ignore: 5.3.0 natural-compare: 1.4.0 semver: 7.5.4 - ts-api-utils: 1.0.3(typescript@5.2.2) - typescript: 5.2.2 + ts-api-utils: 1.0.3(typescript@5.3.2) + typescript: 5.3.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser@6.11.0(eslint@8.54.0)(typescript@5.2.2): + /@typescript-eslint/parser@6.11.0(eslint@8.54.0)(typescript@5.3.2): resolution: {integrity: sha512-+whEdjk+d5do5nxfxx73oanLL9ghKO3EwM9kBCkUtWMRwWuPaFv9ScuqlYfQ6pAD6ZiJhky7TZ2ZYhrMsfMxVQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -1751,11 +1727,11 @@ packages: dependencies: '@typescript-eslint/scope-manager': 6.11.0 '@typescript-eslint/types': 6.11.0 - '@typescript-eslint/typescript-estree': 6.11.0(typescript@5.2.2) + '@typescript-eslint/typescript-estree': 6.11.0(typescript@5.3.2) '@typescript-eslint/visitor-keys': 6.11.0 debug: 4.3.4 eslint: 8.54.0 - typescript: 5.2.2 + typescript: 5.3.2 transitivePeerDependencies: - supports-color dev: true @@ -1768,7 +1744,7 @@ packages: '@typescript-eslint/visitor-keys': 6.11.0 dev: true - /@typescript-eslint/type-utils@6.11.0(eslint@8.54.0)(typescript@5.2.2): + /@typescript-eslint/type-utils@6.11.0(eslint@8.54.0)(typescript@5.3.2): resolution: {integrity: sha512-nA4IOXwZtqBjIoYrJcYxLRO+F9ri+leVGoJcMW1uqr4r1Hq7vW5cyWrA43lFbpRvQ9XgNrnfLpIkO3i1emDBIA==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -1778,12 +1754,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 6.11.0(typescript@5.2.2) - '@typescript-eslint/utils': 6.11.0(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/typescript-estree': 6.11.0(typescript@5.3.2) + '@typescript-eslint/utils': 6.11.0(eslint@8.54.0)(typescript@5.3.2) debug: 4.3.4 eslint: 8.54.0 - ts-api-utils: 1.0.3(typescript@5.2.2) - typescript: 5.2.2 + ts-api-utils: 1.0.3(typescript@5.3.2) + typescript: 5.3.2 transitivePeerDependencies: - supports-color dev: true @@ -1793,7 +1769,7 @@ packages: engines: {node: ^16.0.0 || >=18.0.0} dev: true - /@typescript-eslint/typescript-estree@6.11.0(typescript@5.2.2): + /@typescript-eslint/typescript-estree@6.11.0(typescript@5.3.2): resolution: {integrity: sha512-Aezzv1o2tWJwvZhedzvD5Yv7+Lpu1by/U1LZ5gLc4tCx8jUmuSCMioPFRjliN/6SJIvY6HpTtJIWubKuYYYesQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -1808,13 +1784,13 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.5.4 - ts-api-utils: 1.0.3(typescript@5.2.2) - typescript: 5.2.2 + ts-api-utils: 1.0.3(typescript@5.3.2) + typescript: 5.3.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils@6.11.0(eslint@8.54.0)(typescript@5.2.2): + /@typescript-eslint/utils@6.11.0(eslint@8.54.0)(typescript@5.3.2): resolution: {integrity: sha512-p23ibf68fxoZy605dc0dQAEoUsoiNoP3MD9WQGiHLDuTSOuqoTsa4oAy+h3KDkTcxbbfOtUjb9h3Ta0gT4ug2g==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: @@ -1825,7 +1801,7 @@ packages: '@types/semver': 7.5.5 '@typescript-eslint/scope-manager': 6.11.0 '@typescript-eslint/types': 6.11.0 - '@typescript-eslint/typescript-estree': 6.11.0(typescript@5.2.2) + '@typescript-eslint/typescript-estree': 6.11.0(typescript@5.3.2) eslint: 8.54.0 semver: 7.5.4 transitivePeerDependencies: @@ -1856,7 +1832,7 @@ packages: '@unocss/core': 0.57.6 '@unocss/reset': 0.57.6 '@unocss/vite': 0.57.6(vite@5.0.0) - vite: 5.0.0(@types/node@20.9.2)(sass@1.69.5) + vite: 5.0.0(@types/node@20.9.3)(sass@1.69.5) transitivePeerDependencies: - rollup dev: true @@ -2054,7 +2030,7 @@ packages: chokidar: 3.5.3 fast-glob: 3.3.2 magic-string: 0.30.5 - vite: 5.0.0(@types/node@20.9.2)(sass@1.69.5) + vite: 5.0.0(@types/node@20.9.3)(sass@1.69.5) transitivePeerDependencies: - rollup dev: true @@ -2066,8 +2042,8 @@ packages: vite: ^4.0.0 || ^5.0.0 vue: ^3.2.25 dependencies: - vite: 5.0.0(@types/node@20.9.2)(sass@1.69.5) - vue: 3.3.8(typescript@5.2.2) + vite: 5.0.0(@types/node@20.9.3)(sass@1.69.5) + vue: 3.3.8(typescript@5.3.2) dev: true /@vitest/expect@0.34.6: @@ -2180,7 +2156,7 @@ packages: dependencies: '@vue/compiler-ssr': 3.3.8 '@vue/shared': 3.3.8 - vue: 3.3.8(typescript@5.2.2) + vue: 3.3.8(typescript@5.3.2) /@vue/shared@3.3.8: resolution: {integrity: sha512-8PGwybFwM4x8pcfgqEQFy70NaQxASvOC5DJwLQfpArw1UDfUXrJkdxD3BhVTMS+0Lef/TU7YO0Jvr0jJY8T+mw==} @@ -2974,7 +2950,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 6.11.0(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/parser': 6.11.0(eslint@8.54.0)(typescript@5.3.2) debug: 3.2.7 eslint: 8.54.0 eslint-import-resolver-node: 0.3.9 @@ -3104,7 +3080,7 @@ packages: engines: {node: '>=5.0.0'} dev: true - /eslint-plugin-perfectionist@2.4.0(eslint@8.54.0)(typescript@5.2.2)(vue-eslint-parser@9.3.2): + /eslint-plugin-perfectionist@2.4.0(eslint@8.54.0)(typescript@5.3.2)(vue-eslint-parser@9.3.2): resolution: {integrity: sha512-til+vyf56wAUgFv5guBA1Zo5lTw9xj2kCeK/g+9NBtsRy1rkGrlqnvxYNuFExcK3VsPhUUtx5UdScEDz9ahQ5Q==} peerDependencies: astro-eslint-parser: ^0.16.0 @@ -3122,7 +3098,7 @@ packages: vue-eslint-parser: optional: true dependencies: - '@typescript-eslint/utils': 6.11.0(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/utils': 6.11.0(eslint@8.54.0)(typescript@5.3.2) eslint: 8.54.0 minimatch: 9.0.3 natural-compare-lite: 1.4.0 @@ -3165,12 +3141,12 @@ packages: '@typescript-eslint/eslint-plugin': optional: true dependencies: - '@typescript-eslint/eslint-plugin': 6.11.0(@typescript-eslint/parser@6.11.0)(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/eslint-plugin': 6.11.0(@typescript-eslint/parser@6.11.0)(eslint@8.54.0)(typescript@5.3.2) eslint: 8.54.0 eslint-rule-composer: 0.3.0 dev: true - /eslint-plugin-vitest@0.3.10(@typescript-eslint/eslint-plugin@6.11.0)(eslint@8.54.0)(typescript@5.2.2)(vitest@0.34.6): + /eslint-plugin-vitest@0.3.10(@typescript-eslint/eslint-plugin@6.11.0)(eslint@8.54.0)(typescript@5.3.2)(vitest@0.34.6): resolution: {integrity: sha512-08lj4rdhZHYyHk+Py2nJ7SlE6arP8GNfGXl9jVqhe9s5JoZIGiBpIkLGX+VNBiB6vXTn56H6Ant7Koc6XzRjtQ==} engines: {node: 14.x || >= 16} peerDependencies: @@ -3183,8 +3159,8 @@ packages: vitest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 6.11.0(@typescript-eslint/parser@6.11.0)(eslint@8.54.0)(typescript@5.2.2) - '@typescript-eslint/utils': 6.11.0(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/eslint-plugin': 6.11.0(@typescript-eslint/parser@6.11.0)(eslint@8.54.0)(typescript@5.3.2) + '@typescript-eslint/utils': 6.11.0(eslint@8.54.0)(typescript@5.3.2) eslint: 8.54.0 vitest: 0.34.6 transitivePeerDependencies: @@ -5081,20 +5057,20 @@ packages: hasBin: true dev: true - /ts-api-utils@1.0.3(typescript@5.2.2): + /ts-api-utils@1.0.3(typescript@5.3.2): resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==} engines: {node: '>=16.13.0'} peerDependencies: typescript: '>=4.2.0' dependencies: - typescript: 5.2.2 + typescript: 5.3.2 dev: true /ts-interface-checker@0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} dev: true - /tsup@8.0.0(typescript@5.2.2): + /tsup@8.0.0(typescript@5.3.2): resolution: {integrity: sha512-9rOGn8LsFn2iAg2pCB1jnH7ygVuGjlzIomjw0jKXUxAii3iL5cXgm0jZMPKfFH1bSAjQovJ1DUVPSw+oDuIu8A==} engines: {node: '>=18'} hasBin: true @@ -5127,7 +5103,7 @@ packages: source-map: 0.8.0-beta.0 sucrase: 3.34.0 tree-kill: 1.2.2 - typescript: 5.2.2 + typescript: 5.3.2 transitivePeerDependencies: - supports-color - ts-node @@ -5177,8 +5153,8 @@ packages: engines: {node: '>=10'} dev: true - /typescript@5.2.2: - resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==} + /typescript@5.3.2: + resolution: {integrity: sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==} engines: {node: '>=14.17'} hasBin: true @@ -5242,7 +5218,7 @@ packages: '@unocss/transformer-directives': 0.57.6 '@unocss/transformer-variant-group': 0.57.6 '@unocss/vite': 0.57.6(vite@5.0.0) - vite: 5.0.0(@types/node@20.9.2)(sass@1.69.5) + vite: 5.0.0(@types/node@20.9.3)(sass@1.69.5) transitivePeerDependencies: - postcss - rollup @@ -5277,7 +5253,7 @@ packages: spdx-expression-parse: 3.0.1 dev: true - /vite-node@0.34.6(@types/node@20.9.2): + /vite-node@0.34.6(@types/node@20.9.3): resolution: {integrity: sha512-nlBMJ9x6n7/Amaz6F3zJ97EBwR2FkzhBRxF5e+jE6LA3yi6Wtc2lyTij1OnDMIr34v5g/tVQtsVAzhT0jc5ygA==} engines: {node: '>=v14.18.0'} hasBin: true @@ -5287,7 +5263,7 @@ packages: mlly: 1.4.2 pathe: 1.1.1 picocolors: 1.0.0 - vite: 5.0.0(@types/node@20.9.2)(sass@1.69.5) + vite: 5.0.0(@types/node@20.9.3)(sass@1.69.5) transitivePeerDependencies: - '@types/node' - less @@ -5309,10 +5285,10 @@ packages: es-module-lexer: 0.4.1 fs-extra: 10.1.0 magic-string: 0.25.9 - vite: 5.0.0(@types/node@20.9.2)(sass@1.69.5) + vite: 5.0.0(@types/node@20.9.3)(sass@1.69.5) dev: true - /vite@5.0.0(@types/node@20.9.2)(sass@1.69.5): + /vite@5.0.0(@types/node@20.9.3)(sass@1.69.5): resolution: {integrity: sha512-ESJVM59mdyGpsiNAeHQOR/0fqNoOyWPYesFto8FFZugfmhdHx8Fzd8sF3Q/xkVhZsyOxHfdM7ieiVAorI9RjFw==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true @@ -5340,7 +5316,7 @@ packages: terser: optional: true dependencies: - '@types/node': 20.9.2 + '@types/node': 20.9.3 esbuild: 0.19.6 postcss: 8.4.31 rollup: 4.5.0 @@ -5349,7 +5325,7 @@ packages: fsevents: 2.3.3 dev: true - /vitepress@1.0.0-rc.29(@algolia/client-search@4.20.0)(@types/node@20.9.2)(postcss@8.4.31)(sass@1.69.5)(search-insights@2.11.0)(typescript@5.2.2): + /vitepress@1.0.0-rc.29(@algolia/client-search@4.20.0)(@types/node@20.9.3)(postcss@8.4.31)(sass@1.69.5)(search-insights@2.11.0)(typescript@5.3.2): resolution: {integrity: sha512-6sKmyEvH16SgMqkHzRwwadt9Uju13AOIqouzOVEg3Rk6X9mds6jLsq2GxnAJvg0s6bl/0Qs/cw+f8SNki82ltw==} hasBin: true peerDependencies: @@ -5374,8 +5350,8 @@ packages: mrmime: 1.0.1 postcss: 8.4.31 shiki: 0.14.5 - vite: 5.0.0(@types/node@20.9.2)(sass@1.69.5) - vue: 3.3.8(typescript@5.2.2) + vite: 5.0.0(@types/node@20.9.3)(sass@1.69.5) + vue: 3.3.8(typescript@5.3.2) transitivePeerDependencies: - '@algolia/client-search' - '@types/node' @@ -5437,7 +5413,7 @@ packages: dependencies: '@types/chai': 4.3.10 '@types/chai-subset': 1.3.5 - '@types/node': 20.9.2 + '@types/node': 20.9.3 '@vitest/expect': 0.34.6 '@vitest/runner': 0.34.6 '@vitest/snapshot': 0.34.6 @@ -5456,8 +5432,8 @@ packages: strip-literal: 1.3.0 tinybench: 2.5.1 tinypool: 0.7.0 - vite: 5.0.0(@types/node@20.9.2)(sass@1.69.5) - vite-node: 0.34.6(@types/node@20.9.2) + vite: 5.0.0(@types/node@20.9.3)(sass@1.69.5) + vite-node: 0.34.6(@types/node@20.9.3) why-is-node-running: 2.2.2 transitivePeerDependencies: - less @@ -5488,7 +5464,7 @@ packages: '@codemirror/state': 6.3.1 '@codemirror/view': 6.22.0 codemirror: 6.0.1(@lezer/common@1.1.1) - vue: 3.3.8(typescript@5.2.2) + vue: 3.3.8(typescript@5.3.2) dev: false patched: true @@ -5504,7 +5480,7 @@ packages: '@vue/composition-api': optional: true dependencies: - vue: 3.3.8(typescript@5.2.2) + vue: 3.3.8(typescript@5.3.2) dev: true /vue-eslint-parser@9.3.2(eslint@8.54.0): @@ -5525,7 +5501,7 @@ packages: - supports-color dev: true - /vue@3.3.8(typescript@5.2.2): + /vue@3.3.8(typescript@5.3.2): resolution: {integrity: sha512-5VSX/3DabBikOXMsxzlW8JyfeLKlG9mzqnWgLQLty88vdZL7ZJgrdgBOmrArwxiLtmS+lNNpPcBYqrhE6TQW5w==} peerDependencies: typescript: '*' @@ -5538,7 +5514,7 @@ packages: '@vue/runtime-dom': 3.3.8 '@vue/server-renderer': 3.3.8(vue@3.3.8) '@vue/shared': 3.3.8 - typescript: 5.2.2 + typescript: 5.3.2 /w3c-keyname@2.2.8: resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==}