diff --git a/.eslintrc.json b/.eslintrc.json deleted file mode 100644 index 944e15c..0000000 --- a/.eslintrc.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "extends": ["escapace"], - "parserOptions": { - "project": "./tsconfig.json", - "warnOnUnsupportedTypeScriptVersion": false - }, - "root": true, - "rules": { "@typescript-eslint/no-explicit-any": 0 } -} diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 4044279..55c758d 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -1,5 +1,3 @@ { - extends: [ - 'github>escapace/renovate-configuration' - ] + extends: ['github>escapace/renovate-configuration'], } diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 521b8d9..814b68c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -34,7 +34,7 @@ jobs: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} uses: escapace/workflows/.github/workflows/ci-typescript.yaml@trunk with: - enable-codecov: true + enable-codecov: false node-version: ${{ needs.context.outputs.node-version }} pnpm-version: ${{ needs.context.outputs.pnpm-version }} ref: ${{ needs.context.outputs.ref }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5bbe842..5962325 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -23,7 +23,7 @@ jobs: uses: escapace/workflows/.github/workflows/ci-typescript.yaml@trunk with: enable-artifact-upload: true - enable-codecov: true + enable-codecov: false node-version: ${{ needs.context.outputs.node-version }} pnpm-version: ${{ needs.context.outputs.pnpm-version }} ref: ${{ needs.context.outputs.ref }} diff --git a/.gitignore b/.gitignore index 97d5840..418dcc3 100644 --- a/.gitignore +++ b/.gitignore @@ -4,20 +4,6 @@ /index.d.ts.map /typelevel -.DS_Store -.awcache -.idea -.manage_modules -.rpt2_cache -.vscode - -# Editor directories and files -.idea -*.suo -*.ntvs* -*.njsproj -*.sln - # Logs logs *.log @@ -74,6 +60,9 @@ web_modules/ # Optional eslint cache .eslintcache +# Optional stylelint cache +.stylelintcache + # Microbundle cache .rpt2_cache/ .rts2_cache_cjs/ @@ -89,10 +78,12 @@ web_modules/ # Yarn Integrity file .yarn-integrity -# dotenv environment variables file +# dotenv environment variable files .env -.env.test -.env.production +.env.development.local +.env.test.local +.env.production.local +.env.local # parcel-bundler cache (https://parceljs.org/) .cache @@ -115,6 +106,13 @@ dist # vuepress build output .vuepress/dist +# vuepress v2.x temp and cache directory +.temp +.cache + +# Docusaurus cache and generated files +.docusaurus + # Serverless directories .serverless/ @@ -135,4 +133,3 @@ dist .yarn/unplugged .yarn/build-state.yml .yarn/install-state.gz -.pnp.* diff --git a/.syncpackrc.json b/.syncpackrc.json index 3ed2225..87f7f47 100644 --- a/.syncpackrc.json +++ b/.syncpackrc.json @@ -1,20 +1,20 @@ { + "customTypes": { + "engines": { + "path": "engines", + "strategy": "versionsByName" + } + }, "dependencyTypes": [ "dev", - "engines", - "local", "overrides", "peer", "pnpmOverrides", "prod", - "resolutions" + "resolutions", + "local", + "engines" ], - "customTypes": { - "engines": { - "path": "engines", - "strategy": "versionsByName" - } - }, "semverGroups": [ { "dependencies": ["**"], @@ -35,5 +35,12 @@ "range": "^" } ], - "source": ["package.json"] + "source": ["package.json", "packages/*/package.json"], + "versionGroups": [ + { + "dependencies": ["$LOCAL"], + "isIgnored": true, + "packages": ["**"] + } + ] } diff --git a/LICENSE b/LICENSE index a612ad9..d0a1fa1 100644 --- a/LICENSE +++ b/LICENSE @@ -357,7 +357,7 @@ Exhibit A - Source Code Form License Notice This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. + file, You can obtain one at https://mozilla.org/MPL/2.0/. If it is not possible or desirable to put the notice in a particular file, then You may include the notice in a location (such as a LICENSE diff --git a/eslint.config.mjs b/eslint.config.mjs index 19ee566..d1a7d1a 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -1,3 +1,9 @@ import { escapace } from 'eslint-config-escapace' -export default escapace() +export default escapace({ + typescript: { + rules: { + 'typescript/no-explicit-any': 'off', + }, + }, +}) diff --git a/lefthook.yaml b/lefthook.yaml index 1982c94..1525457 100644 --- a/lefthook.yaml +++ b/lefthook.yaml @@ -13,12 +13,6 @@ pre-commit: - rebase commands: - knip: - glob: '{package.json,**/package.json,pnpm-lock.yaml}' - priority: 1 - run: pnpm exec knip - - skip: true ls-lint: priority: 1 run: pnpm exec ls-lint --config '.ls-lint.yaml' @@ -48,14 +42,14 @@ pre-commit: stage_fixed: true eslint: - exclude: '(^|/)pnpm-lock.yaml$' + exclude: '^[\/]*(pnpm-lock\.yaml|lib)$' glob: '*.{js,mjs,cjs,ts,mts,cts,yml,yaml,json}' priority: 6 - run: pnpm exec eslint --fix {staged_files} + run: pnpm exec eslint --no-warn-ignored --fix {staged_files} stage_fixed: true prettier: - exclude: '(^|/)pnpm-lock.yaml$' + exclude: '^[\/]*(pnpm-lock\.yaml|lib)$' glob: '*.{js,mjs,cjs,ts,mts,cts,yml,yaml,json,md}' priority: 7 run: pnpm exec prettier --write {staged_files} diff --git a/package.json b/package.json index 0337a09..ca3f165 100644 --- a/package.json +++ b/package.json @@ -10,19 +10,18 @@ "devDependencies": { "@commitlint/cli": "19.3.0", "@commitlint/config-conventional": "19.2.2", - "@escapace/pnpm-pack": "0.2.0", + "@escapace/pnpm-pack": "0.4.1", "@ls-lint/ls-lint": "2.2.3", - "eslint": "9.1.1", - "eslint-config-escapace": "5.0.5", - "lefthook": "1.6.10", + "eslint": "9.3.0", + "eslint-config-escapace": "5.0.12", + "lefthook": "1.6.12", "prettier": "3.2.5", - "prettier-config-escapace": "1.2.0", + "prettier-config-escapace": "1.2.1", "syncpack": "12.3.2", "tsd": "0.31.0", "typescript": "5.4.5" }, "engines": { - "node": ">=20.12.0", "pnpm": ">=8.15.6" }, "files": [ @@ -33,14 +32,19 @@ "homepage": "https://github.com/escapace/typelevel", "license": "MPL-2.0", "private": false, + "publishConfig": { + "access": "public", + "provenance": true + }, "repository": "escapace/typelevel", "scripts": { - "build": "rm -rf index.d.ts hkt.d.ts typelevel && tsc --emitDeclarationOnly --declarationDir .", - "lint": "ls-lint --config .ls-lint.yaml && knip && eslint", + "build": "rm -rf index.d.ts hkt.d.ts typelevel && tsc -p tsconfig-build.json --emitDeclarationOnly --declarationDir .", + "format": "eslint --no-warn-ignored --fix && prettier -uw .", + "lint": "ls-lint --config .ls-lint.yaml && eslint", "pack": "pnpm-pack package --pack-destination lib", "prepare": "lefthook install", "test": "echo ok", - "typecheck": "tsc -p test/tsconfig.json --noEmit" + "typecheck": "tsc --noEmit" }, "sideEffects": false, "type": "module", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8e28a83..e060900 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10,31 +10,31 @@ importers: devDependencies: '@commitlint/cli': specifier: 19.3.0 - version: 19.3.0(@types/node@20.12.2)(typescript@5.4.5) + version: 19.3.0(@types/node@20.12.12)(typescript@5.4.5) '@commitlint/config-conventional': specifier: 19.2.2 version: 19.2.2 '@escapace/pnpm-pack': - specifier: 0.2.0 - version: 0.2.0(@pnpm/logger@5.0.0) + specifier: 0.4.1 + version: 0.4.1(@pnpm/logger@5.0.0) '@ls-lint/ls-lint': specifier: 2.2.3 version: 2.2.3 eslint: - specifier: 9.1.1 - version: 9.1.1 + specifier: 9.3.0 + version: 9.3.0 eslint-config-escapace: - specifier: 5.0.5 - version: 5.0.5(eslint@9.1.1)(typescript@5.4.5) + specifier: 5.0.12 + version: 5.0.12(eslint@9.3.0)(typescript@5.4.5) lefthook: - specifier: 1.6.10 - version: 1.6.10 + specifier: 1.6.12 + version: 1.6.12 prettier: specifier: 3.2.5 version: 3.2.5 prettier-config-escapace: - specifier: 1.2.0 - version: 1.2.0 + specifier: 1.2.1 + version: 1.2.1 syncpack: specifier: 12.3.2 version: 12.3.2(typescript@5.4.5) @@ -47,20 +47,16 @@ importers: packages: - '@aashutoshrathi/word-wrap@1.2.6': - resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} - engines: {node: '>=0.10.0'} - '@babel/code-frame@7.24.2': resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.22.20': - resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} + '@babel/helper-validator-identifier@7.24.5': + resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==} engines: {node: '>=6.9.0'} - '@babel/highlight@7.24.2': - resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==} + '@babel/highlight@7.24.5': + resolution: {integrity: sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==} engines: {node: '>=6.9.0'} '@commitlint/cli@19.3.0': @@ -138,9 +134,9 @@ packages: effect: ^3.0.3 fast-check: ^3.13.2 - '@escapace/pnpm-pack@0.2.0': - resolution: {integrity: sha512-V29HKospMkpbyccq3iOoudYscodUJuyn11ZyONygPABjXBbH8lhIsl49rEcVfwTEjNfhCDKmhSKcGXskkre3DA==} - engines: {node: '>=20.12.0', pnpm: '>=8.15.6'} + '@escapace/pnpm-pack@0.4.1': + resolution: {integrity: sha512-DEg8pvIYLuqTsttU8tWS6Aaml9/3LuYrRQrVf8AqBABXSmqCnne3+SRBQZiuEM+f1/A2GyasOMSSQFGPUhxdWQ==} + engines: {node: '>=20.12.0', pnpm: '>=9.0.6'} hasBin: true '@eslint-community/eslint-utils@4.4.0': @@ -153,16 +149,12 @@ packages: resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - '@eslint/eslintrc@2.1.4': - resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@eslint/eslintrc@3.0.2': - resolution: {integrity: sha512-wV19ZEGEMAC1eHgrS7UQPqsdEiCIbTKTasEfcXAigzoXICcqZSjBZEHlZwNVvKg6UBCjSlos84XiLqsRJnIcIg==} + '@eslint/eslintrc@3.1.0': + resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@eslint/js@9.1.1': - resolution: {integrity: sha512-5WoDz3Y19Bg2BnErkZTp0en+c/i9PvgFS7MBe1+m60HjFr0hrphlAGp4yzI7pxpt4xShln4ZyYp4neJm8hmOkQ==} + '@eslint/js@9.3.0': + resolution: {integrity: sha512-niBqk8iwv96+yuTwjM6bWg8ovzAPF9qkICsGtcoa5/dmqcEMfdwNAX7+/OHcJHc7wj7XqPxH98oAHytFYlw6Sw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@humanwhocodes/config-array@0.13.0': @@ -176,8 +168,8 @@ packages: '@humanwhocodes/object-schema@2.0.3': resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} - '@humanwhocodes/retry@0.2.3': - resolution: {integrity: sha512-X38nUbachlb01YMlvPFojKoiXq+LzZvuSce70KPMPdeM1Rj03k4dR7lDslhbqXn3Ang4EU3+EAmwEAsbrjHW3g==} + '@humanwhocodes/retry@0.3.0': + resolution: {integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==} engines: {node: '>=18.18'} '@jest/schemas@29.6.3': @@ -208,54 +200,114 @@ packages: resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} engines: {node: '>= 8'} - '@pnpm/constants@7.1.1': - resolution: {integrity: sha512-31pZqMtjwV+Vaq7MaPrT1EoDFSYwye3dp6BiHIGRJmVThCQwySRKM7hCvqqI94epNkqFAAYoWrNynWoRYosGdw==} - engines: {node: '>=16.14'} + '@pnpm/constants@6.2.0': + resolution: {integrity: sha512-GlDVUkeTR2WK0oZAM+wtDY6RBMLw6b0Z/5qKgBbDszx4e+R7CHyfG7JofyypogRCfeWXeAXp2C2FkFTh+sNgIg==} + engines: {node: '>=14.6'} + + '@pnpm/constants@8.0.0': + resolution: {integrity: sha512-yQosGUvYPpAjb1jOFcdbwekRjZRVxN6C0hHzfRCZrMKbxGjt/E0g0RcFlEDNVZ95tm4oMMcr7nEPa7H7LX3emw==} + engines: {node: '>=18.12'} + + '@pnpm/core-loggers@10.0.0': + resolution: {integrity: sha512-nf6DWO+75llaOxZ4Wb5xIzC86jb9PEeD8y7E4bbkLCJUvv/vRVgaPO3+Fo2GFTw5ZY7cip60rTF6dUzbP9dOVw==} + engines: {node: '>=18.12'} + peerDependencies: + '@pnpm/logger': ^5.0.0 - '@pnpm/crypto.base32-hash@2.0.0': - resolution: {integrity: sha512-3ttOeHBpmWRbgJrpDQ8Nwd3W8s8iuiP5YZM0JRyKWaMtX8lu9d7/AKyxPmhYsMJuN+q/1dwHa7QFeDZJ53b0oA==} - engines: {node: '>=16.14'} + '@pnpm/crypto.base32-hash@3.0.0': + resolution: {integrity: sha512-iGKP6rRKng5Tcad1+S+j3UoY5wVZN+z0ZgemlGp69jNgn6EaM4N0Q3mvnDNJ7UZFmL2ClXZZYLNuCk9pUYV3Xg==} + engines: {node: '>=18.12'} - '@pnpm/dependency-path@2.1.8': - resolution: {integrity: sha512-ywBaTjy0iSEF7lH3DlF8UXrdL2bw4AQFV2tTOeNeY7wc1W5CE+RHSJhf9MXBYcZPesqGRrPiU7Pimj3l05L9VA==} - engines: {node: '>=16.14'} + '@pnpm/dependency-path@4.0.0': + resolution: {integrity: sha512-d2tTvjnWJtqVjREPZa1h81i7wfQSeg7YkMc7BZAr8QJ4he5KlHY1Zmfa4LpyXVQJSV3trGfy/dmxhV2A5lo34g==} + engines: {node: '>=18.12'} - '@pnpm/error@5.0.3': - resolution: {integrity: sha512-ONJU5cUeoeJSy50qOYsMZQHTA/9QKmGgh1ATfEpCLgtbdwqUiwD9MxHNeXUYYI/pocBCz6r1ZCFqiQvO+8SUKA==} - engines: {node: '>=16.14'} + '@pnpm/error@4.0.1': + resolution: {integrity: sha512-6UFakGqUDhnZVzYCfN+QaG1epxtBVS1M9mb9RzoBuvWxcimBYTT04fdYuyk1Nay8y/TvAVl3AVB/lCziWG0+2w==} + engines: {node: '>=14.6'} - '@pnpm/git-utils@1.0.0': - resolution: {integrity: sha512-lUI+XrzOJN4zdPGOGnFUrmtXAXpXi8wD8OI0nWOZmlh+raqbLzC3VkXu1zgaduOK6YonOcnQW88O+ojav1rAdA==} - engines: {node: '>=16.14'} + '@pnpm/error@6.0.1': + resolution: {integrity: sha512-7yjO0RgmWYb4OKgcWC33yD4Z2CxE7Tm7vXX1SmS7GDifDT/bgZZhHeS2xq/+W6y9yhwIrRSA+7AlQL1NM2wIvw==} + engines: {node: '>=18.12'} + + '@pnpm/fetch@8.0.0': + resolution: {integrity: sha512-V9khLYMUmadH45A5zZnrt1nUsZ0NokWkw0QjjgSdiBCgRyQnf1SvFjVcj4sVWxK0ZaijZQnIhIcKvlV3/zB0Ig==} + engines: {node: '>=18.12'} + peerDependencies: + '@pnpm/logger': ^5.0.0 + + '@pnpm/fetching-types@6.0.0': + resolution: {integrity: sha512-fnsaegb+0q7Ku6AyCmoVtBeCuO8ytB7YMEaGHC+0MGoRsxxa6EVLgi2H4abKr8LLslf5tHJBnOH24DjST3UNfQ==} + engines: {node: '>=18.12'} + + '@pnpm/git-resolver@9.0.1': + resolution: {integrity: sha512-B1FtKwEEUm8130XqmX7eqgMhqdBxJ5gPrWssOLnpIlp/rvmJFsfD2P//80OjORPNFWnpfqdfBF34c/+ZCzAxZg==} + engines: {node: '>=18.12'} + + '@pnpm/git-utils@2.0.0': + resolution: {integrity: sha512-k1rv4Zvno/5zJAqE/Mh9V0ehlm14NsYwpXTdaGMtyhkoHvlSckRfr23OIOIM7Q/TRX+LhqyJ2kep50SY2TsZ+g==} + engines: {node: '>=18.12'} + + '@pnpm/hosted-git-info@1.0.0': + resolution: {integrity: sha512-QzmNiLShTnNyeTHr+cykG5hYjwph0+v49KHV36Dh8uA2rRMWw30qoZMARuxd00SYdoTwT8bIouqqmzi6TWfJHQ==} + engines: {node: '>=10'} - '@pnpm/lockfile-file@8.1.8': - resolution: {integrity: sha512-bRadYzGFyFtwiynwp4Mkn7NDNHkgKvJ9xtjsCT5XiE6S8wpzS3W8yx2WzHGk9Mm1J/2wM0F52+NzCWhlz5eIqA==} - engines: {node: '>=16.14'} + '@pnpm/lockfile-file@9.0.5': + resolution: {integrity: sha512-QQFYohFy39FkAQbtDEtqVIzNu5XZhA9aonh/AM/vwvptNcfnajeBuNKfAJepdjWPg/xSBDuU96So29pkPMK8+Q==} + engines: {node: '>=18.12'} peerDependencies: '@pnpm/logger': ^5.0.0 - '@pnpm/lockfile-types@5.1.5': - resolution: {integrity: sha512-02FP0HynzX+2DcuPtuMy7PH+kLIC0pevAydAOK+zug2bwdlSLErlvSkc+4+3dw60eRWgUXUqyfO2eR/Ansdbng==} - engines: {node: '>=16.14'} + '@pnpm/lockfile-types@6.0.0': + resolution: {integrity: sha512-a4/ULIPLZIIq8Qmi2HEoFgRTtEouGU5RNhuGDxnSmkxu1BjlNMNjLJeEI5jzMZCGOjBoML+AirY/XOO3bcEQ/w==} + engines: {node: '>=18.12'} + + '@pnpm/lockfile-utils@10.1.1': + resolution: {integrity: sha512-Zl5S1WW3Fk8SFjzjuV8jog7VYtPC+RMcsLpvmgFUDyMy/IRG1x2vQ7m3BY1SpmfRLf4XqxACRwKBlbjlRrVY4Q==} + engines: {node: '>=18.12'} '@pnpm/logger@5.0.0': resolution: {integrity: sha512-YfcB2QrX+Wx1o6LD1G2Y2fhDhOix/bAY/oAnMpHoNLsKkWIRbt1oKLkIFvxBMzLwAEPqnYWguJrYC+J6i4ywbw==} engines: {node: '>=12.17'} - '@pnpm/merge-lockfile-changes@5.0.7': - resolution: {integrity: sha512-fYmX1+EHv3wg7l4A9FCEkjgEBIHaY6JosknkLk3pL8dbB9k6unjIrF9f2onNtpj3XUlWxZ3aBw9THk/Bf6hKow==} - engines: {node: '>=16.14'} + '@pnpm/merge-lockfile-changes@6.0.0': + resolution: {integrity: sha512-K9ARTZ+o/EZ10RPZY4dftlSnvPgJrVeOG0QwZLNTb9Z9q8D6EqSVwEh7CxDobGFe5FAj2lkDK6DY7EgPI4hhdw==} + engines: {node: '>=18.12'} + + '@pnpm/network.agent@1.0.1': + resolution: {integrity: sha512-yRm8MzpZvst5IYF5IUgK7q5SvcncCUWOVBqpl527Pz6BafmDlcxAYyFy7lV4AiQr+VZ9VWudQsaHQeaYikyDGw==} + engines: {node: '>=12.22.0'} + + '@pnpm/network.config@1.0.1': + resolution: {integrity: sha512-ZmTsSFxd4QT5+IZvwHtQjzSlkB7OXAty6MfSenRyHOvR1f8j3l1VDWVXJiNaiLrKeidiZH6ADfsMTr2N0CGDeA==} + engines: {node: '>=12.22.0'} + + '@pnpm/network.proxy-agent@1.0.1': + resolution: {integrity: sha512-0q9Btpw43aTPzEJJmQY1TNBrwNlPINRae8EpO7VpqbmFflBRO6u6qady6XFfbi+wwPxpcpVOYr6rCDBzALXYHA==} + engines: {node: '>=12.22.0'} + + '@pnpm/node-fetch@1.0.0': + resolution: {integrity: sha512-eYwrzhKUBGFdq78rJStGjaHTUHA2VH+Avr//CVx/T+EJkI7hnFmOy6YghvcB2clj8HpO4V8tXRNuFNfRX08ayw==} + engines: {node: ^10.17 || >=12.3} + + '@pnpm/pick-fetcher@3.0.0': + resolution: {integrity: sha512-2eisylRAU/jeuxFEPnS1gjLZKJGbYc4QEtEW6MVUYjO4Xi+2ttkSm7825S0J5IPpUIvln8HYPCUS0eQWSfpOaQ==} + engines: {node: '>=18.12'} '@pnpm/ramda@0.28.1': resolution: {integrity: sha512-zcAG+lvU0fMziNeGXpPyCyCJYp5ZVrPElEE4t14jAmViaihohocZ+dDkcRIyAomox8pQsuZnv1EyHR+pOhmUWw==} - '@pnpm/types@9.4.2': - resolution: {integrity: sha512-g1hcF8Nv4gd76POilz9gD4LITAPXOe5nX4ijgr8ixCbLQZfcpYiMfJ+C1RlMNRUDo8vhlNB4O3bUlxmT6EAQXA==} - engines: {node: '>=16.14'} + '@pnpm/resolver-base@12.0.0': + resolution: {integrity: sha512-R5FmojIoHRIC8hZDyr6a9SM6TkpAQXQXgq5QrycUwknRvGjTnrOFD5JaTzMZohcfFg6TWdA3sp3B0w/mhj98Rg==} + engines: {node: '>=18.12'} - '@pnpm/util.lex-comparator@1.0.0': - resolution: {integrity: sha512-3aBQPHntVgk5AweBWZn+1I/fqZ9krK/w01197aYVkAJQGftb+BVWgEepxY5GChjSW12j52XX+CmfynYZ/p0DFQ==} - engines: {node: '>=12.22.0'} + '@pnpm/types@10.0.0': + resolution: {integrity: sha512-P608MRTOExt5BkIN2hsrb/ycEchwaPW/x80ujJUAqxKZSXNVAOrlEu3KJ+2+jTCunyWmo/EcE01ZdwCw8jgVrQ==} + engines: {node: '>=18.12'} + + '@pnpm/util.lex-comparator@3.0.0': + resolution: {integrity: sha512-ead+l3IiuVXwKDf/QJPX6G93cwhXki3yOVEA/VdAO7AhZ5vUuSBxHe6gQKEbB0QacJ4H5VsYxeM1xUgwjjOO/Q==} + engines: {node: '>=18.12'} '@sinclair/typebox@0.27.8': resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} @@ -264,37 +316,41 @@ packages: resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} engines: {node: '>=18'} - '@stylistic/eslint-plugin-js@1.7.2': - resolution: {integrity: sha512-ZYX7C5p7zlHbACwFLU+lISVh6tdcRP/++PWegh2Sy0UgMT5kU0XkPa2tKWEtJYzZmPhJxu9LxbnWcnE/tTwSDQ==} - engines: {node: ^16.0.0 || >=18.0.0} + '@stylistic/eslint-plugin-js@2.1.0': + resolution: {integrity: sha512-gdXUjGNSsnY6nPyqxu6lmDTtVrwCOjun4x8PUn0x04d5ucLI74N3MT1Q0UhdcOR9No3bo5PGDyBgXK+KmD787A==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: '>=8.40.0' - '@stylistic/eslint-plugin-jsx@1.7.2': - resolution: {integrity: sha512-lNZR5PR0HLJPs+kY0y8fy6KroKlYqA5PwsYWpVYWzqZWiL5jgAeUo4s9yLFYjJjzildJ5MsTVMy/xP81Qz6GXg==} - engines: {node: ^16.0.0 || >=18.0.0} + '@stylistic/eslint-plugin-jsx@2.1.0': + resolution: {integrity: sha512-mMD7S+IndZo2vxmwpHVTCwx2O1VdtE5tmpeNwgaEcXODzWV1WTWpnsc/PECQKIr/mkLPFWiSIqcuYNhQ/3l6AQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: '>=8.40.0' - '@stylistic/eslint-plugin-plus@1.7.2': - resolution: {integrity: sha512-luUfRVbBVtt0+/FNt8/76BANJEzb/nHWasHD7UUjyMrch2U9xUKpObrkTCzqBuisKek+uFupwGjqXqDP07+fQw==} + '@stylistic/eslint-plugin-plus@2.1.0': + resolution: {integrity: sha512-S5QAlgYXESJaSBFhBSBLZy9o36gXrXQwWSt6QkO+F0SrT9vpV5JF/VKoh+ojO7tHzd8Ckmyouq02TT9Sv2B0zQ==} peerDependencies: eslint: '*' - '@stylistic/eslint-plugin-ts@1.7.2': - resolution: {integrity: sha512-szX89YPocwCe4T0eT3alj7MwEzDHt5+B+kb/vQfSSLIjI9CGgoWrgj50zU8PtaDctTh4ZieFBzU/lRmkSUo0RQ==} - engines: {node: ^16.0.0 || >=18.0.0} + '@stylistic/eslint-plugin-ts@2.1.0': + resolution: {integrity: sha512-2ioFibufHYBALx2TBrU4KXovCkN8qCqcb9yIHc0fyOfTaO5jw4d56WW7YRcF3Zgde6qFyXwAN6z/+w4pnmos1g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: '>=8.40.0' - '@stylistic/eslint-plugin@1.7.2': - resolution: {integrity: sha512-TesaPR4AOCeD4unwu9gZCdTe8SsUpykriICuwXV8GFBgESuVbfVp+S8g6xTWe9ntVR803bNMtnr2UhxHW0iFqg==} - engines: {node: ^16.0.0 || >=18.0.0} + '@stylistic/eslint-plugin@2.1.0': + resolution: {integrity: sha512-cBBowKP2u/+uE5CzgH5w8pE9VKqcM7BXdIDPIbGt2rmLJGnA6MJPr9vYGaqgMoJFs7R/FzsMQerMvvEP40g2uw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: '>=8.40.0' - '@tsd/typescript@5.4.3': - resolution: {integrity: sha512-htCVCSQP58wZcLfQaT7ikW9hSjJN7ntIe0HzAfYpBauI0tYoIM0ow4XEZGFwYN266qEsJoOHhlnkNvz/gLrx4Q==} + '@tootallnate/once@2.0.0': + resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} + engines: {node: '>= 10'} + + '@tsd/typescript@5.4.5': + resolution: {integrity: sha512-saiCxzHRhUrRxQV2JhH580aQUZiKQUXI38FcAcikcfOomAil4G4lxT0RfrrKywoAYP/rqAdYXYmNRLppcd+hQQ==} engines: {node: '>=14.17'} '@types/conventional-commits-parser@5.0.0': @@ -303,8 +359,8 @@ packages: '@types/eslint@7.29.0': resolution: {integrity: sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==} - '@types/eslint@8.56.9': - resolution: {integrity: sha512-W4W3KcqzjJ0sHg2vAq9vfml6OhsJ53TcUjUqfzzZf/EChUtwspszj/S0pzMxnfRcO55/iGq47dscXw71Fxc4Zg==} + '@types/eslint@8.56.10': + resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==} '@types/estree@1.0.5': resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} @@ -315,17 +371,14 @@ packages: '@types/minimist@1.2.5': resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} - '@types/node@20.12.2': - resolution: {integrity: sha512-zQ0NYO87hyN6Xrclcqp7f8ZbXNbRfoGWNcMvHTPQp9UUrwI0mI7XBz+cu7/W6/VClYo2g63B0cjull/srU7LgQ==} + '@types/node@20.12.12': + resolution: {integrity: sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==} '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} - '@types/semver@7.5.8': - resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} - - '@typescript-eslint/eslint-plugin@7.7.1': - resolution: {integrity: sha512-KwfdWXJBOviaBVhxO3p5TJiLpNuh2iyXyjmWN0f1nU87pwyvfS0EmjC6ukQVYVFJd/K1+0NWGPDXiyEyQorn0Q==} + '@typescript-eslint/eslint-plugin@7.9.0': + resolution: {integrity: sha512-6e+X0X3sFe/G/54aC3jt0txuMTURqLyekmEHViqyA2VnxhLMpvA6nqmcjIy+Cr9tLDHPssA74BP5Mx9HQIxBEA==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: '@typescript-eslint/parser': ^7.0.0 @@ -335,8 +388,8 @@ packages: typescript: optional: true - '@typescript-eslint/parser@7.7.1': - resolution: {integrity: sha512-vmPzBOOtz48F6JAGVS/kZYk4EkXao6iGrD838sp1w3NQQC0W8ry/q641KU4PrG7AKNAf56NOcR8GOpH8l9FPCw==} + '@typescript-eslint/parser@7.9.0': + resolution: {integrity: sha512-qHMJfkL5qvgQB2aLvhUSXxbK7OLnDkwPzFalg458pxQgfxKDfT1ZDbHQM/I6mDIf/svlMkj21kzKuQ2ixJlatQ==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 @@ -345,16 +398,12 @@ packages: typescript: optional: true - '@typescript-eslint/scope-manager@6.21.0': - resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==} - engines: {node: ^16.0.0 || >=18.0.0} - - '@typescript-eslint/scope-manager@7.7.1': - resolution: {integrity: sha512-PytBif2SF+9SpEUKynYn5g1RHFddJUcyynGpztX3l/ik7KmZEv19WCMhUBkHXPU9es/VWGD3/zg3wg90+Dh2rA==} + '@typescript-eslint/scope-manager@7.9.0': + resolution: {integrity: sha512-ZwPK4DeCDxr3GJltRz5iZejPFAAr4Wk3+2WIBaj1L5PYK5RgxExu/Y68FFVclN0y6GGwH8q+KgKRCvaTmFBbgQ==} engines: {node: ^18.18.0 || >=20.0.0} - '@typescript-eslint/type-utils@7.7.1': - resolution: {integrity: sha512-ZksJLW3WF7o75zaBPScdW1Gbkwhd/lyeXGf1kQCxJaOeITscoSl0MjynVvCzuV5boUz/3fOI06Lz8La55mu29Q==} + '@typescript-eslint/type-utils@7.9.0': + resolution: {integrity: sha512-6Qy8dfut0PFrFRAZsGzuLoM4hre4gjzWJB6sUvdunCYZsYemTkzZNwF1rnGea326PHPT3zn5Lmg32M/xfJfByA==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 @@ -363,25 +412,12 @@ packages: typescript: optional: true - '@typescript-eslint/types@6.21.0': - resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==} - engines: {node: ^16.0.0 || >=18.0.0} - - '@typescript-eslint/types@7.7.1': - resolution: {integrity: sha512-AmPmnGW1ZLTpWa+/2omPrPfR7BcbUU4oha5VIbSbS1a1Tv966bklvLNXxp3mrbc+P2j4MNOTfDffNsk4o0c6/w==} + '@typescript-eslint/types@7.9.0': + resolution: {integrity: sha512-oZQD9HEWQanl9UfsbGVcZ2cGaR0YT5476xfWE0oE5kQa2sNK2frxOlkeacLOTh9po4AlUT5rtkGyYM5kew0z5w==} engines: {node: ^18.18.0 || >=20.0.0} - '@typescript-eslint/typescript-estree@6.21.0': - resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - '@typescript-eslint/typescript-estree@7.7.1': - resolution: {integrity: sha512-CXe0JHCXru8Fa36dteXqmH2YxngKJjkQLjxzoj6LYwzZ7qZvgsLSc+eqItCrqIop8Vl2UKoAi0StVWu97FQZIQ==} + '@typescript-eslint/typescript-estree@7.9.0': + resolution: {integrity: sha512-zBCMCkrb2YjpKV3LA0ZJubtKCDxLttxfdGmwZvTqqWevUPN0FZvSI26FalGFFUZU/9YQK/A4xcQF9o/VVaCKAg==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: typescript: '*' @@ -389,30 +425,24 @@ packages: typescript: optional: true - '@typescript-eslint/utils@6.21.0': - resolution: {integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - - '@typescript-eslint/utils@7.7.1': - resolution: {integrity: sha512-QUvBxPEaBXf41ZBbaidKICgVL8Hin0p6prQDu6bbetWo39BKbWJxRsErOzMNT1rXvTll+J7ChrbmMCXM9rsvOQ==} + '@typescript-eslint/utils@7.9.0': + resolution: {integrity: sha512-5KVRQCzZajmT4Ep+NEgjXCvjuypVvYHUW7RHlXzNPuak2oWpVoD1jf5xCP0dPAuNIchjC7uQyvbdaSTFaLqSdA==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 - '@typescript-eslint/visitor-keys@6.21.0': - resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==} - engines: {node: ^16.0.0 || >=18.0.0} - - '@typescript-eslint/visitor-keys@7.7.1': - resolution: {integrity: sha512-gBL3Eq25uADw1LQ9kVpf3hRM+DWzs0uZknHYK3hq4jcTPqVCClHGDnB6UUUV2SFeBeA4KWHWbbLqmbGcZ4FYbw==} + '@typescript-eslint/visitor-keys@7.9.0': + resolution: {integrity: sha512-iESPx2TNLDNGQLyjKhUvIKprlP49XNEK+MvIf9nIO7ZZaZdbnfWKHnXAgufpxqfA0YryH8XToi4+CjBgVnFTSQ==} engines: {node: ^18.18.0 || >=20.0.0} - '@zkochan/js-yaml@0.0.6': - resolution: {integrity: sha512-nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg==} + '@zkochan/js-yaml@0.0.7': + resolution: {integrity: sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==} hasBin: true + '@zkochan/retry@0.2.0': + resolution: {integrity: sha512-WhB+2B/ZPlW2Xy/kMJBrMbqecWXcbDDgn0K0wKBAgO2OlBTz1iLJrRWduo+DGGn0Akvz1Lu4Xvls7dJojximWw==} + engines: {node: '>=10'} + '@zkochan/rimraf@2.1.3': resolution: {integrity: sha512-mCfR3gylCzPC+iqdxEA6z5SxJeOgzgbwmyxanKriIne5qZLswDe/M43aD3p5MNzwzXRhbZg/OX+MpES6Zk1a6A==} engines: {node: '>=12.10'} @@ -436,11 +466,19 @@ packages: engines: {node: '>=0.4.0'} hasBin: true + agent-base@6.0.2: + resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + engines: {node: '>= 6.0.0'} + + agentkeepalive@4.2.1: + resolution: {integrity: sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==} + engines: {node: '>= 8.0.0'} + ajv@6.12.6: resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} - ajv@8.12.0: - resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} + ajv@8.13.0: + resolution: {integrity: sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==} ansi-colors@4.1.3: resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} @@ -493,8 +531,8 @@ packages: balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - bole@5.0.11: - resolution: {integrity: sha512-KB0Ye0iMAW5BnNbnLfMSQcnI186hKUzE2fpkZWqcxsoTR7eqzlTidSOMYPHJOn/yR7VGH7uSZp37qH9q2Et0zQ==} + bole@5.0.12: + resolution: {integrity: sha512-G5H5siOlUrcyvYr7kVlQyYMWip0dZ8qa+Uiy+d9QxOvBY2eaP/g8YsJVwvf3VIMbXmYxZIAOmmsuN3rL5r6gwQ==} boolbase@1.0.0: resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} @@ -518,9 +556,6 @@ packages: resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} engines: {node: '>=6'} - builtins@5.0.1: - resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} - callsites@3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} @@ -533,8 +568,8 @@ packages: resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} engines: {node: '>=6'} - caniuse-lite@1.0.30001610: - resolution: {integrity: sha512-QFutAY4NgaelojVMjY63o6XlZyORPaLfyMnsl3HgnWdJUcX6K0oaJymHjH8PT5Gk7sTm8rvC/c5COUQKXqmOMA==} + caniuse-lite@1.0.30001620: + resolution: {integrity: sha512-WJvYsOjd1/BYUY6SNGUosK9DUidBPDTnOARHp3fSmFO1ekdxaY6nKRttEVrfMmYi80ctS0kz1wiWmm14fVc3ew==} chalk-template@1.1.0: resolution: {integrity: sha512-T2VJbcDuZQ0Tb2EWwSotMPJjgpy1/tGee1BTpUNsGZ/qgNjV2t7Mvu+d4600U564nbLesN1x2dPL+xii174Ekg==} @@ -616,8 +651,8 @@ packages: engines: {node: '>=16'} hasBin: true - core-js-compat@3.36.1: - resolution: {integrity: sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==} + core-js-compat@3.37.1: + resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==} cosmiconfig-typescript-loader@5.0.0: resolution: {integrity: sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==} @@ -649,6 +684,10 @@ packages: resolution: {integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==} engines: {node: '>=12'} + data-uri-to-buffer@3.0.1: + resolution: {integrity: sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==} + engines: {node: '>= 6'} + debug@4.3.4: resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} engines: {node: '>=6.0'} @@ -669,6 +708,10 @@ packages: deep-is@0.1.4: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + depd@1.1.2: + resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} + engines: {node: '>= 0.6'} + dequal@2.0.3: resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} engines: {node: '>=6'} @@ -688,8 +731,8 @@ packages: effect@3.0.3: resolution: {integrity: sha512-mgG+FoWrM4sny8OxDFWCpq+6LwGf9cK/JztVhxZQeZM9ZMXY+lKbdMEQmemNYce0QVAz2+YqUKwhKzOidwbZzg==} - electron-to-chromium@1.4.737: - resolution: {integrity: sha512-QvLTxaLHKdy5YxvixAw/FfHq2eWLUL9KvsPjp0aHK1gI5d3EDuDgITkvj0nFO2c6zUY3ZqVAJQiBYyQP9tQpfw==} + electron-to-chromium@1.4.774: + resolution: {integrity: sha512-132O1XCd7zcTkzS3FgkAzKmnBuNJjK8WjcTtNuoylj7MYbqw5eXehjQ5OK91g0zm7OTKIPeaAG4CPoRfD9M1Mg==} emoji-regex@10.3.0: resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==} @@ -697,10 +740,6 @@ packages: emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} - encode-registry@3.0.1: - resolution: {integrity: sha512-6qOwkl1g0fv0DN3Y3ggr2EaZXN71aoAqPp3p/pVaWSBSIo+YjLOWN61Fva43oVyQNPf7kgm8lkudzlzojwE2jw==} - engines: {node: '>=10'} - enquirer@2.4.1: resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} engines: {node: '>=8.6'} @@ -730,11 +769,11 @@ packages: peerDependencies: eslint: '>=6.0.0' - eslint-config-escapace@5.0.5: - resolution: {integrity: sha512-sqyQKzT7DTcZNEg/9TUJpN9V0UNxvKQ54tAZnCMjlm6HhDi7WVjEhhrnyubNPAPk0rJrklLZ1oQY0Mi8rhOEbQ==} + eslint-config-escapace@5.0.12: + resolution: {integrity: sha512-tF9h+w1d2DX1zMr96GPHmGPjatYFOhhrWHH1+bCJId20KonfaxN2BTQ3UMtY27oqEw8pOrU82qbgaMzXBPtWpw==} engines: {node: '>=20.12.0', pnpm: '>=9.0.6'} peerDependencies: - eslint: '>=9.1.1' + eslint: '>=9.2.0' eslint-config-flat-gitignore@0.1.5: resolution: {integrity: sha512-hEZLwuZjDBGDERA49c2q7vxc8sCGv8EdBp6PQYzGOMcHIgrfG9YOM6s/4jx24zhD+wnK9AI8mgN5RxSss5nClQ==} @@ -749,8 +788,8 @@ packages: peerDependencies: eslint: '>=6.0.0' - eslint-plugin-perfectionist@2.9.0: - resolution: {integrity: sha512-ipFtDrqtF99qVVo+FE1fo6aHyLLp7hg6PNGfzY5KxQjcl0XCbyEFvjtR1NfkHDTN9rdFeEDxg59LLOv3VOAHAw==} + eslint-plugin-perfectionist@2.10.0: + resolution: {integrity: sha512-P+tdrkHeMWBc55+DZsoDOAftV1WCsEoHaKm6JC7zajFus/syfT4vUPBFb3atGFSuyaVnGQGHlcKpP9X3Q0gH/w==} peerDependencies: astro-eslint-parser: ^0.16.0 eslint: '>=8.0.0' @@ -776,14 +815,14 @@ packages: eslint-plugin-tsdoc@0.2.17: resolution: {integrity: sha512-xRmVi7Zx44lOBuYqG8vzTXuL6IdGOeF9nHX17bjJ8+VE6fsxpdGem0/SBTmAwgYMKYB1WBkqRJVQ+n8GK041pA==} - eslint-plugin-unicorn@52.0.0: - resolution: {integrity: sha512-1Yzm7/m+0R4djH0tjDjfVei/ju2w3AzUGjG6q8JnuNIL5xIwsflyCooW5sfBvQp2pMYQFSWWCFONsjCax1EHng==} - engines: {node: '>=16'} + eslint-plugin-unicorn@53.0.0: + resolution: {integrity: sha512-kuTcNo9IwwUCfyHGwQFOK/HjJAYzbODHN3wP0PgqbW+jbXqpNWxNVpVhj2tO9SixBwuAdmal8rVcWKBxwFnGuw==} + engines: {node: '>=18.18'} peerDependencies: eslint: '>=8.56.0' - eslint-plugin-vue@9.25.0: - resolution: {integrity: sha512-tDWlx14bVe6Bs+Nnh3IGrD+hb11kf2nukfm6jLsmJIhmiRQ1SUaksvwY9U5MvPB0pcrg0QK0xapQkfITs3RKOA==} + eslint-plugin-vue@9.26.0: + resolution: {integrity: sha512-eTvlxXgd4ijE1cdur850G6KalZqk65k1JKoOI2d1kT3hr8sPD07j1q98FRFdNnpxBELGPWxZmInxeHGF/GxtqQ==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 @@ -819,8 +858,8 @@ packages: resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint@9.1.1: - resolution: {integrity: sha512-b4cRQ0BeZcSEzPpY2PjFY70VbO32K7BStTGtBsnIGdTSEEQzBi8hPBcGQmTG2zUvFr9uLe0TK42bw8YszuHEqg==} + eslint@9.3.0: + resolution: {integrity: sha512-5Iv4CsZW030lpUqHBapdPo3MJetAPtejVW8B84GIcIIv8+ohFaddXsrn1Gn8uD9ijDb+kcYKFUVmC8qG8B2ORQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} hasBin: true @@ -879,6 +918,15 @@ packages: fastq@1.17.1: resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} + fetch-blob@2.1.2: + resolution: {integrity: sha512-YKqtUDwqLyfyMnmbw8XD6Q8j9i/HggKtPEI+pZ1+8bvheBu78biSmNaXWusx1TauGqtUUGx/cBb1mKdq2rLYow==} + engines: {node: ^10.17.0 || >=12.3.0} + peerDependencies: + domexception: '*' + peerDependenciesMeta: + domexception: + optional: true + file-entry-cache@8.0.0: resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} engines: {node: '>=16.0.0'} @@ -924,6 +972,10 @@ packages: resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==} engines: {node: '>=18'} + get-npm-tarball-url@2.1.0: + resolution: {integrity: sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==} + engines: {node: '>=12.17'} + get-stream@6.0.1: resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} engines: {node: '>=10'} @@ -971,6 +1023,10 @@ packages: graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + graceful-git@3.1.2: + resolution: {integrity: sha512-Xyh9Y43yA23/KQ16mpwO4zkzVGUAXyzuSVZQxw9ddQklssIYIY0el24VYfJBFhyCWGriZPRAB2nCgsDizqna9g==} + engines: {node: '>=10'} + graphemer@1.4.0: resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} @@ -997,10 +1053,18 @@ packages: resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} engines: {node: '>=10'} - hosted-git-info@7.0.1: - resolution: {integrity: sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==} + hosted-git-info@7.0.2: + resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==} engines: {node: ^16.14.0 || >=18.0.0} + http-proxy-agent@5.0.0: + resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} + engines: {node: '>= 6'} + + https-proxy-agent@5.0.1: + resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + engines: {node: '>= 6'} + human-signals@2.1.0: resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} engines: {node: '>=10.17.0'} @@ -1009,6 +1073,9 @@ packages: resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} engines: {node: '>=16.17.0'} + humanize-ms@1.2.1: + resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} + ignore@5.3.1: resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} engines: {node: '>= 4'} @@ -1017,8 +1084,8 @@ packages: resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} engines: {node: '>=6'} - import-meta-resolve@4.0.0: - resolution: {integrity: sha512-okYUR7ZQPH+efeuMJGlq4f8ubUgO50kByRPyt/Cy1Io4PSRsPjxME+YlVaCOx+NIToW7hCsZNFJyTPFFKepRSA==} + import-meta-resolve@4.1.0: + resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} imurmurhash@0.1.4: resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} @@ -1041,6 +1108,10 @@ packages: resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + ip-address@9.0.5: + resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} + engines: {node: '>= 12'} + irregular-plurals@3.5.0: resolution: {integrity: sha512-1ANGLZ+Nkv1ptFb2pa8oG8Lem4krflKuX/gINiHJHjJUKaJHk/SXk5x6K3J+39/p0h1RQ2saROclJJ+QLvETCQ==} engines: {node: '>=8'} @@ -1144,6 +1215,9 @@ packages: resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} hasBin: true + jsbn@1.1.0: + resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} + jsdoc-type-pratt-parser@4.0.0: resolution: {integrity: sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==} engines: {node: '>=12.0.0'} @@ -1197,48 +1271,48 @@ packages: resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} engines: {node: '>=6'} - lefthook-darwin-arm64@1.6.10: - resolution: {integrity: sha512-Hh11OkoKG7FEOByS1dcgNV7ETq45VmwBbw0VPTiBznyfOG4k+pi0fIdc1qbmbxvYqNE0r420QR/Q3bimaa4Kxg==} + lefthook-darwin-arm64@1.6.12: + resolution: {integrity: sha512-IJa50i+78nGxtSvnxLSDfSjBjjM7Ixl03V4+yl3Kdn+S+FwzEZet3LYTLbnKFUVy9Bg23obI3yXgwUx+tJjFXg==} cpu: [arm64] os: [darwin] - lefthook-darwin-x64@1.6.10: - resolution: {integrity: sha512-FiOB0t5OBcQ8OnG/LSdfUYj736SJdlLjWuOZ4wTlJ7EUrHditieap6VNAxwMmFVyQN0X2ZwKWytwY35y+Hflhw==} + lefthook-darwin-x64@1.6.12: + resolution: {integrity: sha512-h11ByUtwM78FShgWgSUyyZtwKW6pjYfYvTygw24c/lZXKjupfowK5Ps5A73hCsjr0AEJNVpgW1S5Jd22gIJJCA==} cpu: [x64] os: [darwin] - lefthook-freebsd-arm64@1.6.10: - resolution: {integrity: sha512-IxGgS3RrNwk3Kr83o5SQhGxqppQi7fu2t//nsp6ocgnJeStrTtXZJOrel2VohzrFxpzQdJVXBGgUGLXtY8t8qw==} + lefthook-freebsd-arm64@1.6.12: + resolution: {integrity: sha512-Aw1+AosL8r/LFSVKG7i8GI1FpHnWFG66/6DBDUgCwNAwhNCXt7tERAM8dj9S6EqmqHCQCC0nI/6qKNBsFPk7Ow==} cpu: [arm64] os: [freebsd] - lefthook-freebsd-x64@1.6.10: - resolution: {integrity: sha512-sFSe+dGLa4iBblWAhAGTP9moarcbFtFAH6aaCeyqSX51O6p9VPdGjqNtcE8aGbGAk4lO6v1ScRjk5ogMSinJwQ==} + lefthook-freebsd-x64@1.6.12: + resolution: {integrity: sha512-G8Dg7UuRstXrqaEA8MSOZikz6PpjPUQu3QmiihzcyGdzI76jFsmjJb2vkrnvMsH9u2gWb3J4sp3TULhbMHXwSw==} cpu: [x64] os: [freebsd] - lefthook-linux-arm64@1.6.10: - resolution: {integrity: sha512-fXnKiNdRIW+FRvc1keVrvWX5EqIhVFfPjcy+PbsKdxiWRXgjtidi6LPmQ8eosH0DC9PxZ0mpdCMf40FHEZLbQA==} + lefthook-linux-arm64@1.6.12: + resolution: {integrity: sha512-fwO0i6x5EPelL66EwaySzGzvVbN2vLFZDUWuTi8nZzEgBsCBuG0mORxZg91cNCGLRPT3sgzWPraTkyzIJa7kHg==} cpu: [arm64] os: [linux] - lefthook-linux-x64@1.6.10: - resolution: {integrity: sha512-bm6l2GOFnmYreZxmHb47QeOiFAItttOOxvCEX1okIRD7JbUC+lGC9evW5GJv/ltjZBoTDYEtQAUa+BpHTGuY2A==} + lefthook-linux-x64@1.6.12: + resolution: {integrity: sha512-pRAZKZhSoirjRwDF0TrqxgkeXtUmJqaUi0kGmMJmutToqo9IXQcnpueVmyV9Z1m6lLJn4PpKoFydY6tFXqvyNQ==} cpu: [x64] os: [linux] - lefthook-windows-arm64@1.6.10: - resolution: {integrity: sha512-pFxT8KbOMzGxj6cz4glHYwQSNC7XCuy9RDqIO0AxPlpATsCpapkF4ngDxBT1iFv2VhdeweMa7RXUDsMAGQA4Qw==} + lefthook-windows-arm64@1.6.12: + resolution: {integrity: sha512-jMMIoqNKtiqGrwyWeN3JXGXi7H7iAXsGB5v4DkcUbdw9y50qhruxWz84I2PoxwYmZVeMxRR+VpYvS7nOvBmzWA==} cpu: [arm64] os: [win32] - lefthook-windows-x64@1.6.10: - resolution: {integrity: sha512-fcDnUSTv95AdLvm0NIrn3jBWXuRq8SlbDDjkkB5OHLiSmjz4eOr6wyD7xceDp33zZgZmWFzHebJngxxcIaUuHw==} + lefthook-windows-x64@1.6.12: + resolution: {integrity: sha512-XqEBVIhp/Fd1Fs+VBlPhrSJlUkyXEJuxQmiYSYow3C18RNpQQrJFVFpz0wE/IDTn2jOXx+p5+hcdlJb+s6bnpA==} cpu: [x64] os: [win32] - lefthook@1.6.10: - resolution: {integrity: sha512-HeVjsDCrHLe9htQHbLuQJu2YdLK6Tl5bh36fOpmXqckEXTI0BDR0Y5JYc7G5Inj4YXQsc51a9dUDZMeniSnSag==} + lefthook@1.6.12: + resolution: {integrity: sha512-SoHhB0L1D5twH5KKsGAT1h4qF+RhGfPo/JC5z60H0RDuFWtSwFNOeFpT4Qa7XwM6J9c1fvqZzOH9/4XF7dG9Uw==} hasBin: true levn@0.4.1: @@ -1301,17 +1375,17 @@ packages: resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==} engines: {node: '>=18'} - lru-cache@10.2.0: - resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==} + lru-cache@10.2.2: + resolution: {integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==} engines: {node: 14 || >=16.14} lru-cache@6.0.0: resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} engines: {node: '>=10'} - map-age-cleaner@0.1.3: - resolution: {integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==} - engines: {node: '>=6'} + lru-cache@7.10.1: + resolution: {integrity: sha512-BQuhQxPuRl79J5zSXRP+uNzPOyZw2oFI9JLRQ80XswSvg21KMKNtQza9eF42rfI/3Z40RvzBdXgziEkudzjo8A==} + engines: {node: '>=12'} map-obj@1.0.1: resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} @@ -1321,10 +1395,6 @@ packages: resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} engines: {node: '>=8'} - mem@8.1.1: - resolution: {integrity: sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==} - engines: {node: '>=10'} - meow@12.1.1: resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==} engines: {node: '>=16.10'} @@ -1348,10 +1418,6 @@ packages: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} engines: {node: '>=6'} - mimic-fn@3.1.0: - resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==} - engines: {node: '>=8'} - mimic-fn@4.0.0: resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} engines: {node: '>=12'} @@ -1363,10 +1429,6 @@ packages: minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} - minimatch@9.0.3: - resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} - engines: {node: '>=16 || 14 >=14.17'} - minimatch@9.0.4: resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==} engines: {node: '>=16 || 14 >=14.17'} @@ -1381,6 +1443,9 @@ packages: ms@2.1.2: resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + natural-compare-lite@1.4.0: resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} @@ -1392,6 +1457,9 @@ packages: engines: {node: '>=10'} hasBin: true + nerf-dart@1.0.0: + resolution: {integrity: sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==} + node-releases@2.0.14: resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} @@ -1432,18 +1500,14 @@ packages: resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} engines: {node: '>=12'} - optionator@0.9.3: - resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} engines: {node: '>= 0.8.0'} ora@8.0.1: resolution: {integrity: sha512-ANIvzobt1rls2BDny5fWZ3ZVKyD6nscLvfFRpQgfWsythlcsVUC9kL0zq6j2Z5z9wwp1kd7wpsD/T9qNPVLCaQ==} engines: {node: '>=18'} - p-defer@1.0.0: - resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==} - engines: {node: '>=4'} - p-limit@2.3.0: resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} engines: {node: '>=6'} @@ -1518,8 +1582,8 @@ packages: resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} engines: {node: '>=12'} - picocolors@1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + picocolors@1.0.1: + resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} picomatch@2.3.1: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} @@ -1545,8 +1609,8 @@ packages: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} - prettier-config-escapace@1.2.0: - resolution: {integrity: sha512-zcMZ1HQWZwaaSadnxOyR1oOHCvMnMZbop7UOtGISEqXbmY2l4Bdgr4HRU2j+OqSI6gTiX5wsZk/yIF0lvVg5rg==} + prettier-config-escapace@1.2.1: + resolution: {integrity: sha512-piOy4gQTfKum5UV8vnjdB3Ap0sCFtaOvTbo956JXOfpzrTONKb+hM5IO9APweRJPRv8cQFcoRD4hLmWSknJ0ng==} prettier@3.2.5: resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==} @@ -1579,8 +1643,8 @@ packages: resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} engines: {node: '>=8'} - react-is@18.2.0: - resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} + react-is@18.3.1: + resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} read-pkg-up@7.0.1: resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} @@ -1645,6 +1709,10 @@ packages: resolution: {integrity: sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + retry@0.12.0: + resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} + engines: {node: '>= 4'} + reusify@1.0.4: resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} engines: {iojs: '>=1.0.0', node: '>=0.10.0'} @@ -1666,6 +1734,10 @@ packages: resolution: {integrity: sha512-vdTshSQ2JsRCgT8eKZWNJIL26C6bVqy1SOmuCMlKHegVeo8KYRobRrefOdUq9OozSPUUiSxrylteeRmLOMFfWg==} engines: {node: '>=12'} + safe-execa@0.1.4: + resolution: {integrity: sha512-GI3k4zl4aLC3lxZNEEXAxxcXE6E3TfOsJ5xxJPhcAv9MWwnH2O9I0HrDmZFsVnu/C8wzRYSsTHdoVRmL0VicDw==} + engines: {node: '>=12'} + scslre@0.3.0: resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==} engines: {node: ^14.0.0 || >=16.0.0} @@ -1679,6 +1751,11 @@ packages: engines: {node: '>=10'} hasBin: true + semver@7.6.2: + resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} + engines: {node: '>=10'} + hasBin: true + shebang-command@2.0.0: resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} engines: {node: '>=8'} @@ -1705,6 +1782,18 @@ packages: resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} engines: {node: '>=14.16'} + smart-buffer@4.2.0: + resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} + engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} + + socks-proxy-agent@6.1.1: + resolution: {integrity: sha512-t8J0kG3csjA4g6FTbsMOWws+7R7vuRC8aQ/wy3/1OWmsgwA68zs/+cExQ0koSitUDXqhufF/YJr9wtNMZHw5Ew==} + engines: {node: '>= 10'} + + socks@2.8.3: + resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==} + engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} + sort-keys@4.2.0: resolution: {integrity: sha512-aUYIEU/UviqPgc8mHR6IW1EGxkAXpeRETYcrzg8cLAvUPZcpAlleSXHV2mY7G12GphSH6Gzv+4MMVSSkbdteHg==} engines: {node: '>=8'} @@ -1728,6 +1817,9 @@ packages: resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} engines: {node: '>= 10.x'} + sprintf-js@1.1.3: + resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} + stdin-discarder@0.2.2: resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==} engines: {node: '>=18'} @@ -1862,8 +1954,8 @@ packages: resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} engines: {node: '>=8'} - typescript-eslint@7.7.1: - resolution: {integrity: sha512-ykEBfa3xx3odjZy6GRED4SCPrjo0rgHwstLlEgLX4EMEuv7QeIDSmfV+S6Kk+XkbsYn4BDEcPvsci1X26lRpMQ==} + typescript-eslint@7.9.0: + resolution: {integrity: sha512-7iTn9c10teHHCys5Ud/yaJntXZrjt3h2mrx3feJGBOLgQkF3TB1X89Xs3aVQ/GgdXRAXpk2bPTdpRwHP4YkUow==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 @@ -1888,8 +1980,8 @@ packages: resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} engines: {node: '>= 10.0.0'} - update-browserslist-db@1.0.13: - resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} + update-browserslist-db@1.0.16: + resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' @@ -1903,8 +1995,8 @@ packages: validate-npm-package-license@3.0.4: resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} - validate-npm-package-name@5.0.0: - resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==} + validate-npm-package-name@5.0.1: + resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} vue-eslint-parser@9.4.2: @@ -1923,6 +2015,10 @@ packages: engines: {node: ^16.13.0 || >=18.0.0} hasBin: true + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + wrap-ansi@7.0.0: resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} engines: {node: '>=10'} @@ -1949,9 +2045,10 @@ packages: resolution: {integrity: sha512-pEwzfsKbTrB8G3xc/sN7aw1v6A6c/pKxLAkjclnAyo5g5qOh6eL9WGu0o3cSDQZKrTNk4KL4lQSwZW+nBkANEg==} engines: {node: ^14.17.0 || >=16.0.0} - yaml@2.3.4: - resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} + yaml@2.4.2: + resolution: {integrity: sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA==} engines: {node: '>= 14'} + hasBin: true yargs-parser@20.2.9: resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} @@ -1975,27 +2072,25 @@ packages: snapshots: - '@aashutoshrathi/word-wrap@1.2.6': {} - '@babel/code-frame@7.24.2': dependencies: - '@babel/highlight': 7.24.2 - picocolors: 1.0.0 + '@babel/highlight': 7.24.5 + picocolors: 1.0.1 - '@babel/helper-validator-identifier@7.22.20': {} + '@babel/helper-validator-identifier@7.24.5': {} - '@babel/highlight@7.24.2': + '@babel/highlight@7.24.5': dependencies: - '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-validator-identifier': 7.24.5 chalk: 2.4.2 js-tokens: 4.0.0 - picocolors: 1.0.0 + picocolors: 1.0.1 - '@commitlint/cli@19.3.0(@types/node@20.12.2)(typescript@5.4.5)': + '@commitlint/cli@19.3.0(@types/node@20.12.12)(typescript@5.4.5)': dependencies: '@commitlint/format': 19.3.0 '@commitlint/lint': 19.2.2 - '@commitlint/load': 19.2.0(@types/node@20.12.2)(typescript@5.4.5) + '@commitlint/load': 19.2.0(@types/node@20.12.12)(typescript@5.4.5) '@commitlint/read': 19.2.1 '@commitlint/types': 19.0.3 execa: 8.0.1 @@ -2012,7 +2107,7 @@ snapshots: '@commitlint/config-validator@19.0.3': dependencies: '@commitlint/types': 19.0.3 - ajv: 8.12.0 + ajv: 8.13.0 '@commitlint/ensure@19.0.3': dependencies: @@ -2033,7 +2128,7 @@ snapshots: '@commitlint/is-ignored@19.2.2': dependencies: '@commitlint/types': 19.0.3 - semver: 7.6.0 + semver: 7.6.2 '@commitlint/lint@19.2.2': dependencies: @@ -2042,7 +2137,7 @@ snapshots: '@commitlint/rules': 19.0.3 '@commitlint/types': 19.0.3 - '@commitlint/load@19.2.0(@types/node@20.12.2)(typescript@5.4.5)': + '@commitlint/load@19.2.0(@types/node@20.12.12)(typescript@5.4.5)': dependencies: '@commitlint/config-validator': 19.0.3 '@commitlint/execute-rule': 19.0.0 @@ -2050,7 +2145,7 @@ snapshots: '@commitlint/types': 19.0.3 chalk: 5.3.0 cosmiconfig: 9.0.0(typescript@5.4.5) - cosmiconfig-typescript-loader: 5.0.0(@types/node@20.12.2)(cosmiconfig@9.0.0(typescript@5.4.5))(typescript@5.4.5) + cosmiconfig-typescript-loader: 5.0.0(@types/node@20.12.12)(cosmiconfig@9.0.0(typescript@5.4.5))(typescript@5.4.5) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -2079,7 +2174,7 @@ snapshots: '@commitlint/config-validator': 19.0.3 '@commitlint/types': 19.0.3 global-directory: 4.0.1 - import-meta-resolve: 4.0.0 + import-meta-resolve: 4.1.0 lodash.mergewith: 4.6.2 resolve-from: 5.0.0 @@ -2107,41 +2202,29 @@ snapshots: effect: 3.0.3 fast-check: 3.17.2 - '@escapace/pnpm-pack@0.2.0(@pnpm/logger@5.0.0)': + '@escapace/pnpm-pack@0.4.1(@pnpm/logger@5.0.0)': dependencies: - '@pnpm/lockfile-file': 8.1.8(@pnpm/logger@5.0.0) + '@pnpm/lockfile-file': 9.0.5(@pnpm/logger@5.0.0) arg: 5.0.2 execa: 8.0.1 find-up: 7.0.0 fs-extra: 11.2.0 lodash-es: 4.17.21 - semver: 7.6.0 + semver: 7.6.2 which: 4.0.0 transitivePeerDependencies: - '@pnpm/logger' + - domexception + - supports-color - '@eslint-community/eslint-utils@4.4.0(eslint@9.1.1)': + '@eslint-community/eslint-utils@4.4.0(eslint@9.3.0)': dependencies: - eslint: 9.1.1 + eslint: 9.3.0 eslint-visitor-keys: 3.4.3 '@eslint-community/regexpp@4.10.0': {} - '@eslint/eslintrc@2.1.4': - dependencies: - ajv: 6.12.6 - debug: 4.3.4 - espree: 9.6.1 - globals: 13.24.0 - ignore: 5.3.1 - import-fresh: 3.3.0 - js-yaml: 4.1.0 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color - - '@eslint/eslintrc@3.0.2': + '@eslint/eslintrc@3.1.0': dependencies: ajv: 6.12.6 debug: 4.3.4 @@ -2155,7 +2238,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@9.1.1': {} + '@eslint/js@9.3.0': {} '@humanwhocodes/config-array@0.13.0': dependencies: @@ -2169,7 +2252,7 @@ snapshots: '@humanwhocodes/object-schema@2.0.3': {} - '@humanwhocodes/retry@0.2.3': {} + '@humanwhocodes/retry@0.3.0': {} '@jest/schemas@29.6.3': dependencies: @@ -2198,134 +2281,232 @@ snapshots: '@nodelib/fs.scandir': 2.1.5 fastq: 1.17.1 - '@pnpm/constants@7.1.1': {} + '@pnpm/constants@6.2.0': {} + + '@pnpm/constants@8.0.0': {} - '@pnpm/crypto.base32-hash@2.0.0': + '@pnpm/core-loggers@10.0.0(@pnpm/logger@5.0.0)': + dependencies: + '@pnpm/logger': 5.0.0 + '@pnpm/types': 10.0.0 + + '@pnpm/crypto.base32-hash@3.0.0': dependencies: rfc4648: 1.5.3 - '@pnpm/dependency-path@2.1.8': + '@pnpm/dependency-path@4.0.0': dependencies: - '@pnpm/crypto.base32-hash': 2.0.0 - '@pnpm/types': 9.4.2 - encode-registry: 3.0.1 - semver: 7.6.0 + '@pnpm/crypto.base32-hash': 3.0.0 + '@pnpm/types': 10.0.0 + semver: 7.6.2 + + '@pnpm/error@4.0.1': + dependencies: + '@pnpm/constants': 6.2.0 + + '@pnpm/error@6.0.1': + dependencies: + '@pnpm/constants': 8.0.0 + + '@pnpm/fetch@8.0.0(@pnpm/logger@5.0.0)': + dependencies: + '@pnpm/core-loggers': 10.0.0(@pnpm/logger@5.0.0) + '@pnpm/fetching-types': 6.0.0 + '@pnpm/logger': 5.0.0 + '@pnpm/network.agent': 1.0.1 + '@pnpm/types': 10.0.0 + '@zkochan/retry': 0.2.0 + node-fetch: '@pnpm/node-fetch@1.0.0' + transitivePeerDependencies: + - domexception + - supports-color + + '@pnpm/fetching-types@6.0.0': + dependencies: + '@zkochan/retry': 0.2.0 + node-fetch: '@pnpm/node-fetch@1.0.0' + transitivePeerDependencies: + - domexception - '@pnpm/error@5.0.3': + '@pnpm/git-resolver@9.0.1(@pnpm/logger@5.0.0)': dependencies: - '@pnpm/constants': 7.1.1 + '@pnpm/fetch': 8.0.0(@pnpm/logger@5.0.0) + '@pnpm/resolver-base': 12.0.0 + graceful-git: 3.1.2 + hosted-git-info: '@pnpm/hosted-git-info@1.0.0' + semver: 7.6.2 + transitivePeerDependencies: + - '@pnpm/logger' + - domexception + - supports-color - '@pnpm/git-utils@1.0.0': + '@pnpm/git-utils@2.0.0': dependencies: execa: safe-execa@0.1.2 - '@pnpm/lockfile-file@8.1.8(@pnpm/logger@5.0.0)': + '@pnpm/hosted-git-info@1.0.0': dependencies: - '@pnpm/constants': 7.1.1 - '@pnpm/dependency-path': 2.1.8 - '@pnpm/error': 5.0.3 - '@pnpm/git-utils': 1.0.0 - '@pnpm/lockfile-types': 5.1.5 + lru-cache: 6.0.0 + + '@pnpm/lockfile-file@9.0.5(@pnpm/logger@5.0.0)': + dependencies: + '@pnpm/constants': 8.0.0 + '@pnpm/dependency-path': 4.0.0 + '@pnpm/error': 6.0.1 + '@pnpm/git-resolver': 9.0.1(@pnpm/logger@5.0.0) + '@pnpm/git-utils': 2.0.0 + '@pnpm/lockfile-types': 6.0.0 + '@pnpm/lockfile-utils': 10.1.1 '@pnpm/logger': 5.0.0 - '@pnpm/merge-lockfile-changes': 5.0.7 - '@pnpm/types': 9.4.2 - '@pnpm/util.lex-comparator': 1.0.0 + '@pnpm/merge-lockfile-changes': 6.0.0 + '@pnpm/types': 10.0.0 + '@pnpm/util.lex-comparator': 3.0.0 '@zkochan/rimraf': 2.1.3 comver-to-semver: 1.0.0 - js-yaml: '@zkochan/js-yaml@0.0.6' + js-yaml: '@zkochan/js-yaml@0.0.7' normalize-path: 3.0.0 ramda: '@pnpm/ramda@0.28.1' - semver: 7.6.0 + semver: 7.6.2 sort-keys: 4.2.0 strip-bom: 4.0.0 write-file-atomic: 5.0.1 + transitivePeerDependencies: + - domexception + - supports-color - '@pnpm/lockfile-types@5.1.5': + '@pnpm/lockfile-types@6.0.0': dependencies: - '@pnpm/types': 9.4.2 + '@pnpm/types': 10.0.0 + + '@pnpm/lockfile-utils@10.1.1': + dependencies: + '@pnpm/dependency-path': 4.0.0 + '@pnpm/lockfile-types': 6.0.0 + '@pnpm/pick-fetcher': 3.0.0 + '@pnpm/resolver-base': 12.0.0 + '@pnpm/types': 10.0.0 + get-npm-tarball-url: 2.1.0 + ramda: '@pnpm/ramda@0.28.1' '@pnpm/logger@5.0.0': dependencies: - bole: 5.0.11 + bole: 5.0.12 ndjson: 2.0.0 - '@pnpm/merge-lockfile-changes@5.0.7': + '@pnpm/merge-lockfile-changes@6.0.0': dependencies: - '@pnpm/lockfile-types': 5.1.5 + '@pnpm/lockfile-types': 6.0.0 comver-to-semver: 1.0.0 ramda: '@pnpm/ramda@0.28.1' - semver: 7.6.0 + semver: 7.6.2 + + '@pnpm/network.agent@1.0.1': + dependencies: + '@pnpm/network.config': 1.0.1 + '@pnpm/network.proxy-agent': 1.0.1 + agentkeepalive: 4.2.1 + lru-cache: 7.10.1 + transitivePeerDependencies: + - supports-color + + '@pnpm/network.config@1.0.1': + dependencies: + nerf-dart: 1.0.0 + + '@pnpm/network.proxy-agent@1.0.1': + dependencies: + '@pnpm/error': 4.0.1 + http-proxy-agent: 5.0.0 + https-proxy-agent: 5.0.1 + lru-cache: 7.10.1 + socks-proxy-agent: 6.1.1 + transitivePeerDependencies: + - supports-color + + '@pnpm/node-fetch@1.0.0': + dependencies: + data-uri-to-buffer: 3.0.1 + fetch-blob: 2.1.2 + transitivePeerDependencies: + - domexception + + '@pnpm/pick-fetcher@3.0.0': {} '@pnpm/ramda@0.28.1': {} - '@pnpm/types@9.4.2': {} + '@pnpm/resolver-base@12.0.0': + dependencies: + '@pnpm/types': 10.0.0 - '@pnpm/util.lex-comparator@1.0.0': {} + '@pnpm/types@10.0.0': {} + + '@pnpm/util.lex-comparator@3.0.0': {} '@sinclair/typebox@0.27.8': {} '@sindresorhus/merge-streams@2.3.0': {} - '@stylistic/eslint-plugin-js@1.7.2(eslint@9.1.1)': + '@stylistic/eslint-plugin-js@2.1.0(eslint@9.3.0)': dependencies: - '@types/eslint': 8.56.9 + '@types/eslint': 8.56.10 acorn: 8.11.3 - escape-string-regexp: 4.0.0 - eslint: 9.1.1 - eslint-visitor-keys: 3.4.3 - espree: 9.6.1 + eslint: 9.3.0 + eslint-visitor-keys: 4.0.0 + espree: 10.0.1 - '@stylistic/eslint-plugin-jsx@1.7.2(eslint@9.1.1)': + '@stylistic/eslint-plugin-jsx@2.1.0(eslint@9.3.0)': dependencies: - '@stylistic/eslint-plugin-js': 1.7.2(eslint@9.1.1) - '@types/eslint': 8.56.9 - eslint: 9.1.1 + '@stylistic/eslint-plugin-js': 2.1.0(eslint@9.3.0) + '@types/eslint': 8.56.10 + eslint: 9.3.0 estraverse: 5.3.0 picomatch: 4.0.2 - '@stylistic/eslint-plugin-plus@1.7.2(eslint@9.1.1)(typescript@5.4.5)': + '@stylistic/eslint-plugin-plus@2.1.0(eslint@9.3.0)(typescript@5.4.5)': dependencies: - '@types/eslint': 8.56.9 - '@typescript-eslint/utils': 6.21.0(eslint@9.1.1)(typescript@5.4.5) - eslint: 9.1.1 + '@types/eslint': 8.56.10 + '@typescript-eslint/utils': 7.9.0(eslint@9.3.0)(typescript@5.4.5) + eslint: 9.3.0 transitivePeerDependencies: - supports-color - typescript - '@stylistic/eslint-plugin-ts@1.7.2(eslint@9.1.1)(typescript@5.4.5)': + '@stylistic/eslint-plugin-ts@2.1.0(eslint@9.3.0)(typescript@5.4.5)': dependencies: - '@stylistic/eslint-plugin-js': 1.7.2(eslint@9.1.1) - '@types/eslint': 8.56.9 - '@typescript-eslint/utils': 6.21.0(eslint@9.1.1)(typescript@5.4.5) - eslint: 9.1.1 + '@stylistic/eslint-plugin-js': 2.1.0(eslint@9.3.0) + '@types/eslint': 8.56.10 + '@typescript-eslint/utils': 7.9.0(eslint@9.3.0)(typescript@5.4.5) + eslint: 9.3.0 transitivePeerDependencies: - supports-color - typescript - '@stylistic/eslint-plugin@1.7.2(eslint@9.1.1)(typescript@5.4.5)': + '@stylistic/eslint-plugin@2.1.0(eslint@9.3.0)(typescript@5.4.5)': dependencies: - '@stylistic/eslint-plugin-js': 1.7.2(eslint@9.1.1) - '@stylistic/eslint-plugin-jsx': 1.7.2(eslint@9.1.1) - '@stylistic/eslint-plugin-plus': 1.7.2(eslint@9.1.1)(typescript@5.4.5) - '@stylistic/eslint-plugin-ts': 1.7.2(eslint@9.1.1)(typescript@5.4.5) - '@types/eslint': 8.56.9 - eslint: 9.1.1 + '@stylistic/eslint-plugin-js': 2.1.0(eslint@9.3.0) + '@stylistic/eslint-plugin-jsx': 2.1.0(eslint@9.3.0) + '@stylistic/eslint-plugin-plus': 2.1.0(eslint@9.3.0)(typescript@5.4.5) + '@stylistic/eslint-plugin-ts': 2.1.0(eslint@9.3.0)(typescript@5.4.5) + '@types/eslint': 8.56.10 + eslint: 9.3.0 transitivePeerDependencies: - supports-color - typescript - '@tsd/typescript@5.4.3': {} + '@tootallnate/once@2.0.0': {} + + '@tsd/typescript@5.4.5': {} '@types/conventional-commits-parser@5.0.0': dependencies: - '@types/node': 20.12.2 + '@types/node': 20.12.12 '@types/eslint@7.29.0': dependencies: '@types/estree': 1.0.5 '@types/json-schema': 7.0.15 - '@types/eslint@8.56.9': + '@types/eslint@8.56.10': dependencies: '@types/estree': 1.0.5 '@types/json-schema': 7.0.15 @@ -2336,145 +2517,99 @@ snapshots: '@types/minimist@1.2.5': {} - '@types/node@20.12.2': + '@types/node@20.12.12': dependencies: undici-types: 5.26.5 '@types/normalize-package-data@2.4.4': {} - '@types/semver@7.5.8': {} - - '@typescript-eslint/eslint-plugin@7.7.1(@typescript-eslint/parser@7.7.1(eslint@9.1.1)(typescript@5.4.5))(eslint@9.1.1)(typescript@5.4.5)': + '@typescript-eslint/eslint-plugin@7.9.0(@typescript-eslint/parser@7.9.0(eslint@9.3.0)(typescript@5.4.5))(eslint@9.3.0)(typescript@5.4.5)': dependencies: '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 7.7.1(eslint@9.1.1)(typescript@5.4.5) - '@typescript-eslint/scope-manager': 7.7.1 - '@typescript-eslint/type-utils': 7.7.1(eslint@9.1.1)(typescript@5.4.5) - '@typescript-eslint/utils': 7.7.1(eslint@9.1.1)(typescript@5.4.5) - '@typescript-eslint/visitor-keys': 7.7.1 - debug: 4.3.4 - eslint: 9.1.1 + '@typescript-eslint/parser': 7.9.0(eslint@9.3.0)(typescript@5.4.5) + '@typescript-eslint/scope-manager': 7.9.0 + '@typescript-eslint/type-utils': 7.9.0(eslint@9.3.0)(typescript@5.4.5) + '@typescript-eslint/utils': 7.9.0(eslint@9.3.0)(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 7.9.0 + eslint: 9.3.0 graphemer: 1.4.0 ignore: 5.3.1 natural-compare: 1.4.0 - semver: 7.6.0 ts-api-utils: 1.3.0(typescript@5.4.5) optionalDependencies: typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@7.7.1(eslint@9.1.1)(typescript@5.4.5)': + '@typescript-eslint/parser@7.9.0(eslint@9.3.0)(typescript@5.4.5)': dependencies: - '@typescript-eslint/scope-manager': 7.7.1 - '@typescript-eslint/types': 7.7.1 - '@typescript-eslint/typescript-estree': 7.7.1(typescript@5.4.5) - '@typescript-eslint/visitor-keys': 7.7.1 + '@typescript-eslint/scope-manager': 7.9.0 + '@typescript-eslint/types': 7.9.0 + '@typescript-eslint/typescript-estree': 7.9.0(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 7.9.0 debug: 4.3.4 - eslint: 9.1.1 + eslint: 9.3.0 optionalDependencies: typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@6.21.0': + '@typescript-eslint/scope-manager@7.9.0': dependencies: - '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/visitor-keys': 6.21.0 + '@typescript-eslint/types': 7.9.0 + '@typescript-eslint/visitor-keys': 7.9.0 - '@typescript-eslint/scope-manager@7.7.1': + '@typescript-eslint/type-utils@7.9.0(eslint@9.3.0)(typescript@5.4.5)': dependencies: - '@typescript-eslint/types': 7.7.1 - '@typescript-eslint/visitor-keys': 7.7.1 - - '@typescript-eslint/type-utils@7.7.1(eslint@9.1.1)(typescript@5.4.5)': - dependencies: - '@typescript-eslint/typescript-estree': 7.7.1(typescript@5.4.5) - '@typescript-eslint/utils': 7.7.1(eslint@9.1.1)(typescript@5.4.5) + '@typescript-eslint/typescript-estree': 7.9.0(typescript@5.4.5) + '@typescript-eslint/utils': 7.9.0(eslint@9.3.0)(typescript@5.4.5) debug: 4.3.4 - eslint: 9.1.1 + eslint: 9.3.0 ts-api-utils: 1.3.0(typescript@5.4.5) optionalDependencies: typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/types@6.21.0': {} - - '@typescript-eslint/types@7.7.1': {} + '@typescript-eslint/types@7.9.0': {} - '@typescript-eslint/typescript-estree@6.21.0(typescript@5.4.5)': + '@typescript-eslint/typescript-estree@7.9.0(typescript@5.4.5)': dependencies: - '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/visitor-keys': 6.21.0 - debug: 4.3.4 - globby: 11.1.0 - is-glob: 4.0.3 - minimatch: 9.0.3 - semver: 7.6.0 - ts-api-utils: 1.3.0(typescript@5.4.5) - optionalDependencies: - typescript: 5.4.5 - transitivePeerDependencies: - - supports-color - - '@typescript-eslint/typescript-estree@7.7.1(typescript@5.4.5)': - dependencies: - '@typescript-eslint/types': 7.7.1 - '@typescript-eslint/visitor-keys': 7.7.1 + '@typescript-eslint/types': 7.9.0 + '@typescript-eslint/visitor-keys': 7.9.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 minimatch: 9.0.4 - semver: 7.6.0 + semver: 7.6.2 ts-api-utils: 1.3.0(typescript@5.4.5) optionalDependencies: typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@6.21.0(eslint@9.1.1)(typescript@5.4.5)': + '@typescript-eslint/utils@7.9.0(eslint@9.3.0)(typescript@5.4.5)': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.1) - '@types/json-schema': 7.0.15 - '@types/semver': 7.5.8 - '@typescript-eslint/scope-manager': 6.21.0 - '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) - eslint: 9.1.1 - semver: 7.6.0 - transitivePeerDependencies: - - supports-color - - typescript - - '@typescript-eslint/utils@7.7.1(eslint@9.1.1)(typescript@5.4.5)': - dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.1) - '@types/json-schema': 7.0.15 - '@types/semver': 7.5.8 - '@typescript-eslint/scope-manager': 7.7.1 - '@typescript-eslint/types': 7.7.1 - '@typescript-eslint/typescript-estree': 7.7.1(typescript@5.4.5) - eslint: 9.1.1 - semver: 7.6.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@9.3.0) + '@typescript-eslint/scope-manager': 7.9.0 + '@typescript-eslint/types': 7.9.0 + '@typescript-eslint/typescript-estree': 7.9.0(typescript@5.4.5) + eslint: 9.3.0 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/visitor-keys@6.21.0': - dependencies: - '@typescript-eslint/types': 6.21.0 - eslint-visitor-keys: 3.4.3 - - '@typescript-eslint/visitor-keys@7.7.1': + '@typescript-eslint/visitor-keys@7.9.0': dependencies: - '@typescript-eslint/types': 7.7.1 + '@typescript-eslint/types': 7.9.0 eslint-visitor-keys: 3.4.3 - '@zkochan/js-yaml@0.0.6': + '@zkochan/js-yaml@0.0.7': dependencies: argparse: 2.0.1 + '@zkochan/retry@0.2.0': {} + '@zkochan/rimraf@2.1.3': dependencies: rimraf: 3.0.2 @@ -2494,6 +2629,20 @@ snapshots: acorn@8.11.3: {} + agent-base@6.0.2: + dependencies: + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + + agentkeepalive@4.2.1: + dependencies: + debug: 4.3.4 + depd: 1.1.2 + humanize-ms: 1.2.1 + transitivePeerDependencies: + - supports-color + ajv@6.12.6: dependencies: fast-deep-equal: 3.1.3 @@ -2501,7 +2650,7 @@ snapshots: json-schema-traverse: 0.4.1 uri-js: 4.4.1 - ajv@8.12.0: + ajv@8.13.0: dependencies: fast-deep-equal: 3.1.3 json-schema-traverse: 1.0.0 @@ -2544,7 +2693,7 @@ snapshots: balanced-match@1.0.2: {} - bole@5.0.11: + bole@5.0.12: dependencies: fast-safe-stringify: 2.1.1 individual: 3.0.0 @@ -2566,17 +2715,13 @@ snapshots: browserslist@4.23.0: dependencies: - caniuse-lite: 1.0.30001610 - electron-to-chromium: 1.4.737 + caniuse-lite: 1.0.30001620 + electron-to-chromium: 1.4.774 node-releases: 2.0.14 - update-browserslist-db: 1.0.13(browserslist@4.23.0) + update-browserslist-db: 1.0.16(browserslist@4.23.0) builtin-modules@3.3.0: {} - builtins@5.0.1: - dependencies: - semver: 7.6.0 - callsites@3.1.0: {} camelcase-keys@6.2.2: @@ -2587,7 +2732,7 @@ snapshots: camelcase@5.3.1: {} - caniuse-lite@1.0.30001610: {} + caniuse-lite@1.0.30001620: {} chalk-template@1.1.0: dependencies: @@ -2664,13 +2809,13 @@ snapshots: meow: 12.1.1 split2: 4.2.0 - core-js-compat@3.36.1: + core-js-compat@3.37.1: dependencies: browserslist: 4.23.0 - cosmiconfig-typescript-loader@5.0.0(@types/node@20.12.2)(cosmiconfig@9.0.0(typescript@5.4.5))(typescript@5.4.5): + cosmiconfig-typescript-loader@5.0.0(@types/node@20.12.12)(cosmiconfig@9.0.0(typescript@5.4.5))(typescript@5.4.5): dependencies: - '@types/node': 20.12.2 + '@types/node': 20.12.12 cosmiconfig: 9.0.0(typescript@5.4.5) jiti: 1.21.0 typescript: 5.4.5 @@ -2694,6 +2839,8 @@ snapshots: dargs@8.1.0: {} + data-uri-to-buffer@3.0.1: {} + debug@4.3.4: dependencies: ms: 2.1.2 @@ -2707,6 +2854,8 @@ snapshots: deep-is@0.1.4: {} + depd@1.1.2: {} + dequal@2.0.3: {} diff-sequences@29.6.3: {} @@ -2721,16 +2870,12 @@ snapshots: effect@3.0.3: {} - electron-to-chromium@1.4.737: {} + electron-to-chromium@1.4.774: {} emoji-regex@10.3.0: {} emoji-regex@8.0.0: {} - encode-registry@3.0.1: - dependencies: - mem: 8.1.1 - enquirer@2.4.1: dependencies: ansi-colors: 4.1.3 @@ -2748,27 +2893,27 @@ snapshots: escape-string-regexp@4.0.0: {} - eslint-compat-utils@0.5.0(eslint@9.1.1): + eslint-compat-utils@0.5.0(eslint@9.3.0): dependencies: - eslint: 9.1.1 - semver: 7.6.0 + eslint: 9.3.0 + semver: 7.6.2 - eslint-config-escapace@5.0.5(eslint@9.1.1)(typescript@5.4.5): + eslint-config-escapace@5.0.12(eslint@9.3.0)(typescript@5.4.5): dependencies: - '@stylistic/eslint-plugin': 1.7.2(eslint@9.1.1)(typescript@5.4.5) - eslint: 9.1.1 + '@stylistic/eslint-plugin': 2.1.0(eslint@9.3.0)(typescript@5.4.5) + eslint: 9.3.0 eslint-config-flat-gitignore: 0.1.5 - eslint-plugin-jsonc: 2.15.1(eslint@9.1.1) - eslint-plugin-perfectionist: 2.9.0(eslint@9.1.1)(typescript@5.4.5)(vue-eslint-parser@9.4.2(eslint@9.1.1)) - eslint-plugin-regexp: 2.5.0(eslint@9.1.1) + eslint-plugin-jsonc: 2.15.1(eslint@9.3.0) + eslint-plugin-perfectionist: 2.10.0(eslint@9.3.0)(typescript@5.4.5)(vue-eslint-parser@9.4.2(eslint@9.3.0)) + eslint-plugin-regexp: 2.5.0(eslint@9.3.0) eslint-plugin-tsdoc: 0.2.17 - eslint-plugin-unicorn: 52.0.0(eslint@9.1.1) - eslint-plugin-vue: 9.25.0(eslint@9.1.1) - eslint-plugin-vuejs-accessibility: 2.3.0(eslint@9.1.1) - eslint-plugin-yml: 1.14.0(eslint@9.1.1) + eslint-plugin-unicorn: 53.0.0(eslint@9.3.0) + eslint-plugin-vue: 9.26.0(eslint@9.3.0) + eslint-plugin-vuejs-accessibility: 2.3.0(eslint@9.3.0) + eslint-plugin-yml: 1.14.0(eslint@9.3.0) jsonc-eslint-parser: 2.4.0 - typescript-eslint: 7.7.1(eslint@9.1.1)(typescript@5.4.5) - vue-eslint-parser: 9.4.2(eslint@9.1.1) + typescript-eslint: 7.9.0(eslint@9.3.0)(typescript@5.4.5) + vue-eslint-parser: 9.4.2(eslint@9.3.0) yaml-eslint-parser: 1.2.2 transitivePeerDependencies: - astro-eslint-parser @@ -2793,35 +2938,35 @@ snapshots: string-width: 4.2.3 supports-hyperlinks: 2.3.0 - eslint-plugin-jsonc@2.15.1(eslint@9.1.1): + eslint-plugin-jsonc@2.15.1(eslint@9.3.0): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.1) - eslint: 9.1.1 - eslint-compat-utils: 0.5.0(eslint@9.1.1) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.3.0) + eslint: 9.3.0 + eslint-compat-utils: 0.5.0(eslint@9.3.0) espree: 9.6.1 graphemer: 1.4.0 jsonc-eslint-parser: 2.4.0 natural-compare: 1.4.0 synckit: 0.6.2 - eslint-plugin-perfectionist@2.9.0(eslint@9.1.1)(typescript@5.4.5)(vue-eslint-parser@9.4.2(eslint@9.1.1)): + eslint-plugin-perfectionist@2.10.0(eslint@9.3.0)(typescript@5.4.5)(vue-eslint-parser@9.4.2(eslint@9.3.0)): dependencies: - '@typescript-eslint/utils': 6.21.0(eslint@9.1.1)(typescript@5.4.5) - eslint: 9.1.1 + '@typescript-eslint/utils': 7.9.0(eslint@9.3.0)(typescript@5.4.5) + eslint: 9.3.0 minimatch: 9.0.4 natural-compare-lite: 1.4.0 optionalDependencies: - vue-eslint-parser: 9.4.2(eslint@9.1.1) + vue-eslint-parser: 9.4.2(eslint@9.3.0) transitivePeerDependencies: - supports-color - typescript - eslint-plugin-regexp@2.5.0(eslint@9.1.1): + eslint-plugin-regexp@2.5.0(eslint@9.3.0): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.1) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.3.0) '@eslint-community/regexpp': 4.10.0 comment-parser: 1.4.1 - eslint: 9.1.1 + eslint: 9.3.0 jsdoc-type-pratt-parser: 4.0.0 refa: 0.12.1 regexp-ast-analysis: 0.7.1 @@ -2832,15 +2977,15 @@ snapshots: '@microsoft/tsdoc': 0.14.2 '@microsoft/tsdoc-config': 0.16.2 - eslint-plugin-unicorn@52.0.0(eslint@9.1.1): + eslint-plugin-unicorn@53.0.0(eslint@9.3.0): dependencies: - '@babel/helper-validator-identifier': 7.22.20 - '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.1) - '@eslint/eslintrc': 2.1.4 + '@babel/helper-validator-identifier': 7.24.5 + '@eslint-community/eslint-utils': 4.4.0(eslint@9.3.0) + '@eslint/eslintrc': 3.1.0 ci-info: 4.0.0 clean-regexp: 1.0.0 - core-js-compat: 3.36.1 - eslint: 9.1.1 + core-js-compat: 3.37.1 + eslint: 9.3.0 esquery: 1.5.0 indent-string: 4.0.0 is-builtin-module: 3.2.1 @@ -2849,39 +2994,39 @@ snapshots: read-pkg-up: 7.0.1 regexp-tree: 0.1.27 regjsparser: 0.10.0 - semver: 7.6.0 + semver: 7.6.2 strip-indent: 3.0.0 transitivePeerDependencies: - supports-color - eslint-plugin-vue@9.25.0(eslint@9.1.1): + eslint-plugin-vue@9.26.0(eslint@9.3.0): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.1) - eslint: 9.1.1 + '@eslint-community/eslint-utils': 4.4.0(eslint@9.3.0) + eslint: 9.3.0 globals: 13.24.0 natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.0.16 - semver: 7.6.0 - vue-eslint-parser: 9.4.2(eslint@9.1.1) + semver: 7.6.2 + vue-eslint-parser: 9.4.2(eslint@9.3.0) xml-name-validator: 4.0.0 transitivePeerDependencies: - supports-color - eslint-plugin-vuejs-accessibility@2.3.0(eslint@9.1.1): + eslint-plugin-vuejs-accessibility@2.3.0(eslint@9.3.0): dependencies: aria-query: 5.3.0 emoji-regex: 10.3.0 - eslint: 9.1.1 - vue-eslint-parser: 9.4.2(eslint@9.1.1) + eslint: 9.3.0 + vue-eslint-parser: 9.4.2(eslint@9.3.0) transitivePeerDependencies: - supports-color - eslint-plugin-yml@1.14.0(eslint@9.1.1): + eslint-plugin-yml@1.14.0(eslint@9.3.0): dependencies: debug: 4.3.4 - eslint: 9.1.1 - eslint-compat-utils: 0.5.0(eslint@9.1.1) + eslint: 9.3.0 + eslint-compat-utils: 0.5.0(eslint@9.3.0) lodash: 4.17.21 natural-compare: 1.4.0 yaml-eslint-parser: 1.2.2 @@ -2904,15 +3049,15 @@ snapshots: eslint-visitor-keys@4.0.0: {} - eslint@9.1.1: + eslint@9.3.0: dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.1) + '@eslint-community/eslint-utils': 4.4.0(eslint@9.3.0) '@eslint-community/regexpp': 4.10.0 - '@eslint/eslintrc': 3.0.2 - '@eslint/js': 9.1.1 + '@eslint/eslintrc': 3.1.0 + '@eslint/js': 9.3.0 '@humanwhocodes/config-array': 0.13.0 '@humanwhocodes/module-importer': 1.0.1 - '@humanwhocodes/retry': 0.2.3 + '@humanwhocodes/retry': 0.3.0 '@nodelib/fs.walk': 1.2.8 ajv: 6.12.6 chalk: 4.1.2 @@ -2937,7 +3082,7 @@ snapshots: lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 - optionator: 0.9.3 + optionator: 0.9.4 strip-ansi: 6.0.1 text-table: 0.2.0 transitivePeerDependencies: @@ -3015,6 +3160,8 @@ snapshots: dependencies: reusify: 1.0.4 + fetch-blob@2.1.2: {} + file-entry-cache@8.0.0: dependencies: flat-cache: 4.0.1 @@ -3060,6 +3207,8 @@ snapshots: get-east-asian-width@1.2.0: {} + get-npm-tarball-url@2.1.0: {} + get-stream@6.0.1: {} get-stream@8.0.1: {} @@ -3117,6 +3266,11 @@ snapshots: graceful-fs@4.2.11: {} + graceful-git@3.1.2: + dependencies: + retry: 0.12.0 + safe-execa: 0.1.4 + graphemer@1.4.0: {} hard-rejection@2.1.0: {} @@ -3135,14 +3289,33 @@ snapshots: dependencies: lru-cache: 6.0.0 - hosted-git-info@7.0.1: + hosted-git-info@7.0.2: dependencies: - lru-cache: 10.2.0 + lru-cache: 10.2.2 + + http-proxy-agent@5.0.0: + dependencies: + '@tootallnate/once': 2.0.0 + agent-base: 6.0.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + + https-proxy-agent@5.0.1: + dependencies: + agent-base: 6.0.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color human-signals@2.1.0: {} human-signals@5.0.0: {} + humanize-ms@1.2.1: + dependencies: + ms: 2.1.3 + ignore@5.3.1: {} import-fresh@3.3.0: @@ -3150,7 +3323,7 @@ snapshots: parent-module: 1.0.1 resolve-from: 4.0.0 - import-meta-resolve@4.0.0: {} + import-meta-resolve@4.1.0: {} imurmurhash@0.1.4: {} @@ -3167,6 +3340,11 @@ snapshots: ini@4.1.1: {} + ip-address@9.0.5: + dependencies: + jsbn: 1.1.0 + sprintf-js: 1.1.3 + irregular-plurals@3.5.0: {} is-arrayish@0.2.1: {} @@ -3236,6 +3414,8 @@ snapshots: dependencies: argparse: 2.0.1 + jsbn@1.1.0: {} + jsdoc-type-pratt-parser@4.0.0: {} jsesc@0.5.0: {} @@ -3259,7 +3439,7 @@ snapshots: acorn: 8.11.3 eslint-visitor-keys: 3.4.3 espree: 9.6.1 - semver: 7.6.0 + semver: 7.6.2 jsonfile@6.1.0: dependencies: @@ -3277,40 +3457,40 @@ snapshots: kleur@3.0.3: {} - lefthook-darwin-arm64@1.6.10: + lefthook-darwin-arm64@1.6.12: optional: true - lefthook-darwin-x64@1.6.10: + lefthook-darwin-x64@1.6.12: optional: true - lefthook-freebsd-arm64@1.6.10: + lefthook-freebsd-arm64@1.6.12: optional: true - lefthook-freebsd-x64@1.6.10: + lefthook-freebsd-x64@1.6.12: optional: true - lefthook-linux-arm64@1.6.10: + lefthook-linux-arm64@1.6.12: optional: true - lefthook-linux-x64@1.6.10: + lefthook-linux-x64@1.6.12: optional: true - lefthook-windows-arm64@1.6.10: + lefthook-windows-arm64@1.6.12: optional: true - lefthook-windows-x64@1.6.10: + lefthook-windows-x64@1.6.12: optional: true - lefthook@1.6.10: + lefthook@1.6.12: optionalDependencies: - lefthook-darwin-arm64: 1.6.10 - lefthook-darwin-x64: 1.6.10 - lefthook-freebsd-arm64: 1.6.10 - lefthook-freebsd-x64: 1.6.10 - lefthook-linux-arm64: 1.6.10 - lefthook-linux-x64: 1.6.10 - lefthook-windows-arm64: 1.6.10 - lefthook-windows-x64: 1.6.10 + lefthook-darwin-arm64: 1.6.12 + lefthook-darwin-x64: 1.6.12 + lefthook-freebsd-arm64: 1.6.12 + lefthook-freebsd-x64: 1.6.12 + lefthook-linux-arm64: 1.6.12 + lefthook-linux-x64: 1.6.12 + lefthook-windows-arm64: 1.6.12 + lefthook-windows-x64: 1.6.12 levn@0.4.1: dependencies: @@ -3363,25 +3543,18 @@ snapshots: chalk: 5.3.0 is-unicode-supported: 1.3.0 - lru-cache@10.2.0: {} + lru-cache@10.2.2: {} lru-cache@6.0.0: dependencies: yallist: 4.0.0 - map-age-cleaner@0.1.3: - dependencies: - p-defer: 1.0.0 + lru-cache@7.10.1: {} map-obj@1.0.1: {} map-obj@4.3.0: {} - mem@8.1.1: - dependencies: - map-age-cleaner: 0.1.3 - mimic-fn: 3.1.0 - meow@12.1.1: {} meow@9.0.0: @@ -3410,8 +3583,6 @@ snapshots: mimic-fn@2.1.0: {} - mimic-fn@3.1.0: {} - mimic-fn@4.0.0: {} min-indent@1.0.1: {} @@ -3420,10 +3591,6 @@ snapshots: dependencies: brace-expansion: 1.1.11 - minimatch@9.0.3: - dependencies: - brace-expansion: 2.0.1 - minimatch@9.0.4: dependencies: brace-expansion: 2.0.1 @@ -3438,6 +3605,8 @@ snapshots: ms@2.1.2: {} + ms@2.1.3: {} + natural-compare-lite@1.4.0: {} natural-compare@1.4.0: {} @@ -3450,6 +3619,8 @@ snapshots: split2: 3.2.2 through2: 4.0.2 + nerf-dart@1.0.0: {} + node-releases@2.0.14: {} normalize-package-data@2.5.0: @@ -3463,17 +3634,17 @@ snapshots: dependencies: hosted-git-info: 4.1.0 is-core-module: 2.13.1 - semver: 7.6.0 + semver: 7.6.2 validate-npm-package-license: 3.0.4 normalize-path@3.0.0: {} npm-package-arg@11.0.2: dependencies: - hosted-git-info: 7.0.1 + hosted-git-info: 7.0.2 proc-log: 4.2.0 semver: 7.6.0 - validate-npm-package-name: 5.0.0 + validate-npm-package-name: 5.0.1 npm-run-path@4.0.1: dependencies: @@ -3499,14 +3670,14 @@ snapshots: dependencies: mimic-fn: 4.0.0 - optionator@0.9.3: + optionator@0.9.4: dependencies: - '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 + word-wrap: 1.2.5 ora@8.0.1: dependencies: @@ -3520,8 +3691,6 @@ snapshots: string-width: 7.1.0 strip-ansi: 7.1.0 - p-defer@1.0.0: {} - p-limit@2.3.0: dependencies: p-try: 2.2.0 @@ -3579,7 +3748,7 @@ snapshots: path-type@5.0.0: {} - picocolors@1.0.0: {} + picocolors@1.0.1: {} picomatch@2.3.1: {} @@ -3598,7 +3767,7 @@ snapshots: prelude-ls@1.2.1: {} - prettier-config-escapace@1.2.0: {} + prettier-config-escapace@1.2.1: {} prettier@3.2.5: {} @@ -3606,7 +3775,7 @@ snapshots: dependencies: '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 - react-is: 18.2.0 + react-is: 18.3.1 proc-log@4.2.0: {} @@ -3623,7 +3792,7 @@ snapshots: quick-lru@4.0.1: {} - react-is@18.2.0: {} + react-is@18.3.1: {} read-pkg-up@7.0.1: dependencies: @@ -3693,6 +3862,8 @@ snapshots: onetime: 5.1.2 signal-exit: 3.0.7 + retry@0.12.0: {} + reusify@1.0.4: {} rfc4648@1.5.3: {} @@ -3713,6 +3884,12 @@ snapshots: execa: 5.1.1 path-name: 1.0.0 + safe-execa@0.1.4: + dependencies: + '@zkochan/which': 2.0.3 + execa: 5.1.1 + path-name: 1.0.0 + scslre@0.3.0: dependencies: '@eslint-community/regexpp': 4.10.0 @@ -3725,6 +3902,8 @@ snapshots: dependencies: lru-cache: 6.0.0 + semver@7.6.2: {} + shebang-command@2.0.0: dependencies: shebang-regex: 3.0.0 @@ -3741,6 +3920,21 @@ snapshots: slash@5.1.0: {} + smart-buffer@4.2.0: {} + + socks-proxy-agent@6.1.1: + dependencies: + agent-base: 6.0.2 + debug: 4.3.4 + socks: 2.8.3 + transitivePeerDependencies: + - supports-color + + socks@2.8.3: + dependencies: + ip-address: 9.0.5 + smart-buffer: 4.2.0 + sort-keys@4.2.0: dependencies: is-plain-obj: 2.1.0 @@ -3765,6 +3959,8 @@ snapshots: split2@4.2.0: {} + sprintf-js@1.1.3: {} + stdin-discarder@0.2.2: {} string-width@4.2.3: @@ -3870,7 +4066,7 @@ snapshots: tsd@0.31.0: dependencies: - '@tsd/typescript': 5.4.3 + '@tsd/typescript': 5.4.5 eslint-formatter-pretty: 4.1.0 globby: 11.1.0 jest-diff: 29.7.0 @@ -3894,12 +4090,12 @@ snapshots: type-fest@0.8.1: {} - typescript-eslint@7.7.1(eslint@9.1.1)(typescript@5.4.5): + typescript-eslint@7.9.0(eslint@9.3.0)(typescript@5.4.5): dependencies: - '@typescript-eslint/eslint-plugin': 7.7.1(@typescript-eslint/parser@7.7.1(eslint@9.1.1)(typescript@5.4.5))(eslint@9.1.1)(typescript@5.4.5) - '@typescript-eslint/parser': 7.7.1(eslint@9.1.1)(typescript@5.4.5) - '@typescript-eslint/utils': 7.7.1(eslint@9.1.1)(typescript@5.4.5) - eslint: 9.1.1 + '@typescript-eslint/eslint-plugin': 7.9.0(@typescript-eslint/parser@7.9.0(eslint@9.3.0)(typescript@5.4.5))(eslint@9.3.0)(typescript@5.4.5) + '@typescript-eslint/parser': 7.9.0(eslint@9.3.0)(typescript@5.4.5) + '@typescript-eslint/utils': 7.9.0(eslint@9.3.0)(typescript@5.4.5) + eslint: 9.3.0 optionalDependencies: typescript: 5.4.5 transitivePeerDependencies: @@ -3913,11 +4109,11 @@ snapshots: universalify@2.0.1: {} - update-browserslist-db@1.0.13(browserslist@4.23.0): + update-browserslist-db@1.0.16(browserslist@4.23.0): dependencies: browserslist: 4.23.0 escalade: 3.1.2 - picocolors: 1.0.0 + picocolors: 1.0.1 uri-js@4.4.1: dependencies: @@ -3930,20 +4126,18 @@ snapshots: spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 - validate-npm-package-name@5.0.0: - dependencies: - builtins: 5.0.1 + validate-npm-package-name@5.0.1: {} - vue-eslint-parser@9.4.2(eslint@9.1.1): + vue-eslint-parser@9.4.2(eslint@9.3.0): dependencies: debug: 4.3.4 - eslint: 9.1.1 + eslint: 9.3.0 eslint-scope: 7.2.2 eslint-visitor-keys: 3.4.3 espree: 9.6.1 esquery: 1.5.0 lodash: 4.17.21 - semver: 7.6.0 + semver: 7.6.2 transitivePeerDependencies: - supports-color @@ -3955,6 +4149,8 @@ snapshots: dependencies: isexe: 3.1.1 + word-wrap@1.2.5: {} + wrap-ansi@7.0.0: dependencies: ansi-styles: 4.3.0 @@ -3978,9 +4174,9 @@ snapshots: dependencies: eslint-visitor-keys: 3.4.3 lodash: 4.17.21 - yaml: 2.3.4 + yaml: 2.4.2 - yaml@2.3.4: {} + yaml@2.4.2: {} yargs-parser@20.2.9: {} diff --git a/src/hkt.ts b/src/hkt.ts index 73c8a34..f6be66d 100644 --- a/src/hkt.ts +++ b/src/hkt.ts @@ -2,7 +2,6 @@ export declare const Phantom: unique symbol /** * `* -> *` constructors - * @since 2.0.0 */ export interface HKT { readonly _A: A @@ -11,7 +10,6 @@ export interface HKT { /** * `* -> * -> *` constructors - * @since 2.0.0 */ export interface HKT2 extends HKT { readonly _L: L @@ -19,7 +17,6 @@ export interface HKT2 extends HKT { /** * `* -> * -> * -> *` constructors - * @since 2.0.0 */ export interface HKT3 extends HKT2 { readonly _U: U @@ -27,7 +24,6 @@ export interface HKT3 extends HKT2 { /** * `* -> * -> * -> * -> *` constructors - * @since 2.0.0 */ export interface HKT4 extends HKT3 { readonly _X: X @@ -39,7 +35,6 @@ export interface HKT4 extends HKT3 { /** * `* -> *` constructors - * @since 2.0.0 */ export interface URI2HKT { [Phantom]: [A] @@ -47,7 +42,6 @@ export interface URI2HKT { /** * `* -> * -> *` constructors - * @since 2.0.0 */ export interface URI2HKT2 { [Phantom]: [A, B] @@ -55,7 +49,6 @@ export interface URI2HKT2 { /** * `* -> * -> * -> *` constructors - * @since 2.0.0 */ export interface URI2HKT3 { [Phantom]: [A, B, C] @@ -63,7 +56,6 @@ export interface URI2HKT3 { /** * `* -> * -> * -> * -> *` constructors - * @since 2.0.0 */ export interface URI2HKT4 { [Phantom]: [A, B, C, D] @@ -75,25 +67,21 @@ export interface URI2HKT4 { /** * `* -> *` constructors - * @since 2.0.0 */ export type URIS = keyof URI2HKT /** * `* -> * -> *` constructors - * @since 2.0.0 */ export type URIS2 = keyof URI2HKT2 /** * `* -> * -> * -> *` constructors - * @since 2.0.0 */ export type URIS3 = keyof URI2HKT3 /** * `* -> * -> * -> * -> *` constructors - * @since 2.0.0 */ export type URIS4 = keyof URI2HKT4 @@ -103,29 +91,21 @@ export type URIS4 = keyof URI2HKT4 /** * `* -> *` constructors - * @since 2.0.0 */ export type Type = URI extends URIS ? URI2HKT[URI] : any /** * `* -> * -> *` constructors - * @since 2.0.0 */ -export type Type2 = URI extends URIS2 - ? URI2HKT2[URI] - : any +export type Type2 = URI extends URIS2 ? URI2HKT2[URI] : any /** * `* -> * -> * -> *` constructors - * @since 2.0.0 */ -export type Type3 = URI extends URIS3 - ? URI2HKT3[URI] - : any +export type Type3 = URI extends URIS3 ? URI2HKT3[URI] : any /** * `* -> * -> * -> * -> *` constructors - * @since 2.0.0 */ export type Type4 = URI extends URIS4 ? URI2HKT4[URI] diff --git a/src/typelevel/boolean-algebra/equivalence.ts b/src/typelevel/boolean-algebra/equivalence.ts index 8d98856..85c10fe 100644 --- a/src/typelevel/boolean-algebra/equivalence.ts +++ b/src/typelevel/boolean-algebra/equivalence.ts @@ -5,6 +5,4 @@ import type { Xor } from './xor' /** * Returns True if both A and B are identical. */ -export type Equivalence = Not< - Xor -> +export type Equivalence = Not> diff --git a/src/typelevel/boolean-algebra/implication.ts b/src/typelevel/boolean-algebra/implication.ts index 6c66ac1..1d0aaef 100644 --- a/src/typelevel/boolean-algebra/implication.ts +++ b/src/typelevel/boolean-algebra/implication.ts @@ -3,7 +3,8 @@ import type { False, True } from './values' /** * Returns True if Either A is False or B is True. */ -export type Implication< - A extends False | True, - B extends False | True -> = A extends False ? True : B extends True ? True : False +export type Implication = A extends False + ? True + : B extends True + ? True + : False diff --git a/src/typelevel/function/argument.ts b/src/typelevel/function/argument.ts index 5a3f381..229164c 100644 --- a/src/typelevel/function/argument.ts +++ b/src/typelevel/function/argument.ts @@ -3,7 +3,8 @@ import type { Cons } from '../list/prepend' /** * Get the N-th argument of a function. */ -export type Argument< - T extends (...arguments_: any[]) => any, - N extends number -> = T extends (...arguments_: infer U) => any ? Cons[N] : never +export type Argument any, N extends number> = T extends ( + ...arguments_: infer U +) => any + ? Cons[N] + : never diff --git a/src/typelevel/is/falsy.ts b/src/typelevel/is/falsy.ts index b3b23b2..adffbcc 100644 --- a/src/typelevel/is/falsy.ts +++ b/src/typelevel/is/falsy.ts @@ -18,7 +18,7 @@ export type Falsy = T extends '' ? True : T extends boolean ? False | True - : // eslint-disable-next-line @typescript-eslint/no-invalid-void-type - T extends null | undefined | void + : // eslint-disable-next-line typescript/no-invalid-void-type + T extends void | null | undefined ? True : never diff --git a/src/typelevel/list/flatten.ts b/src/typelevel/list/flatten.ts index 3bad792..1a8d17f 100644 --- a/src/typelevel/list/flatten.ts +++ b/src/typelevel/list/flatten.ts @@ -6,11 +6,7 @@ import type { Cons } from './prepend' /** * Flattens list a single level deep. */ -export type Flatten< - T extends any[][], - R1 extends any[] = [], - R2 extends any[] = [] -> = { +export type Flatten = { 0: Reverse 1: Flatten, Head, R2> 2: Flatten, Cons, R2>> diff --git a/src/typelevel/list/head.ts b/src/typelevel/list/head.ts index 36d3d6c..cbe5d2f 100644 --- a/src/typelevel/list/head.ts +++ b/src/typelevel/list/head.ts @@ -3,9 +3,7 @@ import type { List } from './list' /** * Gets the first element of list T. */ -export type Head = T extends [infer X, ...List] - ? X - : D +export type Head = T extends [infer X, ...List] ? X : D /** * Gets the first element of list T. diff --git a/src/typelevel/list/last.ts b/src/typelevel/list/last.ts index 29d5f66..66bf424 100644 --- a/src/typelevel/list/last.ts +++ b/src/typelevel/list/last.ts @@ -1,4 +1,4 @@ -/* eslint-disable @typescript-eslint/no-unused-vars */ +/* eslint-disable typescript/no-unused-vars */ import type { If } from '../type/if' import type { Unknown } from '../is/unknown' diff --git a/src/typelevel/list/tail.ts b/src/typelevel/list/tail.ts index 901471a..247d1b5 100644 --- a/src/typelevel/list/tail.ts +++ b/src/typelevel/list/tail.ts @@ -3,6 +3,4 @@ import type { List } from './list' /** * Returns all but the first element of the list. */ -export type Tail = L extends readonly [any, ...infer LTail] - ? LTail - : L +export type Tail = L extends readonly [any, ...infer LTail] ? LTail : L diff --git a/src/typelevel/list/values.ts b/src/typelevel/list/values.ts index 62d5b7b..0745648 100644 --- a/src/typelevel/list/values.ts +++ b/src/typelevel/list/values.ts @@ -1,6 +1,4 @@ /** * Returns a union of list elements */ -export type Values> = T extends ArrayLike - ? U - : never +export type Values> = T extends ArrayLike ? U : never diff --git a/src/typelevel/object/assign.ts b/src/typelevel/object/assign.ts index 675354e..4d40845 100644 --- a/src/typelevel/object/assign.ts +++ b/src/typelevel/object/assign.ts @@ -1,7 +1,3 @@ import type { Difference } from '../set-algebra/difference' -export type Assign = Pick< - T, - Difference -> & - U +export type Assign = Pick> & U diff --git a/src/typelevel/object/omit.ts b/src/typelevel/object/omit.ts index c5265f6..36db339 100644 --- a/src/typelevel/object/omit.ts +++ b/src/typelevel/object/omit.ts @@ -1,3 +1 @@ -export type Omit = T extends any - ? Pick> - : never +export type Omit = T extends any ? Pick> : never diff --git a/src/typelevel/set-algebra/symmetric-difference.ts b/src/typelevel/set-algebra/symmetric-difference.ts index 6c0dbf2..3003517 100644 --- a/src/typelevel/set-algebra/symmetric-difference.ts +++ b/src/typelevel/set-algebra/symmetric-difference.ts @@ -4,7 +4,4 @@ import type { Union } from './union' /** * Returns a set of elements belonging to one but not both of two given sets. */ -export type SymmetricDifference = Union< - Difference, - Difference -> +export type SymmetricDifference = Union, Difference> diff --git a/src/typelevel/to/intersection.ts b/src/typelevel/to/intersection.ts index 4b7fe59..9d31ace 100644 --- a/src/typelevel/to/intersection.ts +++ b/src/typelevel/to/intersection.ts @@ -2,8 +2,8 @@ * Defines an intersection type of all union items. */ -export type Intersection = ( - U extends any ? (argument: U) => any : never -) extends (argument: infer I) => void +export type Intersection = (U extends any ? (argument: U) => any : never) extends ( + argument: infer I, +) => void ? I : never diff --git a/src/typelevel/type/equal.ts b/src/typelevel/type/equal.ts index 421f922..dc21821 100644 --- a/src/typelevel/type/equal.ts +++ b/src/typelevel/type/equal.ts @@ -4,9 +4,7 @@ import type { False, True } from '../boolean-algebra/values' * Asserts strict equality of A and B. */ export type Equal = - (() => T extends A ? 1 : 2) extends () => T extends B ? 1 : 2 - ? True - : False + (() => T extends A ? 1 : 2) extends () => T extends B ? 1 : 2 ? True : False // import { Unknown } from '../is/unknown' // import { Or } from '../boolean-algebra/or' diff --git a/src/typelevel/type/widen.ts b/src/typelevel/type/widen.ts index eee9dd6..35b11c6 100644 --- a/src/typelevel/type/widen.ts +++ b/src/typelevel/type/widen.ts @@ -4,7 +4,7 @@ export type Widen = T extends boolean ? boolean : T extends number - ? number - : T extends string - ? string - : T + ? number + : T extends string + ? string + : T diff --git a/test/.eslintrc.js b/test/.eslintrc.js deleted file mode 100644 index e629f3b..0000000 --- a/test/.eslintrc.js +++ /dev/null @@ -1,17 +0,0 @@ -const path = require('path') - -module.exports = { - plugins: ['@typescript-eslint', 'no-null'], - parserOptions: { - warnOnUnsupportedTypeScriptVersion: false, - project: path.join(__dirname, 'tsconfig.json') - }, - extends: [ - 'escapace' - ], - rules: { - '@typescript-eslint/no-explicit-any': 0, - '@typescript-eslint/array-type': 0, - '@typescript-eslint/no-invalid-void-type': 0 - } -} diff --git a/test/assert.ts b/test/assert.ts index 8796273..c2f7534 100644 --- a/test/assert.ts +++ b/test/assert.ts @@ -1,4 +1,4 @@ -import TL from '@escapace/typelevel' +import type TL from '@escapace/typelevel' import { expectType } from 'tsd' expectType>(1) diff --git a/test/boolean-algebra.ts b/test/boolean-algebra.ts index 3b60d13..ecb7cbe 100644 --- a/test/boolean-algebra.ts +++ b/test/boolean-algebra.ts @@ -1,4 +1,4 @@ -import TL from '@escapace/typelevel' +import type TL from '@escapace/typelevel' import { expectType } from 'tsd' // $ExpectType "0" diff --git a/test/function.ts b/test/function.ts index 79a85d8..e4f86af 100644 --- a/test/function.ts +++ b/test/function.ts @@ -1,4 +1,4 @@ -import TL from '@escapace/typelevel' +import type TL from '@escapace/typelevel' import { expectType } from 'tsd' export type FA0 = () => null diff --git a/test/list.ts b/test/list.ts index bdadc15..92c8172 100644 --- a/test/list.ts +++ b/test/list.ts @@ -1,4 +1,4 @@ -import TL from '@escapace/typelevel' +import type TL from '@escapace/typelevel' import { expectType } from 'tsd' // $ExpectType "1" @@ -30,7 +30,7 @@ expectType, never>>(1) // $ExpectType "1" expectType, undefined>>(1) // // $ExpectType "1" -expectType>, number | undefined>>(1) +expectType, number | undefined>>(1) // $ExpectType "1" expectType, never>>(1) diff --git a/test/set-algebra.ts b/test/set-algebra.ts index 191ec24..44e5fc5 100644 --- a/test/set-algebra.ts +++ b/test/set-algebra.ts @@ -1,4 +1,4 @@ -import TL from '@escapace/typelevel' +import type TL from '@escapace/typelevel' import { expectType } from 'tsd' // $ExpectType "1" @@ -11,22 +11,13 @@ expectType, '1'>>(1) expectType, '1'>>(1) // $ExpectType "1" -expectType, - '2' | '3' ->>(1) +expectType, '2' | '3'>>(1) // $ExpectType "1" -expectType, - '1' | '4' ->>(1) +expectType, '1' | '4'>>(1) // $ExpectType "1" -expectType, - '1' | '2' | '4' ->>(1) +expectType, '1' | '2' | '4'>>(1) // $ExpectType "1" expectType>>(1) diff --git a/test/tsconfig.json b/test/tsconfig.json index 2cba460..6ca496e 100644 --- a/test/tsconfig.json +++ b/test/tsconfig.json @@ -1,31 +1,8 @@ { "compilerOptions": { - "allowUnreachableCode": false, - "allowUnusedLabels": false, - "declaration": true, - "declarationMap": false, - "esModuleInterop": true, - "experimentalDecorators": true, - "forceConsistentCasingInFileNames": true, - "importHelpers": false, - "lib": ["es2015", "es2015.promise", "es2016", "es2017", "esnext"], - "module": "esnext", - "moduleResolution": "node", - "noFallthroughCasesInSwitch": true, - "noImplicitReturns": true, - "noUncheckedIndexedAccess": true, - "noUnusedLocals": true, - "noUnusedParameters": true, - "pretty": true, - "resolveJsonModule": true, - "skipLibCheck": true, - "strict": true, - "target": "es2017", - "useDefineForClassFields": true, - "baseUrl": ".", "paths": { "@escapace/typelevel": ["../src"] } }, - "include": ["../src", "./"] + "extends": "../tsconfig.json" } diff --git a/test/type-predicates.ts b/test/type-predicates.ts index 5c3eb55..44ffdf0 100644 --- a/test/type-predicates.ts +++ b/test/type-predicates.ts @@ -1,4 +1,5 @@ -import TL from '@escapace/typelevel' +/* eslint-disable typescript/no-invalid-void-type */ +import type TL from '@escapace/typelevel' import { expectType } from 'tsd' expectType>(1) @@ -17,26 +18,26 @@ expectType>(1) expectType>(0) expectType>>(1) -expectType>(1) +expectType>(1) expectType>(1) expectType, 0 | 1>>(1) expectType>(1) expectType, 0 | 1>>(1) expectType>(1) expectType, 0 | 1>>(1) -expectType, 0 | 1>>(1) -expectType>(1) +expectType, 0 | 1>>(1) +expectType>(1) expectType>>(1) -expectType>(0) +expectType>(0) expectType>(0) expectType, 0 | 1>>(1) expectType>(0) expectType, 0 | 1>>(1) expectType>(0) expectType, 0 | 1>>(1) -expectType, 0 | 1>>(1) -expectType>(0) +expectType, 0 | 1>>(1) +expectType>(0) expectType>(1) expectType>(1) diff --git a/test/type.ts b/test/type.ts index d73580e..3308175 100644 --- a/test/type.ts +++ b/test/type.ts @@ -1,4 +1,4 @@ -import TL from '@escapace/typelevel' +import type TL from '@escapace/typelevel' import { expectType } from 'tsd' expectType>(1) diff --git a/tsconfig-build.json b/tsconfig-build.json new file mode 100644 index 0000000..b90fc83 --- /dev/null +++ b/tsconfig-build.json @@ -0,0 +1,4 @@ +{ + "extends": "./tsconfig.json", + "include": ["src"] +} diff --git a/tsconfig.json b/tsconfig.json index 173d482..1af1e34 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,6 @@ { "compilerOptions": { + "allowArbitraryExtensions": true, "allowUnreachableCode": false, "allowUnusedLabels": false, "declaration": true, @@ -8,20 +9,24 @@ "forceConsistentCasingInFileNames": true, "importHelpers": false, "isolatedModules": true, - "lib": ["esnext"], + "lib": ["DOM", "DOM.Iterable", "esnext"], "module": "esnext", "moduleResolution": "bundler", "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, + "noImplicitThis": true, "noUnusedLocals": true, "noUnusedParameters": true, + "paths": { + "@escapace/typelevel": ["./src"] + }, "pretty": true, "resolveJsonModule": true, "skipLibCheck": true, "strict": true, "target": "esnext", "typeRoots": ["node_modules/@types"], - "useDefineForClassFields": true - }, - "include": ["src"] + "useDefineForClassFields": true, + "verbatimModuleSyntax": true + } }