diff --git a/examples/nodejs-minimal/package.json b/examples/nodejs-minimal/package.json index 4b1c5d033..064bd59f3 100644 --- a/examples/nodejs-minimal/package.json +++ b/examples/nodejs-minimal/package.json @@ -6,11 +6,12 @@ "license": "Apache-2.0", "scripts": { "build": "tsc -p ./tsconfig.json", + "typecheck": "tsc --noEmit", "start": "node ./dist/index" }, "dependencies": { - "@scaleway/configuration-loader": "^1.0", - "@scaleway/sdk": "^2.0" + "@scaleway/configuration-loader": "workspace:*", + "@scaleway/sdk": "workspace:*" }, "devDependencies": { "@types/node": "20.11.19", diff --git a/examples/nodejs-minimal/pnpm-workspace.yaml b/examples/nodejs-minimal/pnpm-workspace.yaml deleted file mode 100644 index b4356b2e2..000000000 --- a/examples/nodejs-minimal/pnpm-workspace.yaml +++ /dev/null @@ -1,2 +0,0 @@ -packages: - - './' diff --git a/examples/nodejs-minimal/tsconfig.json b/examples/nodejs-minimal/tsconfig.json index 0b8c63e00..3e34bd631 100644 --- a/examples/nodejs-minimal/tsconfig.json +++ b/examples/nodejs-minimal/tsconfig.json @@ -1,5 +1,6 @@ { "compilerOptions": { + "rootDir": "src", "module": "ESNext", "moduleResolution": "Bundler", "target": "ES2022", diff --git a/examples/serverless-function-minimal/package.json b/examples/serverless-function-minimal/package.json index 2f312e3ee..053cefbec 100644 --- a/examples/serverless-function-minimal/package.json +++ b/examples/serverless-function-minimal/package.json @@ -13,7 +13,7 @@ "@scaleway/sdk": "^2.0" }, "devDependencies": { - "serverless-scaleway-functions": "0.4.10", + "serverless-scaleway-functions": "0.4.12", "@types/node": "20.11.19", "typescript": "5.5.4" } diff --git a/examples/serverless-function-minimal/pnpm-workspace.yaml b/examples/serverless-function-minimal/pnpm-workspace.yaml deleted file mode 100644 index b4356b2e2..000000000 --- a/examples/serverless-function-minimal/pnpm-workspace.yaml +++ /dev/null @@ -1,2 +0,0 @@ -packages: - - './' diff --git a/examples/serverless-function-minimal/tsconfig.json b/examples/serverless-function-minimal/tsconfig.json index 0b8c63e00..f2aafc4a0 100644 --- a/examples/serverless-function-minimal/tsconfig.json +++ b/examples/serverless-function-minimal/tsconfig.json @@ -1,7 +1,8 @@ { "compilerOptions": { - "module": "ESNext", - "moduleResolution": "Bundler", + "rootDir": "src", + "module": "NodeNext", + "moduleResolution": "NodeNext", "target": "ES2022", "outDir": "./dist", "strict": true, diff --git a/package.json b/package.json index 87f2be76f..eabeb0351 100644 --- a/package.json +++ b/package.json @@ -47,27 +47,27 @@ "@commitlint/cli": "19.5.0", "@commitlint/config-conventional": "19.5.0", "@scaleway/eslint-config-react": "3.18.4", - "@vitest/coverage-istanbul": "2.0.5", - "@vitest/coverage-v8": "2.0.5", - "@vitest/ui": "2.0.5", + "@vitest/coverage-istanbul": "2.1.3", + "@vitest/coverage-v8": "2.1.3", + "@vitest/ui": "2.1.3", "babel-plugin-annotate-pure-calls": "0.4.0", "browserslist": "4.23.3", "cross-env": "7.0.3", "cross-fetch": "4.0.0", "cz-conventional-changelog": "3.3.0", - "esbuild-plugin-browserslist": "0.14.0", + "esbuild-plugin-browserslist": "0.15.0", "eslint": "8.57.0", "eslint-plugin-tsdoc": "0.3.0", "husky": "9.1.6", - "jsdom": "25.0.0", + "jsdom": "25.0.1", "lerna": "8.1.8", "lint-staged": "15.2.10", - "prettier": "3.3.2", + "prettier": "3.3.3", "read-pkg": "9.0.1", "typedoc": "0.26.6", - "typescript": "5.5.4", - "vite": "5.4.6", - "vitest": "2.0.5" + "typescript": "5.6.3", + "vite": "5.4.10", + "vitest": "2.1.3" }, "packageManager": "pnpm@9.4.0" } diff --git a/packages/clients/package.json b/packages/clients/package.json index 0b99980ad..027101756 100644 --- a/packages/clients/package.json +++ b/packages/clients/package.json @@ -8,10 +8,19 @@ "cloud", "sdk" ], + "type": "module", "main": "dist/index.cjs", "module": "dist/index.js", "types": "dist/index.d.ts", + "exports": { + ".": { + "types": "./dist/index.d.ts", + "node": "./dist/index.cjs", + "default": "./dist/index.js" + } + }, "scripts": { + "publint":"npx publint", "version": "./scripts/update-constants-file.sh", "typecheck": "tsc --noEmit", "type:generate": "tsc --declaration -p tsconfig.build.json", @@ -26,13 +35,12 @@ }, "repository": { "type": "git", - "url": "https://github.com/scaleway/scaleway-sdk-js", + "url": "git+https://github.com/scaleway/scaleway-sdk-js.git", "directory": "packages/clients" }, "engines": { "node": ">=18.0" }, - "type": "module", "dependencies": { "@scaleway/random-name": "5.1.0" }, diff --git a/packages/configuration-loader/package.json b/packages/configuration-loader/package.json index bacd49df5..ad25bef99 100644 --- a/packages/configuration-loader/package.json +++ b/packages/configuration-loader/package.json @@ -3,22 +3,33 @@ "version": "1.0.5", "license": "Apache-2.0", "description": "Load configuration via file or environment for NodeJS.", - "main": "dist/index.cjs", - "module": "dist/index.js", - "types": "dist/index.d.ts", "publishConfig": { "access": "public" }, "repository": { "type": "git", - "url": "https://github.com/scaleway/scaleway-sdk-js", + "url": "git+https://github.com/scaleway/scaleway-sdk-js.git", "directory": "packages/configuration-loader" }, + "files": [ + "dist" + ], "engines": { - "node": ">=14.13" + "node": ">=18.0" }, "type": "module", + "main": "dist/index.cjs", + "module": "dist/index.js", + "types": "dist/index.d.ts", + "exports": { + ".": { + "types": "./dist/index.d.ts", + "node": "./dist/index.cjs", + "default": "./dist/index.js" + } + }, "scripts": { + "publint":"npx publint", "typecheck": "tsc --noEmit", "type:generate": "tsc --declaration -p tsconfig.build.json", "build": "vite build --config ../../vite.config.ts && pnpm run type:generate", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 06c9cc851..989ac2f37 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -9,22 +9,22 @@ importers: devDependencies: '@commitlint/cli': specifier: 19.5.0 - version: 19.5.0(@types/node@22.1.0)(typescript@5.5.4) + version: 19.5.0(@types/node@22.1.0)(typescript@5.6.3) '@commitlint/config-conventional': specifier: 19.5.0 version: 19.5.0 '@scaleway/eslint-config-react': specifier: 3.18.4 - version: 3.18.4(eslint@8.57.0)(typescript@5.5.4) + version: 3.18.4(eslint@8.57.0)(typescript@5.6.3) '@vitest/coverage-istanbul': - specifier: 2.0.5 - version: 2.0.5(vitest@2.0.5(@types/node@22.1.0)(@vitest/ui@2.0.5)(jsdom@25.0.0)) + specifier: 2.1.3 + version: 2.1.3(vitest@2.1.3(@types/node@22.1.0)(@vitest/ui@2.1.3)(jsdom@25.0.1)) '@vitest/coverage-v8': - specifier: 2.0.5 - version: 2.0.5(vitest@2.0.5(@types/node@22.1.0)(@vitest/ui@2.0.5)(jsdom@25.0.0)) + specifier: 2.1.3 + version: 2.1.3(vitest@2.1.3(@types/node@22.1.0)(@vitest/ui@2.1.3)(jsdom@25.0.1)) '@vitest/ui': - specifier: 2.0.5 - version: 2.0.5(vitest@2.0.5) + specifier: 2.1.3 + version: 2.1.3(vitest@2.1.3) babel-plugin-annotate-pure-calls: specifier: 0.4.0 version: 0.4.0(@babel/core@7.25.2) @@ -39,10 +39,10 @@ importers: version: 4.0.0(encoding@0.1.13) cz-conventional-changelog: specifier: 3.3.0 - version: 3.3.0(@types/node@22.1.0)(typescript@5.5.4) + version: 3.3.0(@types/node@22.1.0)(typescript@5.6.3) esbuild-plugin-browserslist: - specifier: 0.14.0 - version: 0.14.0(browserslist@4.23.3)(esbuild@0.21.5) + specifier: 0.15.0 + version: 0.15.0(browserslist@4.23.3)(esbuild@0.21.5) eslint: specifier: 8.57.0 version: 8.57.0 @@ -53,8 +53,8 @@ importers: specifier: 9.1.6 version: 9.1.6 jsdom: - specifier: 25.0.0 - version: 25.0.0 + specifier: 25.0.1 + version: 25.0.1 lerna: specifier: 8.1.8 version: 8.1.8(encoding@0.1.13) @@ -62,23 +62,58 @@ importers: specifier: 15.2.10 version: 15.2.10 prettier: - specifier: 3.3.2 - version: 3.3.2 + specifier: 3.3.3 + version: 3.3.3 read-pkg: specifier: 9.0.1 version: 9.0.1 typedoc: specifier: 0.26.6 - version: 0.26.6(typescript@5.5.4) + version: 0.26.6(typescript@5.6.3) typescript: - specifier: 5.5.4 - version: 5.5.4 + specifier: 5.6.3 + version: 5.6.3 vite: - specifier: 5.4.6 - version: 5.4.6(@types/node@22.1.0) + specifier: 5.4.10 + version: 5.4.10(@types/node@22.1.0) vitest: - specifier: 2.0.5 - version: 2.0.5(@types/node@22.1.0)(@vitest/ui@2.0.5)(jsdom@25.0.0) + specifier: 2.1.3 + version: 2.1.3(@types/node@22.1.0)(@vitest/ui@2.1.3)(jsdom@25.0.1) + + examples/nodejs-minimal: + dependencies: + '@scaleway/configuration-loader': + specifier: workspace:* + version: link:../../packages/configuration-loader + '@scaleway/sdk': + specifier: workspace:* + version: link:../../packages/clients + devDependencies: + '@types/node': + specifier: 20.11.19 + version: 20.11.19 + typescript: + specifier: 5.5.4 + version: 5.5.4 + + examples/serverless-function-minimal: + dependencies: + '@scaleway/configuration-loader': + specifier: ^1.0 + version: 1.0.5 + '@scaleway/sdk': + specifier: ^2.0 + version: 2.52.0 + devDependencies: + '@types/node': + specifier: 20.11.19 + version: 20.11.19 + serverless-scaleway-functions: + specifier: 0.4.12 + version: 0.4.12(encoding@0.1.13) + typescript: + specifier: 5.5.4 + version: 5.5.4 packages/clients: dependencies: @@ -229,6 +264,12 @@ packages: } engines: { node: '>=6.9.0' } + '@balena/dockerignore@1.0.2': + resolution: + { + integrity: sha512-wMue2Sy4GAVTk6Ic4tJVcnfdau+gx2EnG7S+uAEe+TWJFqE4YoWN4/H8MSLj4eYJKxGg26lZwboEniNiNwZQ6Q==, + } + '@bcoe/v8-coverage@0.2.3': resolution: { @@ -750,6 +791,13 @@ packages: } engines: { node: '>=18.0.0' } + '@mapbox/node-pre-gyp@1.0.11': + resolution: + { + integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==, + } + hasBin: true + '@microsoft/tsdoc-config@0.17.0': resolution: { @@ -1105,6 +1153,13 @@ packages: integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==, } + '@phc/format@1.0.0': + resolution: + { + integrity: sha512-m7X9U6BG2+J+R1lSOdCiITLLrxm+cWlNI3HUFA92oLO77ObGNzaKdh8pMLqdZcshtkKuV84olNNXDfMc4FezBQ==, + } + engines: { node: '>=10' } + '@pkgjs/parseargs@0.11.0': resolution: { @@ -1246,6 +1301,13 @@ packages: cpu: [x64] os: [win32] + '@scaleway/configuration-loader@1.0.5': + resolution: + { + integrity: sha512-vsTsbsNMhQQtDlwQmJljoQ9XShWbopHdZFHMc2GU9amd1g0GtU3ZD+x7E9QVrliNmOjIXPfQMU9TU69Rwkv5hg==, + } + engines: { node: '>=14.13' } + '@scaleway/eslint-config-react@3.18.4': resolution: { @@ -1261,6 +1323,22 @@ packages: } engines: { node: '>=20.x' } + '@scaleway/sdk@2.52.0': + resolution: + { + integrity: sha512-jnJalIcacxHmmcgG+C40VyghXm9vcW89PivT/XWVJ/RkrzcDi+Pz4UneR/gylU3lsPGKz7KQkQye6b1JCJ63Sg==, + } + engines: { node: '>=18.0' } + bundledDependencies: + - '@scaleway/random-name' + + '@serverless/utils@6.15.0': + resolution: + { + integrity: sha512-7eDbqKv/OBd11jjdZjUwFGN8sHWkeUqLeHXHQxQ1azja2IM7WIH+z/aLgzR6LhB3/MINNwtjesDpjGqTMj2JKQ==, + } + engines: { node: '>=12.0' } + '@shikijs/core@1.14.1': resolution: { @@ -1315,6 +1393,26 @@ packages: integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==, } + '@sindresorhus/is@4.6.0': + resolution: + { + integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==, + } + engines: { node: '>=10' } + + '@szmarczak/http-timer@4.0.6': + resolution: + { + integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==, + } + engines: { node: '>=10' } + + '@tokenizer/token@0.3.0': + resolution: + { + integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==, + } + '@tufjs/canonical-json@2.0.0': resolution: { @@ -1335,6 +1433,12 @@ packages: integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==, } + '@types/cacheable-request@6.0.3': + resolution: + { + integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==, + } + '@types/conventional-commits-parser@5.0.0': resolution: { @@ -1353,6 +1457,12 @@ packages: integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==, } + '@types/http-cache-semantics@4.0.4': + resolution: + { + integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==, + } + '@types/json-schema@7.0.15': resolution: { @@ -1365,6 +1475,12 @@ packages: integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==, } + '@types/keyv@3.1.4': + resolution: + { + integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==, + } + '@types/minimatch@3.0.5': resolution: { @@ -1383,6 +1499,12 @@ packages: integrity: sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==, } + '@types/node@20.11.19': + resolution: + { + integrity: sha512-7xMnVEcZFu0DikYjWOlRq7NTPETrm7teqUT2WkQjrTIkEgUyyGdWsj/Zg8bEJt5TNklzbPD1X3fqfsHw3SpapQ==, + } + '@types/node@22.1.0': resolution: { @@ -1395,6 +1517,12 @@ packages: integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==, } + '@types/responselike@1.0.3': + resolution: + { + integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==, + } + '@types/semver@7.5.8': resolution: { @@ -1537,64 +1665,83 @@ packages: integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==, } - '@vitest/coverage-istanbul@2.0.5': + '@vitest/coverage-istanbul@2.1.3': resolution: { - integrity: sha512-BvjWKtp7fiMAeYUD0mO5cuADzn1gmjTm54jm5qUEnh/O08riczun8rI4EtQlg3bWoRo2lT3FO8DmjPDX9ZthPw==, + integrity: sha512-FByj6ni54EzA4SXl5X3ugSeeBSI6MSEQBbvPefF6x6GCajePLeZSNYt7u0NOKUQbWpQpAdHHstrqR9ALEpnAxA==, } peerDependencies: - vitest: 2.0.5 + vitest: 2.1.3 - '@vitest/coverage-v8@2.0.5': + '@vitest/coverage-v8@2.1.3': resolution: { - integrity: sha512-qeFcySCg5FLO2bHHSa0tAZAOnAUbp4L6/A5JDuj9+bt53JREl8hpLjLHEWF0e/gWc8INVpJaqA7+Ene2rclpZg==, + integrity: sha512-2OJ3c7UPoFSmBZwqD2VEkUw6A/tzPF0LmW0ZZhhB8PFxuc+9IBG/FaSM+RLEenc7ljzFvGN+G0nGQoZnh7sy2A==, } peerDependencies: - vitest: 2.0.5 + '@vitest/browser': 2.1.3 + vitest: 2.1.3 + peerDependenciesMeta: + '@vitest/browser': + optional: true - '@vitest/expect@2.0.5': + '@vitest/expect@2.1.3': resolution: { - integrity: sha512-yHZtwuP7JZivj65Gxoi8upUN2OzHTi3zVfjwdpu2WrvCZPLwsJ2Ey5ILIPccoW23dd/zQBlJ4/dhi7DWNyXCpA==, + integrity: sha512-SNBoPubeCJhZ48agjXruCI57DvxcsivVDdWz+SSsmjTT4QN/DfHk3zB/xKsJqMs26bLZ/pNRLnCf0j679i0uWQ==, } - '@vitest/pretty-format@2.0.5': + '@vitest/mocker@2.1.3': resolution: { - integrity: sha512-h8k+1oWHfwTkyTkb9egzwNMfJAEx4veaPSnMeKbVSjp4euqGSbQlm5+6VHwTr7u4FJslVVsUG5nopCaAYdOmSQ==, + integrity: sha512-eSpdY/eJDuOvuTA3ASzCjdithHa+GIF1L4PqtEELl6Qa3XafdMLBpBlZCIUCX2J+Q6sNmjmxtosAG62fK4BlqQ==, + } + peerDependencies: + '@vitest/spy': 2.1.3 + msw: ^2.3.5 + vite: ^5.0.0 + peerDependenciesMeta: + msw: + optional: true + vite: + optional: true + + '@vitest/pretty-format@2.1.3': + resolution: + { + integrity: sha512-XH1XdtoLZCpqV59KRbPrIhFCOO0hErxrQCMcvnQete3Vibb9UeIOX02uFPfVn3Z9ZXsq78etlfyhnkmIZSzIwQ==, } - '@vitest/runner@2.0.5': + '@vitest/runner@2.1.3': resolution: { - integrity: sha512-TfRfZa6Bkk9ky4tW0z20WKXFEwwvWhRY+84CnSEtq4+3ZvDlJyY32oNTJtM7AW9ihW90tX/1Q78cb6FjoAs+ig==, + integrity: sha512-JGzpWqmFJ4fq5ZKHtVO3Xuy1iF2rHGV4d/pdzgkYHm1+gOzNZtqjvyiaDGJytRyMU54qkxpNzCx+PErzJ1/JqQ==, } - '@vitest/snapshot@2.0.5': + '@vitest/snapshot@2.1.3': resolution: { - integrity: sha512-SgCPUeDFLaM0mIUHfaArq8fD2WbaXG/zVXjRupthYfYGzc8ztbFbu6dUNOblBG7XLMR1kEhS/DNnfCZ2IhdDew==, + integrity: sha512-qWC2mWc7VAXmjAkEKxrScWHWFyCQx/cmiZtuGqMi+WwqQJ2iURsVY4ZfAK6dVo6K2smKRU6l3BPwqEBvhnpQGg==, } - '@vitest/spy@2.0.5': + '@vitest/spy@2.1.3': resolution: { - integrity: sha512-c/jdthAhvJdpfVuaexSrnawxZz6pywlTPe84LUB2m/4t3rl2fTo9NFGBG4oWgaD+FTgDDV8hJ/nibT7IfH3JfA==, + integrity: sha512-Nb2UzbcUswzeSP7JksMDaqsI43Sj5+Kry6ry6jQJT4b5gAK+NS9NED6mDb8FlMRCX8m5guaHCDZmqYMMWRy5nQ==, } - '@vitest/ui@2.0.5': + '@vitest/ui@2.1.3': resolution: { - integrity: sha512-m+ZpVt/PVi/nbeRKEjdiYeoh0aOfI9zr3Ria9LO7V2PlMETtAXJS3uETEZkc8Be2oOl8mhd7Ew+5SRBXRYncNw==, + integrity: sha512-2XwTrHVJw3t9NYES26LQUYy51ZB8W4bRPgqUH2Eyda3kIuOlYw1ZdPNU22qcVlUVx4WKgECFQOSXuopsczuVjQ==, } peerDependencies: - vitest: 2.0.5 + vitest: 2.1.3 - '@vitest/utils@2.0.5': + '@vitest/utils@2.1.3': resolution: { - integrity: sha512-d8HKbqIcya+GR67mkZbrzhS5kKhtp8dQLcmRZLGTscGVg7yImT82cIrhtn2L8+VujWcy6KZweApgNmPsTAO/UQ==, + integrity: sha512-xpiVfDSg1RrYT0tX6czgerkpcKFmFOF/gCr30+Mve5V2kewCy4Prn1/NDMSRwaSmT7PRaOF83wu+bEtsY1wrvA==, } '@yarnpkg/lockfile@1.1.0': @@ -1624,6 +1771,12 @@ packages: } hasBin: true + abbrev@1.1.1: + resolution: + { + integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==, + } + abbrev@2.0.0: resolution: { @@ -1653,6 +1806,13 @@ packages: integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==, } + agent-base@6.0.2: + resolution: + { + integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==, + } + engines: { node: '>= 6.0.0' } + agent-base@7.1.1: resolution: { @@ -1754,6 +1914,28 @@ packages: integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==, } + archive-type@4.0.0: + resolution: + { + integrity: sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA==, + } + engines: { node: '>=4' } + + are-we-there-yet@2.0.0: + resolution: + { + integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==, + } + engines: { node: '>=10' } + deprecated: This package is no longer supported. + + argon2@0.30.3: + resolution: + { + integrity: sha512-DoH/kv8c9127ueJSBxAVJXinW9+EuPA3EMUxoV2sAY1qDE5H9BjTyVF/aD2XyHqbqUWabgBkIfcP3ZZuGhbJdg==, + } + engines: { node: '>=14.0.0' } + argparse@1.0.10: resolution: { @@ -1868,6 +2050,12 @@ packages: } engines: { node: '>=8' } + asn1@0.2.6: + resolution: + { + integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==, + } + assertion-error@2.0.1: resolution: { @@ -1947,6 +2135,12 @@ packages: integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, } + bcrypt-pbkdf@1.0.2: + resolution: + { + integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==, + } + before-after-hook@2.2.3: resolution: { @@ -1960,12 +2154,24 @@ packages: } engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + bl@1.2.3: + resolution: + { + integrity: sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==, + } + bl@4.1.0: resolution: { integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==, } + bluebird@3.7.2: + resolution: + { + integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==, + } + brace-expansion@1.1.11: resolution: { @@ -1993,6 +2199,30 @@ packages: engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } hasBin: true + buffer-alloc-unsafe@1.1.0: + resolution: + { + integrity: sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==, + } + + buffer-alloc@1.2.0: + resolution: + { + integrity: sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==, + } + + buffer-crc32@0.2.13: + resolution: + { + integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==, + } + + buffer-fill@1.0.0: + resolution: + { + integrity: sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==, + } + buffer-from@1.1.2: resolution: { @@ -2005,6 +2235,20 @@ packages: integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==, } + buildcheck@0.0.6: + resolution: + { + integrity: sha512-8f9ZJCUXyT1M35Jx7MkBgmBMo3oHTTBIPLiY9xyL0pl3T5RwcPEY8cUHr5LBNfu/fk6c2T4DJZuVM/8ZZT2D2A==, + } + engines: { node: '>=10.0.0' } + + builtin-modules@3.3.0: + resolution: + { + integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==, + } + engines: { node: '>=6' } + byte-size@8.1.1: resolution: { @@ -2026,6 +2270,20 @@ packages: } engines: { node: ^16.14.0 || >=18.0.0 } + cacheable-lookup@5.0.4: + resolution: + { + integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==, + } + engines: { node: '>=10.6.0' } + + cacheable-request@7.0.4: + resolution: + { + integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==, + } + engines: { node: '>=8' } + cachedir@2.3.0: resolution: { @@ -2115,6 +2373,12 @@ packages: } engines: { node: '>= 16' } + chownr@1.1.4: + resolution: + { + integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==, + } + chownr@2.0.0: resolution: { @@ -2143,6 +2407,13 @@ packages: } engines: { node: '>=6' } + cli-color@2.0.4: + resolution: + { + integrity: sha512-zlnpg0jNcibNrO7GG9IeHH7maWFeCz+Ja1wx/7tZNU5ASSSSZ+/qZciM0/LHCYxSdqv5h2sdbQ/PXYdOuetXvA==, + } + engines: { node: '>=0.10' } + cli-cursor@3.1.0: resolution: { @@ -2157,6 +2428,13 @@ packages: } engines: { node: '>=18' } + cli-progress-footer@2.3.3: + resolution: + { + integrity: sha512-p+hyTPxSZWG1c3Qy1DLBoGZhpeA3Y6AMlKrtbGpMMSKpezbSLel8gW4e5You4FNlHb3wS/M1JU594OAWe/Totg==, + } + engines: { node: '>=10.0' } + cli-spinners@2.6.1: resolution: { @@ -2171,6 +2449,13 @@ packages: } engines: { node: '>=6' } + cli-sprintf-format@1.1.1: + resolution: + { + integrity: sha512-BbEjY9BEdA6wagVwTqPvmAwGB24U93rQPBFZUT8lNCDxXzre5LFHQUTJc70czjgUomVg8u8R5kW8oY9DYRFNeg==, + } + engines: { node: '>=6.0' } + cli-truncate@4.0.0: resolution: { @@ -2205,6 +2490,12 @@ packages: } engines: { node: '>=6' } + clone-response@1.0.3: + resolution: + { + integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==, + } + clone@1.0.4: resolution: { @@ -2278,6 +2569,12 @@ packages: } engines: { node: '>=18' } + commander@2.20.3: + resolution: + { + integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==, + } + commitizen@4.3.0: resolution: { @@ -2323,6 +2620,13 @@ packages: integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==, } + content-disposition@0.5.4: + resolution: + { + integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==, + } + engines: { node: '>= 0.6' } + conventional-changelog-angular@7.0.0: resolution: { @@ -2443,6 +2747,13 @@ packages: typescript: optional: true + cpu-features@0.0.10: + resolution: + { + integrity: sha512-9IkYqtX3YHPCzoVg1Py+o9057a3i0fp7S530UWokCSaFVTc7CwXPRiOjRjBQQ18ZCNafx78YfnG+HALxtVmOGA==, + } + engines: { node: '>=10.0.0' } + cross-env@7.0.3: resolution: { @@ -2472,10 +2783,10 @@ packages: engines: { node: '>=4' } hasBin: true - cssstyle@4.0.1: + cssstyle@4.1.0: resolution: { - integrity: sha512-8ZYiJ3A/3OkDd093CBT/0UKDWry7ak4BdPTFP2+QEP7cmhouyq/Up709ASSj2cK02BbZiMgk7kYjZNS4QP5qrQ==, + integrity: sha512-h66W1URKpBS5YMI/V8PyXvTMFT8SupJ1IzoIV8IeBC/ji8WVmrO8dGlTi+2dh6whmdk6BiKJLD/ZBkhWbcg6nA==, } engines: { node: '>=18' } @@ -2486,6 +2797,13 @@ packages: } engines: { node: '>= 10' } + d@1.0.2: + resolution: + { + integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==, + } + engines: { node: '>=0.12' } + damerau-levenshtein@1.0.8: resolution: { @@ -2563,6 +2881,18 @@ packages: supports-color: optional: true + debug@4.3.7: + resolution: + { + integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==, + } + engines: { node: '>=6.0' } + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + decamelize-keys@1.1.1: resolution: { @@ -2583,6 +2913,48 @@ packages: integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==, } + decompress-response@6.0.0: + resolution: + { + integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==, + } + engines: { node: '>=10' } + + decompress-tar@4.1.1: + resolution: + { + integrity: sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==, + } + engines: { node: '>=4' } + + decompress-tarbz2@4.1.1: + resolution: + { + integrity: sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==, + } + engines: { node: '>=4' } + + decompress-targz@4.1.1: + resolution: + { + integrity: sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==, + } + engines: { node: '>=4' } + + decompress-unzip@4.0.1: + resolution: + { + integrity: sha512-1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw==, + } + engines: { node: '>=4' } + + decompress@4.2.1: + resolution: + { + integrity: sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==, + } + engines: { node: '>=4' } + dedent@0.7.0: resolution: { @@ -2619,6 +2991,19 @@ packages: integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==, } + defer-to-connect@2.0.1: + resolution: + { + integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==, + } + engines: { node: '>=10' } + + deferred@0.7.11: + resolution: + { + integrity: sha512-8eluCl/Blx4YOGwMapBvXRKxHXhA8ejDXYzEaK8+/gtcm8hRMhSLmXSqDmNUKNc/C8HNSmuyyp/hflhqDAvK2A==, + } + define-data-property@1.1.4: resolution: { @@ -2647,6 +3032,12 @@ packages: } engines: { node: '>=0.4.0' } + delegates@1.0.0: + resolution: + { + integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==, + } + deprecation@2.3.1: resolution: { @@ -2681,6 +3072,13 @@ packages: } engines: { node: '>=8' } + detect-libc@2.0.3: + resolution: + { + integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==, + } + engines: { node: '>=8' } + diff-sequences@29.6.3: resolution: { @@ -2695,6 +3093,20 @@ packages: } engines: { node: '>=8' } + docker-modem@3.0.8: + resolution: + { + integrity: sha512-f0ReSURdM3pcKPNS30mxOHSbaFLcknGmQjwSfmbcdOw1XWKXVhukM3NJHhr7NpY9BIyyWQb0EBo3KQvvuU5egQ==, + } + engines: { node: '>= 8.0' } + + dockerode@3.3.5: + resolution: + { + integrity: sha512-/0YNa3ZDNeLr/tSckmD69+Gq+qVNhvKfAHNeZJBnp7EOP6RGKV8ORrJHkUn20So5wU+xxT7+1n5u8PjHbfjbSA==, + } + engines: { node: '>= 8.0' } + doctrine@2.1.0: resolution: { @@ -2736,6 +3148,12 @@ packages: integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==, } + duration@0.2.2: + resolution: + { + integrity: sha512-06kgtea+bGreF5eKYgI/36A6pLXggY7oR4p1pq4SmdFBn1ReOL5D8RhG64VrqfTTKNucqqtBAwEj8aB88mcqrg==, + } + eastasianwidth@0.2.0: resolution: { @@ -2889,15 +3307,48 @@ packages: } engines: { node: '>= 0.4' } - esbuild-plugin-browserslist@0.14.0: + es5-ext@0.10.64: + resolution: + { + integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==, + } + engines: { node: '>=0.10' } + + es6-iterator@2.0.3: + resolution: + { + integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==, + } + + es6-set@0.1.6: + resolution: + { + integrity: sha512-TE3LgGLDIBX332jq3ypv6bcOpkLO0AslAQo7p2VqX/1N46YNsvIWgvjojjSEnWEGWMhr1qUbYeTSir5J6mFHOw==, + } + engines: { node: '>=0.12' } + + es6-symbol@3.1.4: + resolution: + { + integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==, + } + engines: { node: '>=0.12' } + + es6-weak-map@2.0.3: resolution: { - integrity: sha512-z/3nq4yIgeRiABXj1pdCz3NvYyAgny070hYjJsML7ag0VogZeE6M0TXg66EloNpzg9rBXOkKQgwHBQ7qz2ZC4g==, + integrity: sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==, + } + + esbuild-plugin-browserslist@0.15.0: + resolution: + { + integrity: sha512-nZeEev2eIVLFWYcwp0iKv+lk85Yq2YIDhzCkJ5Dm5s7DxKANfjqUTyE1NRY2mEmwEW7SeAWraQEQdJP+5gV1RA==, } engines: { node: '>=18' } peerDependencies: browserslist: ^4.21.8 - esbuild: ~0.23.0 + esbuild: ~0.24.0 esbuild@0.21.5: resolution: @@ -3086,6 +3537,20 @@ packages: engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } hasBin: true + esniff@1.1.3: + resolution: + { + integrity: sha512-SLBLpfE7xWgF/HbzhVuAwqnJDRqSCNZqcqaIMVm+f+PbTp1kFRWu6BuT83SATb4Tp+ovr+S+u7vDH7/UErAOkw==, + } + engines: { node: '>=0.10' } + + esniff@2.0.1: + resolution: + { + integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==, + } + engines: { node: '>=0.10' } + espree@9.6.1: resolution: { @@ -3135,6 +3600,12 @@ packages: } engines: { node: '>=0.10.0' } + event-emitter@0.3.5: + resolution: + { + integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==, + } + eventemitter3@4.0.7: resolution: { @@ -3157,21 +3628,41 @@ packages: execa@8.0.1: resolution: { - integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==, + integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==, + } + engines: { node: '>=16.17' } + + expand-tilde@2.0.2: + resolution: + { + integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==, + } + engines: { node: '>=0.10.0' } + + exponential-backoff@3.1.1: + resolution: + { + integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==, + } + + ext-list@2.2.2: + resolution: + { + integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==, } - engines: { node: '>=16.17' } + engines: { node: '>=0.10.0' } - expand-tilde@2.0.2: + ext-name@5.0.0: resolution: { - integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==, + integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==, } - engines: { node: '>=0.10.0' } + engines: { node: '>=4' } - exponential-backoff@3.1.1: + ext@1.7.0: resolution: { - integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==, + integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==, } external-editor@3.1.0: @@ -3218,6 +3709,23 @@ packages: integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==, } + fd-slicer@1.1.0: + resolution: + { + integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==, + } + + fdir@6.4.2: + resolution: + { + integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==, + } + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + fflate@0.8.2: resolution: { @@ -3238,12 +3746,61 @@ packages: } engines: { node: ^10.12.0 || >=12.0.0 } + file-type@16.5.4: + resolution: + { + integrity: sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw==, + } + engines: { node: '>=10' } + + file-type@3.9.0: + resolution: + { + integrity: sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==, + } + engines: { node: '>=0.10.0' } + + file-type@4.4.0: + resolution: + { + integrity: sha512-f2UbFQEk7LXgWpi5ntcO86OeA/cC80fuDDDaX/fZ2ZGel+AF7leRQqBBW1eJNiiQkrZlAoM6P+VYP5P6bOlDEQ==, + } + engines: { node: '>=4' } + + file-type@5.2.0: + resolution: + { + integrity: sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==, + } + engines: { node: '>=4' } + + file-type@6.2.0: + resolution: + { + integrity: sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==, + } + engines: { node: '>=4' } + filelist@1.0.4: resolution: { integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==, } + filename-reserved-regex@2.0.0: + resolution: + { + integrity: sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==, + } + engines: { node: '>=4' } + + filenamify@4.3.0: + resolution: + { + integrity: sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==, + } + engines: { node: '>=8' } + fill-range@7.1.1: resolution: { @@ -3257,6 +3814,13 @@ packages: integrity: sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg==, } + find-requires@1.0.0: + resolution: + { + integrity: sha512-UME7hNwBfzeISSFQcBEDemEEskpOjI/shPrpJM5PI4DSdn6hX0dmz+2dL70blZER2z8tSnTRL+2rfzlYgtbBoQ==, + } + hasBin: true + find-root@1.1.0: resolution: { @@ -3396,6 +3960,13 @@ packages: integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, } + fs2@0.3.15: + resolution: + { + integrity: sha512-T684iG2bR/3g5byqXvYYnJyqkXA7MQdlJx5DvCe0BJ5CH9aMRRc4C11bl75D1MnypvERdJ7Cft5BFpU/eClCMw==, + } + engines: { node: '>=6' } + fsevents@2.3.3: resolution: { @@ -3423,6 +3994,14 @@ packages: integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, } + gauge@3.0.2: + resolution: + { + integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==, + } + engines: { node: '>=10' } + deprecated: This package is no longer supported. + gensync@1.0.0-beta.2: resolution: { @@ -3472,6 +4051,20 @@ packages: } engines: { node: '>=8' } + get-stream@2.3.1: + resolution: + { + integrity: sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==, + } + engines: { node: '>=0.10.0' } + + get-stream@5.2.0: + resolution: + { + integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==, + } + engines: { node: '>=8' } + get-stream@6.0.0: resolution: { @@ -3479,6 +4072,13 @@ packages: } engines: { node: '>=10' } + get-stream@6.0.1: + resolution: + { + integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==, + } + engines: { node: '>=10' } + get-stream@8.0.1: resolution: { @@ -3632,6 +4232,13 @@ packages: integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, } + got@11.8.6: + resolution: + { + integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==, + } + engines: { node: '>=10.19.0' } + graceful-fs@4.2.11: resolution: { @@ -3772,6 +4379,20 @@ packages: } engines: { node: '>= 14' } + http2-wrapper@1.0.3: + resolution: + { + integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==, + } + engines: { node: '>=10.19.0' } + + https-proxy-agent@5.0.1: + resolution: + { + integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==, + } + engines: { node: '>= 6' } + https-proxy-agent@7.0.5: resolution: { @@ -3835,6 +4456,13 @@ packages: } engines: { node: '>= 4' } + ignore@5.3.2: + resolution: + { + integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==, + } + engines: { node: '>= 4' } + import-fresh@3.3.0: resolution: { @@ -4089,6 +4717,12 @@ packages: } engines: { node: '>= 0.4' } + is-natural-number@4.0.1: + resolution: + { + integrity: sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ==, + } + is-negative-zero@2.0.3: resolution: { @@ -4151,6 +4785,12 @@ packages: integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==, } + is-promise@2.2.2: + resolution: + { + integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==, + } + is-regex@1.1.4: resolution: { @@ -4178,6 +4818,13 @@ packages: integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==, } + is-stream@1.1.0: + resolution: + { + integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==, + } + engines: { node: '>=0.10.0' } + is-stream@2.0.0: resolution: { @@ -4414,10 +5061,10 @@ packages: integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==, } - jsdom@25.0.0: + jsdom@25.0.1: resolution: { - integrity: sha512-OhoFVT59T7aEq75TVw9xxEfkXgacpqAhQaYgP9y/fDqWQCMB/b1H66RfmPm/MaeaAIU9nDwMOVTlPN51+ao6CQ==, + integrity: sha512-8i7LzZj7BF8uplX+ZyOlIz86V6TAsSs+np6m1kpW9u0JWi4z/1t+FzcK1aek+ybTnAC4KhBL4uXCNT0wcUIeCw==, } engines: { node: '>=18' } peerDependencies: @@ -4542,6 +5189,12 @@ packages: integrity: sha512-S59eriX5u3/QhMNq3v/gm8Kd0w8OS6Tz2FS1NG4blv+z0MuQcBRJyFWjdovM0Rad4/P4aUPFtnkNjMjyMlMSYA==, } + jwt-decode@3.1.2: + resolution: + { + integrity: sha512-UfpWE/VZn0iP50d8cz9NrZLM9lSWhcJ+0Gt/nm4by88UL+J1SiKN8/5dkjMmbEzwL2CAe+67GsegCbIKtbp75A==, + } + keyv@4.5.4: resolution: { @@ -4752,6 +5405,15 @@ packages: integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, } + log-node@8.0.3: + resolution: + { + integrity: sha512-1UBwzgYiCIDFs8A0rM2QdBFo8Wd8UQ0HrSTu/MNI+/2zN3NoHRj2fhplurAyuxTYUXu3Oohugq1jAn5s05u1MQ==, + } + engines: { node: '>=10.0' } + peerDependencies: + log: ^6.0.0 + log-symbols@4.1.0: resolution: { @@ -4766,6 +5428,13 @@ packages: } engines: { node: '>=18' } + log@6.3.2: + resolution: + { + integrity: sha512-ek8NRg/OPvS9ISOJNWNAz5vZcpYacWNFDWNJjj5OXsc6YuKacfey6wF04cXz/tOJIVrZ2nGSkHpAY5qKtF6ISg==, + } + engines: { node: '>=0.12' } + longest@2.0.1: resolution: { @@ -4786,6 +5455,13 @@ packages: integrity: sha512-edNu/8D5MKVfGVFRhFf8aAxiTM6Wumfz5XsaatSxlD3w4R1d/WEKUTydCdPGbl9K7QG/Ca3GnDV2sIKIpXRQcw==, } + lowercase-keys@2.0.0: + resolution: + { + integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==, + } + engines: { node: '>=8' } + lru-cache@10.4.3: resolution: { @@ -4805,6 +5481,12 @@ packages: } engines: { node: '>=10' } + lru-queue@0.1.0: + resolution: + { + integrity: sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==, + } + lunr@2.3.9: resolution: { @@ -4823,6 +5505,13 @@ packages: integrity: sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q==, } + make-dir@1.3.0: + resolution: + { + integrity: sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==, + } + engines: { node: '>=4' } + make-dir@2.1.0: resolution: { @@ -4830,6 +5519,13 @@ packages: } engines: { node: '>=6' } + make-dir@3.1.0: + resolution: + { + integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==, + } + engines: { node: '>=8' } + make-dir@4.0.0: resolution: { @@ -4871,6 +5567,13 @@ packages: integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==, } + memoizee@0.4.17: + resolution: + { + integrity: sha512-DGqD7Hjpi/1or4F/aYAspXKNm5Yili0QDAFAY4QYvpqpgiY6+1jOfqpmByzjxbWd/T9mChbCArXAbDAsTm5oXA==, + } + engines: { node: '>=0.12' } + meow@12.1.1: resolution: { @@ -4953,6 +5656,20 @@ packages: } engines: { node: '>=18' } + mimic-response@1.0.1: + resolution: + { + integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==, + } + engines: { node: '>=4' } + + mimic-response@3.1.0: + resolution: + { + integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==, + } + engines: { node: '>=10' } + min-indent@1.0.1: resolution: { @@ -5089,6 +5806,12 @@ packages: } engines: { node: '>= 8' } + mkdirp-classic@0.5.3: + resolution: + { + integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==, + } + mkdirp@1.0.4: resolution: { @@ -5143,6 +5866,12 @@ packages: } engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + nan@2.22.0: + resolution: + { + integrity: sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw==, + } + nanoid@3.3.7: resolution: { @@ -5157,6 +5886,12 @@ packages: integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==, } + ncjsm@4.3.2: + resolution: + { + integrity: sha512-6d1VWA7FY31CpI4Ki97Fpm36jfURkVbpktizp8aoVViTZRQgr/0ddmlKerALSSlzfwQRBeSq1qwwVcBJK4Sk7Q==, + } + negotiator@0.6.3: resolution: { @@ -5170,6 +5905,18 @@ packages: integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==, } + next-tick@1.1.0: + resolution: + { + integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==, + } + + node-addon-api@5.1.0: + resolution: + { + integrity: sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==, + } + node-fetch@2.6.7: resolution: { @@ -5214,6 +5961,14 @@ packages: integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==, } + nopt@5.0.0: + resolution: + { + integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==, + } + engines: { node: '>=6' } + hasBin: true + nopt@7.2.1: resolution: { @@ -5242,6 +5997,13 @@ packages: } engines: { node: ^16.14.0 || >=18.0.0 } + normalize-url@6.1.0: + resolution: + { + integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==, + } + engines: { node: '>=10' } + npm-bundled@3.0.1: resolution: { @@ -5312,6 +6074,13 @@ packages: } engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + npmlog@5.0.1: + resolution: + { + integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==, + } + deprecated: This package is no longer supported. + nwsapi@2.2.12: resolution: { @@ -5458,6 +6227,20 @@ packages: } engines: { node: '>=0.10.0' } + p-cancelable@2.1.1: + resolution: + { + integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==, + } + engines: { node: '>=8' } + + p-event@4.2.0: + resolution: + { + integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==, + } + engines: { node: '>=8' } + p-finally@1.0.0: resolution: { @@ -5740,6 +6523,19 @@ packages: } engines: { node: '>= 14.16' } + peek-readable@4.1.0: + resolution: + { + integrity: sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg==, + } + engines: { node: '>=8' } + + pend@1.2.0: + resolution: + { + integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==, + } + picocolors@1.0.1: resolution: { @@ -5759,6 +6555,13 @@ packages: } engines: { node: '>=8.6' } + picomatch@4.0.2: + resolution: + { + integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==, + } + engines: { node: '>=12' } + pidtree@0.6.0: resolution: { @@ -5795,6 +6598,20 @@ packages: } engines: { node: '>=10' } + pinkie-promise@2.0.1: + resolution: + { + integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==, + } + engines: { node: '>=0.10.0' } + + pinkie@2.0.4: + resolution: + { + integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==, + } + engines: { node: '>=0.10.0' } + pkg-dir@4.2.0: resolution: { @@ -5830,10 +6647,10 @@ packages: } engines: { node: '>= 0.8.0' } - prettier@3.3.2: + prettier@3.3.3: resolution: { - integrity: sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA==, + integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==, } engines: { node: '>=14' } hasBin: true @@ -5858,6 +6675,13 @@ packages: integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==, } + process-utils@4.0.0: + resolution: + { + integrity: sha512-fMyMQbKCxX51YxR7YGCzPjLsU3yDzXFkP4oi1/Mt5Ixnk7GO/7uUTj8mrCHUwuvozWzI+V7QSJR9cZYnwNOZPg==, + } + engines: { node: '>=10.0' } + proggy@2.0.0: resolution: { @@ -5920,10 +6744,10 @@ packages: integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==, } - psl@1.9.0: + pump@3.0.2: resolution: { - integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==, + integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==, } punycode.js@2.3.1: @@ -5940,12 +6764,6 @@ packages: } engines: { node: '>=6' } - querystringify@2.2.0: - resolution: - { - integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==, - } - queue-microtask@1.2.3: resolution: { @@ -5959,6 +6777,13 @@ packages: } engines: { node: '>=8' } + quick-lru@5.1.1: + resolution: + { + integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==, + } + engines: { node: '>=10' } + react-is@16.13.1: resolution: { @@ -6040,6 +6865,13 @@ packages: } engines: { node: '>= 6' } + readable-web-to-node-stream@3.0.2: + resolution: + { + integrity: sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==, + } + engines: { node: '>=8' } + redent@3.0.0: resolution: { @@ -6081,10 +6913,10 @@ packages: } engines: { node: '>=0.10.0' } - requires-port@1.0.0: + resolve-alpn@1.2.1: resolution: { - integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==, + integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==, } resolve-cwd@3.0.0: @@ -6127,7 +6959,13 @@ packages: { integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==, } - hasBin: true + hasBin: true + + responselike@2.0.1: + resolution: + { + integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==, + } restore-cursor@3.1.0: resolution: @@ -6187,12 +7025,6 @@ packages: engines: { node: '>=18.0.0', npm: '>=8.0.0' } hasBin: true - rrweb-cssom@0.6.0: - resolution: - { - integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==, - } - rrweb-cssom@0.7.1: resolution: { @@ -6257,6 +7089,13 @@ packages: } engines: { node: '>=v12.22.7' } + seek-bzip@1.0.6: + resolution: + { + integrity: sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==, + } + hasBin: true + semver@5.7.2: resolution: { @@ -6279,6 +7118,12 @@ packages: engines: { node: '>=10' } hasBin: true + serverless-scaleway-functions@0.4.12: + resolution: + { + integrity: sha512-G7Oovw3lUVZj70RgGW8jq3HmzFb+vWtCiIDBV5GDudQ1MByAdOaZL2nYw+F23iF1jHPkv2PrlbRjbjGtU6HJJA==, + } + set-blocking@2.0.0: resolution: { @@ -6408,20 +7253,27 @@ packages: } engines: { node: '>= 10.0.0', npm: '>= 3.0.0' } - sort-keys@2.0.0: + sort-keys-length@1.0.1: resolution: { - integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==, + integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==, } - engines: { node: '>=4' } + engines: { node: '>=0.10.0' } - source-map-js@1.2.0: + sort-keys@1.1.2: resolution: { - integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==, + integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==, } engines: { node: '>=0.10.0' } + sort-keys@2.0.0: + resolution: + { + integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==, + } + engines: { node: '>=4' } + source-map-js@1.2.1: resolution: { @@ -6460,6 +7312,12 @@ packages: integrity: sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==, } + split-ca@1.0.1: + resolution: + { + integrity: sha512-Q5thBSxp5t8WPTTJQS59LrGqOZqOsrhDGDVm8azCqIBjSBd7nd9o2PM+mDulQQkh8h//4U6hFZnc/mul8t5pWQ==, + } + split2@3.2.2: resolution: { @@ -6491,6 +7349,20 @@ packages: integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==, } + sprintf-kit@2.0.2: + resolution: + { + integrity: sha512-lnapdj6W4LflHZGKvl9eVkz5YF0xaTrqpRWVA4cNVOTedwqifIP8ooGImldzT/4IAN5KXFQAyXTdLidYVQdyag==, + } + engines: { node: '>=0.12' } + + ssh2@1.16.0: + resolution: + { + integrity: sha512-r1X4KsBGedJqo7h8F5c4Ybpcr5RjyP+aWIG007uBPRjmdQWfEiVLzSK71Zji1B9sKxwaCvD8y8cwSkYrlLiRRg==, + } + engines: { node: '>=10.16.0' } + ssri@10.0.6: resolution: { @@ -6605,6 +7477,12 @@ packages: } engines: { node: '>=8' } + strip-dirs@2.1.0: + resolution: + { + integrity: sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==, + } + strip-final-newline@2.0.0: resolution: { @@ -6633,6 +7511,13 @@ packages: } engines: { node: '>=8' } + strip-outer@1.0.1: + resolution: + { + integrity: sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==, + } + engines: { node: '>=0.10.0' } + strong-log-transformer@2.1.0: resolution: { @@ -6641,6 +7526,13 @@ packages: engines: { node: '>=4' } hasBin: true + strtok3@6.3.0: + resolution: + { + integrity: sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==, + } + engines: { node: '>=10' } + supports-color@5.5.0: resolution: { @@ -6648,6 +7540,13 @@ packages: } engines: { node: '>=4' } + supports-color@6.1.0: + resolution: + { + integrity: sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==, + } + engines: { node: '>=6' } + supports-color@7.2.0: resolution: { @@ -6655,6 +7554,13 @@ packages: } engines: { node: '>=8' } + supports-color@8.1.1: + resolution: + { + integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==, + } + engines: { node: '>=10' } + supports-preserve-symlinks-flag@1.0.0: resolution: { @@ -6668,6 +7574,25 @@ packages: integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==, } + tar-fs@2.0.1: + resolution: + { + integrity: sha512-6tzWDMeroL87uF/+lin46k+Q+46rAJ0SyPGz7OW7wTgblI273hsBqk2C1j0/xNadNLKDTUL9BukSjB7cwgmlPA==, + } + + tar-fs@2.1.1: + resolution: + { + integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==, + } + + tar-stream@1.6.2: + resolution: + { + integrity: sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==, + } + engines: { node: '>= 0.8.0' } + tar-stream@2.2.0: resolution: { @@ -6728,6 +7653,13 @@ packages: integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, } + timers-ext@0.1.8: + resolution: + { + integrity: sha512-wFH7+SEAcKfJpfLPkrgMPvvwnEtj8W4IurvEyrKsDleXnKLCDw71w8jltvfLa8Rm4qQxxT4jmDBYbJG/z7qoww==, + } + engines: { node: '>=0.12' } + tinybench@2.9.0: resolution: { @@ -6740,6 +7672,13 @@ packages: integrity: sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==, } + tinyglobby@0.2.10: + resolution: + { + integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==, + } + engines: { node: '>=12.0.0' } + tinypool@1.0.0: resolution: { @@ -6761,6 +7700,19 @@ packages: } engines: { node: '>=14.0.0' } + tldts-core@6.1.56: + resolution: + { + integrity: sha512-Ihxv/Bwiyj73icTYVgBUkQ3wstlCglLoegSgl64oSrGUBX1hc7Qmf/CnrnJLaQdZrCnTaLqMYOwKMKlkfkFrxQ==, + } + + tldts@6.1.56: + resolution: + { + integrity: sha512-2PT1oRZCxtsbLi5R2SQjE/v4vvgRggAtVcYj+3Rrcnu2nPZvu7m64+gDa/EsVSWd3QzEc0U0xN+rbEKsJC47kA==, + } + hasBin: true + tmp@0.0.33: resolution: { @@ -6775,6 +7727,12 @@ packages: } engines: { node: '>=14.14' } + to-buffer@1.1.1: + resolution: + { + integrity: sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==, + } + to-fast-properties@2.0.0: resolution: { @@ -6789,6 +7747,13 @@ packages: } engines: { node: '>=8.0' } + token-types@4.2.1: + resolution: + { + integrity: sha512-6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ==, + } + engines: { node: '>=10' } + totalist@3.0.1: resolution: { @@ -6796,12 +7761,12 @@ packages: } engines: { node: '>=6' } - tough-cookie@4.1.4: + tough-cookie@5.0.0: resolution: { - integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==, + integrity: sha512-FRKsF7cz96xIIeMZ82ehjC3xW2E+O2+v11udrDYewUbszngYhsGa8z6YUMMzO9QJZzzyd0nGGXnML/TReX6W8Q==, } - engines: { node: '>=6' } + engines: { node: '>=16' } tr46@0.0.3: resolution: @@ -6830,6 +7795,13 @@ packages: } engines: { node: '>=8' } + trim-repeated@1.0.0: + resolution: + { + integrity: sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==, + } + engines: { node: '>=0.10.0' } + ts-api-utils@1.3.0: resolution: { @@ -6880,6 +7852,12 @@ packages: } engines: { node: ^16.14.0 || >=18.0.0 } + tweetnacl@0.14.5: + resolution: + { + integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==, + } + type-check@0.4.0: resolution: { @@ -6936,6 +7914,12 @@ packages: } engines: { node: '>=16' } + type@2.7.3: + resolution: + { + integrity: sha512-8j+1QmAbPvLZow5Qpi6NCaN8FB60p/6x8/vfNqOk/hC+HuvFZhL4+WfekuhQLiqFZXOgQdrs3B+XxEmCc6b3FQ==, + } + typed-array-buffer@1.0.2: resolution: { @@ -6988,6 +7972,14 @@ packages: engines: { node: '>=14.17' } hasBin: true + typescript@5.6.3: + resolution: + { + integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==, + } + engines: { node: '>=14.17' } + hasBin: true + uc.micro@2.1.0: resolution: { @@ -7008,12 +8000,30 @@ packages: integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, } + unbzip2-stream@1.4.3: + resolution: + { + integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==, + } + + undici-types@5.26.5: + resolution: + { + integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==, + } + undici-types@6.13.0: resolution: { integrity: sha512-xtFJHudx8S2DSoujjMd1WeWvn7KKWFRESZTMeL1RptAYERu29D6jphMjjY+vn96jvN3kVPDNxU/E13VTaXj6jg==, } + uni-global@1.0.0: + resolution: + { + integrity: sha512-WWM3HP+siTxzIWPNUg7hZ4XO8clKi6NoCAJJWnuRL+BAqyFXF8gC03WNyTefGoUXYc47uYgXxpKLIEvo65PEHw==, + } + unicorn-magic@0.1.0: resolution: { @@ -7041,13 +8051,6 @@ packages: integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==, } - universalify@0.2.0: - resolution: - { - integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==, - } - engines: { node: '>= 4.0.0' } - universalify@2.0.1: resolution: { @@ -7077,12 +8080,6 @@ packages: integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, } - url-parse@1.5.10: - resolution: - { - integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==, - } - util-deprecate@1.0.2: resolution: { @@ -7096,6 +8093,13 @@ packages: } hasBin: true + uuid@8.3.2: + resolution: + { + integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==, + } + hasBin: true + validate-npm-package-license@3.0.4: resolution: { @@ -7109,18 +8113,18 @@ packages: } engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - vite-node@2.0.5: + vite-node@2.1.3: resolution: { - integrity: sha512-LdsW4pxj0Ot69FAoXZ1yTnA9bjGohr2yNBU7QKRxpz8ITSkhuDl6h3zS/tvgz4qrNjeRnvrWeXQ8ZF7Um4W00Q==, + integrity: sha512-I1JadzO+xYX887S39Do+paRePCKoiDrWRRjp9kkG5he0t7RXNvPAJPCQSJqbGN4uCrFFeS3Kj3sLqY8NMYBEdA==, } engines: { node: ^18.0.0 || >=20.0.0 } hasBin: true - vite@5.4.6: + vite@5.4.10: resolution: { - integrity: sha512-IeL5f8OO5nylsgzd9tq4qD2QqI0k2CQLGrWD0rCN0EQJZpBK5vJAx0I+GDkMOXxQX/OfFHMuLIx6ddAxGX/k+Q==, + integrity: sha512-1hvaPshuPUtxeQ0hsVH3Mud0ZanOLwVTneA1EgbAM5LhaZEqyPWGRQ7BtaMvUrTDeEaC8pxtj6a6jku3x4z6SQ==, } engines: { node: ^18.0.0 || >=20.0.0 } hasBin: true @@ -7151,18 +8155,18 @@ packages: terser: optional: true - vitest@2.0.5: + vitest@2.1.3: resolution: { - integrity: sha512-8GUxONfauuIdeSl5f9GTgVEpg5BTOlplET4WEDaeY2QBiN8wSm68vxN/tb5z405OwppfoCavnwXafiaYBC/xOA==, + integrity: sha512-Zrxbg/WiIvUP2uEzelDNTXmEMJXuzJ1kCpbDvaKByFA9MNeO95V+7r/3ti0qzJzrxdyuUw5VduN7k+D3VmVOSA==, } engines: { node: ^18.0.0 || >=20.0.0 } hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/node': ^18.0.0 || >=20.0.0 - '@vitest/browser': 2.0.5 - '@vitest/ui': 2.0.5 + '@vitest/browser': 2.1.3 + '@vitest/ui': 2.1.3 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -7355,6 +8359,13 @@ packages: integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==, } + write-file-atomic@4.0.2: + resolution: + { + integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==, + } + engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + write-file-atomic@5.0.1: resolution: { @@ -7474,6 +8485,12 @@ packages: } engines: { node: '>=12' } + yauzl@2.10.0: + resolution: + { + integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==, + } + yocto-queue@0.1.0: resolution: { @@ -7616,13 +8633,15 @@ snapshots: '@babel/helper-validator-identifier': 7.24.7 to-fast-properties: 2.0.0 + '@balena/dockerignore@1.0.2': {} + '@bcoe/v8-coverage@0.2.3': {} - '@commitlint/cli@19.5.0(@types/node@22.1.0)(typescript@5.5.4)': + '@commitlint/cli@19.5.0(@types/node@22.1.0)(typescript@5.6.3)': dependencies: '@commitlint/format': 19.5.0 '@commitlint/lint': 19.5.0 - '@commitlint/load': 19.5.0(@types/node@22.1.0)(typescript@5.5.4) + '@commitlint/load': 19.5.0(@types/node@22.1.0)(typescript@5.6.3) '@commitlint/read': 19.5.0 '@commitlint/types': 19.5.0 tinyexec: 0.3.0 @@ -7678,15 +8697,15 @@ snapshots: '@commitlint/rules': 19.5.0 '@commitlint/types': 19.5.0 - '@commitlint/load@19.2.0(@types/node@22.1.0)(typescript@5.5.4)': + '@commitlint/load@19.2.0(@types/node@22.1.0)(typescript@5.6.3)': dependencies: '@commitlint/config-validator': 19.0.3 '@commitlint/execute-rule': 19.0.0 '@commitlint/resolve-extends': 19.1.0 '@commitlint/types': 19.0.3 chalk: 5.3.0 - cosmiconfig: 9.0.0(typescript@5.5.4) - cosmiconfig-typescript-loader: 5.0.0(@types/node@22.1.0)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4) + cosmiconfig: 9.0.0(typescript@5.6.3) + cosmiconfig-typescript-loader: 5.0.0(@types/node@22.1.0)(cosmiconfig@9.0.0(typescript@5.6.3))(typescript@5.6.3) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -7695,15 +8714,15 @@ snapshots: - typescript optional: true - '@commitlint/load@19.5.0(@types/node@22.1.0)(typescript@5.5.4)': + '@commitlint/load@19.5.0(@types/node@22.1.0)(typescript@5.6.3)': dependencies: '@commitlint/config-validator': 19.5.0 '@commitlint/execute-rule': 19.5.0 '@commitlint/resolve-extends': 19.5.0 '@commitlint/types': 19.5.0 chalk: 5.3.0 - cosmiconfig: 9.0.0(typescript@5.5.4) - cosmiconfig-typescript-loader: 5.0.0(@types/node@22.1.0)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4) + cosmiconfig: 9.0.0(typescript@5.6.3) + cosmiconfig-typescript-loader: 5.0.0(@types/node@22.1.0)(cosmiconfig@9.0.0(typescript@5.6.3))(typescript@5.6.3) lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 lodash.uniq: 4.5.0 @@ -7927,7 +8946,7 @@ snapshots: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.0 - '@lerna/create@8.1.8(encoding@0.1.13)(typescript@5.5.4)': + '@lerna/create@8.1.8(encoding@0.1.13)(typescript@5.6.3)': dependencies: '@npmcli/arborist': 7.5.4 '@npmcli/package-json': 5.2.0 @@ -7945,7 +8964,7 @@ snapshots: console-control-strings: 1.1.0 conventional-changelog-core: 5.0.1 conventional-recommended-bump: 7.0.1 - cosmiconfig: 8.3.6(typescript@5.5.4) + cosmiconfig: 8.3.6(typescript@5.6.3) dedent: 1.5.3 execa: 5.0.0 fs-extra: 11.2.0 @@ -8010,6 +9029,21 @@ snapshots: - supports-color - typescript + '@mapbox/node-pre-gyp@1.0.11(encoding@0.1.13)': + dependencies: + detect-libc: 2.0.3 + https-proxy-agent: 5.0.1 + make-dir: 3.1.0 + node-fetch: 2.7.0(encoding@0.1.13) + nopt: 5.0.0 + npmlog: 5.0.1 + rimraf: 3.0.2 + semver: 7.6.3 + tar: 6.2.1 + transitivePeerDependencies: + - encoding + - supports-color + '@microsoft/tsdoc-config@0.17.0': dependencies: '@microsoft/tsdoc': 0.15.0 @@ -8308,6 +9342,8 @@ snapshots: dependencies: '@octokit/openapi-types': 18.1.1 + '@phc/format@1.0.0': {} + '@pkgjs/parseargs@0.11.0': optional: true @@ -8361,18 +9397,20 @@ snapshots: '@rollup/rollup-win32-x64-msvc@4.20.0': optional: true - '@scaleway/eslint-config-react@3.18.4(eslint@8.57.0)(typescript@5.5.4)': + '@scaleway/configuration-loader@1.0.5': {} + + '@scaleway/eslint-config-react@3.18.4(eslint@8.57.0)(typescript@5.6.3)': dependencies: '@emotion/eslint-plugin': 11.11.0(eslint@8.57.0) - '@typescript-eslint/eslint-plugin': 7.11.0(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) - '@typescript-eslint/parser': 7.11.0(eslint@8.57.0)(typescript@5.5.4) + '@typescript-eslint/eslint-plugin': 7.11.0(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3) + '@typescript-eslint/parser': 7.11.0(eslint@8.57.0)(typescript@5.6.3) eslint: 8.57.0 - eslint-config-airbnb: 19.0.4(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.57.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.57.0))(eslint-plugin-react@7.34.2(eslint@8.57.0))(eslint@8.57.0) - eslint-config-airbnb-typescript: 18.0.0(@typescript-eslint/eslint-plugin@7.11.0(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4))(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.5.4))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0))(eslint@8.57.0) + eslint-config-airbnb: 19.0.4(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.57.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.57.0))(eslint-plugin-react@7.34.2(eslint@8.57.0))(eslint@8.57.0) + eslint-config-airbnb-typescript: 18.0.0(@typescript-eslint/eslint-plugin@7.11.0(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3))(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.6.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0))(eslint@8.57.0) eslint-config-prettier: 9.1.0(eslint@8.57.0) - eslint-plugin-deprecation: 2.0.0(eslint@8.57.0)(typescript@5.5.4) + eslint-plugin-deprecation: 2.0.0(eslint@8.57.0)(typescript@5.6.3) eslint-plugin-eslint-comments: 3.2.0(eslint@8.57.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0) eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0) eslint-plugin-react: 7.34.2(eslint@8.57.0) eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0) @@ -8384,6 +9422,46 @@ snapshots: '@scaleway/random-name@5.1.0': {} + '@scaleway/sdk@2.52.0': {} + + '@serverless/utils@6.15.0(encoding@0.1.13)': + dependencies: + archive-type: 4.0.0 + chalk: 4.1.2 + ci-info: 3.9.0 + cli-progress-footer: 2.3.3 + content-disposition: 0.5.4 + d: 1.0.2 + decompress: 4.2.1 + event-emitter: 0.3.5 + ext: 1.7.0 + ext-name: 5.0.0 + file-type: 16.5.4 + filenamify: 4.3.0 + get-stream: 6.0.1 + got: 11.8.6 + inquirer: 8.2.6 + js-yaml: 4.1.0 + jwt-decode: 3.1.2 + lodash: 4.17.21 + log: 6.3.2 + log-node: 8.0.3(log@6.3.2) + make-dir: 4.0.0 + memoizee: 0.4.17 + ms: 2.1.3 + ncjsm: 4.3.2 + node-fetch: 2.7.0(encoding@0.1.13) + open: 8.4.2 + p-event: 4.2.0 + supports-color: 8.1.1 + timers-ext: 0.1.8 + type: 2.7.3 + uni-global: 1.0.0 + uuid: 8.3.2 + write-file-atomic: 4.0.2 + transitivePeerDependencies: + - encoding + '@shikijs/core@1.14.1': dependencies: '@types/hast': 3.0.4 @@ -8422,6 +9500,14 @@ snapshots: '@sinclair/typebox@0.27.8': {} + '@sindresorhus/is@4.6.0': {} + + '@szmarczak/http-timer@4.0.6': + dependencies: + defer-to-connect: 2.0.1 + + '@tokenizer/token@0.3.0': {} + '@tufjs/canonical-json@2.0.0': {} '@tufjs/models@2.0.1': @@ -8433,9 +9519,16 @@ snapshots: dependencies: tslib: 2.6.3 + '@types/cacheable-request@6.0.3': + dependencies: + '@types/http-cache-semantics': 4.0.4 + '@types/keyv': 3.1.4 + '@types/node': 20.11.19 + '@types/responselike': 1.0.3 + '@types/conventional-commits-parser@5.0.0': dependencies: - '@types/node': 18.11.18 + '@types/node': 20.11.19 '@types/estree@1.0.5': {} @@ -8443,54 +9536,68 @@ snapshots: dependencies: '@types/unist': 3.0.3 + '@types/http-cache-semantics@4.0.4': {} + '@types/json-schema@7.0.15': {} '@types/json5@0.0.29': {} + '@types/keyv@3.1.4': + dependencies: + '@types/node': 20.11.19 + '@types/minimatch@3.0.5': {} '@types/minimist@1.2.5': {} '@types/node@18.11.18': {} + '@types/node@20.11.19': + dependencies: + undici-types: 5.26.5 + '@types/node@22.1.0': dependencies: undici-types: 6.13.0 '@types/normalize-package-data@2.4.4': {} + '@types/responselike@1.0.3': + dependencies: + '@types/node': 20.11.19 + '@types/semver@7.5.8': {} '@types/unist@3.0.3': {} - '@typescript-eslint/eslint-plugin@7.11.0(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)': + '@typescript-eslint/eslint-plugin@7.11.0(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)': dependencies: '@eslint-community/regexpp': 4.11.0 - '@typescript-eslint/parser': 7.11.0(eslint@8.57.0)(typescript@5.5.4) + '@typescript-eslint/parser': 7.11.0(eslint@8.57.0)(typescript@5.6.3) '@typescript-eslint/scope-manager': 7.11.0 - '@typescript-eslint/type-utils': 7.11.0(eslint@8.57.0)(typescript@5.5.4) - '@typescript-eslint/utils': 7.11.0(eslint@8.57.0)(typescript@5.5.4) + '@typescript-eslint/type-utils': 7.11.0(eslint@8.57.0)(typescript@5.6.3) + '@typescript-eslint/utils': 7.11.0(eslint@8.57.0)(typescript@5.6.3) '@typescript-eslint/visitor-keys': 7.11.0 eslint: 8.57.0 graphemer: 1.4.0 ignore: 5.3.1 natural-compare: 1.4.0 - ts-api-utils: 1.3.0(typescript@5.5.4) + ts-api-utils: 1.3.0(typescript@5.6.3) optionalDependencies: - typescript: 5.5.4 + typescript: 5.6.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.5.4)': + '@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.6.3)': dependencies: '@typescript-eslint/scope-manager': 7.11.0 '@typescript-eslint/types': 7.11.0 - '@typescript-eslint/typescript-estree': 7.11.0(typescript@5.5.4) + '@typescript-eslint/typescript-estree': 7.11.0(typescript@5.6.3) '@typescript-eslint/visitor-keys': 7.11.0 debug: 4.3.6 eslint: 8.57.0 optionalDependencies: - typescript: 5.5.4 + typescript: 5.6.3 transitivePeerDependencies: - supports-color @@ -8504,15 +9611,15 @@ snapshots: '@typescript-eslint/types': 7.11.0 '@typescript-eslint/visitor-keys': 7.11.0 - '@typescript-eslint/type-utils@7.11.0(eslint@8.57.0)(typescript@5.5.4)': + '@typescript-eslint/type-utils@7.11.0(eslint@8.57.0)(typescript@5.6.3)': dependencies: - '@typescript-eslint/typescript-estree': 7.11.0(typescript@5.5.4) - '@typescript-eslint/utils': 7.11.0(eslint@8.57.0)(typescript@5.5.4) + '@typescript-eslint/typescript-estree': 7.11.0(typescript@5.6.3) + '@typescript-eslint/utils': 7.11.0(eslint@8.57.0)(typescript@5.6.3) debug: 4.3.6 eslint: 8.57.0 - ts-api-utils: 1.3.0(typescript@5.5.4) + ts-api-utils: 1.3.0(typescript@5.6.3) optionalDependencies: - typescript: 5.5.4 + typescript: 5.6.3 transitivePeerDependencies: - supports-color @@ -8520,7 +9627,7 @@ snapshots: '@typescript-eslint/types@7.11.0': {} - '@typescript-eslint/typescript-estree@6.21.0(typescript@5.5.4)': + '@typescript-eslint/typescript-estree@6.21.0(typescript@5.6.3)': dependencies: '@typescript-eslint/types': 6.21.0 '@typescript-eslint/visitor-keys': 6.21.0 @@ -8529,13 +9636,13 @@ snapshots: is-glob: 4.0.3 minimatch: 9.0.3 semver: 7.6.3 - ts-api-utils: 1.3.0(typescript@5.5.4) + ts-api-utils: 1.3.0(typescript@5.6.3) optionalDependencies: - typescript: 5.5.4 + typescript: 5.6.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@7.11.0(typescript@5.5.4)': + '@typescript-eslint/typescript-estree@7.11.0(typescript@5.6.3)': dependencies: '@typescript-eslint/types': 7.11.0 '@typescript-eslint/visitor-keys': 7.11.0 @@ -8544,32 +9651,32 @@ snapshots: is-glob: 4.0.3 minimatch: 9.0.5 semver: 7.6.3 - ts-api-utils: 1.3.0(typescript@5.5.4) + ts-api-utils: 1.3.0(typescript@5.6.3) optionalDependencies: - typescript: 5.5.4 + typescript: 5.6.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@6.21.0(eslint@8.57.0)(typescript@5.5.4)': + '@typescript-eslint/utils@6.21.0(eslint@8.57.0)(typescript@5.6.3)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) '@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.5.4) + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.3) eslint: 8.57.0 semver: 7.6.3 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@7.11.0(eslint@8.57.0)(typescript@5.5.4)': + '@typescript-eslint/utils@7.11.0(eslint@8.57.0)(typescript@5.6.3)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) '@typescript-eslint/scope-manager': 7.11.0 '@typescript-eslint/types': 7.11.0 - '@typescript-eslint/typescript-estree': 7.11.0(typescript@5.5.4) + '@typescript-eslint/typescript-estree': 7.11.0(typescript@5.6.3) eslint: 8.57.0 transitivePeerDependencies: - supports-color @@ -8587,7 +9694,7 @@ snapshots: '@ungap/structured-clone@1.2.0': {} - '@vitest/coverage-istanbul@2.0.5(vitest@2.0.5(@types/node@22.1.0)(@vitest/ui@2.0.5)(jsdom@25.0.0))': + '@vitest/coverage-istanbul@2.1.3(vitest@2.1.3(@types/node@22.1.0)(@vitest/ui@2.1.3)(jsdom@25.0.1))': dependencies: '@istanbuljs/schema': 0.1.3 debug: 4.3.6 @@ -8599,11 +9706,11 @@ snapshots: magicast: 0.3.4 test-exclude: 7.0.1 tinyrainbow: 1.2.0 - vitest: 2.0.5(@types/node@22.1.0)(@vitest/ui@2.0.5)(jsdom@25.0.0) + vitest: 2.1.3(@types/node@22.1.0)(@vitest/ui@2.1.3)(jsdom@25.0.1) transitivePeerDependencies: - supports-color - '@vitest/coverage-v8@2.0.5(vitest@2.0.5(@types/node@22.1.0)(@vitest/ui@2.0.5)(jsdom@25.0.0))': + '@vitest/coverage-v8@2.1.3(vitest@2.1.3(@types/node@22.1.0)(@vitest/ui@2.1.3)(jsdom@25.0.1))': dependencies: '@ampproject/remapping': 2.3.0 '@bcoe/v8-coverage': 0.2.3 @@ -8617,51 +9724,58 @@ snapshots: std-env: 3.7.0 test-exclude: 7.0.1 tinyrainbow: 1.2.0 - vitest: 2.0.5(@types/node@22.1.0)(@vitest/ui@2.0.5)(jsdom@25.0.0) + vitest: 2.1.3(@types/node@22.1.0)(@vitest/ui@2.1.3)(jsdom@25.0.1) transitivePeerDependencies: - supports-color - '@vitest/expect@2.0.5': + '@vitest/expect@2.1.3': dependencies: - '@vitest/spy': 2.0.5 - '@vitest/utils': 2.0.5 + '@vitest/spy': 2.1.3 + '@vitest/utils': 2.1.3 chai: 5.1.1 tinyrainbow: 1.2.0 - '@vitest/pretty-format@2.0.5': + '@vitest/mocker@2.1.3(@vitest/spy@2.1.3)(vite@5.4.10(@types/node@22.1.0))': + dependencies: + '@vitest/spy': 2.1.3 + estree-walker: 3.0.3 + magic-string: 0.30.11 + optionalDependencies: + vite: 5.4.10(@types/node@22.1.0) + + '@vitest/pretty-format@2.1.3': dependencies: tinyrainbow: 1.2.0 - '@vitest/runner@2.0.5': + '@vitest/runner@2.1.3': dependencies: - '@vitest/utils': 2.0.5 + '@vitest/utils': 2.1.3 pathe: 1.1.2 - '@vitest/snapshot@2.0.5': + '@vitest/snapshot@2.1.3': dependencies: - '@vitest/pretty-format': 2.0.5 + '@vitest/pretty-format': 2.1.3 magic-string: 0.30.11 pathe: 1.1.2 - '@vitest/spy@2.0.5': + '@vitest/spy@2.1.3': dependencies: tinyspy: 3.0.0 - '@vitest/ui@2.0.5(vitest@2.0.5)': + '@vitest/ui@2.1.3(vitest@2.1.3)': dependencies: - '@vitest/utils': 2.0.5 - fast-glob: 3.3.2 + '@vitest/utils': 2.1.3 fflate: 0.8.2 flatted: 3.3.1 pathe: 1.1.2 sirv: 2.0.4 + tinyglobby: 0.2.10 tinyrainbow: 1.2.0 - vitest: 2.0.5(@types/node@22.1.0)(@vitest/ui@2.0.5)(jsdom@25.0.0) + vitest: 2.1.3(@types/node@22.1.0)(@vitest/ui@2.1.3)(jsdom@25.0.1) - '@vitest/utils@2.0.5': + '@vitest/utils@2.1.3': dependencies: - '@vitest/pretty-format': 2.0.5 - estree-walker: 3.0.3 + '@vitest/pretty-format': 2.1.3 loupe: 3.1.1 tinyrainbow: 1.2.0 @@ -8681,6 +9795,8 @@ snapshots: jsonparse: 1.3.1 through: 2.3.8 + abbrev@1.1.1: {} + abbrev@2.0.0: {} acorn-jsx@5.3.2(acorn@8.12.1): @@ -8691,6 +9807,12 @@ snapshots: add-stream@1.0.0: {} + agent-base@6.0.2: + dependencies: + debug: 4.3.6 + transitivePeerDependencies: + - supports-color + agent-base@7.1.1: dependencies: debug: 4.3.6 @@ -8751,6 +9873,24 @@ snapshots: aproba@2.0.0: {} + archive-type@4.0.0: + dependencies: + file-type: 4.4.0 + + are-we-there-yet@2.0.0: + dependencies: + delegates: 1.0.0 + readable-stream: 3.6.2 + + argon2@0.30.3(encoding@0.1.13): + dependencies: + '@mapbox/node-pre-gyp': 1.0.11(encoding@0.1.13) + '@phc/format': 1.0.0 + node-addon-api: 5.1.0 + transitivePeerDependencies: + - encoding + - supports-color + argparse@1.0.10: dependencies: sprintf-js: 1.0.3 @@ -8843,6 +9983,10 @@ snapshots: arrify@2.0.1: {} + asn1@0.2.6: + dependencies: + safer-buffer: 2.1.2 + assertion-error@2.0.1: {} ast-types-flow@0.0.8: {} @@ -8877,6 +10021,10 @@ snapshots: base64-js@1.5.1: {} + bcrypt-pbkdf@1.0.2: + dependencies: + tweetnacl: 0.14.5 + before-after-hook@2.2.3: {} bin-links@4.0.4: @@ -8886,12 +10034,19 @@ snapshots: read-cmd-shim: 4.0.0 write-file-atomic: 5.0.1 + bl@1.2.3: + dependencies: + readable-stream: 2.3.8 + safe-buffer: 5.2.1 + bl@4.1.0: dependencies: buffer: 5.7.1 inherits: 2.0.4 readable-stream: 3.6.2 + bluebird@3.7.2: {} + brace-expansion@1.1.11: dependencies: balanced-match: 1.0.2 @@ -8912,6 +10067,17 @@ snapshots: node-releases: 2.0.18 update-browserslist-db: 1.1.0(browserslist@4.23.3) + buffer-alloc-unsafe@1.1.0: {} + + buffer-alloc@1.2.0: + dependencies: + buffer-alloc-unsafe: 1.1.0 + buffer-fill: 1.0.0 + + buffer-crc32@0.2.13: {} + + buffer-fill@1.0.0: {} + buffer-from@1.1.2: {} buffer@5.7.1: @@ -8919,6 +10085,11 @@ snapshots: base64-js: 1.5.1 ieee754: 1.2.1 + buildcheck@0.0.6: + optional: true + + builtin-modules@3.3.0: {} + byte-size@8.1.1: {} cac@6.7.14: {} @@ -8938,6 +10109,18 @@ snapshots: tar: 6.2.1 unique-filename: 3.0.0 + cacheable-lookup@5.0.4: {} + + cacheable-request@7.0.4: + dependencies: + clone-response: 1.0.3 + get-stream: 5.2.0 + http-cache-semantics: 4.1.1 + keyv: 4.5.4 + lowercase-keys: 2.0.0 + normalize-url: 6.1.0 + responselike: 2.0.1 + cachedir@2.3.0: {} call-bind@1.0.7: @@ -8990,6 +10173,8 @@ snapshots: check-error@2.1.1: {} + chownr@1.1.4: {} + chownr@2.0.0: {} ci-info@3.9.0: {} @@ -8998,6 +10183,14 @@ snapshots: clean-stack@2.2.0: {} + cli-color@2.0.4: + dependencies: + d: 1.0.2 + es5-ext: 0.10.64 + es6-iterator: 2.0.3 + memoizee: 0.4.17 + timers-ext: 0.1.8 + cli-cursor@3.1.0: dependencies: restore-cursor: 3.1.0 @@ -9006,10 +10199,27 @@ snapshots: dependencies: restore-cursor: 5.1.0 + cli-progress-footer@2.3.3: + dependencies: + cli-color: 2.0.4 + d: 1.0.2 + es5-ext: 0.10.64 + mute-stream: 0.0.8 + process-utils: 4.0.0 + timers-ext: 0.1.8 + type: 2.7.3 + cli-spinners@2.6.1: {} cli-spinners@2.9.2: {} + cli-sprintf-format@1.1.1: + dependencies: + cli-color: 2.0.4 + es5-ext: 0.10.64 + sprintf-kit: 2.0.2 + supports-color: 6.1.0 + cli-truncate@4.0.0: dependencies: slice-ansi: 5.0.0 @@ -9035,6 +10245,10 @@ snapshots: kind-of: 6.0.3 shallow-clone: 3.0.1 + clone-response@1.0.3: + dependencies: + mimic-response: 1.0.1 + clone@1.0.4: {} cmd-shim@6.0.3: {} @@ -9066,10 +10280,12 @@ snapshots: commander@12.1.0: {} - commitizen@4.3.0(@types/node@22.1.0)(typescript@5.5.4): + commander@2.20.3: {} + + commitizen@4.3.0(@types/node@22.1.0)(typescript@5.6.3): dependencies: cachedir: 2.3.0 - cz-conventional-changelog: 3.3.0(@types/node@22.1.0)(typescript@5.5.4) + cz-conventional-changelog: 3.3.0(@types/node@22.1.0)(typescript@5.6.3) dedent: 0.7.0 detect-indent: 6.1.0 find-node-modules: 2.1.3 @@ -9106,6 +10322,10 @@ snapshots: console-control-strings@1.1.0: {} + content-disposition@0.5.4: + dependencies: + safe-buffer: 5.2.1 + conventional-changelog-angular@7.0.0: dependencies: compare-func: 2.0.0 @@ -9175,30 +10395,36 @@ snapshots: core-util-is@1.0.3: {} - cosmiconfig-typescript-loader@5.0.0(@types/node@22.1.0)(cosmiconfig@9.0.0(typescript@5.5.4))(typescript@5.5.4): + cosmiconfig-typescript-loader@5.0.0(@types/node@22.1.0)(cosmiconfig@9.0.0(typescript@5.6.3))(typescript@5.6.3): dependencies: '@types/node': 22.1.0 - cosmiconfig: 9.0.0(typescript@5.5.4) + cosmiconfig: 9.0.0(typescript@5.6.3) jiti: 1.21.6 - typescript: 5.5.4 + typescript: 5.6.3 - cosmiconfig@8.3.6(typescript@5.5.4): + cosmiconfig@8.3.6(typescript@5.6.3): dependencies: import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 optionalDependencies: - typescript: 5.5.4 + typescript: 5.6.3 - cosmiconfig@9.0.0(typescript@5.5.4): + cosmiconfig@9.0.0(typescript@5.6.3): dependencies: env-paths: 2.2.1 import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 optionalDependencies: - typescript: 5.5.4 + typescript: 5.6.3 + + cpu-features@0.0.10: + dependencies: + buildcheck: 0.0.6 + nan: 2.22.0 + optional: true cross-env@7.0.3: dependencies: @@ -9218,24 +10444,29 @@ snapshots: cssesc@3.0.0: {} - cssstyle@4.0.1: + cssstyle@4.1.0: dependencies: - rrweb-cssom: 0.6.0 + rrweb-cssom: 0.7.1 - cz-conventional-changelog@3.3.0(@types/node@22.1.0)(typescript@5.5.4): + cz-conventional-changelog@3.3.0(@types/node@22.1.0)(typescript@5.6.3): dependencies: chalk: 2.4.2 - commitizen: 4.3.0(@types/node@22.1.0)(typescript@5.5.4) + commitizen: 4.3.0(@types/node@22.1.0)(typescript@5.6.3) conventional-commit-types: 3.0.0 lodash.map: 4.6.0 longest: 2.0.1 word-wrap: 1.2.5 optionalDependencies: - '@commitlint/load': 19.2.0(@types/node@22.1.0)(typescript@5.5.4) + '@commitlint/load': 19.2.0(@types/node@22.1.0)(typescript@5.6.3) transitivePeerDependencies: - '@types/node' - typescript + d@1.0.2: + dependencies: + es5-ext: 0.10.64 + type: 2.7.3 + damerau-levenshtein@1.0.8: {} dargs@7.0.0: {} @@ -9275,6 +10506,10 @@ snapshots: dependencies: ms: 2.1.2 + debug@4.3.7: + dependencies: + ms: 2.1.3 + decamelize-keys@1.1.1: dependencies: decamelize: 1.2.0 @@ -9284,6 +10519,48 @@ snapshots: decimal.js@10.4.3: {} + decompress-response@6.0.0: + dependencies: + mimic-response: 3.1.0 + + decompress-tar@4.1.1: + dependencies: + file-type: 5.2.0 + is-stream: 1.1.0 + tar-stream: 1.6.2 + + decompress-tarbz2@4.1.1: + dependencies: + decompress-tar: 4.1.1 + file-type: 6.2.0 + is-stream: 1.1.0 + seek-bzip: 1.0.6 + unbzip2-stream: 1.4.3 + + decompress-targz@4.1.1: + dependencies: + decompress-tar: 4.1.1 + file-type: 5.2.0 + is-stream: 1.1.0 + + decompress-unzip@4.0.1: + dependencies: + file-type: 3.9.0 + get-stream: 2.3.1 + pify: 2.3.0 + yauzl: 2.10.0 + + decompress@4.2.1: + dependencies: + decompress-tar: 4.1.1 + decompress-tarbz2: 4.1.1 + decompress-targz: 4.1.1 + decompress-unzip: 4.0.1 + graceful-fs: 4.2.11 + make-dir: 1.3.0 + pify: 2.3.0 + strip-dirs: 2.1.0 + dedent@0.7.0: {} dedent@1.5.3: {} @@ -9296,6 +10573,16 @@ snapshots: dependencies: clone: 1.0.4 + defer-to-connect@2.0.1: {} + + deferred@0.7.11: + dependencies: + d: 1.0.2 + es5-ext: 0.10.64 + event-emitter: 0.3.5 + next-tick: 1.1.0 + timers-ext: 0.1.8 + define-data-property@1.1.4: dependencies: es-define-property: 1.0.0 @@ -9312,6 +10599,8 @@ snapshots: delayed-stream@1.0.0: {} + delegates@1.0.0: {} + deprecation@2.3.1: {} dequal@2.0.3: {} @@ -9322,12 +10611,31 @@ snapshots: detect-indent@6.1.0: {} + detect-libc@2.0.3: {} + diff-sequences@29.6.3: {} dir-glob@3.0.1: dependencies: path-type: 4.0.0 + docker-modem@3.0.8: + dependencies: + debug: 4.3.6 + readable-stream: 3.6.2 + split-ca: 1.0.1 + ssh2: 1.16.0 + transitivePeerDependencies: + - supports-color + + dockerode@3.3.5: + dependencies: + '@balena/dockerignore': 1.0.2 + docker-modem: 3.0.8 + tar-fs: 2.0.1 + transitivePeerDependencies: + - supports-color + doctrine@2.1.0: dependencies: esutils: 2.0.3 @@ -9348,6 +10656,11 @@ snapshots: duplexer@0.1.2: {} + duration@0.2.2: + dependencies: + d: 1.0.2 + es5-ext: 0.10.64 + eastasianwidth@0.2.0: {} ejs@3.1.10: @@ -9481,10 +10794,44 @@ snapshots: is-date-object: 1.0.5 is-symbol: 1.0.4 - esbuild-plugin-browserslist@0.14.0(browserslist@4.23.3)(esbuild@0.21.5): + es5-ext@0.10.64: + dependencies: + es6-iterator: 2.0.3 + es6-symbol: 3.1.4 + esniff: 2.0.1 + next-tick: 1.1.0 + + es6-iterator@2.0.3: + dependencies: + d: 1.0.2 + es5-ext: 0.10.64 + es6-symbol: 3.1.4 + + es6-set@0.1.6: + dependencies: + d: 1.0.2 + es5-ext: 0.10.64 + es6-iterator: 2.0.3 + es6-symbol: 3.1.4 + event-emitter: 0.3.5 + type: 2.7.3 + + es6-symbol@3.1.4: + dependencies: + d: 1.0.2 + ext: 1.7.0 + + es6-weak-map@2.0.3: + dependencies: + d: 1.0.2 + es5-ext: 0.10.64 + es6-iterator: 2.0.3 + es6-symbol: 3.1.4 + + esbuild-plugin-browserslist@0.15.0(browserslist@4.23.3)(esbuild@0.21.5): dependencies: browserslist: 4.23.3 - debug: 4.3.6 + debug: 4.3.7 esbuild: 0.21.5 zod: 3.23.8 transitivePeerDependencies: @@ -9522,29 +10869,29 @@ snapshots: escape-string-regexp@4.0.0: {} - eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0))(eslint@8.57.0): + eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0))(eslint@8.57.0): dependencies: confusing-browser-globals: 1.0.11 eslint: 8.57.0 - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0) object.assign: 4.1.5 object.entries: 1.1.8 semver: 6.3.1 - eslint-config-airbnb-typescript@18.0.0(@typescript-eslint/eslint-plugin@7.11.0(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4))(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.5.4))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0))(eslint@8.57.0): + eslint-config-airbnb-typescript@18.0.0(@typescript-eslint/eslint-plugin@7.11.0(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3))(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.6.3))(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0))(eslint@8.57.0): dependencies: - '@typescript-eslint/eslint-plugin': 7.11.0(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4) - '@typescript-eslint/parser': 7.11.0(eslint@8.57.0)(typescript@5.5.4) + '@typescript-eslint/eslint-plugin': 7.11.0(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3) + '@typescript-eslint/parser': 7.11.0(eslint@8.57.0)(typescript@5.6.3) eslint: 8.57.0 - eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0))(eslint@8.57.0) + eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0))(eslint@8.57.0) transitivePeerDependencies: - eslint-plugin-import - eslint-config-airbnb@19.0.4(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.57.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.57.0))(eslint-plugin-react@7.34.2(eslint@8.57.0))(eslint@8.57.0): + eslint-config-airbnb@19.0.4(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0))(eslint-plugin-jsx-a11y@6.8.0(eslint@8.57.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.57.0))(eslint-plugin-react@7.34.2(eslint@8.57.0))(eslint@8.57.0): dependencies: eslint: 8.57.0 - eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0))(eslint@8.57.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0) + eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0))(eslint@8.57.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0) eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0) eslint-plugin-react: 7.34.2(eslint@8.57.0) eslint-plugin-react-hooks: 4.6.2(eslint@8.57.0) @@ -9563,23 +10910,23 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.8.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0): + eslint-module-utils@2.8.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 7.11.0(eslint@8.57.0)(typescript@5.5.4) + '@typescript-eslint/parser': 7.11.0(eslint@8.57.0)(typescript@5.6.3) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color - eslint-plugin-deprecation@2.0.0(eslint@8.57.0)(typescript@5.5.4): + eslint-plugin-deprecation@2.0.0(eslint@8.57.0)(typescript@5.6.3): dependencies: - '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.5.4) + '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.6.3) eslint: 8.57.0 tslib: 2.6.3 - tsutils: 3.21.0(typescript@5.5.4) - typescript: 5.5.4 + tsutils: 3.21.0(typescript@5.6.3) + typescript: 5.6.3 transitivePeerDependencies: - supports-color @@ -9589,7 +10936,7 @@ snapshots: eslint: 8.57.0 ignore: 5.3.1 - eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0): + eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0): dependencies: array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 @@ -9599,7 +10946,7 @@ snapshots: doctrine: 2.1.0 eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@8.57.0) hasown: 2.0.2 is-core-module: 2.15.0 is-glob: 4.0.3 @@ -9610,7 +10957,7 @@ snapshots: semver: 6.3.1 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 7.11.0(eslint@8.57.0)(typescript@5.5.4) + '@typescript-eslint/parser': 7.11.0(eslint@8.57.0)(typescript@5.6.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -9717,6 +11064,18 @@ snapshots: transitivePeerDependencies: - supports-color + esniff@1.1.3: + dependencies: + d: 1.0.2 + es5-ext: 0.10.64 + + esniff@2.0.1: + dependencies: + d: 1.0.2 + es5-ext: 0.10.64 + event-emitter: 0.3.5 + type: 2.7.3 + espree@9.6.1: dependencies: acorn: 8.12.1 @@ -9741,6 +11100,11 @@ snapshots: esutils@2.0.3: {} + event-emitter@0.3.5: + dependencies: + d: 1.0.2 + es5-ext: 0.10.64 + eventemitter3@4.0.7: {} eventemitter3@5.0.1: {} @@ -9775,6 +11139,19 @@ snapshots: exponential-backoff@3.1.1: {} + ext-list@2.2.2: + dependencies: + mime-db: 1.52.0 + + ext-name@5.0.0: + dependencies: + ext-list: 2.2.2 + sort-keys-length: 1.0.1 + + ext@1.7.0: + dependencies: + type: 2.7.3 + external-editor@3.1.0: dependencies: chardet: 0.7.0 @@ -9801,6 +11178,14 @@ snapshots: dependencies: reusify: 1.0.4 + fd-slicer@1.1.0: + dependencies: + pend: 1.2.0 + + fdir@6.4.2(picomatch@4.0.2): + optionalDependencies: + picomatch: 4.0.2 + fflate@0.8.2: {} figures@3.2.0: @@ -9811,10 +11196,32 @@ snapshots: dependencies: flat-cache: 3.2.0 + file-type@16.5.4: + dependencies: + readable-web-to-node-stream: 3.0.2 + strtok3: 6.3.0 + token-types: 4.2.1 + + file-type@3.9.0: {} + + file-type@4.4.0: {} + + file-type@5.2.0: {} + + file-type@6.2.0: {} + filelist@1.0.4: dependencies: minimatch: 5.1.6 + filename-reserved-regex@2.0.0: {} + + filenamify@4.3.0: + dependencies: + filename-reserved-regex: 2.0.0 + strip-outer: 1.0.1 + trim-repeated: 1.0.0 + fill-range@7.1.1: dependencies: to-regex-range: 5.0.1 @@ -9824,6 +11231,11 @@ snapshots: findup-sync: 4.0.0 merge: 2.1.1 + find-requires@1.0.0: + dependencies: + es5-ext: 0.10.64 + esniff: 1.1.3 + find-root@1.1.0: {} find-up@2.1.0: @@ -9909,6 +11321,17 @@ snapshots: fs.realpath@1.0.0: {} + fs2@0.3.15: + dependencies: + d: 1.0.2 + deferred: 0.7.11 + es5-ext: 0.10.64 + event-emitter: 0.3.5 + ext: 1.7.0 + ignore: 5.3.2 + memoizee: 0.4.17 + type: 2.7.3 + fsevents@2.3.3: optional: true @@ -9923,6 +11346,18 @@ snapshots: functions-have-names@1.2.3: {} + gauge@3.0.2: + dependencies: + aproba: 2.0.0 + color-support: 1.1.3 + console-control-strings: 1.1.0 + has-unicode: 2.0.1 + object-assign: 4.1.1 + signal-exit: 3.0.7 + string-width: 4.2.3 + strip-ansi: 6.0.1 + wide-align: 1.1.5 + gensync@1.0.0-beta.2: {} get-caller-file@2.0.5: {} @@ -9948,8 +11383,19 @@ snapshots: get-port@5.1.1: {} + get-stream@2.3.1: + dependencies: + object-assign: 4.1.1 + pinkie-promise: 2.0.1 + + get-stream@5.2.0: + dependencies: + pump: 3.0.2 + get-stream@6.0.0: {} + get-stream@6.0.1: {} + get-stream@8.0.1: {} get-symbol-description@1.0.2: @@ -10068,6 +11514,20 @@ snapshots: dependencies: get-intrinsic: 1.2.4 + got@11.8.6: + dependencies: + '@sindresorhus/is': 4.6.0 + '@szmarczak/http-timer': 4.0.6 + '@types/cacheable-request': 6.0.3 + '@types/responselike': 1.0.3 + cacheable-lookup: 5.0.4 + cacheable-request: 7.0.4 + decompress-response: 6.0.0 + http2-wrapper: 1.0.3 + lowercase-keys: 2.0.0 + p-cancelable: 2.1.1 + responselike: 2.0.1 + graceful-fs@4.2.11: {} graphemer@1.4.0: {} @@ -10136,6 +11596,18 @@ snapshots: transitivePeerDependencies: - supports-color + http2-wrapper@1.0.3: + dependencies: + quick-lru: 5.1.1 + resolve-alpn: 1.2.1 + + https-proxy-agent@5.0.1: + dependencies: + agent-base: 6.0.2 + debug: 4.3.6 + transitivePeerDependencies: + - supports-color + https-proxy-agent@7.0.5: dependencies: agent-base: 7.1.1 @@ -10165,6 +11637,8 @@ snapshots: ignore@5.3.1: {} + ignore@5.3.2: {} + import-fresh@3.3.0: dependencies: parent-module: 1.0.1 @@ -10323,6 +11797,8 @@ snapshots: is-map@2.0.3: {} + is-natural-number@4.0.1: {} + is-negative-zero@2.0.3: {} is-number-object@1.0.7: @@ -10345,6 +11821,8 @@ snapshots: is-potential-custom-element-name@1.0.1: {} + is-promise@2.2.2: {} + is-regex@1.1.4: dependencies: call-bind: 1.0.7 @@ -10360,6 +11838,8 @@ snapshots: dependencies: protocols: 2.0.1 + is-stream@1.1.0: {} + is-stream@2.0.0: {} is-stream@3.0.0: {} @@ -10493,9 +11973,9 @@ snapshots: jsbn@1.1.0: {} - jsdom@25.0.0: + jsdom@25.0.1: dependencies: - cssstyle: 4.0.1 + cssstyle: 4.1.0 data-urls: 5.0.0 decimal.js: 10.4.3 form-data: 4.0.0 @@ -10508,7 +11988,7 @@ snapshots: rrweb-cssom: 0.7.1 saxes: 6.0.0 symbol-tree: 3.2.4 - tough-cookie: 4.1.4 + tough-cookie: 5.0.0 w3c-xmlserializer: 5.0.0 webidl-conversions: 7.0.0 whatwg-encoding: 3.1.1 @@ -10568,6 +12048,8 @@ snapshots: just-diff@6.0.2: {} + jwt-decode@3.1.2: {} + keyv@4.5.4: dependencies: json-buffer: 3.0.1 @@ -10582,7 +12064,7 @@ snapshots: lerna@8.1.8(encoding@0.1.13): dependencies: - '@lerna/create': 8.1.8(encoding@0.1.13)(typescript@5.5.4) + '@lerna/create': 8.1.8(encoding@0.1.13)(typescript@5.6.3) '@npmcli/arborist': 7.5.4 '@npmcli/package-json': 5.2.0 '@npmcli/run-script': 8.1.0 @@ -10600,7 +12082,7 @@ snapshots: conventional-changelog-angular: 7.0.0 conventional-changelog-core: 5.0.1 conventional-recommended-bump: 7.0.1 - cosmiconfig: 8.3.6(typescript@5.5.4) + cosmiconfig: 8.3.6(typescript@5.6.3) dedent: 1.5.3 envinfo: 7.13.0 execa: 5.0.0 @@ -10653,7 +12135,7 @@ snapshots: strong-log-transformer: 2.1.0 tar: 6.2.1 temp-dir: 1.0.0 - typescript: 5.5.4 + typescript: 5.6.3 upath: 2.0.1 uuid: 10.0.0 validate-npm-package-license: 3.0.4 @@ -10786,6 +12268,18 @@ snapshots: lodash@4.17.21: {} + log-node@8.0.3(log@6.3.2): + dependencies: + ansi-regex: 5.0.1 + cli-color: 2.0.4 + cli-sprintf-format: 1.1.1 + d: 1.0.2 + es5-ext: 0.10.64 + log: 6.3.2 + sprintf-kit: 2.0.2 + supports-color: 8.1.1 + type: 2.7.3 + log-symbols@4.1.0: dependencies: chalk: 4.1.2 @@ -10799,6 +12293,16 @@ snapshots: strip-ansi: 7.1.0 wrap-ansi: 9.0.0 + log@6.3.2: + dependencies: + d: 1.0.2 + duration: 0.2.2 + es5-ext: 0.10.64 + event-emitter: 0.3.5 + sprintf-kit: 2.0.2 + type: 2.7.3 + uni-global: 1.0.0 + longest@2.0.1: {} loose-envify@1.4.0: @@ -10809,6 +12313,8 @@ snapshots: dependencies: get-func-name: 2.0.2 + lowercase-keys@2.0.0: {} + lru-cache@10.4.3: {} lru-cache@5.1.1: @@ -10819,6 +12325,10 @@ snapshots: dependencies: yallist: 4.0.0 + lru-queue@0.1.0: + dependencies: + es5-ext: 0.10.64 + lunr@2.3.9: {} magic-string@0.30.11: @@ -10829,13 +12339,21 @@ snapshots: dependencies: '@babel/parser': 7.25.3 '@babel/types': 7.25.2 - source-map-js: 1.2.0 + source-map-js: 1.2.1 + + make-dir@1.3.0: + dependencies: + pify: 3.0.0 make-dir@2.1.0: dependencies: pify: 4.0.1 semver: 5.7.2 + make-dir@3.1.0: + dependencies: + semver: 6.3.1 + make-dir@4.0.0: dependencies: semver: 7.6.3 @@ -10872,6 +12390,17 @@ snapshots: mdurl@2.0.0: {} + memoizee@0.4.17: + dependencies: + d: 1.0.2 + es5-ext: 0.10.64 + es6-weak-map: 2.0.3 + event-emitter: 0.3.5 + is-promise: 2.2.2 + lru-queue: 0.1.0 + next-tick: 1.1.0 + timers-ext: 0.1.8 + meow@12.1.1: {} meow@8.1.2: @@ -10916,6 +12445,10 @@ snapshots: mimic-function@5.0.1: {} + mimic-response@1.0.1: {} + + mimic-response@3.1.0: {} + min-indent@1.0.1: {} minimatch@3.0.5: @@ -10991,6 +12524,8 @@ snapshots: minipass: 3.3.6 yallist: 4.0.0 + mkdirp-classic@0.5.3: {} + mkdirp@1.0.4: {} modify-values@1.0.1: {} @@ -11013,14 +12548,32 @@ snapshots: mute-stream@1.0.0: {} + nan@2.22.0: + optional: true + nanoid@3.3.7: {} natural-compare@1.4.0: {} + ncjsm@4.3.2: + dependencies: + builtin-modules: 3.3.0 + deferred: 0.7.11 + es5-ext: 0.10.64 + es6-set: 0.1.6 + ext: 1.7.0 + find-requires: 1.0.0 + fs2: 0.3.15 + type: 2.7.3 + negotiator@0.6.3: {} neo-async@2.6.2: {} + next-tick@1.1.0: {} + + node-addon-api@5.1.0: {} + node-fetch@2.6.7(encoding@0.1.13): dependencies: whatwg-url: 5.0.0 @@ -11052,6 +12605,10 @@ snapshots: node-releases@2.0.18: {} + nopt@5.0.0: + dependencies: + abbrev: 1.1.1 + nopt@7.2.1: dependencies: abbrev: 2.0.0 @@ -11076,6 +12633,8 @@ snapshots: semver: 7.6.3 validate-npm-package-license: 3.0.4 + normalize-url@6.1.0: {} + npm-bundled@3.0.1: dependencies: npm-normalize-package-bin: 3.0.1 @@ -11132,6 +12691,13 @@ snapshots: dependencies: path-key: 4.0.0 + npmlog@5.0.1: + dependencies: + are-we-there-yet: 2.0.0 + console-control-strings: 1.1.0 + gauge: 3.0.2 + set-blocking: 2.0.0 + nwsapi@2.2.12: {} nx@19.5.6: @@ -11285,6 +12851,12 @@ snapshots: os-tmpdir@1.0.2: {} + p-cancelable@2.1.1: {} + + p-event@4.2.0: + dependencies: + p-timeout: 3.2.0 + p-finally@1.0.0: {} p-limit@1.3.0: @@ -11442,12 +13014,18 @@ snapshots: pathval@2.0.0: {} + peek-readable@4.1.0: {} + + pend@1.2.0: {} + picocolors@1.0.1: {} picocolors@1.1.0: {} picomatch@2.3.1: {} + picomatch@4.0.2: {} + pidtree@0.6.0: {} pify@2.3.0: {} @@ -11458,6 +13036,12 @@ snapshots: pify@5.0.0: {} + pinkie-promise@2.0.1: + dependencies: + pinkie: 2.0.4 + + pinkie@2.0.4: {} + pkg-dir@4.2.0: dependencies: find-up: 4.1.0 @@ -11477,7 +13061,7 @@ snapshots: prelude-ls@1.2.1: {} - prettier@3.3.2: {} + prettier@3.3.3: {} pretty-format@29.7.0: dependencies: @@ -11489,6 +13073,13 @@ snapshots: process-nextick-args@2.0.1: {} + process-utils@4.0.0: + dependencies: + ext: 1.7.0 + fs2: 0.3.15 + memoizee: 0.4.17 + type: 2.7.3 + proggy@2.0.0: {} promise-all-reject-late@1.0.1: {} @@ -11516,18 +13107,21 @@ snapshots: proxy-from-env@1.1.0: {} - psl@1.9.0: {} + pump@3.0.2: + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 punycode.js@2.3.1: {} punycode@2.3.1: {} - querystringify@2.2.0: {} - queue-microtask@1.2.3: {} quick-lru@4.0.1: {} + quick-lru@5.1.1: {} + react-is@16.13.1: {} react-is@18.3.1: {} @@ -11591,6 +13185,10 @@ snapshots: string_decoder: 1.3.0 util-deprecate: 1.0.2 + readable-web-to-node-stream@3.0.2: + dependencies: + readable-stream: 3.6.2 + redent@3.0.0: dependencies: indent-string: 4.0.0 @@ -11619,7 +13217,7 @@ snapshots: require-from-string@2.0.2: {} - requires-port@1.0.0: {} + resolve-alpn@1.2.1: {} resolve-cwd@3.0.0: dependencies: @@ -11646,6 +13244,10 @@ snapshots: path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 + responselike@2.0.1: + dependencies: + lowercase-keys: 2.0.0 + restore-cursor@3.1.0: dependencies: onetime: 5.1.2 @@ -11692,8 +13294,6 @@ snapshots: '@rollup/rollup-win32-x64-msvc': 4.20.0 fsevents: 2.3.3 - rrweb-cssom@0.6.0: {} - rrweb-cssom@0.7.1: {} run-async@2.4.1: {} @@ -11729,12 +13329,30 @@ snapshots: dependencies: xmlchars: 2.2.0 + seek-bzip@1.0.6: + dependencies: + commander: 2.20.3 + semver@5.7.2: {} semver@6.3.1: {} semver@7.6.3: {} + serverless-scaleway-functions@0.4.12(encoding@0.1.13): + dependencies: + '@serverless/utils': 6.15.0(encoding@0.1.13) + argon2: 0.30.3(encoding@0.1.13) + axios: 1.7.3 + bluebird: 3.7.2 + dockerode: 3.3.5 + js-yaml: 4.1.0 + tar-fs: 2.1.1 + transitivePeerDependencies: + - debug + - encoding + - supports-color + set-blocking@2.0.0: {} set-function-length@1.2.2: @@ -11825,11 +13443,17 @@ snapshots: ip-address: 9.0.5 smart-buffer: 4.2.0 - sort-keys@2.0.0: + sort-keys-length@1.0.1: + dependencies: + sort-keys: 1.1.2 + + sort-keys@1.1.2: dependencies: is-plain-obj: 1.1.0 - source-map-js@1.2.0: {} + sort-keys@2.0.0: + dependencies: + is-plain-obj: 1.1.0 source-map-js@1.2.1: {} @@ -11849,6 +13473,8 @@ snapshots: spdx-license-ids@3.0.18: {} + split-ca@1.0.1: {} + split2@3.2.2: dependencies: readable-stream: 3.6.2 @@ -11863,6 +13489,18 @@ snapshots: sprintf-js@1.1.3: {} + sprintf-kit@2.0.2: + dependencies: + es5-ext: 0.10.64 + + ssh2@1.16.0: + dependencies: + asn1: 0.2.6 + bcrypt-pbkdf: 1.0.2 + optionalDependencies: + cpu-features: 0.0.10 + nan: 2.22.0 + ssri@10.0.6: dependencies: minipass: 7.1.2 @@ -11945,6 +13583,10 @@ snapshots: strip-bom@4.0.0: {} + strip-dirs@2.1.0: + dependencies: + is-natural-number: 4.0.1 + strip-final-newline@2.0.0: {} strip-final-newline@3.0.0: {} @@ -11955,24 +13597,65 @@ snapshots: strip-json-comments@3.1.1: {} + strip-outer@1.0.1: + dependencies: + escape-string-regexp: 1.0.5 + strong-log-transformer@2.1.0: dependencies: duplexer: 0.1.2 minimist: 1.2.8 through: 2.3.8 + strtok3@6.3.0: + dependencies: + '@tokenizer/token': 0.3.0 + peek-readable: 4.1.0 + supports-color@5.5.0: dependencies: has-flag: 3.0.0 + supports-color@6.1.0: + dependencies: + has-flag: 3.0.0 + supports-color@7.2.0: dependencies: has-flag: 4.0.0 + supports-color@8.1.1: + dependencies: + has-flag: 4.0.0 + supports-preserve-symlinks-flag@1.0.0: {} symbol-tree@3.2.4: {} + tar-fs@2.0.1: + dependencies: + chownr: 1.1.4 + mkdirp-classic: 0.5.3 + pump: 3.0.2 + tar-stream: 2.2.0 + + tar-fs@2.1.1: + dependencies: + chownr: 1.1.4 + mkdirp-classic: 0.5.3 + pump: 3.0.2 + tar-stream: 2.2.0 + + tar-stream@1.6.2: + dependencies: + bl: 1.2.3 + buffer-alloc: 1.2.0 + end-of-stream: 1.4.4 + fs-constants: 1.0.0 + readable-stream: 2.3.8 + to-buffer: 1.1.1 + xtend: 4.0.2 + tar-stream@2.2.0: dependencies: bl: 4.1.0 @@ -12011,36 +13694,56 @@ snapshots: through@2.3.8: {} + timers-ext@0.1.8: + dependencies: + es5-ext: 0.10.64 + next-tick: 1.1.0 + tinybench@2.9.0: {} tinyexec@0.3.0: {} + tinyglobby@0.2.10: + dependencies: + fdir: 6.4.2(picomatch@4.0.2) + picomatch: 4.0.2 + tinypool@1.0.0: {} tinyrainbow@1.2.0: {} tinyspy@3.0.0: {} + tldts-core@6.1.56: {} + + tldts@6.1.56: + dependencies: + tldts-core: 6.1.56 + tmp@0.0.33: dependencies: os-tmpdir: 1.0.2 tmp@0.2.3: {} + to-buffer@1.1.1: {} + to-fast-properties@2.0.0: {} to-regex-range@5.0.1: dependencies: is-number: 7.0.0 + token-types@4.2.1: + dependencies: + '@tokenizer/token': 0.3.0 + ieee754: 1.2.1 + totalist@3.0.1: {} - tough-cookie@4.1.4: + tough-cookie@5.0.0: dependencies: - psl: 1.9.0 - punycode: 2.3.1 - universalify: 0.2.0 - url-parse: 1.5.10 + tldts: 6.1.56 tr46@0.0.3: {} @@ -12052,9 +13755,13 @@ snapshots: trim-newlines@3.0.1: {} - ts-api-utils@1.3.0(typescript@5.5.4): + trim-repeated@1.0.0: + dependencies: + escape-string-regexp: 1.0.5 + + ts-api-utils@1.3.0(typescript@5.6.3): dependencies: - typescript: 5.5.4 + typescript: 5.6.3 tsconfig-paths@3.15.0: dependencies: @@ -12073,10 +13780,10 @@ snapshots: tslib@2.6.3: {} - tsutils@3.21.0(typescript@5.5.4): + tsutils@3.21.0(typescript@5.6.3): dependencies: tslib: 1.14.1 - typescript: 5.5.4 + typescript: 5.6.3 tuf-js@2.2.1: dependencies: @@ -12086,6 +13793,8 @@ snapshots: transitivePeerDependencies: - supports-color + tweetnacl@0.14.5: {} + type-check@0.4.0: dependencies: prelude-ls: 1.2.1 @@ -12104,6 +13813,8 @@ snapshots: type-fest@4.23.0: {} + type@2.7.3: {} + typed-array-buffer@1.0.2: dependencies: call-bind: 1.0.7 @@ -12138,17 +13849,19 @@ snapshots: typedarray@0.0.6: {} - typedoc@0.26.6(typescript@5.5.4): + typedoc@0.26.6(typescript@5.6.3): dependencies: lunr: 2.3.9 markdown-it: 14.1.0 minimatch: 9.0.5 shiki: 1.14.1 - typescript: 5.5.4 + typescript: 5.6.3 yaml: 2.4.5 typescript@5.5.4: {} + typescript@5.6.3: {} + uc.micro@2.1.0: {} uglify-js@3.19.1: @@ -12161,8 +13874,19 @@ snapshots: has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 + unbzip2-stream@1.4.3: + dependencies: + buffer: 5.7.1 + through: 2.3.8 + + undici-types@5.26.5: {} + undici-types@6.13.0: {} + uni-global@1.0.0: + dependencies: + type: 2.7.3 + unicorn-magic@0.1.0: {} unique-filename@3.0.0: @@ -12175,8 +13899,6 @@ snapshots: universal-user-agent@6.0.1: {} - universalify@0.2.0: {} - universalify@2.0.1: {} upath@2.0.1: {} @@ -12191,15 +13913,12 @@ snapshots: dependencies: punycode: 2.3.1 - url-parse@1.5.10: - dependencies: - querystringify: 2.2.0 - requires-port: 1.0.0 - util-deprecate@1.0.2: {} uuid@10.0.0: {} + uuid@8.3.2: {} + validate-npm-package-license@3.0.4: dependencies: spdx-correct: 3.2.0 @@ -12207,13 +13926,12 @@ snapshots: validate-npm-package-name@5.0.1: {} - vite-node@2.0.5(@types/node@22.1.0): + vite-node@2.1.3(@types/node@22.1.0): dependencies: cac: 6.7.14 debug: 4.3.6 pathe: 1.1.2 - tinyrainbow: 1.2.0 - vite: 5.4.6(@types/node@22.1.0) + vite: 5.4.10(@types/node@22.1.0) transitivePeerDependencies: - '@types/node' - less @@ -12225,7 +13943,7 @@ snapshots: - supports-color - terser - vite@5.4.6(@types/node@22.1.0): + vite@5.4.10(@types/node@22.1.0): dependencies: esbuild: 0.21.5 postcss: 8.4.47 @@ -12234,34 +13952,35 @@ snapshots: '@types/node': 22.1.0 fsevents: 2.3.3 - vitest@2.0.5(@types/node@22.1.0)(@vitest/ui@2.0.5)(jsdom@25.0.0): + vitest@2.1.3(@types/node@22.1.0)(@vitest/ui@2.1.3)(jsdom@25.0.1): dependencies: - '@ampproject/remapping': 2.3.0 - '@vitest/expect': 2.0.5 - '@vitest/pretty-format': 2.0.5 - '@vitest/runner': 2.0.5 - '@vitest/snapshot': 2.0.5 - '@vitest/spy': 2.0.5 - '@vitest/utils': 2.0.5 + '@vitest/expect': 2.1.3 + '@vitest/mocker': 2.1.3(@vitest/spy@2.1.3)(vite@5.4.10(@types/node@22.1.0)) + '@vitest/pretty-format': 2.1.3 + '@vitest/runner': 2.1.3 + '@vitest/snapshot': 2.1.3 + '@vitest/spy': 2.1.3 + '@vitest/utils': 2.1.3 chai: 5.1.1 debug: 4.3.6 - execa: 8.0.1 magic-string: 0.30.11 pathe: 1.1.2 std-env: 3.7.0 tinybench: 2.9.0 + tinyexec: 0.3.0 tinypool: 1.0.0 tinyrainbow: 1.2.0 - vite: 5.4.6(@types/node@22.1.0) - vite-node: 2.0.5(@types/node@22.1.0) + vite: 5.4.10(@types/node@22.1.0) + vite-node: 2.1.3(@types/node@22.1.0) why-is-node-running: 2.3.0 optionalDependencies: '@types/node': 22.1.0 - '@vitest/ui': 2.0.5(vitest@2.0.5) - jsdom: 25.0.0 + '@vitest/ui': 2.1.3(vitest@2.1.3) + jsdom: 25.0.1 transitivePeerDependencies: - less - lightningcss + - msw - sass - sass-embedded - stylus @@ -12394,6 +14113,11 @@ snapshots: imurmurhash: 0.1.4 signal-exit: 3.0.7 + write-file-atomic@4.0.2: + dependencies: + imurmurhash: 0.1.4 + signal-exit: 3.0.7 + write-file-atomic@5.0.1: dependencies: imurmurhash: 0.1.4 @@ -12456,6 +14180,11 @@ snapshots: y18n: 5.0.8 yargs-parser: 21.1.1 + yauzl@2.10.0: + dependencies: + buffer-crc32: 0.2.13 + fd-slicer: 1.1.0 + yocto-queue@0.1.0: {} yocto-queue@1.1.1: {} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 18ec407ef..15989339b 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,2 +1,3 @@ packages: - 'packages/*' + - 'examples/*'