diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml deleted file mode 100644 index 3d50bcf..0000000 --- a/.github/workflows/build.yaml +++ /dev/null @@ -1,43 +0,0 @@ -name: Build and Test NPM packages -on: - pull_request: - types: [opened, reopened, synchronize] - branches: - - 'main' - push: - branches: - - 'main' - workflow_dispatch: {} - -jobs: - init: - runs-on: ubuntu-latest - steps: - - uses: milaboratory/github-ci/actions/context/init@v4 - with: - version-canonize: false - branch-versioning: main - run: - needs: - - init - - uses: milaboratory/github-ci-internal/.github/workflows/node-docker-simple-fast-pnpm.yaml@v4 - with: - app-name: Block Boilerplate - app-name-slug: 'block-boilerplate' - notify-telegram: true - - node-version: '20.x' - always-auth: 'true' - - build-script-name: 'build' - - test: true - test-script-name: 'test' - - secrets: - env: | - { "PL_LICENSE": ${{ toJSON(secrets.MI_LICENSE) }}, "MI_LICENSE": ${{ toJSON(secrets.MI_LICENSE) }} } - - TELEGRAM_NOTIFICATION_TARGET: ${{ secrets.TG_CHANNEL_MIBUILDS }} - TELEGRAM_API_TOKEN: ${{ secrets.TG_CI_BOT_TOKEN }} diff --git a/.gitignore b/.gitignore index d5d8062..0606006 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,11 @@ +.test_auth.json node_modules/ dist/ block-pack/ dev/ work/ -.test_auth.json +log/ +.turbo +vite.config.*.timestamp-* +software/**/*.sw.json +software/*.tgz \ No newline at end of file diff --git a/model/src/index.ts b/model/src/index.ts index 8897b1f..4dbfad6 100644 --- a/model/src/index.ts +++ b/model/src/index.ts @@ -8,7 +8,9 @@ export const model = BlockModel.create() .initialArgs({}) - .output('message', (ctx) => ctx.outputs?.resolve('message')?.getDataAsJson()) + .output('tengoMessage', (ctx) => ctx.outputs?.resolve('tengoMessage')?.getDataAsJson()) + + .output('pythonMessage', (ctx) => ctx.outputs?.resolve('pythonMessage')?.getDataAsString()) .sections([{ type: 'link', href: '/', label: 'Main' }]) diff --git a/package.json b/package.json index d4238a8..cb887df 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,11 @@ "version": "1.0.0", "scripts": { "pretty": "prettier --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json,vue}\"", - "build": "rm -rf ./block-pack && block-tools pack" + "build-block": "turbo run build && rm -rf block-pack/* && block-tools pack", + "build-block-dev": "turbo run build:dev && rm -rf block-pack && block-tools pack", + "build-block-force": "turbo run build --force && rm -rf block-pack/* && block-tools pack", + "test-block": "turbo run test --concurrency 1", + "watch": "turbo watch build" }, "files": [ "index.d.ts", @@ -38,7 +42,9 @@ } }, "devDependencies": { - "@changesets/cli": "catalog:", - "@platforma-sdk/block-tools": "catalog:" - } + "turbo": "catalog:", + "@platforma-sdk/block-tools": "catalog:", + "@changesets/cli": "catalog:" + }, + "packageManager": "pnpm@9.12.0" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c4c89ff..560fcdb 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,47 +7,56 @@ settings: catalogs: default: '@changesets/cli': - specifier: ^2.27.7 - version: 2.27.8 + specifier: ^2.27.9 + version: 2.27.9 + '@milaboratories/graph-maker': + specifier: ^1.0.19 + version: 1.0.21 '@platforma-sdk/block-tools': - specifier: ^2.3.12 - version: 2.3.12 + specifier: ^2.3.21 + version: 2.3.23 '@platforma-sdk/model': - specifier: ^1.5.40 - version: 1.5.40 + specifier: ^1.7.20 + version: 1.8.0 + '@platforma-sdk/package-builder': + specifier: ^2.11.1 + version: 2.11.1 '@platforma-sdk/tengo-builder': - specifier: ^1.14.13 - version: 1.14.13 + specifier: ^1.16.1 + version: 1.16.1 '@platforma-sdk/test': - specifier: ^1.5.43 - version: 1.5.43 + specifier: ^1.8.5 + version: 1.8.5 '@platforma-sdk/ui-vue': - specifier: ^1.5.38 - version: 1.5.42 + specifier: ^1.7.46 + version: 1.8.2 '@platforma-sdk/workflow-tengo': - specifier: ^1.3.0 - version: 1.3.0 + specifier: ^1.8.1 + version: 1.8.1 '@vitejs/plugin-vue': - specifier: ^5.1.0 - version: 5.1.3 + specifier: ^5.1.4 + version: 5.1.5 tsup: - specifier: ~8.1.2 - version: 8.1.2 + specifier: ~8.3.5 + version: 8.3.5 + turbo: + specifier: ^2.2.3 + version: 2.2.3 typescript: - specifier: ^5.5.4 - version: 5.5.4 + specifier: ^5.6.3 + version: 5.6.3 vite: - specifier: ^5.3.5 - version: 5.4.3 + specifier: ^5.4.10 + version: 5.4.11 vitest: - specifier: ^2.0.4 - version: 2.1.1 + specifier: ^2.1.4 + version: 2.1.4 vue: - specifier: ^3.4.34 - version: 3.4.38 + specifier: ^3.5.12 + version: 3.5.12 vue-tsc: - specifier: ^2.0.29 - version: 2.1.6 + specifier: ^2.1.6 + version: 2.1.10 importers: @@ -65,29 +74,44 @@ importers: devDependencies: '@changesets/cli': specifier: 'catalog:' - version: 2.27.8 + version: 2.27.9 '@platforma-sdk/block-tools': specifier: 'catalog:' - version: 2.3.12 + version: 2.3.23 + turbo: + specifier: 'catalog:' + version: 2.2.3 model: dependencies: + '@milaboratories/graph-maker': + specifier: 'catalog:' + version: 1.0.21(d3-dispatch@3.0.1)(d3-path@3.1.0)(d3-scale-chromatic@3.1.0)(typescript@5.6.3) '@platforma-sdk/model': specifier: 'catalog:' - version: 1.5.40 + version: 1.8.0 devDependencies: '@platforma-sdk/block-tools': specifier: 'catalog:' - version: 2.3.12 + version: 2.3.23 tsup: specifier: 'catalog:' - version: 8.1.2(postcss@8.4.47)(typescript@5.5.4)(yaml@2.5.1) + version: 8.3.5(postcss@8.4.48)(typescript@5.6.3)(yaml@2.6.0) typescript: specifier: 'catalog:' - version: 5.5.4 + version: 5.6.3 vite: specifier: 'catalog:' - version: 5.4.3(@types/node@22.0.0) + version: 5.4.11(@types/node@22.9.0) + + software: + devDependencies: + '@platforma-open/milaboratories.runenv-python-3': + specifier: ^1.0.0 + version: 1.0.0 + '@platforma-sdk/package-builder': + specifier: 'catalog:' + version: 2.11.1 test: dependencies: @@ -97,56 +121,114 @@ importers: devDependencies: '@platforma-sdk/test': specifier: 'catalog:' - version: 1.5.43(@types/node@22.0.0) + version: 1.8.5(@types/node@22.9.0) typescript: specifier: 'catalog:' - version: 5.5.4 + version: 5.6.3 vitest: specifier: 'catalog:' - version: 2.1.1(@types/node@22.0.0) + version: 2.1.4(@types/node@22.9.0) ui: dependencies: + '@milaboratories/graph-maker': + specifier: 'catalog:' + version: 1.0.21(d3-dispatch@3.0.1)(d3-path@3.1.0)(d3-scale-chromatic@3.1.0)(typescript@5.6.3) '@platforma-open/my-org.block-boilerplate.model': specifier: workspace:* version: link:../model '@platforma-sdk/ui-vue': specifier: 'catalog:' - version: 1.5.42(typescript@5.5.4) + version: 1.8.2(typescript@5.6.3) vue: specifier: 'catalog:' - version: 3.4.38(typescript@5.5.4) + version: 3.5.12(typescript@5.6.3) devDependencies: '@vitejs/plugin-vue': specifier: 'catalog:' - version: 5.1.3(vite@5.4.3(@types/node@22.0.0))(vue@3.4.38(typescript@5.5.4)) + version: 5.1.5(vite@5.4.11(@types/node@22.9.0))(vue@3.5.12(typescript@5.6.3)) typescript: specifier: 'catalog:' - version: 5.5.4 + version: 5.6.3 vite: specifier: 'catalog:' - version: 5.4.3(@types/node@22.0.0) + version: 5.4.11(@types/node@22.9.0) vue-tsc: specifier: 'catalog:' - version: 2.1.6(typescript@5.5.4) + version: 2.1.10(typescript@5.6.3) workflow: + dependencies: + '@platforma-open/my-org.block-boilerplate.software': + specifier: workspace:* + version: link:../software devDependencies: '@platforma-sdk/tengo-builder': specifier: 'catalog:' - version: 1.14.13 + version: 1.16.1 '@platforma-sdk/test': specifier: 'catalog:' - version: 1.5.43(@types/node@22.0.0) + version: 1.8.5(@types/node@22.9.0) '@platforma-sdk/workflow-tengo': specifier: 'catalog:' - version: 1.3.0 + version: 1.8.1 vitest: specifier: 'catalog:' - version: 2.1.1(@types/node@22.0.0) + version: 2.1.4(@types/node@22.9.0) packages: + '@ag-grid-community/client-side-row-model@32.3.2': + resolution: {integrity: sha512-ulDslHzoZ3nkBcSEiEXYoULLzhZ6lVnTTL/J7xeFV8esBaDkP4+heesG+0oAG2qKKWSRorsJyTTCJMrNodxerQ==} + + '@ag-grid-community/core@32.3.2': + resolution: {integrity: sha512-m9+x9y1hFoXGklaXxN474pxYc7B/M/hH6pcBtBl+mQpCC4TwUAy516rDsFRH6WqpYiakfBdx1A3mhQbavNEDAQ==} + + '@ag-grid-community/csv-export@32.3.2': + resolution: {integrity: sha512-6th5ojPWgmhoGZXDihFw1vBTQrkNP4RVlNJA37l0FMPrQZQKe1T9TqnftBmCrpT/MM8m0bilTPwqUrgEeALYUQ==} + + '@ag-grid-community/infinite-row-model@32.3.2': + resolution: {integrity: sha512-2f0x1ZqyLiyPt4A76WsYSfUQLw4oIpP9VcFr/3qa52AmOK30gL36a9+T9oJ8pxwLo3L5A4i6Lthbhn0TncrDyA==} + + '@ag-grid-community/styles@32.3.2': + resolution: {integrity: sha512-zAimgm2bORRNDegPnhopYx0s3017j12m9h6Fv3KKW+CSpjHh4U+5ykacrsp8vN6f2vecRxXbrDl8gJC8hCJdcg==} + + '@ag-grid-community/theming@32.3.2': + resolution: {integrity: sha512-JTi3r2TpHPHPgbBUQh87OysKD7VfIXrCUKiQxX3OiWJXutX0D0H6eAFwP4C83ourCMRIeZgBqCLhK+TMyzlKJw==} + + '@ag-grid-community/vue3@32.3.2': + resolution: {integrity: sha512-jv1i1OIhybPJOLV5Mc32VPbjFqRK6Mo4pA2+gsgoK8mQRYSus3iX4lwkyYtApOPBkUVTbyz0zBui/jkDAOHz0A==} + + '@ag-grid-enterprise/clipboard@32.3.2': + resolution: {integrity: sha512-hSUurToVVFaNjVpmzibhZbd51gceJDNysewlSch5LBFYg1kwjDSOTnzlSBd5Kc6YroqKoJVbL9hpSoHnkMsMbg==} + + '@ag-grid-enterprise/column-tool-panel@32.3.2': + resolution: {integrity: sha512-QAhhP9sjeE+wIDWW4EkdPscgyRuT7VmSyVn1IaWZjKQ88HmIzC0WVKvYmm9QjlOGqxO6gxmablmA38DkjLglQg==} + + '@ag-grid-enterprise/core@32.3.2': + resolution: {integrity: sha512-+NfYdG8v6rrs/x/9UvsWHSlaGw2ffEJc0fEN5oDgyDYz0S+vywWDNn7OL7KlpMx9W9KpTUv8Zx0VzI5qfZPBLQ==} + + '@ag-grid-enterprise/excel-export@32.3.2': + resolution: {integrity: sha512-c8rllU1WLAoeZtMYgKxhmCiOhuRDVJzMij5PZKnVny0U21evJDET+YNGftlSe2Dm6ZQq3IyqpRcs7O698w80ZA==} + + '@ag-grid-enterprise/menu@32.3.2': + resolution: {integrity: sha512-7gBbIhArxK5F1iDU/xhHF29PK78rX6kXZ/GlF2QMKzf0p4IK9oXu0DsoQhf9A/SOvdxr+gJfyR3VReJMXpkJCw==} + + '@ag-grid-enterprise/range-selection@32.3.2': + resolution: {integrity: sha512-Lp3PZ/2CCBSOUp/gdKdapvXsx2tK2/5prL0hME3FwYFVskKFWhav8TcmLETSBAUw9R9kWJGztuWWn+f0ofKj8g==} + + '@ag-grid-enterprise/rich-select@32.3.2': + resolution: {integrity: sha512-AJMkZW304domxyDchU1bJZMu/rLULVAkBaQbjpM+Bx6JiYKI2bFcehDjlf4n8rObjFQ5mr0QgpiAdK3VbCDDSA==} + + '@ag-grid-enterprise/row-grouping@32.3.2': + resolution: {integrity: sha512-WGnZqFnWCe7iKEk68UUOkICoPoscSCJQBtY03el0VTNWBrkzC/ifNgBaEvslukeLSx6Ti9C93nFQjsEdJqup8Q==} + + '@ag-grid-enterprise/server-side-row-model@32.3.2': + resolution: {integrity: sha512-7CbcdCJP4A6ibM6czKg0cZ7hVjcvTtG6xosEDKRjPuIcM4mL8TIufe6yXCVolXr/KPX2K3GEkM8LWr/OR50Apg==} + + '@ag-grid-enterprise/side-bar@32.3.2': + resolution: {integrity: sha512-oVRMowPBo8fRAtNs6r7DhF5GDdL8GYiVNIWglO4FBOroCvy6RJjiYXeIYBSLA3xaTEHg64RzhM1kecDcCD4HsQ==} + '@aws-crypto/crc32@5.2.0': resolution: {integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==} engines: {node: '>=16.0.0'} @@ -170,135 +252,149 @@ packages: '@aws-crypto/util@5.2.0': resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==} - '@aws-sdk/client-s3@3.666.0': - resolution: {integrity: sha512-gDBvsm5JlocQH7W6MROWpt80UdlBNENofXaQeVnhEanJXr7K13jtPFC0XwlzPYuoXr8NnNZKA/kLKGjsCVoayQ==} + '@aws-sdk/client-s3@3.688.0': + resolution: {integrity: sha512-bLyF7gT0RTWrsJPxbaslg1xP1gUdw3BJVvgfWM/63BDBpVCqIk9YlrXfJwjImcKguxGp8sCTdttywmfdPwQEfg==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/client-s3@3.689.0': + resolution: {integrity: sha512-qYD1GJEPeLM6H3x8BuAAMXZltvVce5vGiwtZc9uMkBBo3HyFnmPitIPTPfaD1q8LOn/7KFdkY4MJ4e8D3YpV9g==} engines: {node: '>=16.0.0'} - '@aws-sdk/client-sso-oidc@3.666.0': - resolution: {integrity: sha512-mW//v5EvHMU2SulW1FqmjJJPDNhzySRb/YUU+jq9AFDIYUdjF6j6wM+iavCW/4gLqOct0RT7B62z8jqyHkUCEQ==} + '@aws-sdk/client-sso-oidc@3.687.0': + resolution: {integrity: sha512-Rdd8kLeTeh+L5ZuG4WQnWgYgdv7NorytKdZsGjiag1D8Wv3PcJvPqqWdgnI0Og717BSXVoaTYaN34FyqFYSx6Q==} engines: {node: '>=16.0.0'} peerDependencies: - '@aws-sdk/client-sts': ^3.666.0 + '@aws-sdk/client-sts': ^3.687.0 - '@aws-sdk/client-sso@3.666.0': - resolution: {integrity: sha512-+h5Xk64dM4on1MwjTYxlwtI8ilytU7zjTVRzMAYOysmH71Bc8YsLOfonFHvzhF/AXpKJu3f1BhM65S0tasPcrw==} + '@aws-sdk/client-sso@3.687.0': + resolution: {integrity: sha512-dfj0y9fQyX4kFill/ZG0BqBTLQILKlL7+O5M4F9xlsh2WNuV2St6WtcOg14Y1j5UODPJiJs//pO+mD1lihT5Kw==} engines: {node: '>=16.0.0'} - '@aws-sdk/client-sts@3.666.0': - resolution: {integrity: sha512-tw8yxcxvaj0d/A4YJXIh3mISzsQe8rThIVKvpyhEdl1lEoz81skCccX5u3gHajciSdga/V0DxhBbsO+eE1bZkw==} + '@aws-sdk/client-sts@3.687.0': + resolution: {integrity: sha512-SQjDH8O4XCTtouuCVYggB0cCCrIaTzUZIkgJUpOsIEJBLlTbNOb/BZqUShAQw2o9vxr2rCeOGjAQOYPysW/Pmg==} engines: {node: '>=16.0.0'} - '@aws-sdk/core@3.666.0': - resolution: {integrity: sha512-jxNjs0sAVX+CWwoa4kHUENLHuBwjT1EILBoctmQoiIb1v5KpKwZnSByHTpvUkFmbuwWQPEnJkJCqzIHjEmjisA==} + '@aws-sdk/core@3.686.0': + resolution: {integrity: sha512-Xt3DV4DnAT3v2WURwzTxWQK34Ew+iiLzoUoguvLaZrVMFOqMMrwVjP+sizqIaHp1j7rGmFcN5I8saXnsDLuQLA==} engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-env@3.664.0': - resolution: {integrity: sha512-95rE+9Voaco0nmKJrXqfJAxSSkSWqlBy76zomiZrUrv7YuijQtHCW8jte6v6UHAFAaBzgFsY7QqBxs15u9SM7g==} + '@aws-sdk/credential-provider-env@3.686.0': + resolution: {integrity: sha512-osD7lPO8OREkgxPiTWmA1i6XEmOth1uW9HWWj/+A2YGCj1G/t2sHu931w4Qj9NWHYZtbTTXQYVRg+TErALV7nQ==} engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-http@3.666.0': - resolution: {integrity: sha512-j1Cob+tYmJ/m9agSsFPdAhLfILBqZzolF17XJvmEzQC2edltQ6NR0Wd09GQvtiAFZy7gn1l40bKuxX6Tq5U6XQ==} + '@aws-sdk/credential-provider-http@3.686.0': + resolution: {integrity: sha512-xyGAD/f3vR/wssUiZrNFWQWXZvI4zRm2wpHhoHA1cC2fbRMNFYtFn365yw6dU7l00ZLcdFB1H119AYIUZS7xbw==} engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-ini@3.666.0': - resolution: {integrity: sha512-u09aUZJQNK8zVAKJKEOQ2mLsv39YxR20US00/WAPNW9sMWWhl4raT97tsalOUc6ZTHOEqHHmEVZXuscINnkaww==} + '@aws-sdk/credential-provider-ini@3.687.0': + resolution: {integrity: sha512-6d5ZJeZch+ZosJccksN0PuXv7OSnYEmanGCnbhUqmUSz9uaVX6knZZfHCZJRgNcfSqg9QC0zsFA/51W5HCUqSQ==} engines: {node: '>=16.0.0'} peerDependencies: - '@aws-sdk/client-sts': ^3.666.0 + '@aws-sdk/client-sts': ^3.687.0 + + '@aws-sdk/credential-provider-node@3.687.0': + resolution: {integrity: sha512-Pqld8Nx11NYaBUrVk3bYiGGpLCxkz8iTONlpQWoVWFhSOzlO7zloNOaYbD2XgFjjqhjlKzE91drs/f41uGeCTA==} + engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-node@3.666.0': - resolution: {integrity: sha512-C43L9kxAb2lvIZ+eKVuyX9xYrkpg+Zyq0fLasK1wekC6M/Qj/uqE1KFz9ddDE8Dv1HwiE+UZk5psM0KatQpPGQ==} + '@aws-sdk/credential-provider-process@3.686.0': + resolution: {integrity: sha512-sXqaAgyzMOc+dm4CnzAR5Q6S9OWVHyZjLfW6IQkmGjqeQXmZl24c4E82+w64C+CTkJrFLzH1VNOYp1Hy5gE6Qw==} engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-process@3.664.0': - resolution: {integrity: sha512-sQicIw/qWTsmMw8EUQNJXdrWV5SXaZc2zGdCQsQxhR6wwNO2/rZ5JmzdcwUADmleBVyPYk3KGLhcofF/qXT2Ng==} + '@aws-sdk/credential-provider-sso@3.687.0': + resolution: {integrity: sha512-N1YCoE7DovIRF2ReyRrA4PZzF0WNi4ObPwdQQkVxhvSm7PwjbWxrfq7rpYB+6YB1Uq3QPzgVwUFONE36rdpxUQ==} engines: {node: '>=16.0.0'} - '@aws-sdk/credential-provider-sso@3.666.0': - resolution: {integrity: sha512-aaa5Ig8hI7lSh1CSQP0oaLvjylz6+3mKUgdvw69zv0MdX3TUZiQRDCsfqK0P3VNsj/QSvBytSjuNDuSaYcACJg==} + '@aws-sdk/credential-provider-web-identity@3.686.0': + resolution: {integrity: sha512-40UqCpPxyHCXDP7CGd9JIOZDgDZf+u1OyLaGBpjQJlz1HYuEsIWnnbTe29Yg3Ah/Zc3g4NBWcUdlGVotlnpnDg==} engines: {node: '>=16.0.0'} + peerDependencies: + '@aws-sdk/client-sts': ^3.686.0 - '@aws-sdk/credential-provider-web-identity@3.664.0': - resolution: {integrity: sha512-10ltP1BfSKRJVXd8Yr5oLbo+VSDskWbps0X3szSsxTk0Dju1xvkz7hoIjylWLvtGbvQ+yb2pmsJYKCudW/4DJg==} + '@aws-sdk/lib-storage@3.689.0': + resolution: {integrity: sha512-5onxtoSunbrTIt5bttlEAF92A7OJfYDL1+qTEMxdyvLXzOENp3WElXVpKKPeqowuOffABT9ZcoTo/0aHOdZ81w==} engines: {node: '>=16.0.0'} peerDependencies: - '@aws-sdk/client-sts': ^3.664.0 + '@aws-sdk/client-s3': ^3.689.0 + + '@aws-sdk/middleware-bucket-endpoint@3.686.0': + resolution: {integrity: sha512-6qCoWI73/HDzQE745MHQUYz46cAQxHCgy1You8MZQX9vHAQwqBnkcsb2hGp7S6fnQY5bNsiZkMWVQ/LVd2MNjg==} + engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-bucket-endpoint@3.664.0': - resolution: {integrity: sha512-KP+foxGaAclhRI63ElZPvVeG5oajkbNhE7wiW34UoSw8wI2l+lmm36zkiebfP4K5HRyADS+KvGw95851N++s2A==} + '@aws-sdk/middleware-expect-continue@3.686.0': + resolution: {integrity: sha512-5yYqIbyhLhH29vn4sHiTj7sU6GttvLMk3XwCmBXjo2k2j3zHqFUwh9RyFGF9VY6Z392Drf/E/cl+qOGypwULpg==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-expect-continue@3.664.0': - resolution: {integrity: sha512-7hvF+HQhDFvBCzxWFmFOa6tWkVjRAaTR/Ltt03TAZ6JzfIayqnqKFvmdvYFfIeD2w3x4gx24zooRillFk4e3mQ==} + '@aws-sdk/middleware-flexible-checksums@3.688.0': + resolution: {integrity: sha512-diIBWLpM5eg3sRggKSKGUJGBh8VyFo/wZLq80GSq1kxGlmJOMvwT6YvE+Z51xhEbYTKIjX9IH/NhO7W4pA3MNw==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-flexible-checksums@3.666.0': - resolution: {integrity: sha512-jDbItXr60OsZwgRNhRMbomf9TitQ3nomV6WR3WZ7wHc8fFcwV67+OnoV1rv091HsC4qYuqp8i1YKecJuuiefrQ==} + '@aws-sdk/middleware-flexible-checksums@3.689.0': + resolution: {integrity: sha512-6VxMOf3mgmAgg6SMagwKj5pAe+putcx2F2odOAWviLcobFpdM/xK9vNry7p6kY+RDNmSlBvcji9wnU59fjV74Q==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-host-header@3.664.0': - resolution: {integrity: sha512-4tCXJ+DZWTq38eLmFgnEmO8X4jfWpgPbWoCyVYpRHCPHq6xbrU65gfwS9jGx25L4YdEce641ChI9TKLryuUgRA==} + '@aws-sdk/middleware-host-header@3.686.0': + resolution: {integrity: sha512-+Yc6rO02z+yhFbHmRZGvEw1vmzf/ifS9a4aBjJGeVVU+ZxaUvnk+IUZWrj4YQopUQ+bSujmMUzJLXSkbDq7yuw==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-location-constraint@3.664.0': - resolution: {integrity: sha512-hHMdJqq83cDnSTVhrSDsOrm1DyFtS1rteSwuqN7dGNr093bluCqH1VpnS/8juYzux8QGnzRecs9qV3hncGGxPw==} + '@aws-sdk/middleware-location-constraint@3.686.0': + resolution: {integrity: sha512-pCLeZzt5zUGY3NbW4J/5x3kaHyJEji4yqtoQcUlJmkoEInhSxJ0OE8sTxAfyL3nIOF4yr6L2xdaLCqYgQT8Aog==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-logger@3.664.0': - resolution: {integrity: sha512-eNykMqQuv7eg9pAcaLro44fscIe1VkFfhm+gYnlxd+PH6xqapRki1E68VHehnIptnVBdqnWfEqLUSLGm9suqhg==} + '@aws-sdk/middleware-logger@3.686.0': + resolution: {integrity: sha512-cX43ODfA2+SPdX7VRxu6gXk4t4bdVJ9pkktbfnkE5t27OlwNfvSGGhnHrQL8xTOFeyQ+3T+oowf26gf1OI+vIg==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-recursion-detection@3.664.0': - resolution: {integrity: sha512-jq27WMZhm+dY8BWZ9Ipy3eXtZj0lJzpaKQE3A3tH5AOIlUV/gqrmnJ9CdqVVef4EJsq9Yil4ZzQjKKmPsxveQg==} + '@aws-sdk/middleware-recursion-detection@3.686.0': + resolution: {integrity: sha512-jF9hQ162xLgp9zZ/3w5RUNhmwVnXDBlABEUX8jCgzaFpaa742qR/KKtjjZQ6jMbQnP+8fOCSXFAVNMU+s6v81w==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-sdk-s3@3.666.0': - resolution: {integrity: sha512-JUUCDBbt0+AQTwE9gvyn1zaN1QA+wFj5A+DO2igWuIRkR/nU5oHtsoyZY0+lL+uvZpsstmJn1Eeu04E9ourwag==} + '@aws-sdk/middleware-sdk-s3@3.687.0': + resolution: {integrity: sha512-YGHYqiyRiNNucmvLrfx3QxIkjSDWR/+cc72bn0lPvqFUQBRHZgmYQLxVYrVZSmRzzkH2FQ1HsZcXhOafLbq4vQ==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-ssec@3.664.0': - resolution: {integrity: sha512-uyMnxku5ygRxr/z4pO9ul8Rgn2CoFcKCaKnfHfTgVo2yV/jKHI3rAvyD3OtOO7k4S0odaJzss2Fw6GsIKZy5AQ==} + '@aws-sdk/middleware-ssec@3.686.0': + resolution: {integrity: sha512-zJXml/CpVHFUdlGQqja87vNQ3rPB5SlDbfdwxlj1KBbjnRRwpBtxxmOlWRShg8lnVV6aIMGv95QmpIFy4ayqnQ==} engines: {node: '>=16.0.0'} - '@aws-sdk/middleware-user-agent@3.666.0': - resolution: {integrity: sha512-d8XJ103SGCMsFIKEowpOaZr0W8AkLNd+3CS7W95yb6YmN7lcNGL54RtTSy3m8YJI6W2jXftPFN2oLG4K3aywVQ==} + '@aws-sdk/middleware-user-agent@3.687.0': + resolution: {integrity: sha512-nUgsKiEinyA50CaDXojAkOasAU3Apdg7Qox6IjNUC4ZjgOu7QWsCDB5N28AYMUt06cNYeYQdfMX1aEzG85a1Mg==} engines: {node: '>=16.0.0'} - '@aws-sdk/region-config-resolver@3.664.0': - resolution: {integrity: sha512-o/B8dg8K+9714RGYPgMxZgAChPe/MTSMkf/eHXTUFHNik5i1HgVKfac22njV2iictGy/6GhpFsKa1OWNYAkcUg==} + '@aws-sdk/region-config-resolver@3.686.0': + resolution: {integrity: sha512-6zXD3bSD8tcsMAVVwO1gO7rI1uy2fCD3czgawuPGPopeLiPpo6/3FoUWCQzk2nvEhj7p9Z4BbjwZGSlRkVrXTw==} engines: {node: '>=16.0.0'} - '@aws-sdk/signature-v4-multi-region@3.666.0': - resolution: {integrity: sha512-dbuJp0riLeXkyh7wWCK4Jra/kOvVoLTIq0jHeBoFMTOEvU/DAoo8KjIvHPu0TJ2nQzccW0RW40DAabUIVEQxCg==} + '@aws-sdk/signature-v4-multi-region@3.687.0': + resolution: {integrity: sha512-vdOQHCRHJPX9mT8BM6xOseazHD6NodvHl9cyF5UjNtLn+gERRJEItIA9hf0hlt62odGD8Fqp+rFRuqdmbNkcNw==} engines: {node: '>=16.0.0'} - '@aws-sdk/token-providers@3.664.0': - resolution: {integrity: sha512-dBAvXW2/6bAxidvKARFxyCY2uCynYBKRFN00NhS1T5ggxm3sUnuTpWw1DTjl02CVPkacBOocZf10h8pQbHSK8w==} + '@aws-sdk/token-providers@3.686.0': + resolution: {integrity: sha512-9oL4kTCSePFmyKPskibeiOXV6qavPZ63/kXM9Wh9V6dTSvBtLeNnMxqGvENGKJcTdIgtoqyqA6ET9u0PJ5IRIg==} engines: {node: '>=16.0.0'} peerDependencies: - '@aws-sdk/client-sso-oidc': ^3.664.0 + '@aws-sdk/client-sso-oidc': ^3.686.0 - '@aws-sdk/types@3.664.0': - resolution: {integrity: sha512-+GtXktvVgpreM2b+NJL9OqZGsOzHwlCUrO8jgQUvH/yA6Kd8QO2YFhQCp0C9sSzTteZJVqGBu8E0CQurxJHPbw==} + '@aws-sdk/types@3.686.0': + resolution: {integrity: sha512-xFnrb3wxOoJcW2Xrh63ZgFo5buIu9DF7bOHnwoUxHdNpUXicUh0AHw85TjXxyxIAd0d1psY/DU7QHoNI3OswgQ==} engines: {node: '>=16.0.0'} - '@aws-sdk/util-arn-parser@3.568.0': - resolution: {integrity: sha512-XUKJWWo+KOB7fbnPP0+g/o5Ulku/X53t7i/h+sPHr5xxYTJJ9CYnbToo95mzxe7xWvkLrsNtJ8L+MnNn9INs2w==} + '@aws-sdk/util-arn-parser@3.679.0': + resolution: {integrity: sha512-CwzEbU8R8rq9bqUFryO50RFBlkfufV9UfMArHPWlo+lmsC+NlSluHQALoj6Jkq3zf5ppn1CN0c1DDLrEqdQUXg==} engines: {node: '>=16.0.0'} - '@aws-sdk/util-endpoints@3.664.0': - resolution: {integrity: sha512-KrXoHz6zmAahVHkyWMRT+P6xJaxItgmklxEDrT+npsUB4d5C/lhw16Crcp9TDi828fiZK3GYKRAmmNhvmzvBNg==} + '@aws-sdk/util-endpoints@3.686.0': + resolution: {integrity: sha512-7msZE2oYl+6QYeeRBjlDgxQUhq/XRky3cXE0FqLFs2muLS7XSuQEXkpOXB3R782ygAP6JX0kmBxPTLurRTikZg==} engines: {node: '>=16.0.0'} - '@aws-sdk/util-locate-window@3.568.0': - resolution: {integrity: sha512-3nh4TINkXYr+H41QaPelCceEB2FXP3fxp93YZXB/kqJvX0U9j0N0Uk45gvsjmEPzG8XxkPEeLIfT2I1M7A6Lig==} + '@aws-sdk/util-locate-window@3.679.0': + resolution: {integrity: sha512-zKTd48/ZWrCplkXpYDABI74rQlbR0DNHs8nH95htfSLj9/mWRSwaGptoxwcihaq/77vi/fl2X3y0a1Bo8bt7RA==} engines: {node: '>=16.0.0'} - '@aws-sdk/util-user-agent-browser@3.664.0': - resolution: {integrity: sha512-c/PV3+f1ss4PpskHbcOxTZ6fntV2oXy/xcDR9nW+kVaz5cM1G702gF0rvGLKPqoBwkj2rWGe6KZvEBeLzynTUQ==} + '@aws-sdk/util-user-agent-browser@3.686.0': + resolution: {integrity: sha512-YiQXeGYZegF1b7B2GOR61orhgv79qmI0z7+Agm3NXLO6hGfVV3kFUJbXnjtH1BgWo5hbZYW7HQ2omGb3dnb6Lg==} - '@aws-sdk/util-user-agent-node@3.666.0': - resolution: {integrity: sha512-DzbOMcAqrn51Z0fz5FvofaYmQA+sOJKO2cb8zQrix3TkzsTw1vRLo/cgQUJuJRGptbQCe1gnj7+21Gd5hpU6Ag==} + '@aws-sdk/util-user-agent-node@3.687.0': + resolution: {integrity: sha512-idkP6ojSTZ4ek1pJ8wIN7r9U3KR5dn0IkJn3KQBXQ58LWjkRqLtft2vxzdsktWwhPKjjmIKl1S0kbvqLawf8XQ==} engines: {node: '>=16.0.0'} peerDependencies: aws-crt: '>=1.0.0' @@ -306,46 +402,29 @@ packages: aws-crt: optional: true - '@aws-sdk/xml-builder@3.662.0': - resolution: {integrity: sha512-ikLkXn0igUpnJu2mCZjklvmcDGWT9OaLRv3JyC/cRkTaaSrblPjPM7KKsltxdMTLQ+v7fjCN0TsJpxphMfaOPA==} + '@aws-sdk/xml-builder@3.686.0': + resolution: {integrity: sha512-k0z5b5dkYSuOHY0AOZ4iyjcGBeVL9lWsQNF4+c+1oK3OW4fRWl/bNa1soMRMpangsHPzgyn/QkzuDbl7qR4qrw==} engines: {node: '>=16.0.0'} - '@babel/helper-string-parser@7.24.8': - resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==} + '@babel/helper-string-parser@7.25.9': + resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} engines: {node: '>=6.9.0'} - '@babel/helper-string-parser@7.25.7': - resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==} + '@babel/helper-validator-identifier@7.25.9': + resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.24.7': - resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} - engines: {node: '>=6.9.0'} - - '@babel/helper-validator-identifier@7.25.7': - resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==} - engines: {node: '>=6.9.0'} - - '@babel/parser@7.25.0': - resolution: {integrity: sha512-CzdIU9jdP0dg7HdyB+bHvDJGagUv+qtzZt5rYCWwW6tITNqV9odjp6Qu41gkG0ca5UfdDUWrKkiAnHHdGRnOrA==} + '@babel/parser@7.26.2': + resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==} engines: {node: '>=6.0.0'} hasBin: true - '@babel/parser@7.25.7': - resolution: {integrity: sha512-aZn7ETtQsjjGG5HruveUK06cU3Hljuhd9Iojm4M8WWv3wLE6OkE5PWbDUkItmMgegmccaITudyuW5RPYrYlgWw==} - engines: {node: '>=6.0.0'} - hasBin: true - - '@babel/runtime@7.25.0': - resolution: {integrity: sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==} - engines: {node: '>=6.9.0'} - - '@babel/types@7.25.0': - resolution: {integrity: sha512-LcnxQSsd9aXOIgmmSpvZ/1yo46ra2ESYyqLcryaBZOghxy5qqOBjvCWP5JfkI8yl9rlxRgdLTTMCQQRcN2hdCg==} + '@babel/runtime@7.26.0': + resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} engines: {node: '>=6.9.0'} - '@babel/types@7.25.7': - resolution: {integrity: sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==} + '@babel/types@7.26.0': + resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==} engines: {node: '>=6.9.0'} '@changesets/apply-release-plan@7.0.5': @@ -357,8 +436,8 @@ packages: '@changesets/changelog-git@0.2.0': resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} - '@changesets/cli@2.27.8': - resolution: {integrity: sha512-gZNyh+LdSsI82wBSHLQ3QN5J30P4uHKJ4fXgoGwQxfXwYFTJzDdvIJasZn8rYQtmKhyQuiBj4SSnLuKlxKWq4w==} + '@changesets/cli@2.27.9': + resolution: {integrity: sha512-q42a/ZbDnxPpCb5Wkm6tMVIxgeI9C/bexntzTeCFBrQEdpisQqk8kCHllYZMDjYtEc1ZzumbMJAG8H0Z4rdvjg==} hasBin: true '@changesets/config@3.0.3': @@ -407,6 +486,56 @@ packages: resolution: {integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==} engines: {node: '>=0.1.90'} + '@d3fc/d3fc-axis@3.0.7': + resolution: {integrity: sha512-S4pILxkQUkD7WQmimWxIEHfXUYEonlXWuWvMP6iq3KXL3d+cj4flvwNqLYZvSVaQDdK990cKkjrK/ZAKnReGlg==} + peerDependencies: + d3-scale: '*' + d3-selection: '*' + d3-shape: '*' + + '@d3fc/d3fc-chart@5.1.9': + resolution: {integrity: sha512-xFO9lDUi2wAkjfyWlVZuFwSWEgnk0WOEagR2R9KzQ+uxeg3oZOPzwE+AZbpALyQbjjQ2uIxcOk56xnmnnayk3w==} + peerDependencies: + d3-scale: '*' + d3-selection: '*' + + '@d3fc/d3fc-data-join@6.0.3': + resolution: {integrity: sha512-fd1D2Cl4YGjzl3gBhcrvTl/VxaSncY0ZcokWsN8ahtmk9DZK4DnAgHGrdecnXVLkOx+ANDcqxqscYz6MWXLbcA==} + peerDependencies: + d3-selection: '*' + + '@d3fc/d3fc-element@6.2.0': + resolution: {integrity: sha512-AvdZ3V4mVxF9dGYLiDCoqr3GhrFOUQEc1FcP20QEhQ3fJ3qYRwx7/uhL7G/L2xbe6k4delPgnLOvtoaDenhpZw==} + + '@d3fc/d3fc-pointer@3.0.3': + resolution: {integrity: sha512-hXY7LqliDEJBH/do4YZusdLoikLYlWoN7efPC7YKYJ8igoEQFa48BqEHcANLs1qH+r7vzL2SS8V39MzgnJ1yQA==} + peerDependencies: + d3-dispatch: '*' + d3-selection: '*' + + '@d3fc/d3fc-rebind@6.0.1': + resolution: {integrity: sha512-+ryBZ53ALMffbADwnFAtTYQJcT7PE5BwpducGYS0X6Jux6ESnp+fP+cDQvBGbDBOVqaziGnfeLeJXjtMnZujmQ==} + + '@d3fc/d3fc-series@6.1.3': + resolution: {integrity: sha512-OSbt60SohTIib1xihX9ufneyJY7s9Feg9hvXVyEBZEBkwNE1NaeesZJ4nkmslu39RWuwsvpK3apL/XuBw7i5WA==} + peerDependencies: + d3-array: '*' + d3-scale: '*' + d3-scale-chromatic: '*' + d3-selection: '*' + d3-shape: '*' + + '@d3fc/d3fc-shape@6.0.1': + resolution: {integrity: sha512-/dD3S8BWrOjO2mSptUmwe38V7KG4Kw6liIE5NXZJjX/XidfZhuDu7WWuya3i90HeNYDZNcs6Z+4qM3FnvlZf8g==} + peerDependencies: + d3-path: '*' + + '@d3fc/d3fc-webgl@3.2.1': + resolution: {integrity: sha512-yNYHW/tC05rrJs5fpVM5zdmInL8NH6UP09ZJ2tmKw62ELYHWySV8vuXOVZN3V/3WihPa60p2w23H0Hrp2b5qeg==} + peerDependencies: + d3-scale: '*' + d3-shape: '*' + '@dabh/diagnostics@2.0.3': resolution: {integrity: sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==} @@ -416,8 +545,8 @@ packages: cpu: [ppc64] os: [aix] - '@esbuild/aix-ppc64@0.23.0': - resolution: {integrity: sha512-3sG8Zwa5fMcA9bgqB8AfWPQ+HFke6uD3h1s3RIwUNK8EG7a4buxvuFTs3j1IMs2NXAk9F30C/FF4vxRgQCcmoQ==} + '@esbuild/aix-ppc64@0.24.0': + resolution: {integrity: sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==} engines: {node: '>=18'} cpu: [ppc64] os: [aix] @@ -428,8 +557,8 @@ packages: cpu: [arm64] os: [android] - '@esbuild/android-arm64@0.23.0': - resolution: {integrity: sha512-EuHFUYkAVfU4qBdyivULuu03FhJO4IJN9PGuABGrFy4vUuzk91P2d+npxHcFdpUnfYKy0PuV+n6bKIpHOB3prQ==} + '@esbuild/android-arm64@0.24.0': + resolution: {integrity: sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==} engines: {node: '>=18'} cpu: [arm64] os: [android] @@ -440,8 +569,8 @@ packages: cpu: [arm] os: [android] - '@esbuild/android-arm@0.23.0': - resolution: {integrity: sha512-+KuOHTKKyIKgEEqKbGTK8W7mPp+hKinbMBeEnNzjJGyFcWsfrXjSTNluJHCY1RqhxFurdD8uNXQDei7qDlR6+g==} + '@esbuild/android-arm@0.24.0': + resolution: {integrity: sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==} engines: {node: '>=18'} cpu: [arm] os: [android] @@ -452,8 +581,8 @@ packages: cpu: [x64] os: [android] - '@esbuild/android-x64@0.23.0': - resolution: {integrity: sha512-WRrmKidLoKDl56LsbBMhzTTBxrsVwTKdNbKDalbEZr0tcsBgCLbEtoNthOW6PX942YiYq8HzEnb4yWQMLQuipQ==} + '@esbuild/android-x64@0.24.0': + resolution: {integrity: sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==} engines: {node: '>=18'} cpu: [x64] os: [android] @@ -464,8 +593,8 @@ packages: cpu: [arm64] os: [darwin] - '@esbuild/darwin-arm64@0.23.0': - resolution: {integrity: sha512-YLntie/IdS31H54Ogdn+v50NuoWF5BDkEUFpiOChVa9UnKpftgwzZRrI4J132ETIi+D8n6xh9IviFV3eXdxfow==} + '@esbuild/darwin-arm64@0.24.0': + resolution: {integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==} engines: {node: '>=18'} cpu: [arm64] os: [darwin] @@ -476,8 +605,8 @@ packages: cpu: [x64] os: [darwin] - '@esbuild/darwin-x64@0.23.0': - resolution: {integrity: sha512-IMQ6eme4AfznElesHUPDZ+teuGwoRmVuuixu7sv92ZkdQcPbsNHzutd+rAfaBKo8YK3IrBEi9SLLKWJdEvJniQ==} + '@esbuild/darwin-x64@0.24.0': + resolution: {integrity: sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==} engines: {node: '>=18'} cpu: [x64] os: [darwin] @@ -488,8 +617,8 @@ packages: cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-arm64@0.23.0': - resolution: {integrity: sha512-0muYWCng5vqaxobq6LB3YNtevDFSAZGlgtLoAc81PjUfiFz36n4KMpwhtAd4he8ToSI3TGyuhyx5xmiWNYZFyw==} + '@esbuild/freebsd-arm64@0.24.0': + resolution: {integrity: sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==} engines: {node: '>=18'} cpu: [arm64] os: [freebsd] @@ -500,8 +629,8 @@ packages: cpu: [x64] os: [freebsd] - '@esbuild/freebsd-x64@0.23.0': - resolution: {integrity: sha512-XKDVu8IsD0/q3foBzsXGt/KjD/yTKBCIwOHE1XwiXmrRwrX6Hbnd5Eqn/WvDekddK21tfszBSrE/WMaZh+1buQ==} + '@esbuild/freebsd-x64@0.24.0': + resolution: {integrity: sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==} engines: {node: '>=18'} cpu: [x64] os: [freebsd] @@ -512,8 +641,8 @@ packages: cpu: [arm64] os: [linux] - '@esbuild/linux-arm64@0.23.0': - resolution: {integrity: sha512-j1t5iG8jE7BhonbsEg5d9qOYcVZv/Rv6tghaXM/Ug9xahM0nX/H2gfu6X6z11QRTMT6+aywOMA8TDkhPo8aCGw==} + '@esbuild/linux-arm64@0.24.0': + resolution: {integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==} engines: {node: '>=18'} cpu: [arm64] os: [linux] @@ -524,8 +653,8 @@ packages: cpu: [arm] os: [linux] - '@esbuild/linux-arm@0.23.0': - resolution: {integrity: sha512-SEELSTEtOFu5LPykzA395Mc+54RMg1EUgXP+iw2SJ72+ooMwVsgfuwXo5Fn0wXNgWZsTVHwY2cg4Vi/bOD88qw==} + '@esbuild/linux-arm@0.24.0': + resolution: {integrity: sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==} engines: {node: '>=18'} cpu: [arm] os: [linux] @@ -536,8 +665,8 @@ packages: cpu: [ia32] os: [linux] - '@esbuild/linux-ia32@0.23.0': - resolution: {integrity: sha512-P7O5Tkh2NbgIm2R6x1zGJJsnacDzTFcRWZyTTMgFdVit6E98LTxO+v8LCCLWRvPrjdzXHx9FEOA8oAZPyApWUA==} + '@esbuild/linux-ia32@0.24.0': + resolution: {integrity: sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==} engines: {node: '>=18'} cpu: [ia32] os: [linux] @@ -548,8 +677,8 @@ packages: cpu: [loong64] os: [linux] - '@esbuild/linux-loong64@0.23.0': - resolution: {integrity: sha512-InQwepswq6urikQiIC/kkx412fqUZudBO4SYKu0N+tGhXRWUqAx+Q+341tFV6QdBifpjYgUndV1hhMq3WeJi7A==} + '@esbuild/linux-loong64@0.24.0': + resolution: {integrity: sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==} engines: {node: '>=18'} cpu: [loong64] os: [linux] @@ -560,8 +689,8 @@ packages: cpu: [mips64el] os: [linux] - '@esbuild/linux-mips64el@0.23.0': - resolution: {integrity: sha512-J9rflLtqdYrxHv2FqXE2i1ELgNjT+JFURt/uDMoPQLcjWQA5wDKgQA4t/dTqGa88ZVECKaD0TctwsUfHbVoi4w==} + '@esbuild/linux-mips64el@0.24.0': + resolution: {integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==} engines: {node: '>=18'} cpu: [mips64el] os: [linux] @@ -572,8 +701,8 @@ packages: cpu: [ppc64] os: [linux] - '@esbuild/linux-ppc64@0.23.0': - resolution: {integrity: sha512-cShCXtEOVc5GxU0fM+dsFD10qZ5UpcQ8AM22bYj0u/yaAykWnqXJDpd77ublcX6vdDsWLuweeuSNZk4yUxZwtw==} + '@esbuild/linux-ppc64@0.24.0': + resolution: {integrity: sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==} engines: {node: '>=18'} cpu: [ppc64] os: [linux] @@ -584,8 +713,8 @@ packages: cpu: [riscv64] os: [linux] - '@esbuild/linux-riscv64@0.23.0': - resolution: {integrity: sha512-HEtaN7Y5UB4tZPeQmgz/UhzoEyYftbMXrBCUjINGjh3uil+rB/QzzpMshz3cNUxqXN7Vr93zzVtpIDL99t9aRw==} + '@esbuild/linux-riscv64@0.24.0': + resolution: {integrity: sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==} engines: {node: '>=18'} cpu: [riscv64] os: [linux] @@ -596,8 +725,8 @@ packages: cpu: [s390x] os: [linux] - '@esbuild/linux-s390x@0.23.0': - resolution: {integrity: sha512-WDi3+NVAuyjg/Wxi+o5KPqRbZY0QhI9TjrEEm+8dmpY9Xir8+HE/HNx2JoLckhKbFopW0RdO2D72w8trZOV+Wg==} + '@esbuild/linux-s390x@0.24.0': + resolution: {integrity: sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==} engines: {node: '>=18'} cpu: [s390x] os: [linux] @@ -608,8 +737,8 @@ packages: cpu: [x64] os: [linux] - '@esbuild/linux-x64@0.23.0': - resolution: {integrity: sha512-a3pMQhUEJkITgAw6e0bWA+F+vFtCciMjW/LPtoj99MhVt+Mfb6bbL9hu2wmTZgNd994qTAEw+U/r6k3qHWWaOQ==} + '@esbuild/linux-x64@0.24.0': + resolution: {integrity: sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==} engines: {node: '>=18'} cpu: [x64] os: [linux] @@ -620,14 +749,14 @@ packages: cpu: [x64] os: [netbsd] - '@esbuild/netbsd-x64@0.23.0': - resolution: {integrity: sha512-cRK+YDem7lFTs2Q5nEv/HHc4LnrfBCbH5+JHu6wm2eP+d8OZNoSMYgPZJq78vqQ9g+9+nMuIsAO7skzphRXHyw==} + '@esbuild/netbsd-x64@0.24.0': + resolution: {integrity: sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==} engines: {node: '>=18'} cpu: [x64] os: [netbsd] - '@esbuild/openbsd-arm64@0.23.0': - resolution: {integrity: sha512-suXjq53gERueVWu0OKxzWqk7NxiUWSUlrxoZK7usiF50C6ipColGR5qie2496iKGYNLhDZkPxBI3erbnYkU0rQ==} + '@esbuild/openbsd-arm64@0.24.0': + resolution: {integrity: sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==} engines: {node: '>=18'} cpu: [arm64] os: [openbsd] @@ -638,8 +767,8 @@ packages: cpu: [x64] os: [openbsd] - '@esbuild/openbsd-x64@0.23.0': - resolution: {integrity: sha512-6p3nHpby0DM/v15IFKMjAaayFhqnXV52aEmv1whZHX56pdkK+MEaLoQWj+H42ssFarP1PcomVhbsR4pkz09qBg==} + '@esbuild/openbsd-x64@0.24.0': + resolution: {integrity: sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==} engines: {node: '>=18'} cpu: [x64] os: [openbsd] @@ -650,8 +779,8 @@ packages: cpu: [x64] os: [sunos] - '@esbuild/sunos-x64@0.23.0': - resolution: {integrity: sha512-BFelBGfrBwk6LVrmFzCq1u1dZbG4zy/Kp93w2+y83Q5UGYF1d8sCzeLI9NXjKyujjBBniQa8R8PzLFAUrSM9OA==} + '@esbuild/sunos-x64@0.24.0': + resolution: {integrity: sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==} engines: {node: '>=18'} cpu: [x64] os: [sunos] @@ -662,8 +791,8 @@ packages: cpu: [arm64] os: [win32] - '@esbuild/win32-arm64@0.23.0': - resolution: {integrity: sha512-lY6AC8p4Cnb7xYHuIxQ6iYPe6MfO2CC43XXKo9nBXDb35krYt7KGhQnOkRGar5psxYkircpCqfbNDB4uJbS2jQ==} + '@esbuild/win32-arm64@0.24.0': + resolution: {integrity: sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==} engines: {node: '>=18'} cpu: [arm64] os: [win32] @@ -674,8 +803,8 @@ packages: cpu: [ia32] os: [win32] - '@esbuild/win32-ia32@0.23.0': - resolution: {integrity: sha512-7L1bHlOTcO4ByvI7OXVI5pNN6HSu6pUQq9yodga8izeuB1KcT2UkHaH6118QJwopExPn0rMHIseCTx1CRo/uNA==} + '@esbuild/win32-ia32@0.24.0': + resolution: {integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==} engines: {node: '>=18'} cpu: [ia32] os: [win32] @@ -686,14 +815,14 @@ packages: cpu: [x64] os: [win32] - '@esbuild/win32-x64@0.23.0': - resolution: {integrity: sha512-Arm+WgUFLUATuoxCJcahGuk6Yj9Pzxd6l11Zb/2aAuv5kWWvvfhLFo2fni4uSK5vzlUdCGZ/BdV5tH8klj8p8g==} + '@esbuild/win32-x64@0.24.0': + resolution: {integrity: sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==} engines: {node: '>=18'} cpu: [x64] os: [win32] - '@grpc/grpc-js@1.12.1': - resolution: {integrity: sha512-VYrLinJNeW3idIZHTy7BsVL7bsPF9+l89WDYTDV8o1QYJzkf3BSoPXdfaz4c8DyeY12LGSaS8m8BgbT8W66h6Q==} + '@grpc/grpc-js@1.12.2': + resolution: {integrity: sha512-bgxdZmgTrJZX50OjyVwz3+mNEnCTNkh3cIqGPWVNeW9jX6bn1ZkU80uPd+67/ZpIJIjRQ9qaHCjhavyoWYxumg==} engines: {node: '>=12.10.0'} '@grpc/proto-loader@0.7.13': @@ -755,57 +884,69 @@ packages: resolution: {integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==} hasBin: true - '@milaboratories/computable@2.1.12': - resolution: {integrity: sha512-1Psgs+UymQzGWUtD3Vd0ClaJR86MNrG2WzfxVB6cfrs+Hn8lAFPts5kMA5pkKykP70FM91OJw70GJSHMoH807A==} + '@milaboratories/computable@2.2.1': + resolution: {integrity: sha512-c9aCRqcsOLHd8GKu3yzy9FDWCc9XSURE44iEnQRWd4UfmcW/anTNbViCfANmG1VMlRXo91a19tkyOUhuecttcQ==} - '@milaboratories/pframes-node@1.5.10': - resolution: {integrity: sha512-H/OUDfEKrmjg7qn0apbWCJQJsp3Jdmlho/bGYGRNeg8W570C6TexufdCvWqoPIg71BcBiKP2gQcof78OutliEQ==} + '@milaboratories/graph-maker@1.0.21': + resolution: {integrity: sha512-ayiVOHeRqjaNUyoKa7DZxwLES3BZL2acK+PUBDQQM5dW0yy/lIwPXI1zu9Fx6Gi7CsjpXHuOUa0dek16jfybkw==} + + '@milaboratories/helpers@1.6.6': + resolution: {integrity: sha512-XDT4biNMNyovWZBr9Bho7NHIzJhMoNu2sBpVymc98YV2WylR5jQFhBOGU/Nsvk4CiHAWFW2MjLUle4sMWUWoBg==} + + '@milaboratories/miplots4@1.0.46': + resolution: {integrity: sha512-D6EpJ6RBpLMISToL0SWnFx82drnoVjyuob6N3cdp8hPiNritMRLW+P7taITnoAczhJl1ab+wMr7XLyLc5T7ghw==} + + '@milaboratories/pf-plots@1.0.51': + resolution: {integrity: sha512-iM7GeoaGNBLT8/mbzDgNpz5sA/5LExPtGoc6H6VSB/9iBmaYH13gKr/22oGhAa8xP0B6Y7bKpnne8G6h90XyMg==} + + '@milaboratories/pframes-node@1.6.8': + resolution: {integrity: sha512-l/ifIGkdjYGDeD3JA+brQt+3MdEAsdQn6buAhm2Z2opj9xTR+Q24XZyrRrxwVz01rIfdrK1IaRfi6cN5hxahXA==} peerDependencies: '@milaboratories/pl-model-common': '*' - '@milaboratories/pl-client@2.4.20': - resolution: {integrity: sha512-bLDnlf9Ut0A/JnMqTIC1kfBJ9bGCTvs6f/HWv3cMjoSQSsBvr9f66Hb98BA2wTdIYioQL3LHMThRGlebOl5dTg==} + '@milaboratories/pl-client@2.5.9': + resolution: {integrity: sha512-iWIAQZEVMS1XJQa3f2VCULcI0XXaGB7jomK1lr5WUZHTdbCOMXT4c3mJW7fiJWQ4gog1mEyjyYfR29by1k+wQg==} - '@milaboratories/pl-config@1.2.2': - resolution: {integrity: sha512-kS8lFCmMm6FiVUAErPCUZ5yrQW8U3OnQvRZzHFPik0ZcJdBZUtRCro9syKkgjgX5O0ULZhBpReERzYUBUKeKrQ==} + '@milaboratories/pl-config@1.3.1': + resolution: {integrity: sha512-f73h222C9bjiiX0y7kwTU78X+CAKejSEKWKIRrMhbio092uQEODf+aVlvMFnejSR45Pe5rGOyolE3/GNuv8U2Q==} - '@milaboratories/pl-drivers@1.2.30': - resolution: {integrity: sha512-aVXmSHxMUf1wrp19sDIIaoza+Q16AHUPU1f02YnCcbqvCnnhNRNBGiWZyJJ2jHDrUfCK762LjorLcFymP+gBLw==} + '@milaboratories/pl-drivers@1.3.15': + resolution: {integrity: sha512-rc5HBBMWhBEyytyY0V0appmqs2t19lCnnGqIa4BfC/ELr0GlgrJwJhfRopUFjiXj9GDGTQ4mK47Ha99M4gf/YA==} - '@milaboratories/pl-local@1.2.2': - resolution: {integrity: sha512-qbOW646ach59j2+52W2/ZkimYPdaF42N1mcXwwVEfniLHIy6QDnm4m+Tk95mJefV9xLSHl323doexf8yQ0mQQw==} + '@milaboratories/pl-local@1.5.2': + resolution: {integrity: sha512-AKz4CnMbMRtMDJtRvdyQLIENbltVOdB2AcFh8PVVAT+rkDPMszIChwdq+0JvtVkTbTbIIQG0s/E58eaNFKpo6Q==} - '@milaboratories/pl-middle-layer@1.10.47': - resolution: {integrity: sha512-KeIHhYY3y8178O/BHfm6ET6WETMgLGTeD2Pjv8JE0d1LdIGGzhWrX8iTWYdgsJfuz8ry3H9jtdaJURx1uJVztA==} + '@milaboratories/pl-middle-layer@1.14.23': + resolution: {integrity: sha512-1JHOrhbHi9TcfKf3Bea4b9hQgytX6Um6ZPztyXoVi5G4HxGw5bwQxWFLVbPpmTLyjzMmpC7XWVDHX6R5c5BlnA==} - '@milaboratories/pl-model-common@1.3.14': - resolution: {integrity: sha512-X4bDeqQ10o/dKKlihj56Y0bfitcTdBJrUlaaPV3hFrF+D4v+FTbeCFFSIlPELu0ova4YnF4iOW4kfuiIWVppzA==} + '@milaboratories/pl-model-common@1.6.1': + resolution: {integrity: sha512-i+0a7Pj1oh4iOK5g0mBoIwh4RgX4iC5Wd6i+afppXexc0CeDaoY5Q+I4Wt5pU0NvuE2IaVnk9cSH1zmoPZG3bQ==} - '@milaboratories/pl-model-middle-layer@1.4.4': - resolution: {integrity: sha512-2bT904a+LXvLqgwujiLfjVgqaht720EsAGMamFyo03BXWimMjqaE7ytuaGgc4MM4ojnOVvKlmn3gFlAxRoipmg==} + '@milaboratories/pl-model-middle-layer@1.5.7': + resolution: {integrity: sha512-on+7j1nFG6fMJ/TZssuZLt8BeBfs6NFfNBIVAYK2HpVBvOQvXh+5eoy9StkMCwOU1q8MnRI77GwxdXpI4XO2eg==} - '@milaboratories/pl-tree@1.3.19': - resolution: {integrity: sha512-YQcahUuZcnuaBsSDaG1ieR0JKLOsxDVebBMby9wWUrTo+K0bUNlW4iZv2ibJsF3G2mXjXEmT3OevA0yD3UjyhA==} + '@milaboratories/pl-tree@1.4.10': + resolution: {integrity: sha512-zyCobSqtiIlhNuYQ83wiQCapXZtzLjdF2Jra21KosjaZtlFMO9AgDu6RXHF+OJtVQnQt4Cf2KTfMDAux5/+NUA==} '@milaboratories/resolve-helper@1.0.1': resolution: {integrity: sha512-X3SV7YA21LRN8caw3glOsENubglQPIRc02i+C2Sa+cuy4iGc6sk6fQQC34Cx1BXHeZWHXL8fjntFjIWHAfVlQw==} - '@milaboratories/software-pframes-conv@1.5.10': - resolution: {integrity: sha512-v9NlEFCEta2JnNiWkkJcjMaIA0B5r13fsvj5C7/ZnEwacgwXK0THqZqgrg3rDJaP719PDeqYuO30aqCrfpecSA==} + '@milaboratories/software-pframes-conv@1.6.8': + resolution: {integrity: sha512-h/UAMRRuML0MxYbYBbKo3cYub9WAfDs7GKNnxUPhay4aO4xE1KidGSWdAXLKZ+m0ttlgH1Lf2sW2WejVRQpyqA==} - '@milaboratories/tengo-tester@1.4.4': - resolution: {integrity: sha512-UWT05MAwizVEbUQC+HDD7VPb26AtZesCAT67CEzWSg4GUbNrOw5c/+TCCLJAS1lq3UQY0i3VV9QOtI1kjVokRQ==} + '@milaboratories/tengo-tester@1.4.5': + resolution: {integrity: sha512-zkSlRlQKZRv1TXicCSeOGhGDdinUfJ7BsIww0AVz7bS6q2vOTaVy9DONlvOk+5ntIOClzFhlozYVj0algea3rA==} os: [darwin, linux, win32] hasBin: true - '@milaboratories/ts-helpers-oclif@1.1.8': - resolution: {integrity: sha512-8kt01p3pdX7Y6c9BwjOqSvIYRF638VDtvWoMbbX0lopxMOzzWpMnV7u0Pq/PaOfZoZ6SBNYUcslwr/3WPA27aw==} + '@milaboratories/ts-helpers-oclif@1.1.10': + resolution: {integrity: sha512-rP9tcY7G9p3zcjojElzDUn4y3/F4nVbNLWaWjSjtBTbMChuigLAoGqJxdP9P1YROV2ZAhmyh7JlTro1PVeQEYg==} - '@milaboratories/ts-helpers@1.0.30': - resolution: {integrity: sha512-chFxKNOZDwg52DAHscbTZ9h325KODpw5RZ1nh2VjmRR2EupyiWuHE9czb9f0+8IKy6FnkNjV3Lk2xpZUR1HU4A==} + '@milaboratories/ts-helpers@1.1.1': + resolution: {integrity: sha512-frFq4u6Z0iePdtcA+Jj8h798RiHe+Ls5U+YpCQcx1Dk349RFs59HMNK7Y9xWTdxfSTna8+noEiBhqp2tV6Y4cA==} - '@milaboratories/uikit@1.2.18': - resolution: {integrity: sha512-kOhjD1AVN7JZkzAYLsC5tf+pZ0ekNdMaw/+wwXn05hNN6cU2TQK2w7VGTZuED0ahzyCM8X2YPKdsxlcMQXDSiw==} + '@milaboratories/uikit@2.0.13': + resolution: {integrity: sha512-uTTpdJn0pD6Zqj/9UQ8l+M8wFrDVY/M1KEDD66Cn86Ctm165uxoyz713jq/UjD4SCsM8ge+ysgpLdshdMOdr8w==} '@nodelib/fs.scandir@2.1.5': resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} @@ -819,33 +960,43 @@ packages: resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} engines: {node: '>= 8'} - '@oclif/core@4.0.27': - resolution: {integrity: sha512-9j92jHr6k2tjQ6/mIwNi46Gqw+qbPFQ02mxT5T8/nxO2fgsPL3qL0kb9SR1il5AVfqpgLIG3uLUcw87rgaioUg==} + '@oclif/core@4.0.31': + resolution: {integrity: sha512-7oyIZv/C1TP+fPc2tSzVPYqG1zU+nel1QvJxjAWyVhud0J8B5SpKZnryedxs3nlSVPJ6K1MT31C9esupCBYgZw==} engines: {node: '>=18.0.0'} '@pkgjs/parseargs@0.11.0': resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} engines: {node: '>=14'} - '@platforma-sdk/block-tools@2.3.12': - resolution: {integrity: sha512-+UNzRVpPn+eqk4mNttr51Cv88gBwc3K/FseDyiq6z33cwTrAxt9qnWC8motlcvAyv2ApbJyGHjIXqi94LU3vBw==} + '@platforma-open/milaboratories.runenv-python-3@1.0.0': + resolution: {integrity: sha512-9qmHiN+xtkbE4S5L0+tmIu5WuKIZViR3X+fZDlc1VbZcxoGEY0M52XMOfVb3gQ9ZLNiIYA6JzxcmdlF1Qurh+g==} + + '@platforma-open/milaboratories.software-small-binaries@1.14.5': + resolution: {integrity: sha512-zfLLCu6Bv7yDcu8pFOUiP4v1dvSCDRjAGlzYuiNJ0IAxgC85+GUWuD0Pu7+NO/MaKQ2hrUPHhgJjzByAI/vM1w==} + + '@platforma-sdk/block-tools@2.3.23': + resolution: {integrity: sha512-AI8iEXaEQtj8kziwTpshbl8YrVV7YaYxYngjW4RXC4RYZtXBGPcWBEXW1b84DIbrojAScJ63R4dnqnjX0W6KTA==} hasBin: true - '@platforma-sdk/model@1.5.40': - resolution: {integrity: sha512-BmkzdUmmx4iYqhYXLZ8sQJPNUUnM+H1lku+ukIaRxP/qkaTlqUVtuL9/sec48i32/BIlW1cl0rd3ly3TkrxEgg==} + '@platforma-sdk/model@1.8.0': + resolution: {integrity: sha512-Vg9ZQGp1yD3pjRty+VzSR3jCKW1GfgedOEGGP5C9MRSllFesshZvRUz5aX7ojhIcTjNGRL3okryGcgXRTyOQUQ==} + + '@platforma-sdk/package-builder@2.11.1': + resolution: {integrity: sha512-1wzRlb9R00gjBdT/E/RLDea3IorTlucsod1wzKKep8AVFhJosiXGVDuFVN6eZv/FFKTFCOuRlj7vMZRZuhaQLw==} + hasBin: true - '@platforma-sdk/tengo-builder@1.14.13': - resolution: {integrity: sha512-MuP0nruLsl4QKjD4qHWoh7vShsWE4/BY/BXK/95k1bRq0jzr7hTfirKDukjv/wZThMXMcemACT5YvuqnZRQHGw==} + '@platforma-sdk/tengo-builder@1.16.1': + resolution: {integrity: sha512-jYksvztjVhBsL2MKQ1T2bkLtSUy0eABscoKpM0YH6LR6fgAyZ4K0fSL+jVnTXLfnU+M0nPoFQxRdicqWU8kofw==} hasBin: true - '@platforma-sdk/test@1.5.43': - resolution: {integrity: sha512-YxUoHY5ExXjDa9VgLpxLtmdxYWGzkNxABaMEL1b80dEGREEDi0gwmYtlRTfzyTFM/hxGeSUgAFNLb/jafthYjQ==} + '@platforma-sdk/test@1.8.5': + resolution: {integrity: sha512-v2Lg+K17gWYgOUZ6/3Ivh883l6g7eR/NlVizuD4kylMRKE3omt2GRNNcqG0V+jijjFY1+R25u393w9so8/VvIA==} - '@platforma-sdk/ui-vue@1.5.42': - resolution: {integrity: sha512-VWj91KAjKG1zI7ILSBPz+xC+mDWzTK5WUT14/bSZojUKZyjrytm0Jfs56YKuU38Lfb1fDy6el0c80lfAoaQ4kg==} + '@platforma-sdk/ui-vue@1.8.2': + resolution: {integrity: sha512-Em/60qM2MpY3nWfZ690Js9GVFmRhnMpEt78C/fV2skkPViyZtFmzuO+dOuddYNFr4+W9i1jRJVO9VS8sM5ineg==} - '@platforma-sdk/workflow-tengo@1.3.0': - resolution: {integrity: sha512-jHoKGG4jThaPGBMbycvZufReJRk4a3qVeRlb6n77JVVsieLBriATj5v42xSU7KLRIDJN8Cj1g7efnUH/wxbg7g==} + '@platforma-sdk/workflow-tengo@1.8.1': + resolution: {integrity: sha512-Nbf/ybdn6Rif5RbK4X5R8yOqiPp5u9ACxLZc2SbKrHoZjwQJqJwt+8Nudt9e6tOBjn5tbL21Q5XeRkZmEatIQw==} '@protobuf-ts/grpc-transport@2.9.4': resolution: {integrity: sha512-CgjTR3utmkMkkThpfgtOz9tNR9ZARbNoQYL7TCKqFU2sgAX0LgzAkwOx+sfgtUsZn9J08+yvn307nNJdYocLRA==} @@ -899,223 +1050,153 @@ packages: '@protobufjs/utf8@1.1.0': resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} - '@rollup/rollup-android-arm-eabi@4.19.1': - resolution: {integrity: sha512-XzqSg714++M+FXhHfXpS1tDnNZNpgxxuGZWlRG/jSj+VEPmZ0yg6jV4E0AL3uyBKxO8mO3xtOsP5mQ+XLfrlww==} + '@rollup/rollup-android-arm-eabi@4.25.0': + resolution: {integrity: sha512-CC/ZqFZwlAIbU1wUPisHyV/XRc5RydFrNLtgl3dGYskdwPZdt4HERtKm50a/+DtTlKeCq9IXFEWR+P6blwjqBA==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm-eabi@4.21.0': - resolution: {integrity: sha512-WTWD8PfoSAJ+qL87lE7votj3syLavxunWhzCnx3XFxFiI/BA/r3X7MUM8dVrH8rb2r4AiO8jJsr3ZjdaftmnfA==} - cpu: [arm] - os: [android] - - '@rollup/rollup-android-arm64@4.19.1': - resolution: {integrity: sha512-thFUbkHteM20BGShD6P08aungq4irbIZKUNbG70LN8RkO7YztcGPiKTTGZS7Kw+x5h8hOXs0i4OaHwFxlpQN6A==} - cpu: [arm64] - os: [android] - - '@rollup/rollup-android-arm64@4.21.0': - resolution: {integrity: sha512-a1sR2zSK1B4eYkiZu17ZUZhmUQcKjk2/j9Me2IDjk1GHW7LB5Z35LEzj9iJch6gtUfsnvZs1ZNyDW2oZSThrkA==} + '@rollup/rollup-android-arm64@4.25.0': + resolution: {integrity: sha512-/Y76tmLGUJqVBXXCfVS8Q8FJqYGhgH4wl4qTA24E9v/IJM0XvJCGQVSW1QZ4J+VURO9h8YCa28sTFacZXwK7Rg==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.19.1': - resolution: {integrity: sha512-8o6eqeFZzVLia2hKPUZk4jdE3zW7LCcZr+MD18tXkgBBid3lssGVAYuox8x6YHoEPDdDa9ixTaStcmx88lio5Q==} - cpu: [arm64] - os: [darwin] - - '@rollup/rollup-darwin-arm64@4.21.0': - resolution: {integrity: sha512-zOnKWLgDld/svhKO5PD9ozmL6roy5OQ5T4ThvdYZLpiOhEGY+dp2NwUmxK0Ld91LrbjrvtNAE0ERBwjqhZTRAA==} + '@rollup/rollup-darwin-arm64@4.25.0': + resolution: {integrity: sha512-YVT6L3UrKTlC0FpCZd0MGA7NVdp7YNaEqkENbWQ7AOVOqd/7VzyHpgIpc1mIaxRAo1ZsJRH45fq8j4N63I/vvg==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.19.1': - resolution: {integrity: sha512-4T42heKsnbjkn7ovYiAdDVRRWZLU9Kmhdt6HafZxFcUdpjlBlxj4wDrt1yFWLk7G4+E+8p2C9tcmSu0KA6auGA==} - cpu: [x64] - os: [darwin] - - '@rollup/rollup-darwin-x64@4.21.0': - resolution: {integrity: sha512-7doS8br0xAkg48SKE2QNtMSFPFUlRdw9+votl27MvT46vo44ATBmdZdGysOevNELmZlfd+NEa0UYOA8f01WSrg==} + '@rollup/rollup-darwin-x64@4.25.0': + resolution: {integrity: sha512-ZRL+gexs3+ZmmWmGKEU43Bdn67kWnMeWXLFhcVv5Un8FQcx38yulHBA7XR2+KQdYIOtD0yZDWBCudmfj6lQJoA==} cpu: [x64] os: [darwin] - '@rollup/rollup-linux-arm-gnueabihf@4.19.1': - resolution: {integrity: sha512-MXg1xp+e5GhZ3Vit1gGEyoC+dyQUBy2JgVQ+3hUrD9wZMkUw/ywgkpK7oZgnB6kPpGrxJ41clkPPnsknuD6M2Q==} - cpu: [arm] - os: [linux] + '@rollup/rollup-freebsd-arm64@4.25.0': + resolution: {integrity: sha512-xpEIXhiP27EAylEpreCozozsxWQ2TJbOLSivGfXhU4G1TBVEYtUPi2pOZBnvGXHyOdLAUUhPnJzH3ah5cqF01g==} + cpu: [arm64] + os: [freebsd] - '@rollup/rollup-linux-arm-gnueabihf@4.21.0': - resolution: {integrity: sha512-pWJsfQjNWNGsoCq53KjMtwdJDmh/6NubwQcz52aEwLEuvx08bzcy6tOUuawAOncPnxz/3siRtd8hiQ32G1y8VA==} - cpu: [arm] - os: [linux] + '@rollup/rollup-freebsd-x64@4.25.0': + resolution: {integrity: sha512-sC5FsmZGlJv5dOcURrsnIK7ngc3Kirnx3as2XU9uER+zjfyqIjdcMVgzy4cOawhsssqzoAX19qmxgJ8a14Qrqw==} + cpu: [x64] + os: [freebsd] - '@rollup/rollup-linux-arm-musleabihf@4.19.1': - resolution: {integrity: sha512-DZNLwIY4ftPSRVkJEaxYkq7u2zel7aah57HESuNkUnz+3bZHxwkCUkrfS2IWC1sxK6F2QNIR0Qr/YXw7nkF3Pw==} + '@rollup/rollup-linux-arm-gnueabihf@4.25.0': + resolution: {integrity: sha512-uD/dbLSs1BEPzg564TpRAQ/YvTnCds2XxyOndAO8nJhaQcqQGFgv/DAVko/ZHap3boCvxnzYMa3mTkV/B/3SWA==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.21.0': - resolution: {integrity: sha512-efRIANsz3UHZrnZXuEvxS9LoCOWMGD1rweciD6uJQIx2myN3a8Im1FafZBzh7zk1RJ6oKcR16dU3UPldaKd83w==} + '@rollup/rollup-linux-arm-musleabihf@4.25.0': + resolution: {integrity: sha512-ZVt/XkrDlQWegDWrwyC3l0OfAF7yeJUF4fq5RMS07YM72BlSfn2fQQ6lPyBNjt+YbczMguPiJoCfaQC2dnflpQ==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.19.1': - resolution: {integrity: sha512-C7evongnjyxdngSDRRSQv5GvyfISizgtk9RM+z2biV5kY6S/NF/wta7K+DanmktC5DkuaJQgoKGf7KUDmA7RUw==} - cpu: [arm64] - os: [linux] - - '@rollup/rollup-linux-arm64-gnu@4.21.0': - resolution: {integrity: sha512-ZrPhydkTVhyeGTW94WJ8pnl1uroqVHM3j3hjdquwAcWnmivjAwOYjTEAuEDeJvGX7xv3Z9GAvrBkEzCgHq9U1w==} - cpu: [arm64] - os: [linux] - - '@rollup/rollup-linux-arm64-musl@4.19.1': - resolution: {integrity: sha512-89tFWqxfxLLHkAthAcrTs9etAoBFRduNfWdl2xUs/yLV+7XDrJ5yuXMHptNqf1Zw0UCA3cAutkAiAokYCkaPtw==} + '@rollup/rollup-linux-arm64-gnu@4.25.0': + resolution: {integrity: sha512-qboZ+T0gHAW2kkSDPHxu7quaFaaBlynODXpBVnPxUgvWYaE84xgCKAPEYE+fSMd3Zv5PyFZR+L0tCdYCMAtG0A==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.21.0': - resolution: {integrity: sha512-cfaupqd+UEFeURmqNP2eEvXqgbSox/LHOyN9/d2pSdV8xTrjdg3NgOFJCtc1vQ/jEke1qD0IejbBfxleBPHnPw==} + '@rollup/rollup-linux-arm64-musl@4.25.0': + resolution: {integrity: sha512-ndWTSEmAaKr88dBuogGH2NZaxe7u2rDoArsejNslugHZ+r44NfWiwjzizVS1nUOHo+n1Z6qV3X60rqE/HlISgw==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.19.1': - resolution: {integrity: sha512-PromGeV50sq+YfaisG8W3fd+Cl6mnOOiNv2qKKqKCpiiEke2KiKVyDqG/Mb9GWKbYMHj5a01fq/qlUR28PFhCQ==} - cpu: [ppc64] - os: [linux] - - '@rollup/rollup-linux-powerpc64le-gnu@4.21.0': - resolution: {integrity: sha512-ZKPan1/RvAhrUylwBXC9t7B2hXdpb/ufeu22pG2psV7RN8roOfGurEghw1ySmX/CmDDHNTDDjY3lo9hRlgtaHg==} + '@rollup/rollup-linux-powerpc64le-gnu@4.25.0': + resolution: {integrity: sha512-BVSQvVa2v5hKwJSy6X7W1fjDex6yZnNKy3Kx1JGimccHft6HV0THTwNtC2zawtNXKUu+S5CjXslilYdKBAadzA==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.19.1': - resolution: {integrity: sha512-/1BmHYh+iz0cNCP0oHCuF8CSiNj0JOGf0jRlSo3L/FAyZyG2rGBuKpkZVH9YF+x58r1jgWxvm1aRg3DHrLDt6A==} - cpu: [riscv64] - os: [linux] - - '@rollup/rollup-linux-riscv64-gnu@4.21.0': - resolution: {integrity: sha512-H1eRaCwd5E8eS8leiS+o/NqMdljkcb1d6r2h4fKSsCXQilLKArq6WS7XBLDu80Yz+nMqHVFDquwcVrQmGr28rg==} + '@rollup/rollup-linux-riscv64-gnu@4.25.0': + resolution: {integrity: sha512-G4hTREQrIdeV0PE2JruzI+vXdRnaK1pg64hemHq2v5fhv8C7WjVaeXc9P5i4Q5UC06d/L+zA0mszYIKl+wY8oA==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.19.1': - resolution: {integrity: sha512-0cYP5rGkQWRZKy9/HtsWVStLXzCF3cCBTRI+qRL8Z+wkYlqN7zrSYm6FuY5Kd5ysS5aH0q5lVgb/WbG4jqXN1Q==} + '@rollup/rollup-linux-s390x-gnu@4.25.0': + resolution: {integrity: sha512-9T/w0kQ+upxdkFL9zPVB6zy9vWW1deA3g8IauJxojN4bnz5FwSsUAD034KpXIVX5j5p/rn6XqumBMxfRkcHapQ==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.21.0': - resolution: {integrity: sha512-zJ4hA+3b5tu8u7L58CCSI0A9N1vkfwPhWd/puGXwtZlsB5bTkwDNW/+JCU84+3QYmKpLi+XvHdmrlwUwDA6kqw==} - cpu: [s390x] - os: [linux] - - '@rollup/rollup-linux-x64-gnu@4.19.1': - resolution: {integrity: sha512-XUXeI9eM8rMP8aGvii/aOOiMvTs7xlCosq9xCjcqI9+5hBxtjDpD+7Abm1ZhVIFE1J2h2VIg0t2DX/gjespC2Q==} - cpu: [x64] - os: [linux] - - '@rollup/rollup-linux-x64-gnu@4.21.0': - resolution: {integrity: sha512-e2hrvElFIh6kW/UNBQK/kzqMNY5mO+67YtEh9OA65RM5IJXYTWiXjX6fjIiPaqOkBthYF1EqgiZ6OXKcQsM0hg==} - cpu: [x64] - os: [linux] - - '@rollup/rollup-linux-x64-musl@4.19.1': - resolution: {integrity: sha512-V7cBw/cKXMfEVhpSvVZhC+iGifD6U1zJ4tbibjjN+Xi3blSXaj/rJynAkCFFQfoG6VZrAiP7uGVzL440Q6Me2Q==} + '@rollup/rollup-linux-x64-gnu@4.25.0': + resolution: {integrity: sha512-ThcnU0EcMDn+J4B9LD++OgBYxZusuA7iemIIiz5yzEcFg04VZFzdFjuwPdlURmYPZw+fgVrFzj4CA64jSTG4Ig==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.21.0': - resolution: {integrity: sha512-1vvmgDdUSebVGXWX2lIcgRebqfQSff0hMEkLJyakQ9JQUbLDkEaMsPTLOmyccyC6IJ/l3FZuJbmrBw/u0A0uCQ==} + '@rollup/rollup-linux-x64-musl@4.25.0': + resolution: {integrity: sha512-zx71aY2oQxGxAT1JShfhNG79PnjYhMC6voAjzpu/xmMjDnKNf6Nl/xv7YaB/9SIa9jDYf8RBPWEnjcdlhlv1rQ==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.19.1': - resolution: {integrity: sha512-88brja2vldW/76jWATlBqHEoGjJLRnP0WOEKAUbMcXaAZnemNhlAHSyj4jIwMoP2T750LE9lblvD4e2jXleZsA==} - cpu: [arm64] - os: [win32] - - '@rollup/rollup-win32-arm64-msvc@4.21.0': - resolution: {integrity: sha512-s5oFkZ/hFcrlAyBTONFY1TWndfyre1wOMwU+6KCpm/iatybvrRgmZVM+vCFwxmC5ZhdlgfE0N4XorsDpi7/4XQ==} + '@rollup/rollup-win32-arm64-msvc@4.25.0': + resolution: {integrity: sha512-JT8tcjNocMs4CylWY/CxVLnv8e1lE7ff1fi6kbGocWwxDq9pj30IJ28Peb+Y8yiPNSF28oad42ApJB8oUkwGww==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.19.1': - resolution: {integrity: sha512-LdxxcqRVSXi6k6JUrTah1rHuaupoeuiv38du8Mt4r4IPer3kwlTo+RuvfE8KzZ/tL6BhaPlzJ3835i6CxrFIRQ==} + '@rollup/rollup-win32-ia32-msvc@4.25.0': + resolution: {integrity: sha512-dRLjLsO3dNOfSN6tjyVlG+Msm4IiZnGkuZ7G5NmpzwF9oOc582FZG05+UdfTbz5Jd4buK/wMb6UeHFhG18+OEg==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.21.0': - resolution: {integrity: sha512-G9+TEqRnAA6nbpqyUqgTiopmnfgnMkR3kMukFBDsiyy23LZvUCpiUwjTRx6ezYCjJODXrh52rBR9oXvm+Fp5wg==} - cpu: [ia32] - os: [win32] - - '@rollup/rollup-win32-x64-msvc@4.19.1': - resolution: {integrity: sha512-2bIrL28PcK3YCqD9anGxDxamxdiJAxA+l7fWIwM5o8UqNy1t3d1NdAweO2XhA0KTDJ5aH1FsuiT5+7VhtHliXg==} - cpu: [x64] - os: [win32] - - '@rollup/rollup-win32-x64-msvc@4.21.0': - resolution: {integrity: sha512-2jsCDZwtQvRhejHLfZ1JY6w6kEuEtfF9nzYsZxzSlNVKDX+DpsDJ+Rbjkm74nvg2rdx0gwBS+IMdvwJuq3S9pQ==} + '@rollup/rollup-win32-x64-msvc@4.25.0': + resolution: {integrity: sha512-/RqrIFtLB926frMhZD0a5oDa4eFIbyNEwLLloMTEjmqfwZWXywwVVOVmwTsuyhC9HKkVEZcOOi+KV4U9wmOdlg==} cpu: [x64] os: [win32] - '@smithy/abort-controller@3.1.5': - resolution: {integrity: sha512-DhNPnqTqPoG8aZ5dWkFOgsuY+i0GQ3CI6hMmvCoduNsnU9gUZWZBwGfDQsTTB7NvFPkom1df7jMIJWU90kuXXg==} + '@smithy/abort-controller@3.1.6': + resolution: {integrity: sha512-0XuhuHQlEqbNQZp7QxxrFTdVWdwxch4vjxYgfInF91hZFkPxf9QDrdQka0KfxFMPqLNzSw0b95uGTrLliQUavQ==} engines: {node: '>=16.0.0'} - '@smithy/chunked-blob-reader-native@3.0.0': - resolution: {integrity: sha512-VDkpCYW+peSuM4zJip5WDfqvg2Mo/e8yxOv3VF1m11y7B8KKMKVFtmZWDe36Fvk8rGuWrPZHHXZ7rR7uM5yWyg==} + '@smithy/chunked-blob-reader-native@3.0.1': + resolution: {integrity: sha512-VEYtPvh5rs/xlyqpm5NRnfYLZn+q0SRPELbvBV+C/G7IQ+ouTuo+NKKa3ShG5OaFR8NYVMXls9hPYLTvIKKDrQ==} - '@smithy/chunked-blob-reader@3.0.0': - resolution: {integrity: sha512-sbnURCwjF0gSToGlsBiAmd1lRCmSn72nu9axfJu5lIx6RUEgHu6GwTMbqCdhQSi0Pumcm5vFxsi9XWXb2mTaoA==} + '@smithy/chunked-blob-reader@4.0.0': + resolution: {integrity: sha512-jSqRnZvkT4egkq/7b6/QRCNXmmYVcHwnJldqJ3IhVpQE2atObVJ137xmGeuGFhjFUr8gCEVAOKwSY79OvpbDaQ==} - '@smithy/config-resolver@3.0.9': - resolution: {integrity: sha512-5d9oBf40qC7n2xUoHmntKLdqsyTMMo/r49+eqSIjJ73eDfEtljAxEhzIQ3bkgXJtR3xiv7YzMT/3FF3ORkjWdg==} + '@smithy/config-resolver@3.0.10': + resolution: {integrity: sha512-Uh0Sz9gdUuz538nvkPiyv1DZRX9+D15EKDtnQP5rYVAzM/dnYk3P8cg73jcxyOitPgT3mE3OVj7ky7sibzHWkw==} engines: {node: '>=16.0.0'} - '@smithy/core@2.4.8': - resolution: {integrity: sha512-x4qWk7p/a4dcf7Vxb2MODIf4OIcqNbK182WxRvZ/3oKPrf/6Fdic5sSElhO1UtXpWKBazWfqg0ZEK9xN1DsuHA==} + '@smithy/core@2.5.1': + resolution: {integrity: sha512-DujtuDA7BGEKExJ05W5OdxCoyekcKT3Rhg1ZGeiUWaz2BJIWXjZmsG/DIP4W48GHno7AQwRsaCb8NcBgH3QZpg==} engines: {node: '>=16.0.0'} - '@smithy/credential-provider-imds@3.2.4': - resolution: {integrity: sha512-S9bb0EIokfYEuar4kEbLta+ivlKCWOCFsLZuilkNy9i0uEUEHSi47IFLPaxqqCl+0ftKmcOTHayY5nQhAuq7+w==} + '@smithy/credential-provider-imds@3.2.5': + resolution: {integrity: sha512-4FTQGAsuwqTzVMmiRVTn0RR9GrbRfkP0wfu/tXWVHd2LgNpTY0uglQpIScXK4NaEyXbB3JmZt8gfVqO50lP8wg==} engines: {node: '>=16.0.0'} - '@smithy/eventstream-codec@3.1.6': - resolution: {integrity: sha512-SBiOYPBH+5wOyPS7lfI150ePfGLhnp/eTu5RnV9xvhGvRiKfnl6HzRK9wehBph+il8FxS9KTeadx7Rcmf1GLPQ==} + '@smithy/eventstream-codec@3.1.7': + resolution: {integrity: sha512-kVSXScIiRN7q+s1x7BrQtZ1Aa9hvvP9FeCqCdBxv37GimIHgBCOnZ5Ip80HLt0DhnAKpiobFdGqTFgbaJNrazA==} - '@smithy/eventstream-serde-browser@3.0.10': - resolution: {integrity: sha512-1i9aMY6Pl/SmA6NjvidxnfBLHMPzhKu2BP148pEt5VwhMdmXn36PE2kWKGa9Hj8b0XGtCTRucpCncylevCtI7g==} + '@smithy/eventstream-serde-browser@3.0.11': + resolution: {integrity: sha512-Pd1Wnq3CQ/v2SxRifDUihvpXzirJYbbtXfEnnLV/z0OGCTx/btVX74P86IgrZkjOydOASBGXdPpupYQI+iO/6A==} engines: {node: '>=16.0.0'} - '@smithy/eventstream-serde-config-resolver@3.0.7': - resolution: {integrity: sha512-eVzhGQBPEqXXYHvIUku0jMTxd4gDvenRzUQPTmKVWdRvp9JUCKrbAXGQRYiGxUYq9+cqQckRm0wq3kTWnNtDhw==} + '@smithy/eventstream-serde-config-resolver@3.0.8': + resolution: {integrity: sha512-zkFIG2i1BLbfoGQnf1qEeMqX0h5qAznzaZmMVNnvPZz9J5AWBPkOMckZWPedGUPcVITacwIdQXoPcdIQq5FRcg==} engines: {node: '>=16.0.0'} - '@smithy/eventstream-serde-node@3.0.9': - resolution: {integrity: sha512-JE0Guqvt0xsmfQ5y1EI342/qtJqznBv8cJqkHZV10PwC8GWGU5KNgFbQnsVCcX+xF+qIqwwfRmeWoJCjuOLmng==} + '@smithy/eventstream-serde-node@3.0.10': + resolution: {integrity: sha512-hjpU1tIsJ9qpcoZq9zGHBJPBOeBGYt+n8vfhDwnITPhEre6APrvqq/y3XMDEGUT2cWQ4ramNqBPRbx3qn55rhw==} engines: {node: '>=16.0.0'} - '@smithy/eventstream-serde-universal@3.0.9': - resolution: {integrity: sha512-bydfgSisfepCufw9kCEnWRxqxJFzX/o8ysXWv+W9F2FIyiaEwZ/D8bBKINbh4ONz3i05QJ1xE7A5OKYvgJsXaw==} + '@smithy/eventstream-serde-universal@3.0.10': + resolution: {integrity: sha512-ewG1GHbbqsFZ4asaq40KmxCmXO+AFSM1b+DcO2C03dyJj/ZH71CiTg853FSE/3SHK9q3jiYQIFjlGSwfxQ9kww==} engines: {node: '>=16.0.0'} - '@smithy/fetch-http-handler@3.2.9': - resolution: {integrity: sha512-hYNVQOqhFQ6vOpenifFME546f0GfJn2OiQ3M0FDmuUu8V/Uiwy2wej7ZXxFBNqdx0R5DZAqWM1l6VRhGz8oE6A==} + '@smithy/fetch-http-handler@4.0.0': + resolution: {integrity: sha512-MLb1f5tbBO2X6K4lMEKJvxeLooyg7guq48C2zKr4qM7F2Gpkz4dc+hdSgu77pCJ76jVqFBjZczHYAs6dp15N+g==} - '@smithy/hash-blob-browser@3.1.6': - resolution: {integrity: sha512-BKNcMIaeZ9lB67sgo88iCF4YB35KT8X2dNJ8DqrtZNTgN6tUDYBKThzfGtos/mnZkGkW91AYHisESHmSiYQmKw==} + '@smithy/hash-blob-browser@3.1.7': + resolution: {integrity: sha512-4yNlxVNJifPM5ThaA5HKnHkn7JhctFUHvcaz6YXxHlYOSIrzI6VKQPTN8Gs1iN5nqq9iFcwIR9THqchUCouIfg==} - '@smithy/hash-node@3.0.7': - resolution: {integrity: sha512-SAGHN+QkrwcHFjfWzs/czX94ZEjPJ0CrWJS3M43WswDXVEuP4AVy9gJ3+AF6JQHZD13bojmuf/Ap/ItDeZ+Qfw==} + '@smithy/hash-node@3.0.8': + resolution: {integrity: sha512-tlNQYbfpWXHimHqrvgo14DrMAgUBua/cNoz9fMYcDmYej7MAmUcjav/QKQbFc3NrcPxeJ7QClER4tWZmfwoPng==} engines: {node: '>=16.0.0'} - '@smithy/hash-stream-node@3.1.6': - resolution: {integrity: sha512-sFSSt7cmCpFWZPfVx7k80Bgb1K2VJ27VmMxH8X+dDhp7Wv8IBgID4K2VK5ehMJROF8hQgcj4WywnkHIwX/xlwQ==} + '@smithy/hash-stream-node@3.1.7': + resolution: {integrity: sha512-xMAsvJ3hLG63lsBVi1Hl6BBSfhd8/Qnp8fC06kjOpJvyyCEXdwHITa5Kvdsk6gaAXLhbZMhQMIGvgUbfnJDP6Q==} engines: {node: '>=16.0.0'} - '@smithy/invalid-dependency@3.0.7': - resolution: {integrity: sha512-Bq00GsAhHeYSuZX8Kpu4sbI9agH2BNYnqUmmbTGWOhki9NVsWn2jFr896vvoTMH8KAjNX/ErC/8t5QHuEXG+IA==} + '@smithy/invalid-dependency@3.0.8': + resolution: {integrity: sha512-7Qynk6NWtTQhnGTTZwks++nJhQ1O54Mzi7fz4PqZOiYXb4Z1Flpb2yRvdALoggTS8xjtohWUM+RygOtB30YL3Q==} '@smithy/is-array-buffer@2.2.0': resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==} @@ -1125,75 +1206,75 @@ packages: resolution: {integrity: sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==} engines: {node: '>=16.0.0'} - '@smithy/md5-js@3.0.7': - resolution: {integrity: sha512-+wco9IN9uOW4tNGkZIqTR6IXyfO7Z8A+IOq82QCRn/f/xcmt7H1fXwmQVbfDSvbeFwfNnhv7s+u0G9PzPG6o2w==} + '@smithy/md5-js@3.0.8': + resolution: {integrity: sha512-LwApfTK0OJ/tCyNUXqnWCKoE2b4rDSr4BJlDAVCkiWYeHESr+y+d5zlAanuLW6fnitVJRD/7d9/kN/ZM9Su4mA==} - '@smithy/middleware-content-length@3.0.9': - resolution: {integrity: sha512-t97PidoGElF9hTtLCrof32wfWMqC5g2SEJNxaVH3NjlatuNGsdxXRYO/t+RPnxA15RpYiS0f+zG7FuE2DeGgjA==} + '@smithy/middleware-content-length@3.0.10': + resolution: {integrity: sha512-T4dIdCs1d/+/qMpwhJ1DzOhxCZjZHbHazEPJWdB4GDi2HjIZllVzeBEcdJUN0fomV8DURsgOyrbEUzg3vzTaOg==} engines: {node: '>=16.0.0'} - '@smithy/middleware-endpoint@3.1.4': - resolution: {integrity: sha512-/ChcVHekAyzUbyPRI8CzPPLj6y8QRAfJngWcLMgsWxKVzw/RzBV69mSOzJYDD3pRwushA1+5tHtPF8fjmzBnrQ==} + '@smithy/middleware-endpoint@3.2.1': + resolution: {integrity: sha512-wWO3xYmFm6WRW8VsEJ5oU6h7aosFXfszlz3Dj176pTij6o21oZnzkCLzShfmRaaCHDkBXWBdO0c4sQAvLFP6zA==} engines: {node: '>=16.0.0'} - '@smithy/middleware-retry@3.0.23': - resolution: {integrity: sha512-x9PbGXxkcXIpm6L26qRSCC+eaYcHwybRmqU8LO/WM2RRlW0g8lz6FIiKbKgGvHuoK3dLZRiQVSQJveiCzwnA5A==} + '@smithy/middleware-retry@3.0.25': + resolution: {integrity: sha512-m1F70cPaMBML4HiTgCw5I+jFNtjgz5z5UdGnUbG37vw6kh4UvizFYjqJGHvicfgKMkDL6mXwyPp5mhZg02g5sg==} engines: {node: '>=16.0.0'} - '@smithy/middleware-serde@3.0.7': - resolution: {integrity: sha512-VytaagsQqtH2OugzVTq4qvjkLNbWehHfGcGr0JLJmlDRrNCeZoWkWsSOw1nhS/4hyUUWF/TLGGml4X/OnEep5g==} + '@smithy/middleware-serde@3.0.8': + resolution: {integrity: sha512-Xg2jK9Wc/1g/MBMP/EUn2DLspN8LNt+GMe7cgF+Ty3vl+Zvu+VeZU5nmhveU+H8pxyTsjrAkci8NqY6OuvZnjA==} engines: {node: '>=16.0.0'} - '@smithy/middleware-stack@3.0.7': - resolution: {integrity: sha512-EyTbMCdqS1DoeQsO4gI7z2Gzq1MoRFAeS8GkFYIwbedB7Lp5zlLHJdg+56tllIIG5Hnf9ZWX48YKSHlsKvugGA==} + '@smithy/middleware-stack@3.0.8': + resolution: {integrity: sha512-d7ZuwvYgp1+3682Nx0MD3D/HtkmZd49N3JUndYWQXfRZrYEnCWYc8BHcNmVsPAp9gKvlurdg/mubE6b/rPS9MA==} engines: {node: '>=16.0.0'} - '@smithy/node-config-provider@3.1.8': - resolution: {integrity: sha512-E0rU0DglpeJn5ge64mk8wTGEXcQwmpUTY5Zr7IzTpDLmHKiIamINERNZYrPQjg58Ck236sEKSwRSHA4CwshU6Q==} + '@smithy/node-config-provider@3.1.9': + resolution: {integrity: sha512-qRHoah49QJ71eemjuS/WhUXB+mpNtwHRWQr77J/m40ewBVVwvo52kYAmb7iuaECgGTTcYxHS4Wmewfwy++ueew==} engines: {node: '>=16.0.0'} - '@smithy/node-http-handler@3.2.4': - resolution: {integrity: sha512-49reY3+JgLMFNm7uTAKBWiKCA6XSvkNp9FqhVmusm2jpVnHORYFeFZ704LShtqWfjZW/nhX+7Iexyb6zQfXYIQ==} + '@smithy/node-http-handler@3.2.5': + resolution: {integrity: sha512-PkOwPNeKdvX/jCpn0A8n9/TyoxjGZB8WVoJmm9YzsnAgggTj4CrjpRHlTQw7dlLZ320n1mY1y+nTRUDViKi/3w==} engines: {node: '>=16.0.0'} - '@smithy/property-provider@3.1.7': - resolution: {integrity: sha512-QfzLi1GPMisY7bAM5hOUqBdGYnY5S2JAlr201pghksrQv139f8iiiMalXtjczIP5f6owxFn3MINLNUNvUkgtPw==} + '@smithy/property-provider@3.1.8': + resolution: {integrity: sha512-ukNUyo6rHmusG64lmkjFeXemwYuKge1BJ8CtpVKmrxQxc6rhUX0vebcptFA9MmrGsnLhwnnqeH83VTU9hwOpjA==} engines: {node: '>=16.0.0'} - '@smithy/protocol-http@4.1.4': - resolution: {integrity: sha512-MlWK8eqj0JlpZBnWmjQLqmFp71Ug00P+m72/1xQB3YByXD4zZ+y9N4hYrR0EDmrUCZIkyATWHOXFgtavwGDTzQ==} + '@smithy/protocol-http@4.1.5': + resolution: {integrity: sha512-hsjtwpIemmCkm3ZV5fd/T0bPIugW1gJXwZ/hpuVubt2hEUApIoUTrf6qIdh9MAWlw0vjMrA1ztJLAwtNaZogvg==} engines: {node: '>=16.0.0'} - '@smithy/querystring-builder@3.0.7': - resolution: {integrity: sha512-65RXGZZ20rzqqxTsChdqSpbhA6tdt5IFNgG6o7e1lnPVLCe6TNWQq4rTl4N87hTDD8mV4IxJJnvyE7brbnRkQw==} + '@smithy/querystring-builder@3.0.8': + resolution: {integrity: sha512-btYxGVqFUARbUrN6VhL9c3dnSviIwBYD9Rz1jHuN1hgh28Fpv2xjU1HeCeDJX68xctz7r4l1PBnFhGg1WBBPuA==} engines: {node: '>=16.0.0'} - '@smithy/querystring-parser@3.0.7': - resolution: {integrity: sha512-Fouw4KJVWqqUVIu1gZW8BH2HakwLz6dvdrAhXeXfeymOBrZw+hcqaWs+cS1AZPVp4nlbeIujYrKA921ZW2WMPA==} + '@smithy/querystring-parser@3.0.8': + resolution: {integrity: sha512-BtEk3FG7Ks64GAbt+JnKqwuobJNX8VmFLBsKIwWr1D60T426fGrV2L3YS5siOcUhhp6/Y6yhBw1PSPxA5p7qGg==} engines: {node: '>=16.0.0'} - '@smithy/service-error-classification@3.0.7': - resolution: {integrity: sha512-91PRkTfiBf9hxkIchhRKJfl1rsplRDyBnmyFca3y0Z3x/q0JJN480S83LBd8R6sBCkm2bBbqw2FHp0Mbh+ecSA==} + '@smithy/service-error-classification@3.0.8': + resolution: {integrity: sha512-uEC/kCCFto83bz5ZzapcrgGqHOh/0r69sZ2ZuHlgoD5kYgXJEThCoTuw/y1Ub3cE7aaKdznb+jD9xRPIfIwD7g==} engines: {node: '>=16.0.0'} - '@smithy/shared-ini-file-loader@3.1.8': - resolution: {integrity: sha512-0NHdQiSkeGl0ICQKcJQ2lCOKH23Nb0EaAa7RDRId6ZqwXkw4LJyIyZ0t3iusD4bnKYDPLGy2/5e2rfUhrt0Acw==} + '@smithy/shared-ini-file-loader@3.1.9': + resolution: {integrity: sha512-/+OsJRNtoRbtsX0UpSgWVxFZLsJHo/4sTr+kBg/J78sr7iC+tHeOvOJrS5hCpVQ6sWBbhWLp1UNiuMyZhE6pmA==} engines: {node: '>=16.0.0'} - '@smithy/signature-v4@4.2.0': - resolution: {integrity: sha512-LafbclHNKnsorMgUkKm7Tk7oJ7xizsZ1VwqhGKqoCIrXh4fqDDp73fK99HOEEgcsQbtemmeY/BPv0vTVYYUNEQ==} + '@smithy/signature-v4@4.2.1': + resolution: {integrity: sha512-NsV1jF4EvmO5wqmaSzlnTVetemBS3FZHdyc5CExbDljcyJCEEkJr8ANu2JvtNbVg/9MvKAWV44kTrGS+Pi4INg==} engines: {node: '>=16.0.0'} - '@smithy/smithy-client@3.4.0': - resolution: {integrity: sha512-nOfJ1nVQsxiP6srKt43r2My0Gp5PLWCW2ASqUioxIiGmu6d32v4Nekidiv5qOmmtzIrmaD+ADX5SKHUuhReeBQ==} + '@smithy/smithy-client@3.4.2': + resolution: {integrity: sha512-dxw1BDxJiY9/zI3cBqfVrInij6ShjpV4fmGHesGZZUiP9OSE/EVfdwdRz0PgvkEvrZHpsj2htRaHJfftE8giBA==} engines: {node: '>=16.0.0'} - '@smithy/types@3.5.0': - resolution: {integrity: sha512-QN0twHNfe8mNJdH9unwsCK13GURU7oEAZqkBI+rsvpv1jrmserO+WnLE7jidR9W/1dxwZ0u/CB01mV2Gms/K2Q==} + '@smithy/types@3.6.0': + resolution: {integrity: sha512-8VXK/KzOHefoC65yRgCn5vG1cysPJjHnOVt9d0ybFQSmJgQj152vMn4EkYhGuaOmnnZvCPav/KnYyE6/KsNZ2w==} engines: {node: '>=16.0.0'} - '@smithy/url-parser@3.0.7': - resolution: {integrity: sha512-70UbSSR8J97c1rHZOWhl+VKiZDqHWxs/iW8ZHrHp5fCCPLSBE7GcUlUvKSle3Ca+J9LLbYCj/A79BxztBvAfpA==} + '@smithy/url-parser@3.0.8': + resolution: {integrity: sha512-4FdOhwpTW7jtSFWm7SpfLGKIBC9ZaTKG5nBF0wK24aoQKQyDIKUw3+KFWCQ9maMzrgTJIuOvOnsV2lLGW5XjTg==} '@smithy/util-base64@3.0.0': resolution: {integrity: sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==} @@ -1218,32 +1299,32 @@ packages: resolution: {integrity: sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==} engines: {node: '>=16.0.0'} - '@smithy/util-defaults-mode-browser@3.0.23': - resolution: {integrity: sha512-Y07qslyRtXDP/C5aWKqxTPBl4YxplEELG3xRrz2dnAQ6Lq/FgNrcKWmV561nNaZmFH+EzeGOX3ZRMbU8p1T6Nw==} + '@smithy/util-defaults-mode-browser@3.0.25': + resolution: {integrity: sha512-fRw7zymjIDt6XxIsLwfJfYUfbGoO9CmCJk6rjJ/X5cd20+d2Is7xjU5Kt/AiDt6hX8DAf5dztmfP5O82gR9emA==} engines: {node: '>= 10.0.0'} - '@smithy/util-defaults-mode-node@3.0.23': - resolution: {integrity: sha512-9Y4WH7f0vnDGuHUa4lGX9e2p+sMwODibsceSV6rfkZOvMC+BY3StB2LdO1NHafpsyHJLpwAgChxQ38tFyd6vkg==} + '@smithy/util-defaults-mode-node@3.0.25': + resolution: {integrity: sha512-H3BSZdBDiVZGzt8TG51Pd2FvFO0PAx/A0mJ0EH8a13KJ6iUCdYnw/Dk/MdC1kTd0eUuUGisDFaxXVXo4HHFL1g==} engines: {node: '>= 10.0.0'} - '@smithy/util-endpoints@2.1.3': - resolution: {integrity: sha512-34eACeKov6jZdHqS5hxBMJ4KyWKztTMulhuQ2UdOoP6vVxMLrOKUqIXAwJe/wiWMhXhydLW664B02CNpQBQ4Aw==} + '@smithy/util-endpoints@2.1.4': + resolution: {integrity: sha512-kPt8j4emm7rdMWQyL0F89o92q10gvCUa6sBkBtDJ7nV2+P7wpXczzOfoDJ49CKXe5CCqb8dc1W+ZdLlrKzSAnQ==} engines: {node: '>=16.0.0'} '@smithy/util-hex-encoding@3.0.0': resolution: {integrity: sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==} engines: {node: '>=16.0.0'} - '@smithy/util-middleware@3.0.7': - resolution: {integrity: sha512-OVA6fv/3o7TMJTpTgOi1H5OTwnuUa8hzRzhSFDtZyNxi6OZ70L/FHattSmhE212I7b6WSOJAAmbYnvcjTHOJCA==} + '@smithy/util-middleware@3.0.8': + resolution: {integrity: sha512-p7iYAPaQjoeM+AKABpYWeDdtwQNxasr4aXQEA/OmbOaug9V0odRVDy3Wx4ci8soljE/JXQo+abV0qZpW8NX0yA==} engines: {node: '>=16.0.0'} - '@smithy/util-retry@3.0.7': - resolution: {integrity: sha512-nh1ZO1vTeo2YX1plFPSe/OXaHkLAHza5jpokNiiKX2M5YpNUv6RxGJZhpfmiR4jSvVHCjIDmILjrxKmP+/Ghug==} + '@smithy/util-retry@3.0.8': + resolution: {integrity: sha512-TCEhLnY581YJ+g1x0hapPz13JFqzmh/pMWL2KEFASC51qCfw3+Y47MrTmea4bUE5vsdxQ4F6/KFbUeSz22Q1ow==} engines: {node: '>=16.0.0'} - '@smithy/util-stream@3.1.9': - resolution: {integrity: sha512-7YAR0Ub3MwTMjDfjnup4qa6W8gygZMxikBhFMPESi6ASsl/rZJhwLpF/0k9TuezScCojsM0FryGdz4LZtjKPPQ==} + '@smithy/util-stream@3.2.1': + resolution: {integrity: sha512-R3ufuzJRxSJbE58K9AEnL/uSZyVdHzud9wLS8tIbXclxKzoe09CRohj2xV8wpx5tj7ZbiJaKYcutMm1eYgz/0A==} engines: {node: '>=16.0.0'} '@smithy/util-uri-escape@3.0.0': @@ -1258,58 +1339,1467 @@ packages: resolution: {integrity: sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==} engines: {node: '>=16.0.0'} - '@smithy/util-waiter@3.1.6': - resolution: {integrity: sha512-xs/KAwWOeCklq8aMlnpk25LgxEYHKOEodfjfKclDMLcBJEVEKzDLxZxBQyztcuPJ7F54213NJS8PxoiHNMdItQ==} + '@smithy/util-waiter@3.1.7': + resolution: {integrity: sha512-d5yGlQtmN/z5eoTtIYgkvOw27US2Ous4VycnXatyoImIF9tzlcpnKqQ/V7qhvJmb2p6xZne1NopCLakdTnkBBQ==} engines: {node: '>=16.0.0'} - '@types/estree@1.0.5': - resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + '@stdlib/array-base-accessor-getter@0.2.2': + resolution: {integrity: sha512-HGJNjWWysDoo6ORrLj+FV/6IpfIbDGqZtpzGQzFI1A6jgqJMw2JuRwlsgRsriJ1SnyFoPNIObwyGDSY18XQrMw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/array-base-accessor-setter@0.2.2': + resolution: {integrity: sha512-8Nzwv9RIOvIw9xP+FEXpw0iANqNuU8vP1paVgAnErPVDllB4VVWMXMe8gwxF4gjxf+8+hp2v5kudZFYINVQWWQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/array-base-arraylike2object@0.2.1': + resolution: {integrity: sha512-WHlzAZQXwz2zR0UnkGXznjvykuvhlhFqb0s8Dhv5InhRvhYkcfT7BY23In74kBBzW3gkonxJUxbd0OG6nEHcCA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/array-base-assert-is-accessor-array@0.2.2': + resolution: {integrity: sha512-OTkQG0wzxeEyjg1to4fTlxtQq6qoekGWn6eRbr1akBrdGlW9Qv5KjWu91dE/Su+WBkmo+Y5HgiLCFc/TuFe3iA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/array-base-assert-is-complex128array@0.2.2': + resolution: {integrity: sha512-C1n7o8N8KtCIjJ8dBwAozjmBUx8r+Y8oOpOMvMv6AB+YL8qaaXIQzrEeDKQuQk59QHqgl7aPwRGQ4gmjdup9oQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/array-base-assert-is-complex64array@0.2.2': + resolution: {integrity: sha512-ovIQ15KnzHH4Y7dGUW8p8GqiPK5F806oDNbfIKTIk7en0XMtsGb0CcuMod0lUMyQTwh4hgTHXcp6vTuq+Igarg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/array-base-filled@0.2.2': + resolution: {integrity: sha512-T7nB7dni5Y4/nsq6Gc1bAhYfzJbcOdqsmVZJUI698xpDbhCdVCIIaEbf0PnDMGN24psN+5mgAVmnNBom+uF0Xg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/array-base-getter@0.2.2': + resolution: {integrity: sha512-D7PZr+QkMKQXckaLtzykcgXEMSnFOVzElklLC958ZxKN9eZuobEL4+0i6MZ9ODRO6SAU7x7NYnFFX/vdYS5b8w==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/array-base-incrspace@0.2.2': + resolution: {integrity: sha512-fJl4mdFzDHGhbpSh9Y2jSGKX61lQW7F3cMWBTAU21lOczzjtNPjaw5S2TVmPSW5YQdqqtSJ526u/LpBZqS6fag==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/array-base-setter@0.2.2': + resolution: {integrity: sha512-QF3GJq2OE4KYZehgaXQGFtR5w6bV/8wjQJap+9MQB4RZ6BtIdkGeTWaMfQjx5WgJ5lXVuzRt8TrNDwOq6payxw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/array-base-zeros@0.2.2': + resolution: {integrity: sha512-iwxqaEtpi4c2qpqabmhFdaQGkzgo5COwjHPn2T0S0wfJuM1VuVl5UBl15syr+MmZPJQOB1eBbh6F1uTh9597qw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/array-complex128@0.2.1': + resolution: {integrity: sha512-AinzxxCWP0E47eCPmGWTRbUKoYtY+lJQmAi1t+yvv07K0Qgph8OTDAbk2xR8dF2JmBFIZXypUTRG2cG+aoZvNw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/array-complex64@0.2.1': + resolution: {integrity: sha512-1CdCZtov9hS/RZO5RQ1DCxVIA8uMfaBpjCqA+JiEpSVHK1lnYcl86PljMs+ls38IH+B/h/cpOCWC68iuu14vwg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/array-dtype@0.2.1': + resolution: {integrity: sha512-ZE1BycHa405hpg2nApMDS9Lq4zOCIYdklCBmSFdwB3bUPC40/GUR4RxqVETLZKxHx+rbPyXSvzpqDm7wgQjpZA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/array-float32@0.2.2': + resolution: {integrity: sha512-pTcy1FNQrrJLL1LMxJjuVpcKJaibbGCFFTe41iCSXpSOC8SuTBuNohrO6K9+xR301Ruxxn4yrzjJJ6Fa3nQJ2g==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/array-float64@0.2.2': + resolution: {integrity: sha512-ZmV5wcacGrhT0maw9dfLXNv4N3ZwFUV3D7ItFfZFGFnKIJbubrWzwtaYnxzIXigrDc8g3F6FVHRpsQLMxq0/lA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/array-int16@0.2.2': + resolution: {integrity: sha512-kHxyQ1INGtga38Grr/5MnDVAuJgnerh+MsJQcpT5jxxnc9QAnVc7O6DRv8i/hfOOxUOH15C/MeoBs+zim4CnLQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/array-int32@0.2.2': + resolution: {integrity: sha512-+jFqht43oPJ8YnlyCZ7cSf9Z8xenIIsJDgLZ9zW+gh8o13SSfF+ukm0AGAdnKnKGR3zPBLnSso7JXyDe2r134g==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/array-int8@0.2.2': + resolution: {integrity: sha512-UW3KlKt7Lww1XML5Gzj+YYHRXD8+RIUrnlPcTwYH9O8j+/m5vyvGYlBIJD2MDO1fgUl2skgmpNkK9ULfsBlIRA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/array-uint16@0.2.2': + resolution: {integrity: sha512-z5c/Izw43HkKfb1pTgEUMAS8GFvhtHkkHZSjX3XJN+17P0VjknxjlSvPiCBGqaDX9jXtlWH3mn1LSyDKtJQoeA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/array-uint32@0.2.2': + resolution: {integrity: sha512-3T894I9C2MqZJJmRCYFTuJp4Qw9RAt+GzYnVPyIXoK1h3TepUXe9VIVx50cUFIibdXycgu0IFGASeAb3YMyupw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/array-uint8@0.2.2': + resolution: {integrity: sha512-Ip9MUC8+10U9x0crMKWkpvfoUBBhWzc6k5SI4lxx38neFVmiJ3f+5MBADEagjpoKSBs71vlY2drnEZe+Gs2Ytg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/array-uint8c@0.2.2': + resolution: {integrity: sha512-uBEJ1yKLZjwgmCV7iSNLkr/SGCxL7qVwnb+f4avVSBxlIv/k29oIO/sibgkHbZMBlBSw39dWQzIKD0UQJWDVDQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-contains@0.2.2': + resolution: {integrity: sha512-jAc+0YbXLCaL26Sz5W1QpVXT5ybMsPuUkMLYWAbIXd2NjsQR7wu3/tmzGCtArtyT5VLkdJiVQuvkUg0IQIQcWA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-has-float32array-support@0.2.2': + resolution: {integrity: sha512-pi2akQl8mVki43fF1GNQVLYW0bHIPp2HuRNThX9GjB3OFQTpvrV8/3zPSh4lOxQa5gRiabgf0+Rgeu3AOhEw9A==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-has-float64array-support@0.2.2': + resolution: {integrity: sha512-8L3GuKY1o0dJARCOsW9MXcugXapaMTpSG6dGxyNuUVEvFfY5UOzcj9/JIDal5FjqSgqVOGL5qZl2qtRwub34VA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-has-generator-support@0.2.2': + resolution: {integrity: sha512-TcE9BGV8i7B2OmxPlJ/2DUrAwG0W4fFS/DE7HmVk68PXVZsgyNQ/WP/IHBoazHDjhN5c3dU21c20kM/Bw007Rw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-has-int16array-support@0.2.2': + resolution: {integrity: sha512-rIrJ2371vd4kg5sHb/bz0xX1dlwyElT6kivnFPtZUXMaMS1breSUIpwPkUPXdr1AbmQdeJYv0c/YBtKB0PCo2g==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-has-int32array-support@0.2.2': + resolution: {integrity: sha512-3o/6PuZ+z6+cimb9L1f0d4LGP2GJO4EUVlD6oz8I6vKz35438coM5CduXOMVWvdzm4Rku4ty5mi1Gz0U53pC4Q==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-has-int8array-support@0.2.2': + resolution: {integrity: sha512-QUasYxAqQdgqDglQTwV9dZSwMXvLzLpVC4FcN+kia/+nX1HGjYUBq95fBj0vigW+SC2OiuepJkNiB/PlhA08+g==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-has-iterator-symbol-support@0.2.2': + resolution: {integrity: sha512-XQ/V/rZ0VjfODhZu65fY2Mvzd4SIxgiKGTUoQpG9nrCh9JZflBUZoDsXvtZ8PSHCylC4aYKi7maA/AkLqbft1g==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-has-own-property@0.2.2': + resolution: {integrity: sha512-m5rV4Z2/iNkwx2vRsNheM6sQZMzc8rQQOo90LieICXovXZy8wA5jNld4kRKjMNcRt/TjrNP7i2Rhh8hruRDlHg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-has-symbol-support@0.2.2': + resolution: {integrity: sha512-vCsGGmDZz5dikGgdF26rIL0y0nHvH7qaVf89HLLTybceuZijAqFSJEqcB3Gpl5uaeueLNAWExHi2EkoUVqKHGg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-has-tostringtag-support@0.2.2': + resolution: {integrity: sha512-bSHGqku11VH0swPEzO4Y2Dr+lTYEtjSWjamwqCTC8udOiOIOHKoxuU4uaMGKJjVfXG1L+XefLHqzuO5azxdRaA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-has-uint16array-support@0.2.2': + resolution: {integrity: sha512-aL188V7rOkkEH4wYjfpB+1waDO4ULxo5ppGEK6X0kG4YiXYBL2Zyum53bjEQvo0Nkn6ixe18dNzqqWWytBmDeg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-has-uint32array-support@0.2.2': + resolution: {integrity: sha512-+UHKP3mZOACkJ9CQjeKNfbXHm5HGQB862V5nV5q3UQlHPzhslnXKyG1SwAxTx+0g88C/2vlDLeqG8H4TH2UTFA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-has-uint8array-support@0.2.2': + resolution: {integrity: sha512-VfzrB0BMik9MvPyKcMDJL3waq4nM30RZUrr2EuuQ/RbUpromRWSDbzGTlRq5SfjtJrHDxILPV3rytDCc03dgWA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-has-uint8clampedarray-support@0.2.2': + resolution: {integrity: sha512-/zT8Piv1UUFUpelBo0LuTE4V9BOEW7DTwfGlPvez93lk72XtaIYhTHkj+Z9YBGfAMV2PbL6eteqFffMVzUgnXg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-arguments@0.2.2': + resolution: {integrity: sha512-SejXrHpneNcn0nDot2K49XoTzPQQUvCFQj+2vc4UtJdtFFzB5r1fYgvtL7RqkhVglD7zNJG1acJYa7PiZCpZog==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-array-like-object@0.2.2': + resolution: {integrity: sha512-T73aKzzi1sKhyOn1wnp1lw2yZEyCnyNfE69p1oWHyWn7EXAJN3J0wTJGGt71/mgD0DDAd3Q+5FsGCYhfmrYdsQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-array-like@0.2.2': + resolution: {integrity: sha512-kOa5oNJucpBI4rn4+EPL+FlGm7nvTOrYmjD0tdl8JsaNNiQ1w2u2i7fBvCz2iKiQmtuI/+Cu/ES5BtjYoPRxAQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-array@0.2.2': + resolution: {integrity: sha512-aJyTX2U3JqAGCATgaAX9ygvDHc97GCIKkIhiZm/AZaLoFHPtMA1atQ4bKcefEC8Um9eefryxTHfFPfSr9CoNQQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-arraybuffer@0.2.2': + resolution: {integrity: sha512-j0IDGRTF3+yhH9tgcNgPdicXYbCS811Uv0zYxOGcajq1Dcy931aOs9BKqBo4M5bK6eJtAFq2yReKIIXYkZpH6Q==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-big-endian@0.2.2': + resolution: {integrity: sha512-mPEl30/bqZh++UyQbxlyOuB7k0wC73y5J9nD2J6Ud6Fcl76R5IAGHRW0WT3W18is/6jG1jzMd8hrISFyD7N0sA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-boolean@0.2.2': + resolution: {integrity: sha512-3KFLRTYZpX6u95baZ6PubBvjehJs2xBU6+zrenR0jx8KToUYCnJPxqqj7JXRhSD+cOURmcjj9rocVaG9Nz18Pg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-buffer@0.2.2': + resolution: {integrity: sha512-4/WMFTEcDYlVbRhxY8Wlqag4S70QCnn6WmQ4wmfiLW92kqQHsLvTNvdt/qqh/SDyDV31R/cpd3QPsVN534dNEA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-collection@0.2.2': + resolution: {integrity: sha512-tbh6ySMqzTkHjFzcNkwtfnJgt65qWeu+0Wv3N0D9QEd3gnJfWq4mJJS3DyJ5n91VoB7RXppB/giDxDUCw/Y+KQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-complex-like@0.2.2': + resolution: {integrity: sha512-/prN0SdWpTB8uHGlvvJJs/Q5o0vO0cj2Kh/MLJXrsMo2gvQsQHF+oez1X+FuMrJrfVq6+Im/H4KHa/wjoSPx8Q==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-enumerable-property@0.2.2': + resolution: {integrity: sha512-An5QM9Zb3bjKZp5XVdsHTv6/8pJMJvnweHDdLPQhEtLve3YIM4Xo0CQ3TlvKgTr6Lz2UO/+yx8rrDdN5i9Dp5Q==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-float32array@0.2.2': + resolution: {integrity: sha512-hxEKz/Y4m1NYuOaiQKoqQA1HeAYwNXFqSk3FJ4hC71DuGNit2tuxucVyck3mcWLpLmqo0+Qlojgwo5P9/C/9MQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-float64array@0.2.2': + resolution: {integrity: sha512-3R1wLi6u/IHXsXMtaLnvN9BSpqAJ8tWhwjOOr6kadDqCWsU7Odc7xKLeAXAInAxwnV8VDpO4ifym4A3wehazPQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-function@0.2.2': + resolution: {integrity: sha512-whY69DUYWljCJ79Cvygp7VzWGOtGTsh3SQhzNuGt+ut6EsOW+8nwiRkyBXYKf/MOF+NRn15pxg8cJEoeRgsPcA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-int16array@0.2.2': + resolution: {integrity: sha512-HQ9yyX1di07pWreBk6njw9x1sipJKSP4SCSkidLfUHKxaooxeUprAFONfMiEMdNBbn7f3awfs23h1bpN/Z6Vmg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-int32array@0.2.2': + resolution: {integrity: sha512-YomgTwoJD/ci8K9mWNCyqSDtkYfHNplMYw+B9rmcxrjX//1LVZkrzgwWEc6dC3RlY0Ou+uDHJpKeKL9G2fj4GQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-int8array@0.2.2': + resolution: {integrity: sha512-Y1QP3uIZ+CG+rFrD6nOO/N/8O1rRbXgG+iVo5aj8xNRUtfg1iYekUspfNKqxeZUJ95Ocv705m7/vsGlvI1MugQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-integer@0.2.2': + resolution: {integrity: sha512-2d4CioQmnPcNDvNfC3Q6+xAJLwYYcSUamnxP0bSBJ1oAazWaVArdXNUAUxufek2Uaq6TVIM2gNSMyivIKIJd2w==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-little-endian@0.2.2': + resolution: {integrity: sha512-KMzPndj85jDiE1+hYCpw12k2OQOVkfpCo7ojCmCl8366wtKGEaEdGbz1iH98zkxRvnZLSMXcYXI2z3gtdmB0Ag==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-nan@0.2.2': + resolution: {integrity: sha512-Wh7KPIVfi6UVBRuPgkjVnoJP6mVtDNg+Y4m3Hko86TSf78KqFXfyZy/m6hnlYBWZRkNJDKo1J/7A/zpPwcEUVg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-nonnegative-integer@0.2.2': + resolution: {integrity: sha512-4t2FoZQeZ5nMYHYSeTVlgAp/HLEMYqe9qMcJgbvj63KTrGCDsuIpTE0S+UTxAc6Oc3Ftgb0ygjBFJQ0mxwN0Ow==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-number-array@0.2.2': + resolution: {integrity: sha512-8aQ/unulf5ED1Pu7na1Y1YPRigIBIMw/OiO99V69aGyYmlJaIQPAaYYecmRo1tMzKwP/jkhm3mTBsaPtCpJiLw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-number@0.2.2': + resolution: {integrity: sha512-sWpJ59GqGbmlcdYSUV/OYkmQW8k47w10+E0K0zPu1x1VKzhjgA5ZB2sJcpgI8Vt3ckRLjdhuc62ZHJkrJujG7A==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-object-like@0.2.2': + resolution: {integrity: sha512-MjQBpHdEebbJwLlxh/BKNH8IEHqY0YlcCMRKOQU0UOlILSJg0vG+GL4fDDqtx9FSXxcTqC+w3keHx8kAKvQhzg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-object@0.2.2': + resolution: {integrity: sha512-sNnphJuHyMDHHHaonlx6vaCKMe4sHOn0ag5Ck4iW3kJtM2OZB2J4h8qFcwKzlMk7fgFu7vYNGCZtpm1dYbbUfQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-plain-object@0.2.2': + resolution: {integrity: sha512-o4AFWgBsSNzZAOOfIrxoDFYTqnLuGiaHDFwIeZGUHdpQeav2Fll+sGeaqOcekF7yKawoswnwWdJqTsjapb4Yzw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-positive-integer@0.2.2': + resolution: {integrity: sha512-cHdVJC88DZYpN4q39cWjx9fAqKBY9x0FFf3yY6aFBUaAXP/K5Ptdh22+y1wX210vC/wvxL5V9n4pcWO3wmBGHg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-regexp@0.2.2': + resolution: {integrity: sha512-2JtiUtRJxPaVXL7dkWoV3n5jouI65DwYDXsDXg3xo23TXlTNGgU/HhKO4FWC1Yqju7YMZi0hcZSW6E9v8ISqeQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-string@0.2.2': + resolution: {integrity: sha512-SOkFg4Hq443hkadM4tzcwTHWvTyKP9ULOZ8MSnnqmU0nBX1zLVFLFGY8jnF6Cary0dL0V7QQBCfuxqKFM6u2PQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-typed-array-like@0.2.2': + resolution: {integrity: sha512-7Toa5t+camga8IfIAVsiTd5U2GgVMncN0Q6KYMF4Jmj4+DhEYzqgQckFaVrfhuL14Au7ik4ZhS4K7X4wEL1S0g==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-uint16array@0.2.2': + resolution: {integrity: sha512-w3+HeTiXGLJGw5nCqr0WbvgArNMEj7ulED1Yd19xXbmmk2W1ZUB+g9hJDOQTiKsTU4AVyH4/As+aA8eDVmWtmg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-uint32array@0.2.2': + resolution: {integrity: sha512-3F4nIHg1Qp0mMIsImWUC8DwQ3qBK5vdIJTjS2LufLbFBhHNmv5kK1yJiIXQDTLkENU0STZe05TByo01ZNLOmDQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-uint8array@0.2.2': + resolution: {integrity: sha512-51WnDip6H2RrN0CbqWmfqySAjam8IZ0VjlfUDc3PtcgrZGrKKjVgyHAsT/L3ZDydwF+aB94uvYJu5QyrCPNaZw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-is-uint8clampedarray@0.2.2': + resolution: {integrity: sha512-MjHhOxjOXesqUNgoDGOiO9vib1HV3uCNoYQfiEDWAv30pVAty70wEcwDQ7cdQs1ZGfGC/355ob8AR2Z8lY4ryw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-tools-array-function@0.2.2': + resolution: {integrity: sha512-FYeT7X9x0C8Nh+MN6IJUDz+7i7yB6mio2/SDlrvyepjyPSU/cfHfwW0GEOnQhxZ+keLZC/YqDD930WjRODwMdA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/assert-tools-array-like-function@0.2.2': + resolution: {integrity: sha512-j/lK6Bap3uyfIKxpQjAZ4zKG5YhJR0J50bVNN+dZ+W3KVgPQ4aQCJ4to6poOF2hHB/oCpKkHMydA7XGe8yw0xw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/blas-base-gcopy@0.2.1': + resolution: {integrity: sha512-59sZsv2kzV+zHGhINJDL53o+6wFpcBPfV2BNxOZ7FRsrASR7ah9BFDPU3bo4LtxVouZFYaBcXlXcG0av4K9aQQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/blas-ext-base-gapxsumpw@0.2.2': + resolution: {integrity: sha512-ffJit/xSoXhKO1Bm3vAHH9sF5bowSys9xyYJa9E+YYpvN/iMFyRS9sUL7p4kjcyD263rAQnTNvLV0jYnSVwtLA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/blas-ext-base-gsumpw@0.2.2': + resolution: {integrity: sha512-0CVHaOAXfDZ83NyQF9IURfiRKHFyI0CMPh2IP7hxWqRFpNnZlgCOvNXyxZSVpk77R+Gf3ETqJrwAEM/GqwSLhA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/boolean-ctor@0.2.2': + resolution: {integrity: sha512-qIkHzmfxDvGzQ3XI9R7sZG97QSaWG5TvWVlrvcysOGT1cs6HtQgnf4D//SRzZ52VLm8oICP+6OKtd8Hpm6G7Ww==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/complex-float32-ctor@0.0.1': + resolution: {integrity: sha512-hSAUBgV8l/MnaVpI4mmSSg68iaz2DsWkb9Hnqj41UkrY3vX406JT5HtUzFTcdInuvBDbQXOms03wwAkN05MlSg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/complex-float32-ctor@0.0.2': + resolution: {integrity: sha512-QsTLynhTRmDT0mSkfdHj0FSqQSxh2nKx+vvrH3Y0/Cd/r0WoHFZwyibndDxshfkf9B7nist8QKyvV82I3IZciA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/complex-float32-reim@0.1.2': + resolution: {integrity: sha512-24H+t1xwQF6vhOoMZdDA3TFB4M+jb5Swm/FwNaepovlzVIG2NlthUZs6mZg1T3oegqesIRQRwhpn4jIPjuGiTw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/complex-float32@0.2.1': + resolution: {integrity: sha512-tp83HfJzcZLK7/6P6gZPcAa/8F/aHS7gBHgB6ft45d/n6oE+/VbnyOvsJKanRv8S96kBRj8xkvlWHz4IiBrT0Q==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/complex-float64-ctor@0.0.2': + resolution: {integrity: sha512-X+8Iw16iDkc5FW8BoqthYJlQmHDqjAGA/YXoz/9ud/lV99jcrT519N8JcRYGglHhDCrJ4tieXvZ+RCdQKchNUg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/complex-float64-ctor@0.0.3': + resolution: {integrity: sha512-oixCtBif+Uab2rKtgedwQTbQTEC+wVSu4JQH935eJ8Jo0eL6vXUHHlVrkLgYKlCDLvq5px1QQn42Czg/ixh6Gw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/complex-float64-reim@0.1.2': + resolution: {integrity: sha512-q6RnfgbUunApAYuGmkft1oOM3x3xVMVJwNRlRgfIXwKDb8pYt+S/CeIwi3Su5SF6ay3AqA1s+ze7m21osXAJyw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/complex-float64@0.2.1': + resolution: {integrity: sha512-vN9GqlSaonoREf8/RIN9tfNLnkfN4s7AI0DPsGnvc1491oOqq9UqMw8rYTrnxuum9/OaNAAUqDkb5GLu5uTveQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/complex-imag@0.2.1': + resolution: {integrity: sha512-HHTDnEFTeC2FJfP0jXccsam4hgnPF0PjQJDzKin6F/SFocxOeT2YoqA6Pii09XnDH6RrUaXIZp+VzTr7w/Vs5A==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/complex-imagf@0.2.1': + resolution: {integrity: sha512-lrYYEZfPZ9j/7jRUWVNDUunj1f/9lCxtuzHINqQg2VJ3WNJvyQ9RdWEM1ahZftZImZMIWElCNBTCrRJUOA/bww==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/complex-real@0.2.1': + resolution: {integrity: sha512-WT7Z77jQLm8VrfvOPJ0C6d8q0Of105owANn72+3YnBwIuGk4TG9DVkB+g/9vo4ptIxPdQRiZQkIGVY0bq7h9YA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/complex-realf@0.2.1': + resolution: {integrity: sha512-bjLLhSaQWhXEkSx4CJNp81mmUCBwWkhsl62gsp8Cdd56zWkf6c2tWCph9jmXNKMzqueYswzykZt9itHjHmTT8g==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/complex-reim@0.2.1': + resolution: {integrity: sha512-67nakj+HwBRx/ha3j/sLbrMr2hwFVgEZtaczOgn1Jy/cU03lKvNbMkR7QI9s+sA+b+A3yJB3ob8ZQSqh3D1+dA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/complex-reimf@0.2.1': + resolution: {integrity: sha512-6HyPPmo0CEHoBjOg2w70mMFLcFEunM78ljnW6kf1OxjM/mqMaBM1NRpDrQoFwCIdh1RF1ojl3JR0YLllEf0qyQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-array-max-array-length@0.2.2': + resolution: {integrity: sha512-fZzM6cvIEXhNSXR+erL1PYYIbZYAXGss9aN7C8KXVGGDfq4Eebts7ZWcqLgPfxftMnJ07yPyPffFqRnsDSfqqQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-array-max-typed-array-length@0.2.2': + resolution: {integrity: sha512-uAoBItVIfuzR4zKK1F57Znrn2frKL0U9gqJkg30BXuno3YlUvbhIfVP3VsUmGJCmi9ztgYLqX10yqb0KvlM2Ig==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float32-max@0.2.2': + resolution: {integrity: sha512-uxvIm/KmIeZP4vyfoqPd72l5/uidnCN9YJT3p7Z2LD8hYN3PPLu6pd/5b51HMFLwfkZ27byRJ9+YK6XnneJP0Q==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float32-smallest-normal@0.2.2': + resolution: {integrity: sha512-2qkGjGML2/8P9YguHnac2AKXLbfycpYdCxKmuXQdAVzMMNCJWjHoIqZMFG29WBEDBOP057X+48S6WhIqoxRpWA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-e@0.2.2': + resolution: {integrity: sha512-7fxHaABwosbUzpBsw6Z9Dd9MqUYne8x+44EjohVcWDr0p0mHB/DXVYEYTlwEP/U/XbRrKdO3jUG6IO/GsEjzWg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-eps@0.2.2': + resolution: {integrity: sha512-61Pb2ip9aPhHXxiCn+VZ0UVw2rMYUp0xrX93FXyB3UTLacrofRKLMKtbV0SFac4VXx5igv2+0G+h6G/fwCgjyw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-eulergamma@0.2.2': + resolution: {integrity: sha512-XsuVud0d1hLTQspFzgUSH2e3IawTXLlJi2k4Vg0Nn6juulxfNO9PnAGtHz+p1BynYF/YwN+qhKnISQxrN31rsQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-exponent-bias@0.2.2': + resolution: {integrity: sha512-zLWkjzDYHSsBsXB/4mwHysOGl64JS3XBt/McjvjCLc/IZpfsUNFxLCl7oVCplXzYYHcQj/RfEBFy6cxQ6FvdpQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-fourth-pi@0.2.2': + resolution: {integrity: sha512-j0NOg45ouibms4ML8pfS/eDrurdtnhJTNPCGQM4mg3X+1ljsuO0pvkpVCvuz29t5J23KTcfGBXXr90ikoBmjlw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-gamma-lanczos-g@0.2.2': + resolution: {integrity: sha512-hCaZbZ042htCy9mlGrfUEbz4d0xW/DLdr3vHs5KiBWU+G+WHVH33vubSnEoyT0ugWpAk2ZqWXe/V8sLGgOu0xg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-half-ln-two@0.2.2': + resolution: {integrity: sha512-yv1XhzZR2AfJmnAGL0kdWlIUhc/vqdWol+1Gq2brXPVfgqbUmJu5XZuuK+jZA2k+fHyvRHNEwQRv9OPnOjchFg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-half-pi@0.2.2': + resolution: {integrity: sha512-lM3SiDsZCKiuF5lPThZFFqioIwh1bUiBUnnDMLB04/QkVRCAaXUo+dsq2hOB6iBhHoYhiKds6T+PsHSBlpqAaA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-high-word-abs-mask@0.2.2': + resolution: {integrity: sha512-YtYngcHlw9qvOpmsSlkNHi6cy/7Y7QkyYh5kJbDvuOUXPDKa3rEwBln4mKjbWsXhmmN0bk7TLypH7Ryd/UAjUQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-high-word-exponent-mask@0.2.2': + resolution: {integrity: sha512-LhYUXvpnLOFnWr8ucHA9N/H75VxcS2T9EoBDTmWBZoKj2Pg0icGVDmcNciRLIWbuPA9osgcKpxoU+ADIfaipVA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-high-word-sign-mask@0.2.1': + resolution: {integrity: sha512-Fep/Ccgvz5i9d5k96zJsDjgXGno8HJfmH7wihLmziFmA2z9t7NSacH4/BH4rPJ5yXFHLkacNLDxaF1gO1XpcLA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-high-word-significand-mask@0.2.2': + resolution: {integrity: sha512-eDDyiQ5PR1/qyklrW0Pus0ZopM7BYjkWTjqhSHhj0DibH6UMwSMlIl4ddCh3VX37p5eByuAavnaPgizk5c9mUw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-ln-sqrt-two-pi@0.2.2': + resolution: {integrity: sha512-C9YS9W/lvv54wUC7DojQSRH9faKw0sMAM09oMRVm8OOYNr01Rs1wXeSPStl9ns4qiV/G13vZzd1I3nGqgqihbw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-ln-two@0.2.2': + resolution: {integrity: sha512-EQ8EJ6B1wPfuhva0aApKIsF7lTna++txV4AUzL2wTfwDHw6RzWpA44u+k54KnLF8ZXUNIYDNQHHvtzdfKrFzCA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-max-base10-exponent@0.2.2': + resolution: {integrity: sha512-Jammf5J//rhgT66DtAk1sVYPQqCwNVptImfpIN2ZTo8krx0HcvDWFEmsNZwVq6q5iUhKhSShzWSvty5ysswp1A==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-max-base2-exponent-subnormal@0.2.1': + resolution: {integrity: sha512-D1wBNn54Hu2pK6P/yBz0FtPBI3/7HdgK8igYjWDKWUKzC92R/6PHZ9q5NzedcGxoBs8MUk1zNpP0tZyYj9Y4YQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-max-base2-exponent@0.2.2': + resolution: {integrity: sha512-KmDe98pJ2HXz2SbqyFfSDhlSSVD7JssjbZ5K11HEK2avqMcoCbdHH20T+6/TpA01VqaK8dLbeyphOfALcDdMKA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-max-ln@0.2.2': + resolution: {integrity: sha512-FPAEGjnoQMDPWJbCyyto7HWQ/SY2jjD8IkjyD8aOwENqbswjCbOINXRiK2ar27OOXG7Dv7CCpFpoorTxv0gmfA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-max-safe-integer@0.2.2': + resolution: {integrity: sha512-d+sxmxhkt980SDFhnnRDSpujPQTv4nEt5Ox3L86HgYZU4mQU/wbzYVkMuHIANW9x3ehww5blnGXTKYG9rQCXAw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-max-safe-nth-factorial@0.1.0': + resolution: {integrity: sha512-sppIfkBbeyKNwfRbmNFi5obI7Q+IJCQzfWKYqvzmEJVOkmEg6hhtEeFc8zZJGCU7+Pndc3M2wdbTT5a3rhamHw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-max@0.2.2': + resolution: {integrity: sha512-S3kcIKTK65hPqirziof3KTYqfFKopgaTnaiDlDKdzaCzBZ5qkrAcRd4vl+W1KHoZruUyWC2/RYZUa/8+h075TQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-min-base10-exponent-subnormal@0.2.1': + resolution: {integrity: sha512-AghpVQcTuhPiLE1IAk+e8HNU+wce/132Sg3MsL60CQaRVnG8X/VdivzEJGt2Nw9uH5rctvVINFrNnM0gxtmzJg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-min-base10-exponent@0.2.2': + resolution: {integrity: sha512-xrDj8cT4Aojo3TO1zm2LcFjXfkpf/NzNONkkE+YEnq+wHjV7UcXLTJefLPBET2T1uSwEXYYw7ZlbpQ7vbhNDEg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-min-base2-exponent-subnormal@0.2.1': + resolution: {integrity: sha512-fTXfvctXWj/48gK+gbRBrHuEHEKY4QOJoXSGp414Sz6vUxHusHJJ686p8ze3XqM7CY6fmL09ZgdGz/uhJl/7lw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-min-base2-exponent@0.2.2': + resolution: {integrity: sha512-YZmBiKik6LbWB4EOZ/ZUs/u6OIF742xNK8mhEqL0OEN4NuJe3OdErpOic6KjMmHjQuqCXdFoSqsWZaFHcIN7HA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-min-ln@0.2.2': + resolution: {integrity: sha512-N1Sxjo3uTdEIpHeG2TzaX06UuvpcKHvjYKpIMhJSajbxvfVDURHlc9kIpfbP9C9/YYoCy0FvewA/kvbqNaYypA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-ninf@0.2.2': + resolution: {integrity: sha512-Iu+wZs/vgudAKVg9FEcRY3FadkmvsWuq/wJ3jIHjhaP5xcnoF3XJUO4IneEndybHwehfJL65NShnDsJcg1gicw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-pi@0.2.2': + resolution: {integrity: sha512-ix34KmpUQ0LUM++L6avLhM9LFCcGTlsUDyWD/tYVGZBiIzDS3TMKShHRkZvC+v87fuyYNPoxolYtk5AlbacI6g==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-pinf@0.2.2': + resolution: {integrity: sha512-UcwnWaSkUMD8QyKADwkXPlY7yOosCPZpE2EDXf/+WOzuWi5vpsec+JaasD5ggAN8Rv8OTVmexTFs1uZfrHgqVQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-smallest-normal@0.2.2': + resolution: {integrity: sha512-GXNBkdqLT9X+dU59O1kmb7W5da/RhSXSvxx0xG5r7ipJPOtRLfTXGGvvTzWD4xA3Z5TKlrEL6ww5sph9BsPJnA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-smallest-subnormal@0.2.2': + resolution: {integrity: sha512-KuF+scDOsP0okx8RLF+q3l1RheaYChf+u/HbhzFbz82GeCIdIVp86UMwoBgfn8AT8cnR5SrtvLtQw15MGfa/vg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-sqrt-eps@0.2.2': + resolution: {integrity: sha512-X7LnGfnwNnhiwlY+zd3FX6zclsx61MaboGTNAAdaV78YjBDTdGdWMHk5MQo1U17ryPlhdGphOAejhDHeaSnTXQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-sqrt-two-pi@0.2.2': + resolution: {integrity: sha512-I8Ylr64x8AFSQ2hFBT8szuIBAy2wqPx69taJMzfcmuM5SnSbS8SE/H19YnCimZErVFo4bz0Rh8Fp3edN4i6teQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-sqrt-two@0.2.2': + resolution: {integrity: sha512-iqqouCuS9pUhjD91i5siScxLDtQTF1HsSZor6jaZRviMiOjCj/mjzxxTFHWUlU/rxHMBBhj/u7i12fv6a7dCAQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-float64-two-pi@0.2.2': + resolution: {integrity: sha512-cyXuwYOersVsA8tDSJ0ocMbtOc5KGxjlGvYC4vrpLQVkgNpxcGbA57n6JvaGmNk7+InXXbQ7qhTWGbTNgafcLQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-int16-max@0.2.2': + resolution: {integrity: sha512-w7XnWFxYXRyAnbKOxur3981FeaSlhKvHlhETwH5ZhtOQerk3Jn/iJFdtbN8CD0he1Kml4DWhnoKB7P9PcOaTIw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-int16-min@0.2.2': + resolution: {integrity: sha512-zn15vCgNoyD97z7mNQMChEneyc6xQudVGj1BOv5vZl827vHAs+KV6xeCI7VGY8Lpd6V22piDoGG3Mvj/43u9vQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-int32-max@0.2.1': + resolution: {integrity: sha512-vKtp3q/HdAeGG8BJBZdNzFrYpVQeleODgvOxh9Pn/TX1Ktjc50I9TVl7nTVWsT2QnacruOorILk2zNsdgBHPUQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-int32-max@0.3.0': + resolution: {integrity: sha512-jYN84QfG/yP2RYw98OR6UYehFFs0PsGAihV6pYU0ey+WF9IOXgSjRP56KMoZ7ctHwl4wsnj9I+qB2tGuEXr+pQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-int32-min@0.2.2': + resolution: {integrity: sha512-4QMOTpo5QykiWp52Wtugu1WK1wV/Bi2Hjj9L97dfZ3BPB1Oa9ykiUZvTsq3GBNCMu2YHPv1ugbV91C3p3bw+Aw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-int8-max@0.2.2': + resolution: {integrity: sha512-zp1L61S/ycOmkILmvuXEKvtXrEJ0QUAwP65sNAWMJOtdT0mhGMfGpXKvCK84TC3+jP5Wk4LU13cgO2bf/pmGTw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-int8-min@0.2.2': + resolution: {integrity: sha512-nxPloZUqbGuyuOPC0U3xQOn9YdyRq2g9uc1dzcw6k0XBhql9mlz9kCbdC74HeMm4K9Dyyb7IlAZLCezdv60s6g==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-uint16-max@0.2.2': + resolution: {integrity: sha512-qaFXbxgFnAkt73P5Ch7ODb0TsOTg0LEBM52hw6qt7+gTMZUdS0zBAiy5J2eEkTxA9rD9X3nIyUtLf2C7jafNdw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-uint32-max@0.2.2': + resolution: {integrity: sha512-2G44HQgIKDrh3tJUkmvtz+eM+uwDvOMF+2I3sONcTHacANb+zP7la4LDYiTp+HFkPJyfh/kPapXBiHpissAb1A==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/constants-uint8-max@0.2.2': + resolution: {integrity: sha512-ZTBQq3fqS/Y4ll6cPY5SKaS266EfmKP9PW3YLJaTELmYIzVo9w2RFtfCqN05G3olTQ6Le9MUEE/C6VFgZNElDQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/error-tools-fmtprodmsg@0.2.2': + resolution: {integrity: sha512-2IliQfTes4WV5odPidZFGD5eYDswZrPXob7oOu95Q69ERqImo8WzSwnG2EDbHPyOyYCewuMfM5Ha6Ggf+u944Q==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/fs-exists@0.2.2': + resolution: {integrity: sha512-uGLqc7izCIam2aTyv0miyktl4l8awgRkCS39eIEvvvnKIaTBF6pxfac7FtFHeEQKE3XhtKsOmdQ/yJjUMChLuA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/fs-resolve-parent-path@0.2.2': + resolution: {integrity: sha512-ZG78ouZc+pdPLtU+sSpYTvbKTiLUgn6NTtlVFYmcmkYRFn+fGOOakwVuhYMcYG6ti10cLD6WzB/YujxIt8f+nA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/function-ctor@0.2.2': + resolution: {integrity: sha512-qSn1XQnnhgCSYBfFy4II0dY5eW4wdOprgDTHcOJ3PkPWuZHDC1fXZsok1OYAosHqIiIw44zBFcMS/JRex4ebdQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-assert-is-even@0.2.3': + resolution: {integrity: sha512-cziGv8F/aNyfME7Wx2XJjnYBnf9vIeh8yTIzlLELd0OqGHqfsHU5OQxxcl9x5DbjZ1G/w0lphWxHFHYCuwFCHw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-assert-is-finite@0.2.2': + resolution: {integrity: sha512-QChWhSEfW0KjuilYPi3ApM3/8ZY5mN56MqJ1k/YwSXxbO4Xjziax1UB7pwjRvXPE0BnS2X0Rcju+QkQH2qP6Mw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-assert-is-infinite@0.2.2': + resolution: {integrity: sha512-4zDZuinC3vkXRdQepr0ZTwWX3KgM0VIWqYthOmCSgLLA87L9M9z9MgUZL1QeYeYa0+60epjDcQ8MS3ecT70Jxw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-assert-is-integer@0.2.5': + resolution: {integrity: sha512-Zi8N66GbWtSCR3OUsRdBknjNlX+aBN8w6CaVEP5+Jy/a7MgMYzevS52TNS5sm8jqzKBlFhZlPLex+Zl2GlPvSA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-assert-is-nan@0.2.2': + resolution: {integrity: sha512-QVS8rpWdkR9YmHqiYLDVLsCiM+dASt/2feuTl4T/GSdou3Y/PS/4j/tuDvCDoHDNfDkULUW+FCVjKYpbyoeqBQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-assert-is-negative-zero@0.2.2': + resolution: {integrity: sha512-WvKNuBZ6CDarOTzOuFLmO1jwZnFD+butIvfD2Ws6SsuqSCiWOaF4OhIckqPzo1XEdkqqhRNPqBxqc0D+hsEYVA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-assert-is-odd@0.2.1': + resolution: {integrity: sha512-V4qQuCO6/AA5udqlNatMRZ8R/MgpqD8mPIkFrpSZJdpLcGYSz815uAAf3NBOuWXkE2Izw0/Tg/hTQ+YcOW2g5g==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-assert-is-odd@0.3.0': + resolution: {integrity: sha512-V44F3xdR5/bHXqqYvE/AldLnVmijLr/rgf7EjnJXXDQLfPCgemy0iHTFl19N68KG1YO9SMPdyOaNjh4K0O9Qqw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-assert-is-positive-integer@0.3.0': + resolution: {integrity: sha512-2Cu8Qtb6PyptArAfj3wdHvrl2sbhZOsbRRgeelGpHvv3L4jhiTyLMs8dAtAg8MOhTQui3MQendc2v5Gz0XGyxQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-assert-is-positive-zero@0.2.2': + resolution: {integrity: sha512-mMX5xsemKpHRAgjpVJCb3eVZ3WIkZh6KnHQH8i8n4vI44pcdpN5rcTdEAMlhLjxT/rT7H2wq85f7/FRsq9r9rw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-napi-binary@0.2.1': + resolution: {integrity: sha512-ewGarSRaz5gaLsE17yJ4me03e56ICgPAA0ru0SYFCeMK2E5Z4Z2Lbu7HAQTTg+8XhpoaZSw0h2GJopTV7PCKmw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-napi-binary@0.3.0': + resolution: {integrity: sha512-bhwsmGMOMN1srcpNAFRjDMSXe9ue1s/XmaoBBlqcG6S2nqRQlIVnKKH4WZx4hmC1jDqoFXuNPJGE47VXpVV+mA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-napi-unary@0.2.3': + resolution: {integrity: sha512-BCyJmpq2S8EFo2yMt1z+v1EL7nn8RHcM6jn7fa8n3BTP679K0MSlawIh3A0CFogfrTdjPM4G44VO1ddsdLExcg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-abs@0.2.2': + resolution: {integrity: sha512-cw5CXj05c/L0COaD9J+paHXwmoN5IBYh+Spk0331f1pEMvGxSO1KmCREZaooUEEFKPhKDukEHKeitja2yAQh4Q==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-acos@0.2.3': + resolution: {integrity: sha512-f66Ikq0E3U5XQm6sTu4UHwP3TmcPrVgSK/mZTvg2JenswZ6qPtGO1A8KHZ5+/5bk1TSc9EW4zDGUqWG7mGzT4Q==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-asin@0.2.3': + resolution: {integrity: sha512-Ju1UFJspOOL630SqBtVmUh3lHv5JMu1szcAgx7kQupJwZiwWljoVQ5MmxlNY4l3nGM5oMokenlqTDNXOau43lw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-beta@0.3.0': + resolution: {integrity: sha512-SWUF1AZLqaEJ8g1Lj0/UOfj955AsIS3QPYH/ZMijELVxCwmp7VRgalI0AxMM09IraJt1cH5WrSwSnouH1WC3ZQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-betainc@0.2.2': + resolution: {integrity: sha512-95tzDgn5d9RV9al4gxHwKfszd9M6AizlpnhAiwIi0JwqcO+OY3xgbABWal4/H09Tb8DaC9jDqiyGuyPuB0iDew==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-binomcoef@0.2.3': + resolution: {integrity: sha512-RxnQ/QGgKUeqTvBL+7IH8rNKQYCfGs0I3PsFYfb0e9V1O2yIVvthURUpzjukurZM89JRapK1dN6aeZ5UM71Zgw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-ceil@0.2.2': + resolution: {integrity: sha512-zGkDaMcPrxQ9Zo+fegf2MyI8UPIrVTK5sc/FgCN9qdwEFJTKGLsBd249T3xH7L2MDxx5JbIMGrr6L4U4uEm2Hw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-copysign@0.2.2': + resolution: {integrity: sha512-m9nWIQhKsaNrZtS2vIPeToWDbzs/T0d0NWy7gSci38auQVufSbF6FYnCKl0f+uwiWlh5GYXs0uVbyCp7FFXN+A==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-cos@0.2.1': + resolution: {integrity: sha512-Yre+ASwsv4pQJk5dqY6488ZfmYDA6vtUTdapAVjCx28NluSFhXw1+S8EmsqnzYnqp/4x7Y1H7V2UPZfw+AdnbQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-cos@0.3.0': + resolution: {integrity: sha512-SsZpptPgCn15MjpWqEei6XaI60N+lrP0B7pFL89KFOXmagN4MprdU/YUmG413yPgUDLEEQfA0C9KbRWuf9uRvw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-erfc@0.2.4': + resolution: {integrity: sha512-tVI+mMnW+oDfQXwoH86sZ8q4ximpUXX6wZFCYZB6KcO5GXeKuvK74DnU0YyIm+sTV+r9WJiTSBEW9iVQLZOkzg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-erfcinv@0.2.3': + resolution: {integrity: sha512-B8u7WZiIh0+rX8VWNOwvjPWpmeKBHIQoJtIigUseBgbch/rmgV43k63MCkjh2u+V2SmcFo38yD94qJg5bYyWeA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-exp@0.2.4': + resolution: {integrity: sha512-G6pZqu1wA4WwBj7DcnztA+/ro61wXJUTpKFLOwrIb2f/28pHGpA//Lub+3vAk6/ksAkhJ+qM/dfdM2ue7zLuEw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-expm1@0.2.3': + resolution: {integrity: sha512-uJlYZjPjG9X8owuwp1h1/iz9xf21v3dlyEAuutQ0NoacUDzZKVSCbQ3Of0i2Mujn+4N+kjCvEeph6cqhfYAl+A==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-factorial@0.2.1': + resolution: {integrity: sha512-uqsANeW4gHFzhgDrV9X0INEwO74MPzQvDVXbxY9+b0E13Vq2HHCi0GqdtPOWXdhOCUk8RkLRs9GizU3X6Coy8A==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-factorial@0.3.0': + resolution: {integrity: sha512-tXdXqstF4gmy4HpzALo3Bhkj2UQSlyk+PU3alWXZH5XtKUozHuXhQDnak+2c4w0JqnKxHq4mnaR2qgjfkDNZcA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-floor@0.2.3': + resolution: {integrity: sha512-zTkxVRawtWwJ4NmAT/1e+ZsIoBj1JqUquGOpiNVGNIKtyLOeCONZlZSbN7zuxPkshvmcSjpQ/VLKR8Tw/37E9A==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-fmod@0.1.0': + resolution: {integrity: sha512-osHwmEOT5MPWOXRx8y3wKCp362eGHIcJRt8LARJJICr/qTZlu1HMnZnbwuhfy1NIQzpJ8aLOhEdl2PrProTt3A==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-gamma-delta-ratio@0.2.2': + resolution: {integrity: sha512-lan+cfafH7aoyUxa88vLO+pYwLA+0uiyVFmCumxDemQUboCrTiNCYhBjONFGI/ljE3RukHoE3ZV4AccIcx526A==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-gamma-lanczos-sum-expg-scaled@0.3.0': + resolution: {integrity: sha512-hScjKZvueOK5piX84ZLIV3ZiYvtvYtcixN8psxkPIxJlN7Bd5nAmSkEOBL+T+LeW2RjmdEMXFFJMF7FsK1js/Q==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-gamma-lanczos-sum@0.3.0': + resolution: {integrity: sha512-q13p6r7G0TmbD54cU8QgG8wGgdGGznV9dNKiNszw+hOqCQ+1DqziG8I6vN64R3EQLP7QN4yVprZcmuXSK+fgsg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-gamma1pm1@0.2.2': + resolution: {integrity: sha512-lNT1lk0ifK2a/ta3GfR5V8KvfgkgheE44n5AQ/07BBfcVBMiAdqNuyjSMeWqsH/zVGzjU6G8+kLBzmaJXivPXQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-gamma@0.2.1': + resolution: {integrity: sha512-Sfq1HnVoL4kN9EDHH3YparEAF0r7QD5jNFppUTOXmrqkofgImSl5tLttttnr2I7O9zsNhYkBAiTx9q0y25bAiA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-gamma@0.3.0': + resolution: {integrity: sha512-YfW+e5xuSDoUxgpquXPrFtAbdwOzE7Kqt7M0dcAkDNot8/yUn+QmrDGzURyBVzUyhRm9SaC9bACHxTShdJkcuA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-gammainc@0.2.2': + resolution: {integrity: sha512-ffKZFiv/41SXs2Xms7IW3lPnICR898yfWAidq5uKjOLgRb3wrzNjq0sZ6EAVXvdBwyGULvSjyud28PpVhDLv3A==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-gammaincinv@0.2.2': + resolution: {integrity: sha512-bIZ94ob1rY87seDWsvBTBRxp8Ja2Y46DLtQYuaylHUQuK+I2xKy8XKL2ZHPsOfuwhXRqm+q+91PDjPEAdH1dQw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-gammaln@0.2.2': + resolution: {integrity: sha512-opG6HUlspi/GLvQAr4pcwyAevm7BYuymlopgNZ1VulWUvksDpytalaX3zva0idlD2HvniKrDmzHngT1N9p0J1A==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-gcd@0.2.1': + resolution: {integrity: sha512-w10k9W176lDkbiDIwnmVr1nkTyypTQLwA3/CN9qEUmXh/u8NlxkSnDYBpArcWnxE0oFaIggw8sLJ58TuMvxMaw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-kernel-betainc@0.2.2': + resolution: {integrity: sha512-DQwQUWQkmZtjRgdvZ1yZOEdAYLQoEUEndbr47Z69Oe6AgwKwxxpZUh09h9imKheFCFHLVnwVUz20azIM5KifQw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-kernel-betaincinv@0.2.2': + resolution: {integrity: sha512-FVGf/clx14n3cPfRLKmd8+vAj90F200VxFOlf8kEULqGKbcQfoTHUfsViJ+r8l0cz1xf9K6uyfAl5KfqUIln4w==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-kernel-cos@0.2.3': + resolution: {integrity: sha512-K5FbN25SmEc5Z89GejUkrZpqCv05ZX6D7g9SUFcKWFJ1fwiZNgxrF8q4aJtGDQhuV3q66C1gaKJyQeLq/OI8lQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-kernel-sin@0.2.3': + resolution: {integrity: sha512-PFnlGdapUaCaMXqZr+tG5Ioq+l4TCyGE5e8XEYlsyhNDILf0XE2ghHzlROA/wW365Arl4sPLWUoo4oH98DUPqw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-ldexp@0.2.3': + resolution: {integrity: sha512-yD4YisQGVTJmTJUshuzpaoq34sxJtrU+Aw4Ih39mzgXiQi6sh3E3nijB8WXDNKr2v05acUWJ1PRMkkJSfu16Kg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-ln@0.2.4': + resolution: {integrity: sha512-lSB47USaixrEmxwadT0/yByvTtxNhaRwN0FIXt5oj38bsgMXGW4V8xrANOy1N+hrn3KGfHJNDyFPYbXWVdMTIw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-log1p@0.2.3': + resolution: {integrity: sha512-1Pu3attNR+DcskIvhvyls+2KRZ0UCHQ/jP2tvgFI9bWDCgb4oEimXPzjFteGNg9Mj6WlAW2b9wU9tHt3bp8R3g==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-log1pmx@0.2.3': + resolution: {integrity: sha512-HfjDXcbFztm/GQRrn7a9FMYS0rm/4VPXWa50sYQzBHSYaEwYv5Y1awaZz+cA/ncuqAq1Mw0dfcwEMNRmZtnxEQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-max@0.2.1': + resolution: {integrity: sha512-jsA3x5azfclbULDFwvHjNlB2nciUDHwrw7qHP/QlSdJi47E1iBDNYdzhlOa3JKzblbrITpzgZEsGBcpCinEInQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-max@0.3.0': + resolution: {integrity: sha512-yXsmdFCLHRB24l34Kn1kHZXHKoGqBxPY/5Mi+n5qLg+FwrX85ZG6KGVbO3DfcpG1NxDTcEKb1hxbUargI0P5fw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-maxabs@0.3.0': + resolution: {integrity: sha512-SDj+rGD9itZ/YG2hKzhLX4Tf13SNJdOyNsMy1ezjec6Az3xJXKzv2wJAJIteo0KF6jQnEDkI/F6OIF65MY+o0g==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-min@0.2.3': + resolution: {integrity: sha512-tNrKnkcHCRVWzteZJpZ/xql9B6N6EzecnUVizDYqG9y66bOVtI+TADcQ5I/bijEwAIi2BjrIVeq/TBEgQEQBkw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-minabs@0.2.3': + resolution: {integrity: sha512-IV7PSL09S2GHmsxxtFgebPEwLm/wHnC1e1ulP8Uiuo2zinOiv4NXy2tpf9T+nq95d0ICFMnr9IGxFs6Nd74hRw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-pow@0.2.1': + resolution: {integrity: sha512-7SvgVzDkuilZKrHh4tPiXx9fypF/V7PSvAcUVjvcRj5kVEwv/15RpzlmCJlT9B20VPSx4gJ1S0UIA6xgmYFuAg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-pow@0.3.0': + resolution: {integrity: sha512-sMDYRUYGFyMXDHcCYy7hE07lV7jgI6rDspLMROKyESWcH4n8j54XE4/0w0i8OpdzR40H895MaPWU/tVnU1tP6w==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-powm1@0.3.1': + resolution: {integrity: sha512-Pz7e2JlZH9EktJCDuyFPoT9IxMUSiZiJquyh2xB92NQQi9CAIdyaPUryNo36LxG65bne5GZF47MeiWCE8oWgiA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-rempio2@0.2.1': + resolution: {integrity: sha512-ErV5EAe3SQCSijg4Pi4Z0sRPOGrODF3jkyCeiLM+iYj2TMOwDaOWQ0xCTME0p9G45TDrbZCLM5arxN83TfzgXQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-round@0.2.1': + resolution: {integrity: sha512-ibeKiN9z//6wS4H4uaa+vGnh/t1vJtZYXz+NqRVtwoP+nnE/mtL+fIrBlAnkIWVIH+smQPNNo8qsohjyGLBvUQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-round@0.3.0': + resolution: {integrity: sha512-LwHmjWKL88u1HttH3Tmu3qrETb1KZ0J7uvhVkHvU7KgfCvCU8SX/wep47xv74rKDZMXyVEtmp7ZwpZPFm/zBcg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-roundn@0.2.2': + resolution: {integrity: sha512-V9MOFB92s29sV0khneJWte8H4wiatypkthq6BP7HABcUxNLzW/oeBsLR+DpRhG04jaC1jowjcpV2PeyKdzvK0A==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-signum@0.2.2': + resolution: {integrity: sha512-cszwgkfeMTnUiORRWdWv6Q/tpoXkXkMYNMoAFO5qzHTuahnDP37Lkn8fTmCEtgHEasg3Cm69xLbqP0UDuNPHyA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-sin@0.2.1': + resolution: {integrity: sha512-IQ6+bzfiZ6/VUn5DIe6iwCsYERE1pwtAOsAWkgNZ1Ih3FzXUxdEOyHtv1zraPrVUb8mR+V5q7OfAGy8TCTnkUg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-sin@0.3.0': + resolution: {integrity: sha512-n5qefWrHs0tZ8hM73EvixH5nFnTU/IW2BnY9/Gamtsu90oTusqOi0WB1jVOMypC8i1mJEHdOWrsip7aDRWk1kQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-sinpi@0.2.1': + resolution: {integrity: sha512-Q3yCp1CoD7gemIILO28bU7iBn8OFiCgXm9vP/9q0tRBxmjtiUnjqbFd+3jRXdAmiCc/B/bPjwGBtVnCnrEMY9g==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-sqrt@0.2.2': + resolution: {integrity: sha512-YWxe9vVE5blDbRPDAdZfU03vfGTBHy/8pLDa/qLz7SiJj5n5sVWKObdbMR2oPHF4c6DaZh4IYkrcHFleiY8YkQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-special-trunc@0.2.2': + resolution: {integrity: sha512-cvizbo6oFEbdiv7BrtEMODGW+cJcBgyAIleJnIpCf75C722Y/IZgWikWhACSjv4stxGywFubx85B7uvm3vLgwA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-tools-continued-fraction@0.2.2': + resolution: {integrity: sha512-5dm72lTXwSVOsBsOLF57RZqqHehRd9X3HKdQ3WhOoHx7fNc0lxJJEDjtK8gMdV3NvfoER1MBiGbs2h23oaK5qw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-tools-evalpoly@0.2.2': + resolution: {integrity: sha512-vLvfkMkccXZGFiyI3GPf8Ayi6vPEZeHgENnoBDGC+eMIDIoVWmOpVWsjpUz8xtc5xGNsa1hKalSI40IrouHsYA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/math-base-tools-sum-series@0.2.2': + resolution: {integrity: sha512-P3X+jMONClp93ucJi1Up/x26uwL0kH20CMV9bLzcQyRY8Mceh7jPZuEwzGQR0jq/tJ/4J7AnHg4kdrx4Pd+BNA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/number-ctor@0.2.2': + resolution: {integrity: sha512-98pL4f1uiXVIw9uRV6t4xecMFUYRRTUoctsqDDV8MSRtKEYDzqkWCNz/auupJFJ135L1ejzkejh73fASsgcwKQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/number-float32-base-to-word@0.2.2': + resolution: {integrity: sha512-/I866ocLExPpAjgZnHAjeaBw3ZHg5tVPcRdJoTPEiBG2hwD/OonHdCsfB9lu6FxO6sbp7I9BR1JolCoEyrhmYg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/number-float64-base-exponent@0.2.2': + resolution: {integrity: sha512-mYivBQKCuu54ulorf5A5rIhFaGPjGvmtkxhvK14q7gzRA80si83dk8buUsLpeeYsakg7yLn10RCVjBEP9/gm7Q==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/number-float64-base-from-words@0.2.2': + resolution: {integrity: sha512-SzMDXSnIDZ8l3PDmtN9TPKTf0mUmh83kKCtj4FisKTcTbcmUmT/ovmrpMTiqdposymjHBieNvGiCz/K03NmlAA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/number-float64-base-get-high-word@0.2.2': + resolution: {integrity: sha512-LMNQAHdLZepKOFMRXAXLuq30GInmEdTtR0rO7Ka4F3m7KpYvw84JMyvZByMQHBu+daR6JNr2a/o9aFjmVIe51g==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/number-float64-base-get-low-word@0.2.2': + resolution: {integrity: sha512-VZjflvoQ9//rZwwuhl7uSLUnnscdIIYmBrHofnBHRjHwdLGUzSd9PM0iagtvI82OHw5QnydBYI4hohBeAAg+aQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/number-float64-base-normalize@0.2.3': + resolution: {integrity: sha512-HT+3fhYZOEg2JgHBWS/ysc9ZveQZV10weKbtxhLHOsvceQVp1GbThsLik62mU2/3f96S9MgiVfPfSDI3jnBoYw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/number-float64-base-set-high-word@0.2.2': + resolution: {integrity: sha512-bLvH15GJgX5URMaOOJAQgO8/dCJPYUQoXPZH7ecSC3XnnVMfWEf43knkjEGYCnWp4nro5hPRElbtdV4mKEjpUg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/number-float64-base-set-low-word@0.2.2': + resolution: {integrity: sha512-E1pGjTwacJ+Tkt5rKQNdwitKnM1iDgMlulYosNdn6CtvU0Pkq359bNhscMscxehdY3MifwuJpuGzDWD2EGUXzQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/number-float64-base-to-float32@0.2.2': + resolution: {integrity: sha512-T5snDkVNZY6pomrSW/qLWQfZ9JHgqCFLi8jaaarfNj2o+5NMUuvvRifLUIacTm8/uC96xB0j3+wKTh1zbIV5ig==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/number-float64-base-to-words@0.2.2': + resolution: {integrity: sha512-nkFHHXoMhb3vcfl7ZvzgiNdqBdBfbKxHtgvDXRxrNQoVmyYbnjljjYD489d2/TAhe+Zvn7qph6QLgTod3zaeww==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/number-uint32-base-to-int32@0.2.2': + resolution: {integrity: sha512-NPADfdHE/3VEifKDttXM24dRj5YQqxwh2wTRD8fQrpHeaWiMIUo8yDqWrrFNIdLVAcqjL2SwWpo4VJ7oKTYaIA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/object-ctor@0.2.1': + resolution: {integrity: sha512-HEIBBpfdQS9Nh5mmIqMk9fzedx6E0tayJrVa2FD7No86rVuq/Ikxq1QP7qNXm+i6z9iNUUS/lZq7BmJESWO/Zg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/os-byte-order@0.2.2': + resolution: {integrity: sha512-2y6rHAvZo43YmZu9u/E/7cnqZa0hNTLoIiMpV1IxQ/7iv03xZ45Z3xyvWMk0b7bAWwWL7iUknOAAmEchK/kHBA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/os-float-word-order@0.2.2': + resolution: {integrity: sha512-5xpcEuxv/CudKctHS5czKdM7Bj/gC+sm/5R5bRPYyqxANM67t365j3v2v8rmmOxkEp9t0fa8Dggx8VmOkpJXaA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/process-cwd@0.2.2': + resolution: {integrity: sha512-8Q/nA/ud5d5PEzzG6ZtKzcOw+RMLm5CWR8Wd+zVO5vcPj+JD7IV7M2lBhbzfUzr63Torrf/vEhT3cob8vUHV/A==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/regexp-extended-length-path@0.2.2': + resolution: {integrity: sha512-z3jqauEsaxpsQU3rj1A1QnOgu17pyW5kt+Az8QkoTk7wqNE8HhPikI6k4o7XBHV689rSFWZCl4c4W+7JAiNObQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/regexp-function-name@0.2.2': + resolution: {integrity: sha512-0z/KRsgHJJ3UQkmBeLH+Nin0hXIeA+Fw1T+mnG2V5CHnTA6FKlpxJxWrvwLEsRX7mR/DNtDp06zGyzMFE/4kig==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/stats-anova1@0.2.2': + resolution: {integrity: sha512-DH43nLnMbKGZaUNmSOZgrxSjI2UQONCSqH6msCio7fv2SrhI4pYlWYv7gT0yrqVzb+JgYzB+DBWVQDCu20po3g==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/stats-base-dists-chisquare-cdf@0.2.2': + resolution: {integrity: sha512-vfXA+CYFYRcSCizJ8VlaB7VAIX/+LCaq4q4+6vglpzQeCBSAc/zqgFtTYu7XzudD+DgDjxIRUNZvA5xhzblsyw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/stats-base-dists-degenerate-cdf@0.2.2': + resolution: {integrity: sha512-mjb7ccaRwNPcPe21rhAW4JUTnxGSKs8wbQNF7xPN2vy0qSoQY5t0Tf4zl6C6WvF091skFDZB4bQ1QGOc7brGFw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/stats-base-dists-f-cdf@0.2.2': + resolution: {integrity: sha512-2H8ZLqWVsM1Hx8HtqmQT876pCk8SnJKXKSzZR9QoGPtig+CkpwcElyKGYdxyW4ov6XPhdK+RVe/oa9MGS82Lmg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/stats-base-dists-gamma-cdf@0.2.2': + resolution: {integrity: sha512-xXu2jkr90niX9VgOXFOcDMi7ET/IWD6v8er6twtigR7xF/PGCNwRxKKCWpwkubCtSIklxehtGp62etrbOGSOjg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/stats-base-dists-normal-cdf@0.2.2': + resolution: {integrity: sha512-Vp9A7ZHWfEK81f568sDrgKo9fM1lIScuHD7wc/DF57TtkGP68nu9QFW7myzh+l/ZW4miJq6qud7lWMAPJ35WlQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/stats-base-dists-signrank-cdf@0.2.2': + resolution: {integrity: sha512-MrxTXj6qApITuVCpawSp03UdNrbOnXc5cfIdpHCozxij+aM2FJFYYpR3367x860QPL75+2GPEUr/ureREUOF/w==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/stats-base-dists-t-cdf@0.2.2': + resolution: {integrity: sha512-Oi64G193xMRxdgcfOXS7sID+WQ9HqlqcgzBPkNKJsbQvkAKSaeKKMt9yccYEPLVO7cEPLSLCXO9s4W1lrf4TGA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/stats-base-dists-t-quantile@0.2.2': + resolution: {integrity: sha512-Ca88AGDGLU3gJeGy0aUXh6gMXXFp5JM+zEciTLT3bhyerycJYKawxNVdHeur0J7LLnujGfeH/rOfSPFTHzgkHg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/stats-base-mean@0.2.2': + resolution: {integrity: sha512-I6TTyFOstbLBC4qOz5eMxoNUNbx5AheZBhyFHXlRREkwmRdxAbh2Eh1/cyWl7qxpDyBj9eOYu09ya5lSSO6z8A==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/stats-base-meanpn@0.2.2': + resolution: {integrity: sha512-PgXFet4HKbiYvQdpP3AT+BIQBj2Nw8LZxFyn1Pjm2+rmZIWCxQGJs03zmKLEwvtD+IBn4MEY+xmDOhsyeBqCSA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/stats-base-variance@0.2.2': + resolution: {integrity: sha512-+CeGWpAry+ONvQEA0Z6GMH2DKqPgAzEwpqJLgHGwNLmBE1XdrRFPv53nyAS0P+LE1fbhWTDR1Jvn5iadgAvRoQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/stats-base-variancepn@0.2.2': + resolution: {integrity: sha512-91NZKAvhdwsbukRUnXCUVyk5f6lOggn4toNsAaocGSL+DC/e7WacTDJPA3F33YeRTh7oBQAAIgvtlD22IAoPAw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/stats-incr-stdev@0.2.2': + resolution: {integrity: sha512-FSFpFsKenV+4WiTzXxb0pgu0wpHq2XM11ddlJZNdo7sl5OEukLHs/zbLum+GdGBtV6aZirED3IT4jH0QtJi8bw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/stats-kruskal-test@0.2.2': + resolution: {integrity: sha512-l7ErzqDr4FkPedbhQmbMUV80jFVRYOWETKGmGmeKNiFaY4zLVgXxpvxVs0oF8+wDgXswRHtc0w/rchYI9kRJ7w==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/stats-ranks@0.2.2': + resolution: {integrity: sha512-Q6nJPPvL5xW9WLBlZZVdY/eU7hrXZ0dNd1wYzqahvNENxaQcm71La37QhA3sfLU3kK5uFMet3P0rrQ/9v81wPA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/stats-ttest2@0.2.2': + resolution: {integrity: sha512-MsQtiXZnZzwJfzClu+Ga8qsPBZXnvohVM+tmbuZ2rZijalXvZiOjCtQ8/CYtcj2jmUGnCPg3a0Xq+9FUBXowQw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/stats-ttest@0.2.2': + resolution: {integrity: sha512-H+1y1MF3QootuPso7EYAMIwNOO2HTvxxXLTWEqFbqlv6mkbPsRxACRExZB2dyMkoQxhROTDVHY5IwsTl8FL8yg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/stats-wilcoxon@0.2.2': + resolution: {integrity: sha512-ctGyDOvs14nZ2p5ONoG1qggiJ3nLEYPEl/04A+V+BA4Z1O6NPpz/qpyPKiny7dkkau7bnlLswL7fteB8AcafGw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/strided-base-reinterpret-complex128@0.2.2': + resolution: {integrity: sha512-vOvOCe9PIFEvIGjFcpyT0VfvDTPy2ZQ6rO9b6IM2TkkfzwEj5renq+mxYOHxXx+L61RuMjnkI3giIH/1raPxYg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/strided-base-reinterpret-complex64@0.2.1': + resolution: {integrity: sha512-p/IUPeUnsEfCvme0H8twiAfaFJ7RZ3SOZPjBjLRr04RMSdibwF/N8m9oRpzbXosCaD6LSRpB/pNLraBYNowmDw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/string-base-format-interpolate@0.2.2': + resolution: {integrity: sha512-i9nU9rAB2+o/RR66TS9iQ8x+YzeUDL1SGiAo6GY3hP6Umz5Dx9Qp/v8T69gWVsb4a1YSclz5+YeCWaFgwvPjKA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/string-base-format-tokenize@0.2.2': + resolution: {integrity: sha512-kXq2015i+LJjqth5dN+hYnvJXBSzRm8w0ABWB5tYAsIuQTpQK+mSo2muM8JBEFEnqUHAwpUsu2qNTK/9o8lsJg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/string-base-lowercase@0.4.0': + resolution: {integrity: sha512-IH35Z5e4T+S3b3SfYY39mUhrD2qvJVp4VS7Rn3+jgj4+C3syocuAPsJ8C4OQXWGfblX/N9ymizbpFBCiVvMW8w==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/string-base-repeat@0.2.2': + resolution: {integrity: sha512-mH/DfDMHvBRv8ENJ2AoE+17mGV1hdB8/yowW2GVTqju5x20zGnHlRQ3NV60lFG4q8MHNzWPjj+PQv0/VhiAnsw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/string-base-replace@0.2.2': + resolution: {integrity: sha512-Y4jZwRV4Uertw7AlA/lwaYl1HjTefSriN5+ztRcQQyDYmoVN3gzoVKLJ123HPiggZ89vROfC+sk/6AKvly+0CA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/string-format@0.2.2': + resolution: {integrity: sha512-GUa50uxgMAtoItsxTbMmwkyhIwrCxCrsjzk3nAbLnt/1Kt1EWOWMwsALqZdD6K4V/xSJ4ns6PZur3W6w+vKk9g==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/string-repeat@0.2.2': + resolution: {integrity: sha512-NSV9PZNoQ1vgJtkZZwDSQAkW+JKhH2fM6jJGjL1B1Z+RlVFLY4QXZmCiXDVGUu/S81yjLSV52Y7/dQrxNnUdVg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/string-replace@0.2.2': + resolution: {integrity: sha512-czNS5IU7sBuHjac45Y3VWUTsUoi82yc8JsMZrOMcjgSrEuDrVmA6sNJg7HC1DuSpdPjm/v9uUk102s1gIfk3Nw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/symbol-ctor@0.2.2': + resolution: {integrity: sha512-XsmiTfHnTb9jSPf2SoK3O0wrNOXMxqzukvDvtzVur1XBKfim9+seaAS4akmV1H3+AroAXQWVtde885e1B6jz1w==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/symbol-iterator@0.2.2': + resolution: {integrity: sha512-4O8SrTPlffIpAXjryxAud2AhOGxhY8bCN+xFKIW/oRJYI7cDGws5MrAv+Dk9FQBkHHeVThKdvjONO+QC7YRuFA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/utils-constant-function@0.2.2': + resolution: {integrity: sha512-ezRenGy5zU4R0JTfha/bpF8U+Hx0b52AZV++ca/pcaQVvPBRkgCsJacXX0eDbexoBB4+ZZ1vcyIi4RKJ0RRlbQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/utils-constructor-name@0.2.2': + resolution: {integrity: sha512-TBtO3MKDAf05ij5ajmyBCbpKKt0Lfahn5tu18gqds4PkFltgcw5tVZfSHY5DZ2HySJQ2GMMYjPW2Kbg6yPCSVg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/utils-convert-path@0.2.2': + resolution: {integrity: sha512-8nNuAgt23Np9NssjShUrPK42c6gRTweGuoQw+yTpTfBR9VQv8WFyt048n8gRGUlAHizrdMNpEY9VAb7IBzpVYw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/utils-count-by@0.2.2': + resolution: {integrity: sha512-X/RzxLH3QNfh9qx0hyYRALpDfKzo1bs85drupDx5wUlEl2zubboAzdAlzucdfjV58lPwMRdbwIpxfHH1H5NHng==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/utils-define-nonenumerable-read-only-accessor@0.2.3': + resolution: {integrity: sha512-0ECS16+eDOkwa045K75d6b2pnl/bSny6LCQzrPyAJgbKrnDOUrE8c7ZRuVvVkWCvByYHKUO7I5JCLoty3/f2DA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/utils-define-nonenumerable-read-only-property@0.2.2': + resolution: {integrity: sha512-V3mpAesJemLYDKG376CsmoczWPE/4LKsp8xBvUxCt5CLNAx3J/1W39iZQyA5q6nY1RStGinGn1/dYZwa8ig0Uw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/utils-define-property@0.2.4': + resolution: {integrity: sha512-XlMdz7xwuw/sqXc9LbsV8XunCzZXjbZPC+OAdf4t4PBw4ZRwGzlTI6WED+f4PYR5Tp9F1cHgLPyMYCIBfA2zRg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/utils-define-read-only-property@0.2.2': + resolution: {integrity: sha512-JcoavbkwxXFWtIHNypiL/5oCFU76WXYUFTeUMKPTNx0oyO2UjW9sKNuJfpoY9ksHPZNZGHRTsNbXVHabkNjVBQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/utils-escape-regexp-string@0.2.2': + resolution: {integrity: sha512-areCibzgpmvm6pGKBg+mXkSDJW4NxtS5jcAT7RtunGMdAYhA/I5whISMPaeJkIT2XhjjFkjKBaIs5pF6aPr4fQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/utils-eval@0.2.2': + resolution: {integrity: sha512-MaFpWZh3fGcTjUeozju5faXqH8w4MRVfpO/M5pon3osTM0by8zrKiI5D9oWqNVygb9JBd+etE+4tj2L1nr5j2A==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/utils-get-prototype-of@0.2.2': + resolution: {integrity: sha512-eDb1BAvt7GW/jduBkfuQrUsA9p09mV8RW20g0DWPaxci6ORYg/UB0tdbAA23aZz2QUoxdYY5s/UJxlq/GHwoKQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/utils-global@0.2.2': + resolution: {integrity: sha512-A4E8VFHn+1bpfJ4PA8H2b62CMQpjv2A+H3QDEBrouLFWne0wrx0TNq8vH6VYHxx9ZRxhgWQjfHiSAxtUJobrbQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/utils-identity-function@0.2.2': + resolution: {integrity: sha512-EmLjtt/+8XgIsFVx8KTOtUHlQL0Kk/E9vgfOeQQgZ0gH8Pu7DGrQfKuNxilhfGTt/IrOzUzRcV1/tIQWqD8j5w==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/utils-index-of@0.2.2': + resolution: {integrity: sha512-yVnjPk3Arzf3no+Ju5ys4ZVG4aKHA8xV4g53Ni+FO8c0AStKq9F8O+E/aFxluCKqLz6jGLaLea7996e0Hcw9mQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/utils-keys@0.2.2': + resolution: {integrity: sha512-mvmvhpewElNalx5YotZ/jI57CiYHc9y6N8SGxJiOUs04NkWMkW8rnXRvJEi0rPj2BOIJReEGZ1WaZpdL68DUcQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/utils-library-manifest@0.2.2': + resolution: {integrity: sha512-YqzVLuBsB4wTqzdUtRArAjBJoT3x61iop2jFChXexhl6ejV3vDpHcukEEkqIOcJKut+1cG5TLJdexgHNt1C0NA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/utils-memoize@0.2.2': + resolution: {integrity: sha512-ju7Klk4s39PZAnU8onkSrtjiX9AEckLgkG2GImG0CL/go6YwQ7f7gSyxCi1OzKZ3dCOgij0uU655p7PtGm1XOg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/utils-native-class@0.2.2': + resolution: {integrity: sha512-cSn/FozbEpfR/FlJAoceQtZ8yUJFhZ8RFkbEsxW/7+H4o09yln3lBS0HSfUJISYNtpTNN/2/Fup88vmvwspvwA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/utils-noop@0.2.2': + resolution: {integrity: sha512-QlHCBCExrFlNFFqDBOvxPeHkvAuMBHsbQYWRjSG2FD6QumEDn9EqBAcJZNr+xYdkw/6SVRJ0ySTyroReg5vcAA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/utils-tabulate@0.2.2': + resolution: {integrity: sha512-6IO9OXIune5sQup9huUwoJvaYs+o2RxPweChbtFdlp2uJB6NgB6FZgdxl6ApbZey7ciRxKCVeMgzpwNLy74V7g==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@stdlib/utils-type-of@0.2.2': + resolution: {integrity: sha512-RLGFxPNgY9AtVVrFGdKO6Y3pOd/Ov2WA4O2/czZN/AbgYzbPdoF0KkfvHRIney6k+TtvoyYB8YqZXJ4G88f9BQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} + os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] + + '@types/d3-hierarchy@3.1.7': + resolution: {integrity: sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==} + + '@types/estree@1.0.6': + resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} '@types/node@12.20.55': resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - '@types/node@20.16.9': - resolution: {integrity: sha512-rkvIVJxsOfBejxK7I0FO5sa2WxFmJCzoDwcd88+fq/CUfynNywTo/1/T6hyFz22CyztsnLS9nVlHOnTI36RH5w==} + '@types/node@20.16.15': + resolution: {integrity: sha512-DV58qQz9dBMqVVn+qnKwGa51QzCD4YM/tQM16qLKxdf5tqz5W4QwtrMzjSTbabN1cFTSuyxVYBy+QWHjWW8X/g==} - '@types/node@22.0.0': - resolution: {integrity: sha512-VT7KSYudcPOzP5Q0wfbowyNLaVR8QWUdw+088uFWwfvpY6uCWaXpqV6ieLAu9WBcnTa7H4Z5RLK8I5t2FuOcqw==} - - '@types/semver@7.5.8': - resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} + '@types/node@22.9.0': + resolution: {integrity: sha512-vuyHg81vvWA1Z1ELfvLko2c8f34gyA0zaic0+Rllc5lbCnbSyuvb2Oxpm6TAUAC/2xZN3QGqxBNggD1nNR2AfQ==} '@types/triple-beam@1.3.5': resolution: {integrity: sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==} - '@vitejs/plugin-vue@5.1.3': - resolution: {integrity: sha512-3xbWsKEKXYlmX82aOHufFQVnkbMC/v8fLpWwh6hWOUrK5fbbtBh9Q/WWse27BFgSy2/e2c0fz5Scgya9h2GLhw==} + '@vitejs/plugin-vue@5.1.5': + resolution: {integrity: sha512-dlnib73G05CDBAUR/YpuZcQQ47fpjihnnNouAAqN62z+oqSsWJ+kh52GRzIxpkgFG3q11eXK7Di7RMmoCwISZA==} engines: {node: ^18.0.0 || >=20.0.0} peerDependencies: vite: ^5.0.0 vue: ^3.2.25 - '@vitest/expect@2.1.1': - resolution: {integrity: sha512-YeueunS0HiHiQxk+KEOnq/QMzlUuOzbU1Go+PgAsHvvv3tUkJPm9xWt+6ITNTlzsMXUjmgm5T+U7KBPK2qQV6w==} - - '@vitest/expect@2.1.2': - resolution: {integrity: sha512-FEgtlN8mIUSEAAnlvn7mP8vzaWhEaAEvhSXCqrsijM7K6QqjB11qoRZYEd4AKSCDz8p0/+yH5LzhZ47qt+EyPg==} - - '@vitest/mocker@2.1.1': - resolution: {integrity: sha512-LNN5VwOEdJqCmJ/2XJBywB11DLlkbY0ooDJW3uRX5cZyYCrc4PI/ePX0iQhE3BiEGiQmK4GE7Q/PqCkkaiPnrA==} - peerDependencies: - '@vitest/spy': 2.1.1 - msw: ^2.3.5 - vite: ^5.0.0 - peerDependenciesMeta: - msw: - optional: true - vite: - optional: true + '@vitest/expect@2.1.4': + resolution: {integrity: sha512-DOETT0Oh1avie/D/o2sgMHGrzYUFFo3zqESB2Hn70z6QB1HrS2IQ9z5DfyTqU8sg4Bpu13zZe9V4+UTNQlUeQA==} - '@vitest/mocker@2.1.2': - resolution: {integrity: sha512-ExElkCGMS13JAJy+812fw1aCv2QO/LBK6CyO4WOPAzLTmve50gydOlWhgdBJPx2ztbADUq3JVI0C5U+bShaeEA==} + '@vitest/mocker@2.1.4': + resolution: {integrity: sha512-Ky/O1Lc0QBbutJdW0rqLeFNbuLEyS+mIPiNdlVlp2/yhJ0SbyYqObS5IHdhferJud8MbbwMnexg4jordE5cCoQ==} peerDependencies: - '@vitest/spy': 2.1.2 - msw: ^2.3.5 + msw: ^2.4.9 vite: ^5.0.0 peerDependenciesMeta: msw: @@ -1317,117 +2807,82 @@ packages: vite: optional: true - '@vitest/pretty-format@2.1.1': - resolution: {integrity: sha512-SjxPFOtuINDUW8/UkElJYQSFtnWX7tMksSGW0vfjxMneFqxVr8YJ979QpMbDW7g+BIiq88RAGDjf7en6rvLPPQ==} - - '@vitest/pretty-format@2.1.2': - resolution: {integrity: sha512-FIoglbHrSUlOJPDGIrh2bjX1sNars5HbxlcsFKCtKzu4+5lpsRhOCVcuzp0fEhAGHkPZRIXVNzPcpSlkoZ3LuA==} - - '@vitest/runner@2.1.1': - resolution: {integrity: sha512-uTPuY6PWOYitIkLPidaY5L3t0JJITdGTSwBtwMjKzo5O6RCOEncz9PUN+0pDidX8kTHYjO0EwUIvhlGpnGpxmA==} - - '@vitest/runner@2.1.2': - resolution: {integrity: sha512-UCsPtvluHO3u7jdoONGjOSil+uON5SSvU9buQh3lP7GgUXHp78guN1wRmZDX4wGK6J10f9NUtP6pO+SFquoMlw==} - - '@vitest/snapshot@2.1.1': - resolution: {integrity: sha512-BnSku1WFy7r4mm96ha2FzN99AZJgpZOWrAhtQfoxjUU5YMRpq1zmHRq7a5K9/NjqonebO7iVDla+VvZS8BOWMw==} + '@vitest/pretty-format@2.1.4': + resolution: {integrity: sha512-L95zIAkEuTDbUX1IsjRl+vyBSLh3PwLLgKpghl37aCK9Jvw0iP+wKwIFhfjdUtA2myLgjrG6VU6JCFLv8q/3Ww==} - '@vitest/snapshot@2.1.2': - resolution: {integrity: sha512-xtAeNsZ++aRIYIUsek7VHzry/9AcxeULlegBvsdLncLmNCR6tR8SRjn8BbDP4naxtccvzTqZ+L1ltZlRCfBZFA==} + '@vitest/runner@2.1.4': + resolution: {integrity: sha512-sKRautINI9XICAMl2bjxQM8VfCMTB0EbsBc/EDFA57V6UQevEKY/TOPOF5nzcvCALltiLfXWbq4MaAwWx/YxIA==} - '@vitest/spy@2.1.1': - resolution: {integrity: sha512-ZM39BnZ9t/xZ/nF4UwRH5il0Sw93QnZXd9NAZGRpIgj0yvVwPpLd702s/Cx955rGaMlyBQkZJ2Ir7qyY48VZ+g==} + '@vitest/snapshot@2.1.4': + resolution: {integrity: sha512-3Kab14fn/5QZRog5BPj6Rs8dc4B+mim27XaKWFWHWA87R56AKjHTGcBFKpvZKDzC4u5Wd0w/qKsUIio3KzWW4Q==} - '@vitest/spy@2.1.2': - resolution: {integrity: sha512-GSUi5zoy+abNRJwmFhBDC0yRuVUn8WMlQscvnbbXdKLXX9dE59YbfwXxuJ/mth6eeqIzofU8BB5XDo/Ns/qK2A==} + '@vitest/spy@2.1.4': + resolution: {integrity: sha512-4JOxa+UAizJgpZfaCPKK2smq9d8mmjZVPMt2kOsg/R8QkoRzydHH1qHxIYNvr1zlEaFj4SXiaaJWxq/LPLKaLg==} - '@vitest/utils@2.1.1': - resolution: {integrity: sha512-Y6Q9TsI+qJ2CC0ZKj6VBb+T8UPz593N113nnUykqwANqhgf3QkZeHFlusgKLTqrnVHbj/XDKZcDHol+dxVT+rQ==} + '@vitest/utils@2.1.4': + resolution: {integrity: sha512-MXDnZn0Awl2S86PSNIim5PWXgIAx8CIkzu35mBdSApUip6RFOGXBCf3YFyeEu8n1IHk4bWD46DeYFu9mQlFIRg==} - '@vitest/utils@2.1.2': - resolution: {integrity: sha512-zMO2KdYy6mx56btx9JvAqAZ6EyS3g49krMPPrgOp1yxGZiA93HumGk+bZ5jIZtOg5/VBYl5eBmGRQHqq4FG6uQ==} + '@volar/language-core@2.4.10': + resolution: {integrity: sha512-hG3Z13+nJmGaT+fnQzAkS0hjJRa2FCeqZt6Bd+oGNhUkQ+mTFsDETg5rqUTxyzIh5pSOGY7FHCWUS8G82AzLCA==} - '@volar/language-core@2.4.1': - resolution: {integrity: sha512-9AKhC7Qn2mQYxj7Dz3bVxeOk7gGJladhWixUYKef/o0o7Bm4an+A3XvmcTHVqZ8stE6lBVH++g050tBtJ4TZPQ==} + '@volar/source-map@2.4.10': + resolution: {integrity: sha512-OCV+b5ihV0RF3A7vEvNyHPi4G4kFa6ukPmyVocmqm5QzOd8r5yAtiNvaPEjl8dNvgC/lj4JPryeeHLdXd62rWA==} - '@volar/source-map@2.4.1': - resolution: {integrity: sha512-Xq6ep3OZg9xUqN90jEgB9ztX5SsTz1yiV8wiQbcYNjWkek+Ie3dc8l7AVt3EhDm9mSIR58oWczHkzM2H6HIsmQ==} + '@volar/typescript@2.4.10': + resolution: {integrity: sha512-F8ZtBMhSXyYKuBfGpYwqA5rsONnOwAVvjyE7KPYJ7wgZqo2roASqNWUnianOomJX5u1cxeRooHV59N0PhvEOgw==} - '@volar/typescript@2.4.1': - resolution: {integrity: sha512-UoRzC0PXcwajFQTu8XxKSYNsWNBtVja6Y9gC8eLv7kYm+UEKJCcZ8g7dialsOYA0HKs3Vpg57MeCsawFLC6m9Q==} + '@vue/compiler-core@3.5.12': + resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==} - '@vue/compiler-core@3.4.38': - resolution: {integrity: sha512-8IQOTCWnLFqfHzOGm9+P8OPSEDukgg3Huc92qSG49if/xI2SAwLHQO2qaPQbjCWPBcQoO1WYfXfTACUrWV3c5A==} + '@vue/compiler-dom@3.5.12': + resolution: {integrity: sha512-9G6PbJ03uwxLHKQ3P42cMTi85lDRvGLB2rSGOiQqtXELat6uI4n8cNz9yjfVHRPIu+MsK6TE418Giruvgptckg==} - '@vue/compiler-core@3.5.11': - resolution: {integrity: sha512-PwAdxs7/9Hc3ieBO12tXzmTD+Ln4qhT/56S+8DvrrZ4kLDn4Z/AMUr8tXJD0axiJBS0RKIoNaR0yMuQB9v9Udg==} + '@vue/compiler-sfc@3.5.12': + resolution: {integrity: sha512-2k973OGo2JuAa5+ZlekuQJtitI5CgLMOwgl94BzMCsKZCX/xiqzJYzapl4opFogKHqwJk34vfsaKpfEhd1k5nw==} - '@vue/compiler-dom@3.4.38': - resolution: {integrity: sha512-Osc/c7ABsHXTsETLgykcOwIxFktHfGSUDkb05V61rocEfsFDcjDLH/IHJSNJP+/Sv9KeN2Lx1V6McZzlSb9EhQ==} - - '@vue/compiler-dom@3.5.11': - resolution: {integrity: sha512-pyGf8zdbDDRkBrEzf8p7BQlMKNNF5Fk/Cf/fQ6PiUz9at4OaUfyXW0dGJTo2Vl1f5U9jSLCNf0EZJEogLXoeew==} - - '@vue/compiler-sfc@3.4.38': - resolution: {integrity: sha512-s5QfZ+9PzPh3T5H4hsQDJtI8x7zdJaew/dCGgqZ2630XdzaZ3AD8xGZfBqpT8oaD/p2eedd+pL8tD5vvt5ZYJQ==} - - '@vue/compiler-sfc@3.5.11': - resolution: {integrity: sha512-gsbBtT4N9ANXXepprle+X9YLg2htQk1sqH/qGJ/EApl+dgpUBdTv3yP7YlR535uHZY3n6XaR0/bKo0BgwwDniw==} - - '@vue/compiler-ssr@3.4.38': - resolution: {integrity: sha512-YXznKFQ8dxYpAz9zLuVvfcXhc31FSPFDcqr0kyujbOwNhlmaNvL2QfIy+RZeJgSn5Fk54CWoEUeW+NVBAogGaw==} - - '@vue/compiler-ssr@3.5.11': - resolution: {integrity: sha512-P4+GPjOuC2aFTk1Z4WANvEhyOykcvEd5bIj2KVNGKGfM745LaXGr++5njpdBTzVz5pZifdlR1kpYSJJpIlSePA==} + '@vue/compiler-ssr@3.5.12': + resolution: {integrity: sha512-eLwc7v6bfGBSM7wZOGPmRavSWzNFF6+PdRhE+VFJhNCgHiF8AM7ccoqcv5kBXA2eWUfigD7byekvf/JsOfKvPA==} '@vue/compiler-vue2@2.7.16': resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==} - '@vue/language-core@2.1.6': - resolution: {integrity: sha512-MW569cSky9R/ooKMh6xa2g1D0AtRKbL56k83dzus/bx//RDJk24RHWkMzbAlXjMdDNyxAaagKPRquBIxkxlCkg==} + '@vue/language-core@2.1.10': + resolution: {integrity: sha512-DAI289d0K3AB5TUG3xDp9OuQ71CnrujQwJrQnfuZDwo6eGNf0UoRlPuaVNO+Zrn65PC3j0oB2i7mNmVPggeGeQ==} peerDependencies: typescript: '*' peerDependenciesMeta: typescript: optional: true - '@vue/reactivity@3.4.38': - resolution: {integrity: sha512-4vl4wMMVniLsSYYeldAKzbk72+D3hUnkw9z8lDeJacTxAkXeDAP1uE9xr2+aKIN0ipOL8EG2GPouVTH6yF7Gnw==} - - '@vue/reactivity@3.5.11': - resolution: {integrity: sha512-Nqo5VZEn8MJWlCce8XoyVqHZbd5P2NH+yuAaFzuNSR96I+y1cnuUiq7xfSG+kyvLSiWmaHTKP1r3OZY4mMD50w==} - - '@vue/runtime-core@3.4.38': - resolution: {integrity: sha512-21z3wA99EABtuf+O3IhdxP0iHgkBs1vuoCAsCKLVJPEjpVqvblwBnTj42vzHRlWDCyxu9ptDm7sI2ZMcWrQqlA==} - - '@vue/runtime-core@3.5.11': - resolution: {integrity: sha512-7PsxFGqwfDhfhh0OcDWBG1DaIQIVOLgkwA5q6MtkPiDFjp5gohVnJEahSktwSFLq7R5PtxDKy6WKURVN1UDbzA==} + '@vue/reactivity@3.5.12': + resolution: {integrity: sha512-UzaN3Da7xnJXdz4Okb/BGbAaomRHc3RdoWqTzlvd9+WBR5m3J39J1fGcHes7U3za0ruYn/iYy/a1euhMEHvTAg==} - '@vue/runtime-dom@3.4.38': - resolution: {integrity: sha512-afZzmUreU7vKwKsV17H1NDThEEmdYI+GCAK/KY1U957Ig2NATPVjCROv61R19fjZNzMmiU03n79OMnXyJVN0UA==} + '@vue/runtime-core@3.5.12': + resolution: {integrity: sha512-hrMUYV6tpocr3TL3Ad8DqxOdpDe4zuQY4HPY3X/VRh+L2myQO8MFXPAMarIOSGNu0bFAjh1yBkMPXZBqCk62Uw==} - '@vue/runtime-dom@3.5.11': - resolution: {integrity: sha512-GNghjecT6IrGf0UhuYmpgaOlN7kxzQBhxWEn08c/SQDxv1yy4IXI1bn81JgEpQ4IXjRxWtPyI8x0/7TF5rPfYQ==} + '@vue/runtime-dom@3.5.12': + resolution: {integrity: sha512-q8VFxR9A2MRfBr6/55Q3umyoN7ya836FzRXajPB6/Vvuv0zOPL+qltd9rIMzG/DbRLAIlREmnLsplEF/kotXKA==} - '@vue/server-renderer@3.4.38': - resolution: {integrity: sha512-NggOTr82FbPEkkUvBm4fTGcwUY8UuTsnWC/L2YZBmvaQ4C4Jl/Ao4HHTB+l7WnFCt5M/dN3l0XLuyjzswGYVCA==} + '@vue/server-renderer@3.5.12': + resolution: {integrity: sha512-I3QoeDDeEPZm8yR28JtY+rk880Oqmj43hreIBVTicisFTx/Dl7JpG72g/X7YF8hnQD3IFhkky5i2bPonwrTVPg==} peerDependencies: - vue: 3.4.38 + vue: 3.5.12 - '@vue/server-renderer@3.5.11': - resolution: {integrity: sha512-cVOwYBxR7Wb1B1FoxYvtjJD8X/9E5nlH4VSkJy2uMA1MzYNdzAAB//l8nrmN9py/4aP+3NjWukf9PZ3TeWULaA==} - peerDependencies: - vue: 3.5.11 - - '@vue/shared@3.4.38': - resolution: {integrity: sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==} - - '@vue/shared@3.5.11': - resolution: {integrity: sha512-W8GgysJVnFo81FthhzurdRAWP/byq3q2qIw70e0JWblzVhjgOMiC2GyovXrZTFQJnFVryYaKGP3Tc9vYzYm6PQ==} + '@vue/shared@3.5.12': + resolution: {integrity: sha512-L2RPSAwUFbgZH20etwrXyVyCBu9OxRSi8T/38QsvnkJyvq2LufW2lDCOzm7t/U9C1mkhJGWYfCuFBCmIuNivrg==} abbrev@1.1.1: resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} + ag-charts-types@10.3.1: + resolution: {integrity: sha512-oZvu9vJLk6lmzaYi0TmVVmHFZJpVNFziU0bnllx4wR3muXCmnxz5LouKIZ8CYnNiC7VO5HmHNlFu+0DmEO5zxg==} + + ag-grid-community@32.3.2: + resolution: {integrity: sha512-ZrgS7+F0JKV6+sy7VQdt+9xhOJd6TAnXXEmw20ByG6AZdcIDEKBRHW7TfNwUqisXJjGKoaXnYByuMz7rL9PcPg==} + + ag-grid-vue3@32.3.2: + resolution: {integrity: sha512-oagRJguoovp6NjlmYP497S8DivibKFyjsktybpjeCuliDi39kMZ8m7TKRLpQjhL6yjGMh8hZP7fKqUVFJlGSCA==} + agent-base@6.0.2: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} engines: {node: '>= 6.0.0'} @@ -1436,6 +2891,9 @@ packages: resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==} engines: {node: '>= 14'} + alien-signals@0.2.1: + resolution: {integrity: sha512-FlEQrDJe9r2RI4cDlnK2zYqJezvx1uJaWEuwxsnlFqnPwvJbgitNBRumWrLDv8lA+7cCikpMxfJD2TTHiaTklA==} + ansi-colors@4.1.3: resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} engines: {node: '>=6'} @@ -1448,8 +2906,8 @@ packages: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} - ansi-regex@6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + ansi-regex@6.1.0: + resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} engines: {node: '>=12'} ansi-styles@4.3.0: @@ -1467,10 +2925,6 @@ packages: any-promise@1.3.0: resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} - anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} - aproba@2.0.0: resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} @@ -1490,37 +2944,39 @@ packages: resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} engines: {node: '>=12'} - async@3.2.5: - resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} + async@3.2.6: + resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} - b4a@1.6.6: - resolution: {integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==} + b4a@1.6.7: + resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==} balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - bare-events@2.4.2: - resolution: {integrity: sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==} + bare-events@2.5.0: + resolution: {integrity: sha512-/E8dDe9dsbLyh2qrZ64PEPadOQ0F4gbl1sUJOrmph7xOiIxfY8vwab/4bFLh4Y88/Hk/ujKcrQKc+ps0mv873A==} - bare-fs@2.3.1: - resolution: {integrity: sha512-W/Hfxc/6VehXlsgFtbB5B4xFcsCl+pAh30cYhoFyXErf6oGrwjh8SwiPAdHgpmWonKuYpZgGywN0SXt7dgsADA==} + bare-fs@2.3.5: + resolution: {integrity: sha512-SlE9eTxifPDJrT6YgemQ1WGFleevzwY+XAP1Xqgl56HtcrisC2CHCZ2tq6dBpcH2TnNxwUEUGhweo+lrQtYuiw==} - bare-os@2.4.0: - resolution: {integrity: sha512-v8DTT08AS/G0F9xrhyLtepoo9EJBJ85FRSMbu1pQUlAf6A8T0tEEQGMVObWeqpjhSPXsE0VGlluFBJu2fdoTNg==} + bare-os@2.4.4: + resolution: {integrity: sha512-z3UiI2yi1mK0sXeRdc4O1Kk8aOa/e+FNWZcTiPB/dfTWyLypuE99LibgRaQki914Jq//yAWylcAt+mknKdixRQ==} bare-path@2.1.3: resolution: {integrity: sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==} - bare-stream@2.1.3: - resolution: {integrity: sha512-tiDAH9H/kP+tvNO5sczyn9ZAA7utrSMobyDchsnyyXBuUe2FSQWbxhtuHB8jwpHYYevVo2UJpcmvvjrbHboUUQ==} + bare-stream@2.3.2: + resolution: {integrity: sha512-EFZHSIBkDgSHIwj2l2QZfP4U5OcD4xFAOwhSb/vlr9PIqyGJGvB/nfClJbcnh3EY4jtPE4zsb5ztae96bVF79A==} + + base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} better-path-resolve@1.0.0: resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} engines: {node: '>=4'} - binary-extensions@2.3.0: - resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} - engines: {node: '>=8'} + bl@1.2.3: + resolution: {integrity: sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==} bowser@2.11.0: resolution: {integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==} @@ -1535,6 +2991,24 @@ packages: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} + 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@5.6.0: + resolution: {integrity: sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==} + + buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + bundle-require@5.0.0: resolution: {integrity: sha512-GuziW3fSSmopcx4KRymQEJVbZUfqlCqcq7dvs6TYwKRZiegK/2buMxQTPs6MGlNv50wms1699qYO54R8XfRX4w==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} @@ -1552,8 +3026,8 @@ packages: canonicalize@2.0.0: resolution: {integrity: sha512-ulDEYPv7asdKvqahuAY35c1selLdzDwHqugK92hfkzvlDCwXRRelDkR+Er33md/PtnpqHemgkuDPanZ4fiYZ8w==} - chai@5.1.1: - resolution: {integrity: sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==} + chai@5.1.2: + resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==} engines: {node: '>=12'} chalk@4.1.2: @@ -1567,9 +3041,9 @@ packages: resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} engines: {node: '>= 16'} - chokidar@3.6.0: - resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} - engines: {node: '>= 8.10.0'} + chokidar@4.0.1: + resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==} + engines: {node: '>= 14.16.0'} chownr@2.0.0: resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} @@ -1621,13 +3095,13 @@ packages: colorspace@1.1.4: resolution: {integrity: sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==} + commander@2.20.3: + resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + commander@4.1.1: resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} engines: {node: '>= 6'} - computeds@0.0.1: - resolution: {integrity: sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==} - concat-map@0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} @@ -1638,22 +3112,110 @@ packages: console-control-strings@1.1.0: resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} + core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + cross-spawn@5.1.0: resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} - cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + cross-spawn@7.0.5: + resolution: {integrity: sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug==} engines: {node: '>= 8'} csstype@3.1.3: resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + d3-array@3.2.4: + resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==} + engines: {node: '>=12'} + + d3-axis@3.0.0: + resolution: {integrity: sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==} + engines: {node: '>=12'} + + d3-color@3.1.0: + resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} + engines: {node: '>=12'} + + d3-dispatch@3.0.1: + resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==} + engines: {node: '>=12'} + + d3-drag@3.0.0: + resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==} + engines: {node: '>=12'} + + d3-ease@3.0.1: + resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==} + engines: {node: '>=12'} + + d3-format@3.1.0: + resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==} + engines: {node: '>=12'} + + d3-hierarchy@3.1.2: + resolution: {integrity: sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==} + engines: {node: '>=12'} + + d3-interpolate@3.0.1: + resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} + engines: {node: '>=12'} + + d3-path@3.1.0: + resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==} + engines: {node: '>=12'} + + d3-quadtree@3.0.1: + resolution: {integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==} + engines: {node: '>=12'} + + d3-random@3.0.1: + resolution: {integrity: sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==} + engines: {node: '>=12'} + + d3-scale-chromatic@3.1.0: + resolution: {integrity: sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==} + engines: {node: '>=12'} + + d3-scale@4.0.2: + resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==} + engines: {node: '>=12'} + + d3-selection@3.0.0: + resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==} + engines: {node: '>=12'} + + d3-shape@3.2.0: + resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==} + engines: {node: '>=12'} + + d3-time-format@4.1.0: + resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==} + engines: {node: '>=12'} + + d3-time@3.1.0: + resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==} + engines: {node: '>=12'} + + d3-timer@3.0.1: + resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==} + engines: {node: '>=12'} + + d3-transition@3.0.1: + resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==} + engines: {node: '>=12'} + peerDependencies: + d3-selection: 2 - 3 + + d3-zoom@3.0.0: + resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==} + engines: {node: '>=12'} + de-indent@1.0.2: resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} - debug@4.3.6: - resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==} - engines: {node: '>=6.0'} + debug@2.6.9: + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} peerDependencies: supports-color: '*' peerDependenciesMeta: @@ -1669,6 +3231,26 @@ packages: supports-color: optional: true + 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'} + deep-eql@5.0.2: resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} engines: {node: '>=6'} @@ -1725,13 +3307,13 @@ packages: engines: {node: '>=12'} hasBin: true - esbuild@0.23.0: - resolution: {integrity: sha512-1lvV17H2bMYda/WaFb2jLPeHU3zml2k4/yagNMG8Q/YtfMjCwEUZa2eXXMgZTVSL5q1n4H7sQ0X6CdJDqqeCFA==} + esbuild@0.24.0: + resolution: {integrity: sha512-FuLPevChGDshgSicjisSooU0cemp/sGXR841D5LHMB7mTVOmsEHcAxaH3irL53+8YDIeVNQEySh4DaYU/iuPqQ==} engines: {node: '>=18'} hasBin: true - escalade@3.1.2: - resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} engines: {node: '>=6'} escape-string-regexp@4.0.0: @@ -1749,9 +3331,13 @@ packages: estree-walker@3.0.3: resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} - execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} + events@3.3.0: + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} + engines: {node: '>=0.8.x'} + + expect-type@1.1.0: + resolution: {integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==} + engines: {node: '>=12.0.0'} extendable-error@0.1.7: resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} @@ -1774,9 +3360,32 @@ packages: fastq@1.17.1: resolution: {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 + fecha@4.2.3: resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==} + file-type@3.9.0: + resolution: {integrity: sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==} + engines: {node: '>=0.10.0'} + + 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==} @@ -1791,10 +3400,13 @@ packages: fn.name@1.1.0: resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==} - foreground-child@3.2.1: - resolution: {integrity: sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==} + foreground-child@3.3.0: + resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} engines: {node: '>=14'} + fs-constants@1.0.0: + resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} + fs-extra@7.0.1: resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} engines: {node: '>=6 <7 || >=8'} @@ -1815,6 +3427,9 @@ packages: engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + gauge@3.0.2: resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} engines: {node: '>=10'} @@ -1824,16 +3439,13 @@ packages: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} - get-func-name@2.0.2: - resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} - get-package-type@0.1.0: resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} engines: {node: '>=8.0.0'} - get-stream@6.0.1: - resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} - engines: {node: '>=10'} + get-stream@2.3.1: + resolution: {integrity: sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==} + engines: {node: '>=0.10.0'} glob-parent@5.1.2: resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} @@ -1861,6 +3473,10 @@ packages: has-unicode@2.0.1: resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + he@1.2.0: resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} hasBin: true @@ -1876,16 +3492,15 @@ packages: human-id@1.0.2: resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} - human-signals@2.1.0: - resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} - engines: {node: '>=10.17.0'} - iconv-lite@0.4.24: resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} engines: {node: '>=0.10.0'} - ignore@5.3.1: - resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} + ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} engines: {node: '>= 4'} indent-string@4.0.0: @@ -1899,16 +3514,20 @@ packages: inherits@2.0.4: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + internmap@2.0.3: + resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==} + engines: {node: '>=12'} + is-arrayish@0.3.2: resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} - is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} + is-core-module@2.15.1: + resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==} + engines: {node: '>= 0.4'} - is-docker@3.0.0: - resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + is-docker@2.2.1: + resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} + engines: {node: '>=8'} hasBin: true is-extglob@2.1.1: @@ -1923,15 +3542,17 @@ packages: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} engines: {node: '>=0.10.0'} - is-inside-container@1.0.0: - resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} - engines: {node: '>=14.16'} - hasBin: true + is-natural-number@4.0.1: + resolution: {integrity: sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ==} is-number@7.0.0: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} engines: {node: '>=0.12.0'} + is-stream@1.1.0: + resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} + engines: {node: '>=0.10.0'} + is-stream@2.0.1: resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} engines: {node: '>=8'} @@ -1944,9 +3565,12 @@ packages: resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} engines: {node: '>=0.10.0'} - is-wsl@3.1.0: - resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} - engines: {node: '>=16'} + is-wsl@2.2.0: + resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} + engines: {node: '>=8'} + + isarray@1.0.0: + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} @@ -1963,6 +3587,9 @@ packages: resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} engines: {node: '>=10'} + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + js-yaml@3.14.1: resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} hasBin: true @@ -1997,45 +3624,50 @@ packages: lodash.startcase@4.4.0: resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} - logform@2.6.1: - resolution: {integrity: sha512-CdaO738xRapbKIMVn2m4F6KTj4j7ooJ8POVnebSgKo3KBz5axNXRAL7ZdRjIV6NOr2Uf4vjtRkxrFETOioCqSA==} + lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + logform@2.7.0: + resolution: {integrity: sha512-TFYA4jnP7PVbmlBIfhlSe+WKxs9dklXMTEGcBCIvLhE/Tn3H6Gk1norupVW7m5Cnd4bLcr08AytbyV/xj7f/kQ==} engines: {node: '>= 12.0.0'} long@5.2.3: resolution: {integrity: sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==} - loupe@3.1.1: - resolution: {integrity: sha512-edNu/8D5MKVfGVFRhFf8aAxiTM6Wumfz5XsaatSxlD3w4R1d/WEKUTydCdPGbl9K7QG/Ca3GnDV2sIKIpXRQcw==} + loose-envify@1.4.0: + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + hasBin: true + + loupe@3.1.2: + resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==} lru-cache@10.4.3: resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} - lru-cache@11.0.1: - resolution: {integrity: sha512-CgeuL5uom6j/ZVrg7G/+1IXqRY8JXX4Hghfy5YE0EhoYQWvndP1kufu58cmZLNIDKnRhZrXfdS9urVWx98AipQ==} + lru-cache@11.0.2: + resolution: {integrity: sha512-123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA==} engines: {node: 20 || >=22} lru-cache@4.1.5: resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} - magic-string@0.30.10: - resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==} + magic-string@0.30.12: + resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==} - magic-string@0.30.11: - resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==} + make-dir@1.3.0: + resolution: {integrity: sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==} + engines: {node: '>=4'} make-dir@3.1.0: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} engines: {node: '>=8'} - merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} - merge2@1.4.1: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} engines: {node: '>= 8'} - micromatch@4.0.7: - resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} engines: {node: '>=8.6'} mime-db@1.52.0: @@ -2046,10 +3678,6 @@ packages: resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} engines: {node: '>= 0.6'} - mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} - minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} @@ -2095,8 +3723,8 @@ packages: resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} engines: {node: '>=4'} - ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + ms@2.0.0: + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} ms@2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} @@ -2126,14 +3754,6 @@ packages: engines: {node: '>=6'} hasBin: true - normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} - - npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: '>=8'} - npmlog@5.0.1: resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} deprecated: This package is no longer supported. @@ -2148,10 +3768,6 @@ packages: one-time@1.0.0: resolution: {integrity: sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==} - onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} - os-tmpdir@1.0.2: resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} engines: {node: '>=0.10.0'} @@ -2179,11 +3795,11 @@ packages: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} - package-json-from-dist@1.0.0: - resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==} + package-json-from-dist@1.0.1: + resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} - package-manager-detector@0.2.0: - resolution: {integrity: sha512-E385OSk9qDcXhcM9LNSe4sdhx8a9mAPrZ4sMLW+tmxl5ZuGtPUcdFu+MPP2jbgiWAZ6Pfe5soGFMd+0Db5Vrog==} + package-manager-detector@0.2.2: + resolution: {integrity: sha512-VgXbyrSNsml4eHWIvxxG/nTL4wgybMTXCV2Un/+yEc3aDKKU6nQBZjbeP3Pl3qm9Qg92X/1ng4ffvCeD/zwHgg==} path-browserify@1.0.1: resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} @@ -2200,6 +3816,9 @@ packages: resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} engines: {node: '>=8'} + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + path-scurry@1.11.1: resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} engines: {node: '>=16 || 14 >=14.18'} @@ -2215,17 +3834,40 @@ packages: resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==} engines: {node: '>= 14.16'} - picocolors@1.1.0: - resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==} + pend@1.2.0: + resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} picomatch@2.3.1: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} + picomatch@4.0.2: + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + engines: {node: '>=12'} + + pify@2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} + + pify@3.0.0: + resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} + engines: {node: '>=4'} + pify@4.0.1: resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} engines: {node: '>=6'} + 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'} + pirates@4.0.6: resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} engines: {node: '>= 6'} @@ -2248,12 +3890,8 @@ packages: yaml: optional: true - postcss@8.4.44: - resolution: {integrity: sha512-Aweb9unOEpQ3ezu4Q00DPvvM2ZTUitJdNKeP/+uQgr1IBIqu574IaZoURId7BKtWMREwzKa9OgzPzezWGPWFQw==} - engines: {node: ^10 || ^12 || >=14} - - postcss@8.4.47: - resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==} + postcss@8.4.48: + resolution: {integrity: sha512-GCRK8F6+Dl7xYniR5a4FYbpBzU8XnZVeowqsQFYdcXuSbChgiks7qybSkbvnaeqv0G0B+dd9/jJgH8kkLDQeEA==} engines: {node: ^10 || ^12 || >=14} prettier@2.8.8: @@ -2261,15 +3899,18 @@ packages: engines: {node: '>=10.13.0'} hasBin: true - protobufjs@7.3.2: - resolution: {integrity: sha512-RXyHaACeqXeqAKGLDl68rQKbmObRsTIn4TYVUUug1KfS47YWCo5MacGITEryugIgZqORCvJWEk4l449POg5Txg==} + process-nextick-args@2.0.1: + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + + protobufjs@7.4.0: + resolution: {integrity: sha512-mRUWCc3KUU4w1jU8sGxICXH/gNS94DvI1gxqDvBzhj1JpcsimQkYiOJfwsPUykUI5ZaspFbSgmBLER8IrQ3tqw==} engines: {node: '>=12.0.0'} pseudomap@1.0.2: resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} - pump@3.0.0: - resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + pump@3.0.2: + resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==} punycode@2.3.1: resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} @@ -2288,17 +3929,29 @@ packages: resolution: {integrity: sha512-K7Yt78aRPLjPcqv3fIuLW1jW3pvwO21B9pmFOolsjM/57ZhdVXBr51GqJpalgBlkPu9foAvhEAuuQPnvIGvLvQ==} engines: {node: '>=16.0.0'} + react-dom@18.3.1: + resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} + peerDependencies: + react: ^18.3.1 + + react@18.3.1: + resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} + engines: {node: '>=0.10.0'} + read-yaml-file@1.1.0: resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} engines: {node: '>=6'} + readable-stream@2.3.8: + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + readable-stream@3.6.2: resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} engines: {node: '>= 6'} - readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} + readdirp@4.0.2: + resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==} + engines: {node: '>= 14.16.0'} regenerator-runtime@0.14.1: resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} @@ -2311,6 +3964,10 @@ packages: resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} engines: {node: '>=8'} + resolve@1.22.8: + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} + hasBin: true + reusify@1.0.4: resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} engines: {iojs: '>=1.0.0', node: '>=0.10.0'} @@ -2320,34 +3977,38 @@ packages: deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true - rimraf@5.0.9: - resolution: {integrity: sha512-3i7b8OcswU6CpU8Ej89quJD4O98id7TtVM5U4Mybh84zQXdrFmDLouWBEEaD/QfO3gDDfH+AGFCGsR7kngzQnA==} - engines: {node: 14 >=14.20 || 16 >=16.20 || >=18} - hasBin: true - - rollup@4.19.1: - resolution: {integrity: sha512-K5vziVlg7hTpYfFBI+91zHBEMo6jafYXpkMlqZjg7/zhIG9iHqazBf4xz9AVdjS9BruRn280ROqLI7G3OFRIlw==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} + rimraf@5.0.10: + resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==} hasBin: true - rollup@4.21.0: - resolution: {integrity: sha512-vo+S/lfA2lMS7rZ2Qoubi6I5hwZwzXeUIctILZLbHI+laNtvhhOIon2S1JksA5UEDQ7l3vberd0fxK44lTYjbQ==} + rollup@4.25.0: + resolution: {integrity: sha512-uVbClXmR6wvx5R1M3Od4utyLUxrmOcEm3pAtMphn73Apq19PDtHpgZoEvqH2YnnaNUuvKmg2DgRd2Sqv+odyqg==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true run-parallel@1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + safe-buffer@5.1.2: + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + safe-buffer@5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - safe-stable-stringify@2.4.3: - resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==} + safe-stable-stringify@2.5.0: + resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==} engines: {node: '>=10'} safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + scheduler@0.23.2: + resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + + seek-bzip@1.0.6: + resolution: {integrity: sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==} + hasBin: true + semver@6.3.1: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true @@ -2393,10 +4054,6 @@ packages: resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} engines: {node: '>=8'} - source-map-js@1.2.0: - resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} - engines: {node: '>=0.10.0'} - source-map-js@1.2.1: resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} engines: {node: '>=0.10.0'} @@ -2417,11 +4074,14 @@ packages: stackback@0.0.2: resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} - std-env@3.7.0: - resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==} + std-env@3.8.0: + resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==} + + stream-browserify@3.0.0: + resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==} - streamx@2.18.0: - resolution: {integrity: sha512-LLUC1TWdjVdn1weXGcSxyTR3T4+acB6tVGXT95y0nGbca4t4o/ng1wKAGTljm9VicuCVLvRlqFYXYy5GwgM7sQ==} + streamx@2.20.1: + resolution: {integrity: sha512-uTa0mU6WUC65iUvzKH4X9hEdvSW7rbPxPtwfWiLMSj3qTdQbAiUboZTxauKfpFuGIGa1C2BYijZ7wgdUXICJhA==} string-width@4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} @@ -2431,6 +4091,9 @@ packages: resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} engines: {node: '>=12'} + string_decoder@1.1.1: + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + string_decoder@1.3.0: resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} @@ -2446,9 +4109,8 @@ packages: resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} engines: {node: '>=4'} - strip-final-newline@2.0.0: - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} - engines: {node: '>=6'} + strip-dirs@2.1.0: + resolution: {integrity: sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==} strnum@1.0.5: resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} @@ -2466,9 +4128,17 @@ packages: resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} engines: {node: '>=10'} + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + tar-fs@3.0.6: resolution: {integrity: sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==} + tar-stream@1.6.2: + resolution: {integrity: sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==} + engines: {node: '>= 0.8.0'} + tar-stream@3.1.7: resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==} @@ -2484,8 +4154,8 @@ packages: resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} engines: {node: '>=8'} - text-decoder@1.1.1: - resolution: {integrity: sha512-8zll7REEv4GDD3x4/0pW+ppIxSNs7H1J10IKFZsuOMscumCdM2a+toDGLPA3T+1+fLBql4zbt5z83GEQGGV5VA==} + text-decoder@1.2.1: + resolution: {integrity: sha512-x9v3H/lTKIJKQQe7RPQkLfKAnc9lUTkWDypIQgTzPJAq+5/GCDHonmshfvlsNSj58yyshbIJJDLmU15qNERrXQ==} text-hex@1.0.0: resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==} @@ -2497,31 +4167,37 @@ packages: thenify@3.3.1: resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + tinybench@2.9.0: resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} - tinyexec@0.3.0: - resolution: {integrity: sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==} + tinyexec@0.3.1: + resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==} + + tinyglobby@0.2.10: + resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==} + engines: {node: '>=12.0.0'} - tinypool@1.0.0: - resolution: {integrity: sha512-KIKExllK7jp3uvrNtvRBYBWBOAXSX8ZvoaD8T+7KB/QHIuoJW3Pmr60zucywjAlMb5TeXUkcs/MWeWLu0qvuAQ==} + tinypool@1.0.1: + resolution: {integrity: sha512-URZYihUbRPcGv95En+sz6MfghfIc2OJ1sv/RmhWZLouPY0/8Vo80viwPvg3dlaS9fuq7fQMEfgRRK7BBZThBEA==} engines: {node: ^18.0.0 || >=20.0.0} tinyrainbow@1.2.0: resolution: {integrity: sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==} engines: {node: '>=14.0.0'} - tinyspy@3.0.0: - resolution: {integrity: sha512-q5nmENpTHgiPVd1cJDDc9cVoYN5x4vCvwT3FMilvKPKneCBZAxn2YWQjDF0UMcE9k0Cay1gBiDfTMU0g+mPMQA==} + tinyspy@3.0.2: + resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==} engines: {node: '>=14.0.0'} tmp@0.0.33: resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} engines: {node: '>=0.6.0'} - to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} + to-buffer@1.1.1: + resolution: {integrity: sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==} to-regex-range@5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} @@ -2544,11 +4220,11 @@ packages: ts-interface-checker@0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} - tslib@2.6.3: - resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==} + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} - tsup@8.1.2: - resolution: {integrity: sha512-Gzw/PXSX/z0aYMNmkcI54bKKFVFJQbLne+EqTJZeQ3lNT3QpumjtMU4rl+ZwTTp8oRF3ahMbEAxT2sZPJLFSrg==} + tsup@8.3.5: + resolution: {integrity: sha512-Tunf6r6m6tnZsG9GYWndg0z8dEV7fD733VBFzFJ5Vcm1FtlXB8xBD/rtrBi2a3YKEV7hHtxiZtW5EAVADoe1pA==} engines: {node: '>=18'} hasBin: true peerDependencies: @@ -2566,6 +4242,40 @@ packages: typescript: optional: true + turbo-darwin-64@2.2.3: + resolution: {integrity: sha512-Rcm10CuMKQGcdIBS3R/9PMeuYnv6beYIHqfZFeKWVYEWH69sauj4INs83zKMTUiZJ3/hWGZ4jet9AOwhsssLyg==} + cpu: [x64] + os: [darwin] + + turbo-darwin-arm64@2.2.3: + resolution: {integrity: sha512-+EIMHkuLFqUdJYsA3roj66t9+9IciCajgj+DVek+QezEdOJKcRxlvDOS2BUaeN8kEzVSsNiAGnoysFWYw4K0HA==} + cpu: [arm64] + os: [darwin] + + turbo-linux-64@2.2.3: + resolution: {integrity: sha512-UBhJCYnqtaeOBQLmLo8BAisWbc9v9daL9G8upLR+XGj6vuN/Nz6qUAhverN4Pyej1g4Nt1BhROnj6GLOPYyqxQ==} + cpu: [x64] + os: [linux] + + turbo-linux-arm64@2.2.3: + resolution: {integrity: sha512-hJYT9dN06XCQ3jBka/EWvvAETnHRs3xuO/rb5bESmDfG+d9yQjeTMlhRXKrr4eyIMt6cLDt1LBfyi+6CQ+VAwQ==} + cpu: [arm64] + os: [linux] + + turbo-windows-64@2.2.3: + resolution: {integrity: sha512-NPrjacrZypMBF31b4HE4ROg4P3nhMBPHKS5WTpMwf7wydZ8uvdEHpESVNMOtqhlp857zbnKYgP+yJF30H3N2dQ==} + cpu: [x64] + os: [win32] + + turbo-windows-arm64@2.2.3: + resolution: {integrity: sha512-fnNrYBCqn6zgKPKLHu4sOkihBI/+0oYFr075duRxqUZ+1aLWTAGfHZLgjVeLh3zR37CVzuerGIPWAEkNhkWEIw==} + cpu: [arm64] + os: [win32] + + turbo@2.2.3: + resolution: {integrity: sha512-5lDvSqIxCYJ/BAd6rQGK/AzFRhBkbu4JHVMLmGh/hCb7U3CqSnr5Tjwfy9vc+/5wG2DJ6wttgAaA7MoCgvBKZQ==} + hasBin: true + type-fest@0.21.3: resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} engines: {node: '>=10'} @@ -2575,19 +4285,19 @@ packages: engines: {node: '>=4.2.0'} hasBin: true - typescript@5.5.4: - resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==} + typescript@5.6.3: + resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==} engines: {node: '>=14.17'} hasBin: true - undici-types@6.11.1: - resolution: {integrity: sha512-mIDEX2ek50x0OlRgxryxsenE5XaQD4on5U2inY7RApK3SOJpofyw7uW2AyfMKkhAxXIceo2DeWGVGwyvng1GNQ==} + unbzip2-stream@1.4.3: + resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==} undici-types@6.19.8: resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} - undici@6.19.8: - resolution: {integrity: sha512-U8uCCl2x9TK3WANvmBavymRzxbfFYG+tAu+fgx3zxQy3qdagQqBLwJVrdyO1TBfUXvfKveMKJZhpvUYoOjM+4g==} + undici@6.20.1: + resolution: {integrity: sha512-AjQF1QsmqfJys+LXfGTNum+qw4S88CojRInG/6t31W/1fk6G59s92bnAvGz5Cmur+kQv2SURXEvvudLmbrE8QA==} engines: {node: '>=18.17'} universalify@0.1.2: @@ -2605,18 +4315,13 @@ packages: resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} hasBin: true - vite-node@2.1.1: - resolution: {integrity: sha512-N/mGckI1suG/5wQI35XeR9rsMsPqKXzq1CdUndzVstBj/HvyxxGctwnK6WX43NGt5L3Z5tcRf83g4TITKJhPrA==} + vite-node@2.1.4: + resolution: {integrity: sha512-kqa9v+oi4HwkG6g8ufRnb5AeplcRw8jUF6/7/Qz1qRQOXHImG8YnLbB+LLszENwFnoBl9xIf9nVdCFzNd7GQEg==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true - vite-node@2.1.2: - resolution: {integrity: sha512-HPcGNN5g/7I2OtPjLqgOtCRu/qhVvBxTUD3qzitmL0SrG1cWFzxzhMDWussxSbrRYWqnKf8P2jiNhPMSN+ymsQ==} - engines: {node: ^18.0.0 || >=20.0.0} - hasBin: true - - vite@5.4.3: - resolution: {integrity: sha512-IH+nl64eq9lJjFqU+/yrRnrHPVTlgy42/+IzbOdaFDVlyLgI/wDlf+FCobXLX1cT0X5+7LMyH1mIy2xJdLfo8Q==} + vite@5.4.11: + resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -2646,40 +4351,15 @@ packages: terser: optional: true - vitest@2.1.1: - resolution: {integrity: sha512-97We7/VC0e9X5zBVkvt7SGQMGrRtn3KtySFQG5fpaMlS+l62eeXRQO633AYhSTC3z7IMebnPPNjGXVGNRFlxBA==} - 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.1.1 - '@vitest/ui': 2.1.1 - happy-dom: '*' - jsdom: '*' - peerDependenciesMeta: - '@edge-runtime/vm': - optional: true - '@types/node': - optional: true - '@vitest/browser': - optional: true - '@vitest/ui': - optional: true - happy-dom: - optional: true - jsdom: - optional: true - - vitest@2.1.2: - resolution: {integrity: sha512-veNjLizOMkRrJ6xxb+pvxN6/QAWg95mzcRjtmkepXdN87FNfxAss9RKe2far/G9cQpipfgP2taqg0KiWsquj8A==} + vitest@2.1.4: + resolution: {integrity: sha512-eDjxbVAJw1UJJCHr5xr/xM86Zx+YxIEXGAR+bmnEID7z9qWfoxpHw0zdobz+TQAFOLT+nEXz3+gx6nUJ7RgmlQ==} 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.1.2 - '@vitest/ui': 2.1.2 + '@vitest/browser': 2.1.4 + '@vitest/ui': 2.1.4 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -2699,22 +4379,14 @@ packages: vscode-uri@3.0.8: resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==} - vue-tsc@2.1.6: - resolution: {integrity: sha512-f98dyZp5FOukcYmbFpuSCJ4Z0vHSOSmxGttZJCsFeX0M4w/Rsq0s4uKXjcSRsZqsRgQa6z7SfuO+y0HVICE57Q==} + vue-tsc@2.1.10: + resolution: {integrity: sha512-RBNSfaaRHcN5uqVqJSZh++Gy/YUzryuv9u1aFWhsammDJXNtUiJMNoJ747lZcQ68wUQFx6E73y4FY3D8E7FGMA==} hasBin: true peerDependencies: typescript: '>=5.0.0' - vue@3.4.38: - resolution: {integrity: sha512-f0ZgN+mZ5KFgVv9wz0f4OgVKukoXtS3nwET4c2vLBGQR50aI8G0cqbFtLlX9Yiyg3LFGBitruPHt2PxwTduJEw==} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - - vue@3.5.11: - resolution: {integrity: sha512-/8Wurrd9J3lb72FTQS7gRMNQD4nztTtKPmuDuPuhqXmmpD6+skVjAeahNpVzsuky6Sy9gy7wn8UadqPtt9SQIg==} + vue@3.5.12: + resolution: {integrity: sha512-CLVZtXtn2ItBIi/zHZ0Sg1Xkb7+PU32bJJ8Bmy7ts3jxXTcbfsEfBivFYYWz1Hur+lalqGAh65Coin0r+HRUfg==} peerDependencies: typescript: '*' peerDependenciesMeta: @@ -2754,12 +4426,12 @@ packages: resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} engines: {node: '>=8'} - winston-transport@4.7.1: - resolution: {integrity: sha512-wQCXXVgfv/wUPOfb2x0ruxzwkcZfxcktz6JIMUaPLmcNhO4bZTwA/WtDWK74xV3F2dKu8YadrFv0qhwYjVEwhA==} + winston-transport@4.9.0: + resolution: {integrity: sha512-8drMJ4rkgaPo1Me4zD/3WLfI/zPdA9o2IipKODunnGDcuqbHwjsbB79ylv04LCGGzU0xQ6vTznOMpQGaLhhm6A==} engines: {node: '>= 12.0.0'} - winston@3.14.2: - resolution: {integrity: sha512-CO8cdpBB2yqzEf8v895L+GNKYJiEq8eKlHU38af3snQBQ+sdAIUepjMSguOIJC7ICbzm0ZI+Af2If4vIJrtmOg==} + winston@3.17.0: + resolution: {integrity: sha512-DLiFIXYC5fMPxaRg832S6F5mJYvePtmO5G9v9IgUFPhXm9/GkXarH/TUrBAVzhTCzAj9anE/+GjrgXp/54nOgw==} engines: {node: '>= 12.0.0'} wordwrap@1.0.0: @@ -2776,6 +4448,10 @@ packages: wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + xtend@4.0.2: + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} + y18n@5.0.8: resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} engines: {node: '>=10'} @@ -2790,8 +4466,8 @@ packages: resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==} engines: {node: '>=18'} - yaml@2.5.1: - resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==} + yaml@2.6.0: + resolution: {integrity: sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==} engines: {node: '>= 14'} hasBin: true @@ -2803,541 +4479,715 @@ packages: resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} engines: {node: '>=12'} + yauzl@2.10.0: + resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} + zod@3.23.8: resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} snapshots: + '@ag-grid-community/client-side-row-model@32.3.2': + dependencies: + '@ag-grid-community/core': 32.3.2 + tslib: 2.8.1 + + '@ag-grid-community/core@32.3.2': + dependencies: + ag-charts-types: 10.3.1 + tslib: 2.8.1 + + '@ag-grid-community/csv-export@32.3.2': + dependencies: + '@ag-grid-community/core': 32.3.2 + tslib: 2.8.1 + + '@ag-grid-community/infinite-row-model@32.3.2': + dependencies: + '@ag-grid-community/core': 32.3.2 + tslib: 2.8.1 + + '@ag-grid-community/styles@32.3.2': {} + + '@ag-grid-community/theming@32.3.2': + dependencies: + '@ag-grid-community/core': 32.3.2 + tslib: 2.8.1 + + '@ag-grid-community/vue3@32.3.2(typescript@5.6.3)': + dependencies: + '@ag-grid-community/core': 32.3.2 + vue: 3.5.12(typescript@5.6.3) + transitivePeerDependencies: + - typescript + + '@ag-grid-enterprise/clipboard@32.3.2': + dependencies: + '@ag-grid-community/core': 32.3.2 + '@ag-grid-community/csv-export': 32.3.2 + '@ag-grid-enterprise/core': 32.3.2 + + '@ag-grid-enterprise/column-tool-panel@32.3.2': + dependencies: + '@ag-grid-community/core': 32.3.2 + '@ag-grid-enterprise/core': 32.3.2 + '@ag-grid-enterprise/row-grouping': 32.3.2 + '@ag-grid-enterprise/side-bar': 32.3.2 + + '@ag-grid-enterprise/core@32.3.2': + dependencies: + '@ag-grid-community/core': 32.3.2 + + '@ag-grid-enterprise/excel-export@32.3.2': + dependencies: + '@ag-grid-community/core': 32.3.2 + '@ag-grid-community/csv-export': 32.3.2 + '@ag-grid-enterprise/core': 32.3.2 + + '@ag-grid-enterprise/menu@32.3.2': + dependencies: + '@ag-grid-community/core': 32.3.2 + '@ag-grid-enterprise/column-tool-panel': 32.3.2 + '@ag-grid-enterprise/core': 32.3.2 + + '@ag-grid-enterprise/range-selection@32.3.2': + dependencies: + '@ag-grid-community/core': 32.3.2 + '@ag-grid-enterprise/core': 32.3.2 + + '@ag-grid-enterprise/rich-select@32.3.2': + dependencies: + '@ag-grid-community/core': 32.3.2 + '@ag-grid-enterprise/core': 32.3.2 + + '@ag-grid-enterprise/row-grouping@32.3.2': + dependencies: + '@ag-grid-community/core': 32.3.2 + '@ag-grid-enterprise/core': 32.3.2 + + '@ag-grid-enterprise/server-side-row-model@32.3.2': + dependencies: + '@ag-grid-community/core': 32.3.2 + '@ag-grid-enterprise/core': 32.3.2 + + '@ag-grid-enterprise/side-bar@32.3.2': + dependencies: + '@ag-grid-community/core': 32.3.2 + '@ag-grid-enterprise/core': 32.3.2 + '@aws-crypto/crc32@5.2.0': dependencies: '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.664.0 - tslib: 2.6.3 + '@aws-sdk/types': 3.686.0 + tslib: 2.8.1 '@aws-crypto/crc32c@5.2.0': dependencies: '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.664.0 - tslib: 2.6.3 + '@aws-sdk/types': 3.686.0 + tslib: 2.8.1 '@aws-crypto/sha1-browser@5.2.0': dependencies: '@aws-crypto/supports-web-crypto': 5.2.0 '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.664.0 - '@aws-sdk/util-locate-window': 3.568.0 + '@aws-sdk/types': 3.686.0 + '@aws-sdk/util-locate-window': 3.679.0 '@smithy/util-utf8': 2.3.0 - tslib: 2.6.3 + tslib: 2.8.1 '@aws-crypto/sha256-browser@5.2.0': dependencies: '@aws-crypto/sha256-js': 5.2.0 '@aws-crypto/supports-web-crypto': 5.2.0 '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.664.0 - '@aws-sdk/util-locate-window': 3.568.0 + '@aws-sdk/types': 3.686.0 + '@aws-sdk/util-locate-window': 3.679.0 '@smithy/util-utf8': 2.3.0 - tslib: 2.6.3 + tslib: 2.8.1 '@aws-crypto/sha256-js@5.2.0': dependencies: '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.664.0 - tslib: 2.6.3 + '@aws-sdk/types': 3.686.0 + tslib: 2.8.1 '@aws-crypto/supports-web-crypto@5.2.0': dependencies: - tslib: 2.6.3 + tslib: 2.8.1 '@aws-crypto/util@5.2.0': dependencies: - '@aws-sdk/types': 3.664.0 + '@aws-sdk/types': 3.686.0 '@smithy/util-utf8': 2.3.0 - tslib: 2.6.3 + tslib: 2.8.1 + + '@aws-sdk/client-s3@3.688.0': + dependencies: + '@aws-crypto/sha1-browser': 5.2.0 + '@aws-crypto/sha256-browser': 5.2.0 + '@aws-crypto/sha256-js': 5.2.0 + '@aws-sdk/client-sso-oidc': 3.687.0(@aws-sdk/client-sts@3.687.0) + '@aws-sdk/client-sts': 3.687.0 + '@aws-sdk/core': 3.686.0 + '@aws-sdk/credential-provider-node': 3.687.0(@aws-sdk/client-sso-oidc@3.687.0(@aws-sdk/client-sts@3.687.0))(@aws-sdk/client-sts@3.687.0) + '@aws-sdk/middleware-bucket-endpoint': 3.686.0 + '@aws-sdk/middleware-expect-continue': 3.686.0 + '@aws-sdk/middleware-flexible-checksums': 3.688.0 + '@aws-sdk/middleware-host-header': 3.686.0 + '@aws-sdk/middleware-location-constraint': 3.686.0 + '@aws-sdk/middleware-logger': 3.686.0 + '@aws-sdk/middleware-recursion-detection': 3.686.0 + '@aws-sdk/middleware-sdk-s3': 3.687.0 + '@aws-sdk/middleware-ssec': 3.686.0 + '@aws-sdk/middleware-user-agent': 3.687.0 + '@aws-sdk/region-config-resolver': 3.686.0 + '@aws-sdk/signature-v4-multi-region': 3.687.0 + '@aws-sdk/types': 3.686.0 + '@aws-sdk/util-endpoints': 3.686.0 + '@aws-sdk/util-user-agent-browser': 3.686.0 + '@aws-sdk/util-user-agent-node': 3.687.0 + '@aws-sdk/xml-builder': 3.686.0 + '@smithy/config-resolver': 3.0.10 + '@smithy/core': 2.5.1 + '@smithy/eventstream-serde-browser': 3.0.11 + '@smithy/eventstream-serde-config-resolver': 3.0.8 + '@smithy/eventstream-serde-node': 3.0.10 + '@smithy/fetch-http-handler': 4.0.0 + '@smithy/hash-blob-browser': 3.1.7 + '@smithy/hash-node': 3.0.8 + '@smithy/hash-stream-node': 3.1.7 + '@smithy/invalid-dependency': 3.0.8 + '@smithy/md5-js': 3.0.8 + '@smithy/middleware-content-length': 3.0.10 + '@smithy/middleware-endpoint': 3.2.1 + '@smithy/middleware-retry': 3.0.25 + '@smithy/middleware-serde': 3.0.8 + '@smithy/middleware-stack': 3.0.8 + '@smithy/node-config-provider': 3.1.9 + '@smithy/node-http-handler': 3.2.5 + '@smithy/protocol-http': 4.1.5 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/url-parser': 3.0.8 + '@smithy/util-base64': 3.0.0 + '@smithy/util-body-length-browser': 3.0.0 + '@smithy/util-body-length-node': 3.0.0 + '@smithy/util-defaults-mode-browser': 3.0.25 + '@smithy/util-defaults-mode-node': 3.0.25 + '@smithy/util-endpoints': 2.1.4 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-retry': 3.0.8 + '@smithy/util-stream': 3.2.1 + '@smithy/util-utf8': 3.0.0 + '@smithy/util-waiter': 3.1.7 + tslib: 2.8.1 + transitivePeerDependencies: + - aws-crt - '@aws-sdk/client-s3@3.666.0': + '@aws-sdk/client-s3@3.689.0': dependencies: '@aws-crypto/sha1-browser': 5.2.0 '@aws-crypto/sha256-browser': 5.2.0 '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/client-sso-oidc': 3.666.0(@aws-sdk/client-sts@3.666.0) - '@aws-sdk/client-sts': 3.666.0 - '@aws-sdk/core': 3.666.0 - '@aws-sdk/credential-provider-node': 3.666.0(@aws-sdk/client-sso-oidc@3.666.0(@aws-sdk/client-sts@3.666.0))(@aws-sdk/client-sts@3.666.0) - '@aws-sdk/middleware-bucket-endpoint': 3.664.0 - '@aws-sdk/middleware-expect-continue': 3.664.0 - '@aws-sdk/middleware-flexible-checksums': 3.666.0 - '@aws-sdk/middleware-host-header': 3.664.0 - '@aws-sdk/middleware-location-constraint': 3.664.0 - '@aws-sdk/middleware-logger': 3.664.0 - '@aws-sdk/middleware-recursion-detection': 3.664.0 - '@aws-sdk/middleware-sdk-s3': 3.666.0 - '@aws-sdk/middleware-ssec': 3.664.0 - '@aws-sdk/middleware-user-agent': 3.666.0 - '@aws-sdk/region-config-resolver': 3.664.0 - '@aws-sdk/signature-v4-multi-region': 3.666.0 - '@aws-sdk/types': 3.664.0 - '@aws-sdk/util-endpoints': 3.664.0 - '@aws-sdk/util-user-agent-browser': 3.664.0 - '@aws-sdk/util-user-agent-node': 3.666.0 - '@aws-sdk/xml-builder': 3.662.0 - '@smithy/config-resolver': 3.0.9 - '@smithy/core': 2.4.8 - '@smithy/eventstream-serde-browser': 3.0.10 - '@smithy/eventstream-serde-config-resolver': 3.0.7 - '@smithy/eventstream-serde-node': 3.0.9 - '@smithy/fetch-http-handler': 3.2.9 - '@smithy/hash-blob-browser': 3.1.6 - '@smithy/hash-node': 3.0.7 - '@smithy/hash-stream-node': 3.1.6 - '@smithy/invalid-dependency': 3.0.7 - '@smithy/md5-js': 3.0.7 - '@smithy/middleware-content-length': 3.0.9 - '@smithy/middleware-endpoint': 3.1.4 - '@smithy/middleware-retry': 3.0.23 - '@smithy/middleware-serde': 3.0.7 - '@smithy/middleware-stack': 3.0.7 - '@smithy/node-config-provider': 3.1.8 - '@smithy/node-http-handler': 3.2.4 - '@smithy/protocol-http': 4.1.4 - '@smithy/smithy-client': 3.4.0 - '@smithy/types': 3.5.0 - '@smithy/url-parser': 3.0.7 + '@aws-sdk/client-sso-oidc': 3.687.0(@aws-sdk/client-sts@3.687.0) + '@aws-sdk/client-sts': 3.687.0 + '@aws-sdk/core': 3.686.0 + '@aws-sdk/credential-provider-node': 3.687.0(@aws-sdk/client-sso-oidc@3.687.0(@aws-sdk/client-sts@3.687.0))(@aws-sdk/client-sts@3.687.0) + '@aws-sdk/middleware-bucket-endpoint': 3.686.0 + '@aws-sdk/middleware-expect-continue': 3.686.0 + '@aws-sdk/middleware-flexible-checksums': 3.689.0 + '@aws-sdk/middleware-host-header': 3.686.0 + '@aws-sdk/middleware-location-constraint': 3.686.0 + '@aws-sdk/middleware-logger': 3.686.0 + '@aws-sdk/middleware-recursion-detection': 3.686.0 + '@aws-sdk/middleware-sdk-s3': 3.687.0 + '@aws-sdk/middleware-ssec': 3.686.0 + '@aws-sdk/middleware-user-agent': 3.687.0 + '@aws-sdk/region-config-resolver': 3.686.0 + '@aws-sdk/signature-v4-multi-region': 3.687.0 + '@aws-sdk/types': 3.686.0 + '@aws-sdk/util-endpoints': 3.686.0 + '@aws-sdk/util-user-agent-browser': 3.686.0 + '@aws-sdk/util-user-agent-node': 3.687.0 + '@aws-sdk/xml-builder': 3.686.0 + '@smithy/config-resolver': 3.0.10 + '@smithy/core': 2.5.1 + '@smithy/eventstream-serde-browser': 3.0.11 + '@smithy/eventstream-serde-config-resolver': 3.0.8 + '@smithy/eventstream-serde-node': 3.0.10 + '@smithy/fetch-http-handler': 4.0.0 + '@smithy/hash-blob-browser': 3.1.7 + '@smithy/hash-node': 3.0.8 + '@smithy/hash-stream-node': 3.1.7 + '@smithy/invalid-dependency': 3.0.8 + '@smithy/md5-js': 3.0.8 + '@smithy/middleware-content-length': 3.0.10 + '@smithy/middleware-endpoint': 3.2.1 + '@smithy/middleware-retry': 3.0.25 + '@smithy/middleware-serde': 3.0.8 + '@smithy/middleware-stack': 3.0.8 + '@smithy/node-config-provider': 3.1.9 + '@smithy/node-http-handler': 3.2.5 + '@smithy/protocol-http': 4.1.5 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/url-parser': 3.0.8 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.23 - '@smithy/util-defaults-mode-node': 3.0.23 - '@smithy/util-endpoints': 2.1.3 - '@smithy/util-middleware': 3.0.7 - '@smithy/util-retry': 3.0.7 - '@smithy/util-stream': 3.1.9 + '@smithy/util-defaults-mode-browser': 3.0.25 + '@smithy/util-defaults-mode-node': 3.0.25 + '@smithy/util-endpoints': 2.1.4 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-retry': 3.0.8 + '@smithy/util-stream': 3.2.1 '@smithy/util-utf8': 3.0.0 - '@smithy/util-waiter': 3.1.6 - tslib: 2.6.3 + '@smithy/util-waiter': 3.1.7 + tslib: 2.8.1 transitivePeerDependencies: - aws-crt - '@aws-sdk/client-sso-oidc@3.666.0(@aws-sdk/client-sts@3.666.0)': + '@aws-sdk/client-sso-oidc@3.687.0(@aws-sdk/client-sts@3.687.0)': dependencies: '@aws-crypto/sha256-browser': 5.2.0 '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/client-sts': 3.666.0 - '@aws-sdk/core': 3.666.0 - '@aws-sdk/credential-provider-node': 3.666.0(@aws-sdk/client-sso-oidc@3.666.0(@aws-sdk/client-sts@3.666.0))(@aws-sdk/client-sts@3.666.0) - '@aws-sdk/middleware-host-header': 3.664.0 - '@aws-sdk/middleware-logger': 3.664.0 - '@aws-sdk/middleware-recursion-detection': 3.664.0 - '@aws-sdk/middleware-user-agent': 3.666.0 - '@aws-sdk/region-config-resolver': 3.664.0 - '@aws-sdk/types': 3.664.0 - '@aws-sdk/util-endpoints': 3.664.0 - '@aws-sdk/util-user-agent-browser': 3.664.0 - '@aws-sdk/util-user-agent-node': 3.666.0 - '@smithy/config-resolver': 3.0.9 - '@smithy/core': 2.4.8 - '@smithy/fetch-http-handler': 3.2.9 - '@smithy/hash-node': 3.0.7 - '@smithy/invalid-dependency': 3.0.7 - '@smithy/middleware-content-length': 3.0.9 - '@smithy/middleware-endpoint': 3.1.4 - '@smithy/middleware-retry': 3.0.23 - '@smithy/middleware-serde': 3.0.7 - '@smithy/middleware-stack': 3.0.7 - '@smithy/node-config-provider': 3.1.8 - '@smithy/node-http-handler': 3.2.4 - '@smithy/protocol-http': 4.1.4 - '@smithy/smithy-client': 3.4.0 - '@smithy/types': 3.5.0 - '@smithy/url-parser': 3.0.7 + '@aws-sdk/client-sts': 3.687.0 + '@aws-sdk/core': 3.686.0 + '@aws-sdk/credential-provider-node': 3.687.0(@aws-sdk/client-sso-oidc@3.687.0(@aws-sdk/client-sts@3.687.0))(@aws-sdk/client-sts@3.687.0) + '@aws-sdk/middleware-host-header': 3.686.0 + '@aws-sdk/middleware-logger': 3.686.0 + '@aws-sdk/middleware-recursion-detection': 3.686.0 + '@aws-sdk/middleware-user-agent': 3.687.0 + '@aws-sdk/region-config-resolver': 3.686.0 + '@aws-sdk/types': 3.686.0 + '@aws-sdk/util-endpoints': 3.686.0 + '@aws-sdk/util-user-agent-browser': 3.686.0 + '@aws-sdk/util-user-agent-node': 3.687.0 + '@smithy/config-resolver': 3.0.10 + '@smithy/core': 2.5.1 + '@smithy/fetch-http-handler': 4.0.0 + '@smithy/hash-node': 3.0.8 + '@smithy/invalid-dependency': 3.0.8 + '@smithy/middleware-content-length': 3.0.10 + '@smithy/middleware-endpoint': 3.2.1 + '@smithy/middleware-retry': 3.0.25 + '@smithy/middleware-serde': 3.0.8 + '@smithy/middleware-stack': 3.0.8 + '@smithy/node-config-provider': 3.1.9 + '@smithy/node-http-handler': 3.2.5 + '@smithy/protocol-http': 4.1.5 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/url-parser': 3.0.8 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.23 - '@smithy/util-defaults-mode-node': 3.0.23 - '@smithy/util-endpoints': 2.1.3 - '@smithy/util-middleware': 3.0.7 - '@smithy/util-retry': 3.0.7 + '@smithy/util-defaults-mode-browser': 3.0.25 + '@smithy/util-defaults-mode-node': 3.0.25 + '@smithy/util-endpoints': 2.1.4 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-retry': 3.0.8 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.1 transitivePeerDependencies: - aws-crt - '@aws-sdk/client-sso@3.666.0': + '@aws-sdk/client-sso@3.687.0': dependencies: '@aws-crypto/sha256-browser': 5.2.0 '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/core': 3.666.0 - '@aws-sdk/middleware-host-header': 3.664.0 - '@aws-sdk/middleware-logger': 3.664.0 - '@aws-sdk/middleware-recursion-detection': 3.664.0 - '@aws-sdk/middleware-user-agent': 3.666.0 - '@aws-sdk/region-config-resolver': 3.664.0 - '@aws-sdk/types': 3.664.0 - '@aws-sdk/util-endpoints': 3.664.0 - '@aws-sdk/util-user-agent-browser': 3.664.0 - '@aws-sdk/util-user-agent-node': 3.666.0 - '@smithy/config-resolver': 3.0.9 - '@smithy/core': 2.4.8 - '@smithy/fetch-http-handler': 3.2.9 - '@smithy/hash-node': 3.0.7 - '@smithy/invalid-dependency': 3.0.7 - '@smithy/middleware-content-length': 3.0.9 - '@smithy/middleware-endpoint': 3.1.4 - '@smithy/middleware-retry': 3.0.23 - '@smithy/middleware-serde': 3.0.7 - '@smithy/middleware-stack': 3.0.7 - '@smithy/node-config-provider': 3.1.8 - '@smithy/node-http-handler': 3.2.4 - '@smithy/protocol-http': 4.1.4 - '@smithy/smithy-client': 3.4.0 - '@smithy/types': 3.5.0 - '@smithy/url-parser': 3.0.7 + '@aws-sdk/core': 3.686.0 + '@aws-sdk/middleware-host-header': 3.686.0 + '@aws-sdk/middleware-logger': 3.686.0 + '@aws-sdk/middleware-recursion-detection': 3.686.0 + '@aws-sdk/middleware-user-agent': 3.687.0 + '@aws-sdk/region-config-resolver': 3.686.0 + '@aws-sdk/types': 3.686.0 + '@aws-sdk/util-endpoints': 3.686.0 + '@aws-sdk/util-user-agent-browser': 3.686.0 + '@aws-sdk/util-user-agent-node': 3.687.0 + '@smithy/config-resolver': 3.0.10 + '@smithy/core': 2.5.1 + '@smithy/fetch-http-handler': 4.0.0 + '@smithy/hash-node': 3.0.8 + '@smithy/invalid-dependency': 3.0.8 + '@smithy/middleware-content-length': 3.0.10 + '@smithy/middleware-endpoint': 3.2.1 + '@smithy/middleware-retry': 3.0.25 + '@smithy/middleware-serde': 3.0.8 + '@smithy/middleware-stack': 3.0.8 + '@smithy/node-config-provider': 3.1.9 + '@smithy/node-http-handler': 3.2.5 + '@smithy/protocol-http': 4.1.5 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/url-parser': 3.0.8 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.23 - '@smithy/util-defaults-mode-node': 3.0.23 - '@smithy/util-endpoints': 2.1.3 - '@smithy/util-middleware': 3.0.7 - '@smithy/util-retry': 3.0.7 + '@smithy/util-defaults-mode-browser': 3.0.25 + '@smithy/util-defaults-mode-node': 3.0.25 + '@smithy/util-endpoints': 2.1.4 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-retry': 3.0.8 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.1 transitivePeerDependencies: - aws-crt - '@aws-sdk/client-sts@3.666.0': + '@aws-sdk/client-sts@3.687.0': dependencies: '@aws-crypto/sha256-browser': 5.2.0 '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/client-sso-oidc': 3.666.0(@aws-sdk/client-sts@3.666.0) - '@aws-sdk/core': 3.666.0 - '@aws-sdk/credential-provider-node': 3.666.0(@aws-sdk/client-sso-oidc@3.666.0(@aws-sdk/client-sts@3.666.0))(@aws-sdk/client-sts@3.666.0) - '@aws-sdk/middleware-host-header': 3.664.0 - '@aws-sdk/middleware-logger': 3.664.0 - '@aws-sdk/middleware-recursion-detection': 3.664.0 - '@aws-sdk/middleware-user-agent': 3.666.0 - '@aws-sdk/region-config-resolver': 3.664.0 - '@aws-sdk/types': 3.664.0 - '@aws-sdk/util-endpoints': 3.664.0 - '@aws-sdk/util-user-agent-browser': 3.664.0 - '@aws-sdk/util-user-agent-node': 3.666.0 - '@smithy/config-resolver': 3.0.9 - '@smithy/core': 2.4.8 - '@smithy/fetch-http-handler': 3.2.9 - '@smithy/hash-node': 3.0.7 - '@smithy/invalid-dependency': 3.0.7 - '@smithy/middleware-content-length': 3.0.9 - '@smithy/middleware-endpoint': 3.1.4 - '@smithy/middleware-retry': 3.0.23 - '@smithy/middleware-serde': 3.0.7 - '@smithy/middleware-stack': 3.0.7 - '@smithy/node-config-provider': 3.1.8 - '@smithy/node-http-handler': 3.2.4 - '@smithy/protocol-http': 4.1.4 - '@smithy/smithy-client': 3.4.0 - '@smithy/types': 3.5.0 - '@smithy/url-parser': 3.0.7 + '@aws-sdk/client-sso-oidc': 3.687.0(@aws-sdk/client-sts@3.687.0) + '@aws-sdk/core': 3.686.0 + '@aws-sdk/credential-provider-node': 3.687.0(@aws-sdk/client-sso-oidc@3.687.0(@aws-sdk/client-sts@3.687.0))(@aws-sdk/client-sts@3.687.0) + '@aws-sdk/middleware-host-header': 3.686.0 + '@aws-sdk/middleware-logger': 3.686.0 + '@aws-sdk/middleware-recursion-detection': 3.686.0 + '@aws-sdk/middleware-user-agent': 3.687.0 + '@aws-sdk/region-config-resolver': 3.686.0 + '@aws-sdk/types': 3.686.0 + '@aws-sdk/util-endpoints': 3.686.0 + '@aws-sdk/util-user-agent-browser': 3.686.0 + '@aws-sdk/util-user-agent-node': 3.687.0 + '@smithy/config-resolver': 3.0.10 + '@smithy/core': 2.5.1 + '@smithy/fetch-http-handler': 4.0.0 + '@smithy/hash-node': 3.0.8 + '@smithy/invalid-dependency': 3.0.8 + '@smithy/middleware-content-length': 3.0.10 + '@smithy/middleware-endpoint': 3.2.1 + '@smithy/middleware-retry': 3.0.25 + '@smithy/middleware-serde': 3.0.8 + '@smithy/middleware-stack': 3.0.8 + '@smithy/node-config-provider': 3.1.9 + '@smithy/node-http-handler': 3.2.5 + '@smithy/protocol-http': 4.1.5 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/url-parser': 3.0.8 '@smithy/util-base64': 3.0.0 '@smithy/util-body-length-browser': 3.0.0 '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.23 - '@smithy/util-defaults-mode-node': 3.0.23 - '@smithy/util-endpoints': 2.1.3 - '@smithy/util-middleware': 3.0.7 - '@smithy/util-retry': 3.0.7 + '@smithy/util-defaults-mode-browser': 3.0.25 + '@smithy/util-defaults-mode-node': 3.0.25 + '@smithy/util-endpoints': 2.1.4 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-retry': 3.0.8 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.1 transitivePeerDependencies: - aws-crt - '@aws-sdk/core@3.666.0': - dependencies: - '@aws-sdk/types': 3.664.0 - '@smithy/core': 2.4.8 - '@smithy/node-config-provider': 3.1.8 - '@smithy/property-provider': 3.1.7 - '@smithy/protocol-http': 4.1.4 - '@smithy/signature-v4': 4.2.0 - '@smithy/smithy-client': 3.4.0 - '@smithy/types': 3.5.0 - '@smithy/util-middleware': 3.0.7 + '@aws-sdk/core@3.686.0': + dependencies: + '@aws-sdk/types': 3.686.0 + '@smithy/core': 2.5.1 + '@smithy/node-config-provider': 3.1.9 + '@smithy/property-provider': 3.1.8 + '@smithy/protocol-http': 4.1.5 + '@smithy/signature-v4': 4.2.1 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/util-middleware': 3.0.8 fast-xml-parser: 4.4.1 - tslib: 2.6.3 - - '@aws-sdk/credential-provider-env@3.664.0': - dependencies: - '@aws-sdk/types': 3.664.0 - '@smithy/property-provider': 3.1.7 - '@smithy/types': 3.5.0 - tslib: 2.6.3 - - '@aws-sdk/credential-provider-http@3.666.0': - dependencies: - '@aws-sdk/types': 3.664.0 - '@smithy/fetch-http-handler': 3.2.9 - '@smithy/node-http-handler': 3.2.4 - '@smithy/property-provider': 3.1.7 - '@smithy/protocol-http': 4.1.4 - '@smithy/smithy-client': 3.4.0 - '@smithy/types': 3.5.0 - '@smithy/util-stream': 3.1.9 - tslib: 2.6.3 - - '@aws-sdk/credential-provider-ini@3.666.0(@aws-sdk/client-sso-oidc@3.666.0(@aws-sdk/client-sts@3.666.0))(@aws-sdk/client-sts@3.666.0)': - dependencies: - '@aws-sdk/client-sts': 3.666.0 - '@aws-sdk/credential-provider-env': 3.664.0 - '@aws-sdk/credential-provider-http': 3.666.0 - '@aws-sdk/credential-provider-process': 3.664.0 - '@aws-sdk/credential-provider-sso': 3.666.0(@aws-sdk/client-sso-oidc@3.666.0(@aws-sdk/client-sts@3.666.0)) - '@aws-sdk/credential-provider-web-identity': 3.664.0(@aws-sdk/client-sts@3.666.0) - '@aws-sdk/types': 3.664.0 - '@smithy/credential-provider-imds': 3.2.4 - '@smithy/property-provider': 3.1.7 - '@smithy/shared-ini-file-loader': 3.1.8 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + tslib: 2.8.1 + + '@aws-sdk/credential-provider-env@3.686.0': + dependencies: + '@aws-sdk/core': 3.686.0 + '@aws-sdk/types': 3.686.0 + '@smithy/property-provider': 3.1.8 + '@smithy/types': 3.6.0 + tslib: 2.8.1 + + '@aws-sdk/credential-provider-http@3.686.0': + dependencies: + '@aws-sdk/core': 3.686.0 + '@aws-sdk/types': 3.686.0 + '@smithy/fetch-http-handler': 4.0.0 + '@smithy/node-http-handler': 3.2.5 + '@smithy/property-provider': 3.1.8 + '@smithy/protocol-http': 4.1.5 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/util-stream': 3.2.1 + tslib: 2.8.1 + + '@aws-sdk/credential-provider-ini@3.687.0(@aws-sdk/client-sso-oidc@3.687.0(@aws-sdk/client-sts@3.687.0))(@aws-sdk/client-sts@3.687.0)': + dependencies: + '@aws-sdk/client-sts': 3.687.0 + '@aws-sdk/core': 3.686.0 + '@aws-sdk/credential-provider-env': 3.686.0 + '@aws-sdk/credential-provider-http': 3.686.0 + '@aws-sdk/credential-provider-process': 3.686.0 + '@aws-sdk/credential-provider-sso': 3.687.0(@aws-sdk/client-sso-oidc@3.687.0(@aws-sdk/client-sts@3.687.0)) + '@aws-sdk/credential-provider-web-identity': 3.686.0(@aws-sdk/client-sts@3.687.0) + '@aws-sdk/types': 3.686.0 + '@smithy/credential-provider-imds': 3.2.5 + '@smithy/property-provider': 3.1.8 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 + tslib: 2.8.1 transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - aws-crt - '@aws-sdk/credential-provider-node@3.666.0(@aws-sdk/client-sso-oidc@3.666.0(@aws-sdk/client-sts@3.666.0))(@aws-sdk/client-sts@3.666.0)': - dependencies: - '@aws-sdk/credential-provider-env': 3.664.0 - '@aws-sdk/credential-provider-http': 3.666.0 - '@aws-sdk/credential-provider-ini': 3.666.0(@aws-sdk/client-sso-oidc@3.666.0(@aws-sdk/client-sts@3.666.0))(@aws-sdk/client-sts@3.666.0) - '@aws-sdk/credential-provider-process': 3.664.0 - '@aws-sdk/credential-provider-sso': 3.666.0(@aws-sdk/client-sso-oidc@3.666.0(@aws-sdk/client-sts@3.666.0)) - '@aws-sdk/credential-provider-web-identity': 3.664.0(@aws-sdk/client-sts@3.666.0) - '@aws-sdk/types': 3.664.0 - '@smithy/credential-provider-imds': 3.2.4 - '@smithy/property-provider': 3.1.7 - '@smithy/shared-ini-file-loader': 3.1.8 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@aws-sdk/credential-provider-node@3.687.0(@aws-sdk/client-sso-oidc@3.687.0(@aws-sdk/client-sts@3.687.0))(@aws-sdk/client-sts@3.687.0)': + dependencies: + '@aws-sdk/credential-provider-env': 3.686.0 + '@aws-sdk/credential-provider-http': 3.686.0 + '@aws-sdk/credential-provider-ini': 3.687.0(@aws-sdk/client-sso-oidc@3.687.0(@aws-sdk/client-sts@3.687.0))(@aws-sdk/client-sts@3.687.0) + '@aws-sdk/credential-provider-process': 3.686.0 + '@aws-sdk/credential-provider-sso': 3.687.0(@aws-sdk/client-sso-oidc@3.687.0(@aws-sdk/client-sts@3.687.0)) + '@aws-sdk/credential-provider-web-identity': 3.686.0(@aws-sdk/client-sts@3.687.0) + '@aws-sdk/types': 3.686.0 + '@smithy/credential-provider-imds': 3.2.5 + '@smithy/property-provider': 3.1.8 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 + tslib: 2.8.1 transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - '@aws-sdk/client-sts' - aws-crt - '@aws-sdk/credential-provider-process@3.664.0': - dependencies: - '@aws-sdk/types': 3.664.0 - '@smithy/property-provider': 3.1.7 - '@smithy/shared-ini-file-loader': 3.1.8 - '@smithy/types': 3.5.0 - tslib: 2.6.3 - - '@aws-sdk/credential-provider-sso@3.666.0(@aws-sdk/client-sso-oidc@3.666.0(@aws-sdk/client-sts@3.666.0))': - dependencies: - '@aws-sdk/client-sso': 3.666.0 - '@aws-sdk/token-providers': 3.664.0(@aws-sdk/client-sso-oidc@3.666.0(@aws-sdk/client-sts@3.666.0)) - '@aws-sdk/types': 3.664.0 - '@smithy/property-provider': 3.1.7 - '@smithy/shared-ini-file-loader': 3.1.8 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@aws-sdk/credential-provider-process@3.686.0': + dependencies: + '@aws-sdk/core': 3.686.0 + '@aws-sdk/types': 3.686.0 + '@smithy/property-provider': 3.1.8 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 + tslib: 2.8.1 + + '@aws-sdk/credential-provider-sso@3.687.0(@aws-sdk/client-sso-oidc@3.687.0(@aws-sdk/client-sts@3.687.0))': + dependencies: + '@aws-sdk/client-sso': 3.687.0 + '@aws-sdk/core': 3.686.0 + '@aws-sdk/token-providers': 3.686.0(@aws-sdk/client-sso-oidc@3.687.0(@aws-sdk/client-sts@3.687.0)) + '@aws-sdk/types': 3.686.0 + '@smithy/property-provider': 3.1.8 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 + tslib: 2.8.1 transitivePeerDependencies: - '@aws-sdk/client-sso-oidc' - aws-crt - '@aws-sdk/credential-provider-web-identity@3.664.0(@aws-sdk/client-sts@3.666.0)': - dependencies: - '@aws-sdk/client-sts': 3.666.0 - '@aws-sdk/types': 3.664.0 - '@smithy/property-provider': 3.1.7 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@aws-sdk/credential-provider-web-identity@3.686.0(@aws-sdk/client-sts@3.687.0)': + dependencies: + '@aws-sdk/client-sts': 3.687.0 + '@aws-sdk/core': 3.686.0 + '@aws-sdk/types': 3.686.0 + '@smithy/property-provider': 3.1.8 + '@smithy/types': 3.6.0 + tslib: 2.8.1 + + '@aws-sdk/lib-storage@3.689.0(@aws-sdk/client-s3@3.689.0)': + dependencies: + '@aws-sdk/client-s3': 3.689.0 + '@smithy/abort-controller': 3.1.6 + '@smithy/middleware-endpoint': 3.2.1 + '@smithy/smithy-client': 3.4.2 + buffer: 5.6.0 + events: 3.3.0 + stream-browserify: 3.0.0 + tslib: 2.8.1 + + '@aws-sdk/middleware-bucket-endpoint@3.686.0': + dependencies: + '@aws-sdk/types': 3.686.0 + '@aws-sdk/util-arn-parser': 3.679.0 + '@smithy/node-config-provider': 3.1.9 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 + '@smithy/util-config-provider': 3.0.0 + tslib: 2.8.1 - '@aws-sdk/middleware-bucket-endpoint@3.664.0': + '@aws-sdk/middleware-expect-continue@3.686.0': dependencies: - '@aws-sdk/types': 3.664.0 - '@aws-sdk/util-arn-parser': 3.568.0 - '@smithy/node-config-provider': 3.1.8 - '@smithy/protocol-http': 4.1.4 - '@smithy/types': 3.5.0 - '@smithy/util-config-provider': 3.0.0 - tslib: 2.6.3 + '@aws-sdk/types': 3.686.0 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@aws-sdk/middleware-expect-continue@3.664.0': + '@aws-sdk/middleware-flexible-checksums@3.688.0': dependencies: - '@aws-sdk/types': 3.664.0 - '@smithy/protocol-http': 4.1.4 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@aws-crypto/crc32': 5.2.0 + '@aws-crypto/crc32c': 5.2.0 + '@aws-crypto/util': 5.2.0 + '@aws-sdk/core': 3.686.0 + '@aws-sdk/types': 3.686.0 + '@smithy/is-array-buffer': 3.0.0 + '@smithy/node-config-provider': 3.1.9 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-stream': 3.2.1 + '@smithy/util-utf8': 3.0.0 + tslib: 2.8.1 - '@aws-sdk/middleware-flexible-checksums@3.666.0': + '@aws-sdk/middleware-flexible-checksums@3.689.0': dependencies: '@aws-crypto/crc32': 5.2.0 '@aws-crypto/crc32c': 5.2.0 - '@aws-sdk/core': 3.666.0 - '@aws-sdk/types': 3.664.0 + '@aws-crypto/util': 5.2.0 + '@aws-sdk/core': 3.686.0 + '@aws-sdk/types': 3.686.0 '@smithy/is-array-buffer': 3.0.0 - '@smithy/node-config-provider': 3.1.8 - '@smithy/protocol-http': 4.1.4 - '@smithy/types': 3.5.0 - '@smithy/util-middleware': 3.0.7 + '@smithy/node-config-provider': 3.1.9 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-stream': 3.2.1 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.1 - '@aws-sdk/middleware-host-header@3.664.0': + '@aws-sdk/middleware-host-header@3.686.0': dependencies: - '@aws-sdk/types': 3.664.0 - '@smithy/protocol-http': 4.1.4 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@aws-sdk/types': 3.686.0 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@aws-sdk/middleware-location-constraint@3.664.0': + '@aws-sdk/middleware-location-constraint@3.686.0': dependencies: - '@aws-sdk/types': 3.664.0 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@aws-sdk/types': 3.686.0 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@aws-sdk/middleware-logger@3.664.0': + '@aws-sdk/middleware-logger@3.686.0': dependencies: - '@aws-sdk/types': 3.664.0 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@aws-sdk/types': 3.686.0 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@aws-sdk/middleware-recursion-detection@3.664.0': + '@aws-sdk/middleware-recursion-detection@3.686.0': dependencies: - '@aws-sdk/types': 3.664.0 - '@smithy/protocol-http': 4.1.4 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@aws-sdk/types': 3.686.0 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@aws-sdk/middleware-sdk-s3@3.666.0': + '@aws-sdk/middleware-sdk-s3@3.687.0': dependencies: - '@aws-sdk/core': 3.666.0 - '@aws-sdk/types': 3.664.0 - '@aws-sdk/util-arn-parser': 3.568.0 - '@smithy/core': 2.4.8 - '@smithy/node-config-provider': 3.1.8 - '@smithy/protocol-http': 4.1.4 - '@smithy/signature-v4': 4.2.0 - '@smithy/smithy-client': 3.4.0 - '@smithy/types': 3.5.0 + '@aws-sdk/core': 3.686.0 + '@aws-sdk/types': 3.686.0 + '@aws-sdk/util-arn-parser': 3.679.0 + '@smithy/core': 2.5.1 + '@smithy/node-config-provider': 3.1.9 + '@smithy/protocol-http': 4.1.5 + '@smithy/signature-v4': 4.2.1 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 '@smithy/util-config-provider': 3.0.0 - '@smithy/util-middleware': 3.0.7 - '@smithy/util-stream': 3.1.9 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-stream': 3.2.1 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.1 - '@aws-sdk/middleware-ssec@3.664.0': + '@aws-sdk/middleware-ssec@3.686.0': dependencies: - '@aws-sdk/types': 3.664.0 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@aws-sdk/types': 3.686.0 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@aws-sdk/middleware-user-agent@3.666.0': + '@aws-sdk/middleware-user-agent@3.687.0': dependencies: - '@aws-sdk/core': 3.666.0 - '@aws-sdk/types': 3.664.0 - '@aws-sdk/util-endpoints': 3.664.0 - '@smithy/core': 2.4.8 - '@smithy/protocol-http': 4.1.4 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@aws-sdk/core': 3.686.0 + '@aws-sdk/types': 3.686.0 + '@aws-sdk/util-endpoints': 3.686.0 + '@smithy/core': 2.5.1 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@aws-sdk/region-config-resolver@3.664.0': + '@aws-sdk/region-config-resolver@3.686.0': dependencies: - '@aws-sdk/types': 3.664.0 - '@smithy/node-config-provider': 3.1.8 - '@smithy/types': 3.5.0 + '@aws-sdk/types': 3.686.0 + '@smithy/node-config-provider': 3.1.9 + '@smithy/types': 3.6.0 '@smithy/util-config-provider': 3.0.0 - '@smithy/util-middleware': 3.0.7 - tslib: 2.6.3 + '@smithy/util-middleware': 3.0.8 + tslib: 2.8.1 - '@aws-sdk/signature-v4-multi-region@3.666.0': + '@aws-sdk/signature-v4-multi-region@3.687.0': dependencies: - '@aws-sdk/middleware-sdk-s3': 3.666.0 - '@aws-sdk/types': 3.664.0 - '@smithy/protocol-http': 4.1.4 - '@smithy/signature-v4': 4.2.0 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@aws-sdk/middleware-sdk-s3': 3.687.0 + '@aws-sdk/types': 3.686.0 + '@smithy/protocol-http': 4.1.5 + '@smithy/signature-v4': 4.2.1 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@aws-sdk/token-providers@3.664.0(@aws-sdk/client-sso-oidc@3.666.0(@aws-sdk/client-sts@3.666.0))': + '@aws-sdk/token-providers@3.686.0(@aws-sdk/client-sso-oidc@3.687.0(@aws-sdk/client-sts@3.687.0))': dependencies: - '@aws-sdk/client-sso-oidc': 3.666.0(@aws-sdk/client-sts@3.666.0) - '@aws-sdk/types': 3.664.0 - '@smithy/property-provider': 3.1.7 - '@smithy/shared-ini-file-loader': 3.1.8 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@aws-sdk/client-sso-oidc': 3.687.0(@aws-sdk/client-sts@3.687.0) + '@aws-sdk/types': 3.686.0 + '@smithy/property-provider': 3.1.8 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@aws-sdk/types@3.664.0': + '@aws-sdk/types@3.686.0': dependencies: - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@aws-sdk/util-arn-parser@3.568.0': + '@aws-sdk/util-arn-parser@3.679.0': dependencies: - tslib: 2.6.3 + tslib: 2.8.1 - '@aws-sdk/util-endpoints@3.664.0': + '@aws-sdk/util-endpoints@3.686.0': dependencies: - '@aws-sdk/types': 3.664.0 - '@smithy/types': 3.5.0 - '@smithy/util-endpoints': 2.1.3 - tslib: 2.6.3 + '@aws-sdk/types': 3.686.0 + '@smithy/types': 3.6.0 + '@smithy/util-endpoints': 2.1.4 + tslib: 2.8.1 - '@aws-sdk/util-locate-window@3.568.0': + '@aws-sdk/util-locate-window@3.679.0': dependencies: - tslib: 2.6.3 + tslib: 2.8.1 - '@aws-sdk/util-user-agent-browser@3.664.0': + '@aws-sdk/util-user-agent-browser@3.686.0': dependencies: - '@aws-sdk/types': 3.664.0 - '@smithy/types': 3.5.0 + '@aws-sdk/types': 3.686.0 + '@smithy/types': 3.6.0 bowser: 2.11.0 - tslib: 2.6.3 + tslib: 2.8.1 - '@aws-sdk/util-user-agent-node@3.666.0': + '@aws-sdk/util-user-agent-node@3.687.0': dependencies: - '@aws-sdk/middleware-user-agent': 3.666.0 - '@aws-sdk/types': 3.664.0 - '@smithy/node-config-provider': 3.1.8 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@aws-sdk/middleware-user-agent': 3.687.0 + '@aws-sdk/types': 3.686.0 + '@smithy/node-config-provider': 3.1.9 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@aws-sdk/xml-builder@3.662.0': + '@aws-sdk/xml-builder@3.686.0': dependencies: - '@smithy/types': 3.5.0 - tslib: 2.6.3 - - '@babel/helper-string-parser@7.24.8': {} - - '@babel/helper-string-parser@7.25.7': {} + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@babel/helper-validator-identifier@7.24.7': {} + '@babel/helper-string-parser@7.25.9': {} - '@babel/helper-validator-identifier@7.25.7': {} + '@babel/helper-validator-identifier@7.25.9': {} - '@babel/parser@7.25.0': + '@babel/parser@7.26.2': dependencies: - '@babel/types': 7.25.0 + '@babel/types': 7.26.0 - '@babel/parser@7.25.7': - dependencies: - '@babel/types': 7.25.7 - - '@babel/runtime@7.25.0': + '@babel/runtime@7.26.0': dependencies: regenerator-runtime: 0.14.1 - '@babel/types@7.25.0': - dependencies: - '@babel/helper-string-parser': 7.24.8 - '@babel/helper-validator-identifier': 7.24.7 - to-fast-properties: 2.0.0 - - '@babel/types@7.25.7': + '@babel/types@7.26.0': dependencies: - '@babel/helper-string-parser': 7.25.7 - '@babel/helper-validator-identifier': 7.25.7 - to-fast-properties: 2.0.0 + '@babel/helper-string-parser': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 '@changesets/apply-release-plan@7.0.5': dependencies: @@ -3368,7 +5218,7 @@ snapshots: dependencies: '@changesets/types': 6.0.0 - '@changesets/cli@2.27.8': + '@changesets/cli@2.27.9': dependencies: '@changesets/apply-release-plan': 7.0.5 '@changesets/assemble-release-plan': 6.0.4 @@ -3385,17 +5235,15 @@ snapshots: '@changesets/types': 6.0.0 '@changesets/write': 0.3.2 '@manypkg/get-packages': 1.1.3 - '@types/semver': 7.5.8 ansi-colors: 4.1.3 ci-info: 3.9.0 enquirer: 2.4.1 external-editor: 3.1.0 fs-extra: 7.0.1 mri: 1.2.0 - outdent: 0.5.0 p-limit: 2.3.0 - package-manager-detector: 0.2.0 - picocolors: 1.1.0 + package-manager-detector: 0.2.2 + picocolors: 1.1.1 resolve-from: 5.0.0 semver: 7.6.3 spawndamnit: 2.0.0 @@ -3409,7 +5257,7 @@ snapshots: '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 - micromatch: 4.0.7 + micromatch: 4.0.8 '@changesets/errors@0.2.0': dependencies: @@ -3419,7 +5267,7 @@ snapshots: dependencies: '@changesets/types': 6.0.0 '@manypkg/get-packages': 1.1.3 - picocolors: 1.1.0 + picocolors: 1.1.1 semver: 7.6.3 '@changesets/get-release-plan@4.0.4': @@ -3438,12 +5286,12 @@ snapshots: '@changesets/errors': 0.2.0 '@manypkg/get-packages': 1.1.3 is-subdir: 1.2.0 - micromatch: 4.0.7 + micromatch: 4.0.8 spawndamnit: 2.0.0 '@changesets/logger@0.1.1': dependencies: - picocolors: 1.1.0 + picocolors: 1.1.1 '@changesets/parse@0.4.0': dependencies: @@ -3465,7 +5313,7 @@ snapshots: '@changesets/types': 6.0.0 fs-extra: 7.0.1 p-filter: 2.1.0 - picocolors: 1.1.0 + picocolors: 1.1.1 '@changesets/should-skip-package@0.1.1': dependencies: @@ -3485,6 +5333,67 @@ snapshots: '@colors/colors@1.6.0': {} + '@d3fc/d3fc-axis@3.0.7(d3-scale@4.0.2)(d3-selection@3.0.0)(d3-shape@3.2.0)': + dependencies: + '@d3fc/d3fc-data-join': 6.0.3(d3-selection@3.0.0) + '@d3fc/d3fc-rebind': 6.0.1 + d3-scale: 4.0.2 + d3-selection: 3.0.0 + d3-shape: 3.2.0 + + '@d3fc/d3fc-chart@5.1.9(d3-array@3.2.4)(d3-path@3.1.0)(d3-scale-chromatic@3.1.0)(d3-scale@4.0.2)(d3-selection@3.0.0)(d3-shape@3.2.0)': + dependencies: + '@d3fc/d3fc-axis': 3.0.7(d3-scale@4.0.2)(d3-selection@3.0.0)(d3-shape@3.2.0) + '@d3fc/d3fc-data-join': 6.0.3(d3-selection@3.0.0) + '@d3fc/d3fc-element': 6.2.0 + '@d3fc/d3fc-rebind': 6.0.1 + '@d3fc/d3fc-series': 6.1.3(d3-array@3.2.4)(d3-path@3.1.0)(d3-scale-chromatic@3.1.0)(d3-scale@4.0.2)(d3-selection@3.0.0)(d3-shape@3.2.0) + d3-scale: 4.0.2 + d3-selection: 3.0.0 + transitivePeerDependencies: + - d3-array + - d3-path + - d3-scale-chromatic + - d3-shape + + '@d3fc/d3fc-data-join@6.0.3(d3-selection@3.0.0)': + dependencies: + d3-selection: 3.0.0 + + '@d3fc/d3fc-element@6.2.0': {} + + '@d3fc/d3fc-pointer@3.0.3(d3-dispatch@3.0.1)(d3-selection@3.0.0)': + dependencies: + '@d3fc/d3fc-rebind': 6.0.1 + d3-dispatch: 3.0.1 + d3-selection: 3.0.0 + + '@d3fc/d3fc-rebind@6.0.1': {} + + '@d3fc/d3fc-series@6.1.3(d3-array@3.2.4)(d3-path@3.1.0)(d3-scale-chromatic@3.1.0)(d3-scale@4.0.2)(d3-selection@3.0.0)(d3-shape@3.2.0)': + dependencies: + '@d3fc/d3fc-data-join': 6.0.3(d3-selection@3.0.0) + '@d3fc/d3fc-rebind': 6.0.1 + '@d3fc/d3fc-shape': 6.0.1(d3-path@3.1.0) + '@d3fc/d3fc-webgl': 3.2.1(d3-scale@4.0.2)(d3-shape@3.2.0) + d3-array: 3.2.4 + d3-scale: 4.0.2 + d3-scale-chromatic: 3.1.0 + d3-selection: 3.0.0 + d3-shape: 3.2.0 + transitivePeerDependencies: + - d3-path + + '@d3fc/d3fc-shape@6.0.1(d3-path@3.1.0)': + dependencies: + d3-path: 3.1.0 + + '@d3fc/d3fc-webgl@3.2.1(d3-scale@4.0.2)(d3-shape@3.2.0)': + dependencies: + '@d3fc/d3fc-rebind': 6.0.1 + d3-scale: 4.0.2 + d3-shape: 3.2.0 + '@dabh/diagnostics@2.0.3': dependencies: colorspace: 1.1.4 @@ -3494,145 +5403,145 @@ snapshots: '@esbuild/aix-ppc64@0.21.5': optional: true - '@esbuild/aix-ppc64@0.23.0': + '@esbuild/aix-ppc64@0.24.0': optional: true '@esbuild/android-arm64@0.21.5': optional: true - '@esbuild/android-arm64@0.23.0': + '@esbuild/android-arm64@0.24.0': optional: true '@esbuild/android-arm@0.21.5': optional: true - '@esbuild/android-arm@0.23.0': + '@esbuild/android-arm@0.24.0': optional: true '@esbuild/android-x64@0.21.5': optional: true - '@esbuild/android-x64@0.23.0': + '@esbuild/android-x64@0.24.0': optional: true '@esbuild/darwin-arm64@0.21.5': optional: true - '@esbuild/darwin-arm64@0.23.0': + '@esbuild/darwin-arm64@0.24.0': optional: true '@esbuild/darwin-x64@0.21.5': optional: true - '@esbuild/darwin-x64@0.23.0': + '@esbuild/darwin-x64@0.24.0': optional: true '@esbuild/freebsd-arm64@0.21.5': optional: true - '@esbuild/freebsd-arm64@0.23.0': + '@esbuild/freebsd-arm64@0.24.0': optional: true '@esbuild/freebsd-x64@0.21.5': optional: true - '@esbuild/freebsd-x64@0.23.0': + '@esbuild/freebsd-x64@0.24.0': optional: true '@esbuild/linux-arm64@0.21.5': optional: true - '@esbuild/linux-arm64@0.23.0': + '@esbuild/linux-arm64@0.24.0': optional: true '@esbuild/linux-arm@0.21.5': optional: true - '@esbuild/linux-arm@0.23.0': + '@esbuild/linux-arm@0.24.0': optional: true '@esbuild/linux-ia32@0.21.5': optional: true - '@esbuild/linux-ia32@0.23.0': + '@esbuild/linux-ia32@0.24.0': optional: true '@esbuild/linux-loong64@0.21.5': optional: true - '@esbuild/linux-loong64@0.23.0': + '@esbuild/linux-loong64@0.24.0': optional: true '@esbuild/linux-mips64el@0.21.5': optional: true - '@esbuild/linux-mips64el@0.23.0': + '@esbuild/linux-mips64el@0.24.0': optional: true '@esbuild/linux-ppc64@0.21.5': optional: true - '@esbuild/linux-ppc64@0.23.0': + '@esbuild/linux-ppc64@0.24.0': optional: true '@esbuild/linux-riscv64@0.21.5': optional: true - '@esbuild/linux-riscv64@0.23.0': + '@esbuild/linux-riscv64@0.24.0': optional: true '@esbuild/linux-s390x@0.21.5': optional: true - '@esbuild/linux-s390x@0.23.0': + '@esbuild/linux-s390x@0.24.0': optional: true '@esbuild/linux-x64@0.21.5': optional: true - '@esbuild/linux-x64@0.23.0': + '@esbuild/linux-x64@0.24.0': optional: true '@esbuild/netbsd-x64@0.21.5': optional: true - '@esbuild/netbsd-x64@0.23.0': + '@esbuild/netbsd-x64@0.24.0': optional: true - '@esbuild/openbsd-arm64@0.23.0': + '@esbuild/openbsd-arm64@0.24.0': optional: true '@esbuild/openbsd-x64@0.21.5': optional: true - '@esbuild/openbsd-x64@0.23.0': + '@esbuild/openbsd-x64@0.24.0': optional: true '@esbuild/sunos-x64@0.21.5': optional: true - '@esbuild/sunos-x64@0.23.0': + '@esbuild/sunos-x64@0.24.0': optional: true '@esbuild/win32-arm64@0.21.5': optional: true - '@esbuild/win32-arm64@0.23.0': + '@esbuild/win32-arm64@0.24.0': optional: true '@esbuild/win32-ia32@0.21.5': optional: true - '@esbuild/win32-ia32@0.23.0': + '@esbuild/win32-ia32@0.24.0': optional: true '@esbuild/win32-x64@0.21.5': optional: true - '@esbuild/win32-x64@0.23.0': + '@esbuild/win32-x64@0.24.0': optional: true - '@grpc/grpc-js@1.12.1': + '@grpc/grpc-js@1.12.2': dependencies: '@grpc/proto-loader': 0.7.13 '@js-sdsl/ordered-map': 4.4.2 @@ -3641,7 +5550,7 @@ snapshots: dependencies: lodash.camelcase: 4.3.0 long: 5.2.3 - protobufjs: 7.3.2 + protobufjs: 7.4.0 yargs: 17.7.2 '@isaacs/cliui@8.0.2': @@ -3696,14 +5605,14 @@ snapshots: '@manypkg/find-root@1.1.0': dependencies: - '@babel/runtime': 7.25.0 + '@babel/runtime': 7.26.0 '@types/node': 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 '@manypkg/get-packages@1.1.3': dependencies: - '@babel/runtime': 7.25.0 + '@babel/runtime': 7.26.0 '@changesets/types': 4.1.0 '@manypkg/find-root': 1.1.0 fs-extra: 8.1.0 @@ -3725,26 +5634,85 @@ snapshots: - encoding - supports-color - '@milaboratories/computable@2.1.12': + '@milaboratories/computable@2.2.1': dependencies: - '@milaboratories/ts-helpers': 1.0.30 - '@types/node': 20.16.9 + '@milaboratories/ts-helpers': 1.1.1 + '@types/node': 20.16.15 utility-types: 3.11.0 - '@milaboratories/pframes-node@1.5.10(@milaboratories/pl-model-common@1.3.14)': + '@milaboratories/graph-maker@1.0.21(d3-dispatch@3.0.1)(d3-path@3.1.0)(d3-scale-chromatic@3.1.0)(typescript@5.6.3)': + dependencies: + '@milaboratories/helpers': 1.6.6 + '@milaboratories/miplots4': 1.0.46(d3-dispatch@3.0.1)(d3-path@3.1.0)(d3-scale-chromatic@3.1.0) + '@milaboratories/pf-plots': 1.0.51 + '@milaboratories/uikit': 2.0.13(typescript@5.6.3) + '@platforma-sdk/model': 1.8.0 + '@platforma-sdk/ui-vue': 1.8.2(typescript@5.6.3) + '@types/d3-hierarchy': 3.1.7 + ag-grid-vue3: 32.3.2(typescript@5.6.3) + d3-hierarchy: 3.1.2 + d3-scale: 4.0.2 + vue: 3.5.12(typescript@5.6.3) + transitivePeerDependencies: + - d3-dispatch + - d3-path + - d3-scale-chromatic + - supports-color + - typescript + + '@milaboratories/helpers@1.6.6': {} + + '@milaboratories/miplots4@1.0.46(d3-dispatch@3.0.1)(d3-path@3.1.0)(d3-scale-chromatic@3.1.0)': + dependencies: + '@d3fc/d3fc-chart': 5.1.9(d3-array@3.2.4)(d3-path@3.1.0)(d3-scale-chromatic@3.1.0)(d3-scale@4.0.2)(d3-selection@3.0.0)(d3-shape@3.2.0) + '@d3fc/d3fc-pointer': 3.0.3(d3-dispatch@3.0.1)(d3-selection@3.0.0) + '@d3fc/d3fc-webgl': 3.2.1(d3-scale@4.0.2)(d3-shape@3.2.0) + '@stdlib/stats-anova1': 0.2.2 + '@stdlib/stats-kruskal-test': 0.2.2 + '@stdlib/stats-ttest': 0.2.2 + '@stdlib/stats-ttest2': 0.2.2 + '@stdlib/stats-wilcoxon': 0.2.2 + d3-array: 3.2.4 + d3-axis: 3.0.0 + d3-color: 3.1.0 + d3-format: 3.1.0 + d3-hierarchy: 3.1.2 + d3-quadtree: 3.0.1 + d3-random: 3.0.1 + d3-scale: 4.0.2 + d3-selection: 3.0.0 + d3-shape: 3.2.0 + d3-zoom: 3.0.0 + lodash: 4.17.21 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + zod: 3.23.8 + transitivePeerDependencies: + - d3-dispatch + - d3-path + - d3-scale-chromatic + - supports-color + + '@milaboratories/pf-plots@1.0.51': + dependencies: + '@platforma-sdk/model': 1.8.0 + canonicalize: 2.0.0 + lodash: 4.17.21 + + '@milaboratories/pframes-node@1.6.8(@milaboratories/pl-model-common@1.6.1)': dependencies: '@mapbox/node-pre-gyp': 1.0.11 - '@milaboratories/pl-model-common': 1.3.14 - '@milaboratories/pl-model-middle-layer': 1.4.4 + '@milaboratories/pl-model-common': 1.6.1 + '@milaboratories/pl-model-middle-layer': 1.5.7 transitivePeerDependencies: - encoding - supports-color - '@milaboratories/pl-client@2.4.20': + '@milaboratories/pl-client@2.5.9': dependencies: - '@grpc/grpc-js': 1.12.1 - '@milaboratories/ts-helpers': 1.0.30 - '@protobuf-ts/grpc-transport': 2.9.4(@grpc/grpc-js@1.12.1) + '@grpc/grpc-js': 1.12.2 + '@milaboratories/ts-helpers': 1.1.1 + '@protobuf-ts/grpc-transport': 2.9.4(@grpc/grpc-js@1.12.2) '@protobuf-ts/runtime': 2.9.4 '@protobuf-ts/runtime-rpc': 2.9.4 cacheable-lookup: 6.1.0 @@ -3752,89 +5720,92 @@ snapshots: denque: 2.1.0 https-proxy-agent: 7.0.5 long: 5.2.3 - undici: 6.19.8 + lru-cache: 11.0.2 + undici: 6.20.1 utility-types: 3.11.0 - yaml: 2.5.1 + yaml: 2.6.0 transitivePeerDependencies: - supports-color - '@milaboratories/pl-config@1.2.2': + '@milaboratories/pl-config@1.3.1': dependencies: - '@milaboratories/ts-helpers': 1.0.30 - undici: 6.19.8 - yaml: 2.5.1 + '@milaboratories/ts-helpers': 1.1.1 + undici: 6.20.1 + yaml: 2.6.0 zod: 3.23.8 - '@milaboratories/pl-drivers@1.2.30': + '@milaboratories/pl-drivers@1.3.15': dependencies: - '@grpc/grpc-js': 1.12.1 - '@milaboratories/computable': 2.1.12 - '@milaboratories/pl-client': 2.4.20 - '@milaboratories/pl-model-common': 1.3.14 - '@milaboratories/pl-tree': 1.3.19 - '@milaboratories/ts-helpers': 1.0.30 - '@protobuf-ts/grpc-transport': 2.9.4(@grpc/grpc-js@1.12.1) + '@grpc/grpc-js': 1.12.2 + '@milaboratories/computable': 2.2.1 + '@milaboratories/pl-client': 2.5.9 + '@milaboratories/pl-model-common': 1.6.1 + '@milaboratories/pl-tree': 1.4.10 + '@milaboratories/ts-helpers': 1.1.1 + '@protobuf-ts/grpc-transport': 2.9.4(@grpc/grpc-js@1.12.2) '@protobuf-ts/plugin': 2.9.4 '@protobuf-ts/runtime': 2.9.4 '@protobuf-ts/runtime-rpc': 2.9.4 denque: 2.1.0 tar-fs: 3.0.6 - undici: 6.19.8 + undici: 6.20.1 zod: 3.23.8 transitivePeerDependencies: - supports-color - '@milaboratories/pl-local@1.2.2': + '@milaboratories/pl-local@1.5.2': dependencies: - '@milaboratories/ts-helpers': 1.0.30 + '@milaboratories/ts-helpers': 1.1.1 + decompress: 4.2.1 tar: 7.4.3 - undici: 6.19.8 - yaml: 2.5.1 + undici: 6.20.1 + yaml: 2.6.0 zod: 3.23.8 - '@milaboratories/pl-middle-layer@1.10.47': - dependencies: - '@milaboratories/computable': 2.1.12 - '@milaboratories/pframes-node': 1.5.10(@milaboratories/pl-model-common@1.3.14) - '@milaboratories/pl-client': 2.4.20 - '@milaboratories/pl-config': 1.2.2 - '@milaboratories/pl-drivers': 1.2.30 - '@milaboratories/pl-local': 1.2.2 - '@milaboratories/pl-model-common': 1.3.14 - '@milaboratories/pl-model-middle-layer': 1.4.4 - '@milaboratories/pl-tree': 1.3.19 + '@milaboratories/pl-middle-layer@1.14.23': + dependencies: + '@milaboratories/computable': 2.2.1 + '@milaboratories/pframes-node': 1.6.8(@milaboratories/pl-model-common@1.6.1) + '@milaboratories/pl-client': 2.5.9 + '@milaboratories/pl-config': 1.3.1 + '@milaboratories/pl-drivers': 1.3.15 + '@milaboratories/pl-local': 1.5.2 + '@milaboratories/pl-model-common': 1.6.1 + '@milaboratories/pl-model-middle-layer': 1.5.7 + '@milaboratories/pl-tree': 1.4.10 '@milaboratories/resolve-helper': 1.0.1 - '@milaboratories/ts-helpers': 1.0.30 - '@platforma-sdk/block-tools': 2.3.12 - '@platforma-sdk/model': 1.5.40 - '@platforma-sdk/workflow-tengo': 1.3.0 + '@milaboratories/ts-helpers': 1.1.1 + '@platforma-sdk/block-tools': 2.3.23 + '@platforma-sdk/model': 1.8.0 + '@platforma-sdk/workflow-tengo': 1.8.1 canonicalize: 2.0.0 denque: 2.1.0 + lru-cache: 11.0.2 quickjs-emscripten: 0.31.0 - undici: 6.19.8 + undici: 6.20.1 utility-types: 3.11.0 - yaml: 2.5.1 + yaml: 2.6.0 zod: 3.23.8 transitivePeerDependencies: - aws-crt - encoding - supports-color - '@milaboratories/pl-model-common@1.3.14': + '@milaboratories/pl-model-common@1.6.1': dependencies: zod: 3.23.8 - '@milaboratories/pl-model-middle-layer@1.4.4': + '@milaboratories/pl-model-middle-layer@1.5.7': dependencies: - '@milaboratories/pl-model-common': 1.3.14 + '@milaboratories/pl-model-common': 1.6.1 utility-types: 3.11.0 zod: 3.23.8 - '@milaboratories/pl-tree@1.3.19': + '@milaboratories/pl-tree@1.4.10': dependencies: - '@milaboratories/computable': 2.1.12 - '@milaboratories/pl-client': 2.4.20 - '@milaboratories/ts-helpers': 1.0.30 + '@milaboratories/computable': 2.2.1 + '@milaboratories/pl-client': 2.5.9 + '@milaboratories/ts-helpers': 1.1.1 denque: 2.1.0 utility-types: 3.11.0 zod: 3.23.8 @@ -3843,22 +5814,22 @@ snapshots: '@milaboratories/resolve-helper@1.0.1': {} - '@milaboratories/software-pframes-conv@1.5.10': {} + '@milaboratories/software-pframes-conv@1.6.8': {} - '@milaboratories/tengo-tester@1.4.4': {} + '@milaboratories/tengo-tester@1.4.5': {} - '@milaboratories/ts-helpers-oclif@1.1.8': + '@milaboratories/ts-helpers-oclif@1.1.10': dependencies: - '@milaboratories/ts-helpers': 1.0.30 - '@oclif/core': 4.0.27 + '@milaboratories/ts-helpers': 1.1.1 + '@oclif/core': 4.0.31 - '@milaboratories/ts-helpers@1.0.30': + '@milaboratories/ts-helpers@1.1.1': dependencies: denque: 2.1.0 - '@milaboratories/uikit@1.2.18(typescript@5.5.4)': + '@milaboratories/uikit@2.0.13(typescript@5.6.3)': dependencies: - vue: 3.5.11(typescript@5.5.4) + vue: 3.5.12(typescript@5.6.3) transitivePeerDependencies: - typescript @@ -3874,7 +5845,7 @@ snapshots: '@nodelib/fs.scandir': 2.1.5 fastq: 1.17.1 - '@oclif/core@4.0.27': + '@oclif/core@4.0.31': dependencies: ansi-escapes: 4.3.2 ansis: 3.3.2 @@ -3885,7 +5856,7 @@ snapshots: get-package-type: 0.1.0 globby: 11.1.0 indent-string: 4.0.0 - is-wsl: 3.1.0 + is-wsl: 2.2.0 lilconfig: 3.1.2 minimatch: 9.0.5 semver: 7.6.3 @@ -3898,46 +5869,63 @@ snapshots: '@pkgjs/parseargs@0.11.0': optional: true - '@platforma-sdk/block-tools@2.3.12': + '@platforma-open/milaboratories.runenv-python-3@1.0.0': {} + + '@platforma-open/milaboratories.software-small-binaries@1.14.5': {} + + '@platforma-sdk/block-tools@2.3.23': dependencies: - '@aws-sdk/client-s3': 3.666.0 - '@milaboratories/pl-model-middle-layer': 1.4.4 + '@aws-sdk/client-s3': 3.688.0 + '@milaboratories/pl-model-middle-layer': 1.5.7 '@milaboratories/resolve-helper': 1.0.1 - '@milaboratories/ts-helpers': 1.0.30 - '@milaboratories/ts-helpers-oclif': 1.1.8 - '@oclif/core': 4.0.27 + '@milaboratories/ts-helpers': 1.1.1 + '@milaboratories/ts-helpers-oclif': 1.1.10 + '@oclif/core': 4.0.31 canonicalize: 2.0.0 - lru-cache: 11.0.1 + lru-cache: 11.0.2 mime-types: 2.1.35 tar: 7.4.3 - undici: 6.19.8 - yaml: 2.5.1 + undici: 6.20.1 + yaml: 2.6.0 zod: 3.23.8 transitivePeerDependencies: - aws-crt - '@platforma-sdk/model@1.5.40': + '@platforma-sdk/model@1.8.0': dependencies: - '@milaboratories/pl-model-common': 1.3.14 + '@milaboratories/pl-model-common': 1.6.1 utility-types: 3.11.0 zod: 3.23.8 - '@platforma-sdk/tengo-builder@1.14.13': + '@platforma-sdk/package-builder@2.11.1': + dependencies: + '@aws-sdk/client-s3': 3.689.0 + '@aws-sdk/lib-storage': 3.689.0(@aws-sdk/client-s3@3.689.0) + '@oclif/core': 4.0.31 + canonicalize: 2.0.0 + tar: 7.4.3 + winston: 3.17.0 + yaml: 2.6.0 + zod: 3.23.8 + transitivePeerDependencies: + - aws-crt + + '@platforma-sdk/tengo-builder@1.16.1': dependencies: - '@milaboratories/tengo-tester': 1.4.4 - '@oclif/core': 4.0.27 + '@milaboratories/tengo-tester': 1.4.5 + '@oclif/core': 4.0.31 canonicalize: 2.0.0 - winston: 3.14.2 + winston: 3.17.0 - '@platforma-sdk/test@1.5.43(@types/node@22.0.0)': + '@platforma-sdk/test@1.8.5(@types/node@22.9.0)': dependencies: - '@milaboratories/computable': 2.1.12 - '@milaboratories/pl-client': 2.4.20 - '@milaboratories/pl-middle-layer': 1.10.47 - '@milaboratories/pl-tree': 1.3.19 - '@milaboratories/ts-helpers': 1.0.30 - '@platforma-sdk/model': 1.5.40 - vitest: 2.1.2(@types/node@22.0.0) + '@milaboratories/computable': 2.2.1 + '@milaboratories/pl-client': 2.5.9 + '@milaboratories/pl-middle-layer': 1.14.23 + '@milaboratories/pl-tree': 1.4.10 + '@milaboratories/ts-helpers': 1.1.1 + '@platforma-sdk/model': 1.8.0 + vitest: 2.1.4(@types/node@22.9.0) transitivePeerDependencies: - '@edge-runtime/vm' - '@types/node' @@ -3957,23 +5945,38 @@ snapshots: - supports-color - terser - '@platforma-sdk/ui-vue@1.5.42(typescript@5.5.4)': - dependencies: - '@milaboratories/uikit': 1.2.18(typescript@5.5.4) - '@platforma-sdk/model': 1.5.40 + '@platforma-sdk/ui-vue@1.8.2(typescript@5.6.3)': + dependencies: + '@ag-grid-community/client-side-row-model': 32.3.2 + '@ag-grid-community/core': 32.3.2 + '@ag-grid-community/csv-export': 32.3.2 + '@ag-grid-community/infinite-row-model': 32.3.2 + '@ag-grid-community/styles': 32.3.2 + '@ag-grid-community/theming': 32.3.2 + '@ag-grid-community/vue3': 32.3.2(typescript@5.6.3) + '@ag-grid-enterprise/clipboard': 32.3.2 + '@ag-grid-enterprise/core': 32.3.2 + '@ag-grid-enterprise/excel-export': 32.3.2 + '@ag-grid-enterprise/menu': 32.3.2 + '@ag-grid-enterprise/range-selection': 32.3.2 + '@ag-grid-enterprise/rich-select': 32.3.2 + '@ag-grid-enterprise/server-side-row-model': 32.3.2 + '@milaboratories/uikit': 2.0.13(typescript@5.6.3) + '@platforma-sdk/model': 1.8.0 canonicalize: 2.0.0 - lru-cache: 11.0.1 - vue: 3.5.11(typescript@5.5.4) + lru-cache: 11.0.2 + vue: 3.5.12(typescript@5.6.3) transitivePeerDependencies: - typescript - '@platforma-sdk/workflow-tengo@1.3.0': + '@platforma-sdk/workflow-tengo@1.8.1': dependencies: - '@milaboratories/software-pframes-conv': 1.5.10 + '@milaboratories/software-pframes-conv': 1.6.8 + '@platforma-open/milaboratories.software-small-binaries': 1.14.5 - '@protobuf-ts/grpc-transport@2.9.4(@grpc/grpc-js@1.12.1)': + '@protobuf-ts/grpc-transport@2.9.4(@grpc/grpc-js@1.12.2)': dependencies: - '@grpc/grpc-js': 1.12.1 + '@grpc/grpc-js': 1.12.2 '@protobuf-ts/runtime': 2.9.4 '@protobuf-ts/runtime-rpc': 2.9.4 @@ -4021,673 +6024,2627 @@ snapshots: '@protobufjs/utf8@1.1.0': {} - '@rollup/rollup-android-arm-eabi@4.19.1': - optional: true - - '@rollup/rollup-android-arm-eabi@4.21.0': - optional: true - - '@rollup/rollup-android-arm64@4.19.1': - optional: true - - '@rollup/rollup-android-arm64@4.21.0': - optional: true - - '@rollup/rollup-darwin-arm64@4.19.1': - optional: true - - '@rollup/rollup-darwin-arm64@4.21.0': - optional: true - - '@rollup/rollup-darwin-x64@4.19.1': - optional: true - - '@rollup/rollup-darwin-x64@4.21.0': - optional: true - - '@rollup/rollup-linux-arm-gnueabihf@4.19.1': - optional: true - - '@rollup/rollup-linux-arm-gnueabihf@4.21.0': - optional: true - - '@rollup/rollup-linux-arm-musleabihf@4.19.1': - optional: true - - '@rollup/rollup-linux-arm-musleabihf@4.21.0': - optional: true - - '@rollup/rollup-linux-arm64-gnu@4.19.1': - optional: true - - '@rollup/rollup-linux-arm64-gnu@4.21.0': - optional: true - - '@rollup/rollup-linux-arm64-musl@4.19.1': + '@rollup/rollup-android-arm-eabi@4.25.0': optional: true - '@rollup/rollup-linux-arm64-musl@4.21.0': + '@rollup/rollup-android-arm64@4.25.0': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.19.1': + '@rollup/rollup-darwin-arm64@4.25.0': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.21.0': + '@rollup/rollup-darwin-x64@4.25.0': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.19.1': + '@rollup/rollup-freebsd-arm64@4.25.0': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.21.0': + '@rollup/rollup-freebsd-x64@4.25.0': optional: true - '@rollup/rollup-linux-s390x-gnu@4.19.1': + '@rollup/rollup-linux-arm-gnueabihf@4.25.0': optional: true - '@rollup/rollup-linux-s390x-gnu@4.21.0': + '@rollup/rollup-linux-arm-musleabihf@4.25.0': optional: true - '@rollup/rollup-linux-x64-gnu@4.19.1': + '@rollup/rollup-linux-arm64-gnu@4.25.0': optional: true - '@rollup/rollup-linux-x64-gnu@4.21.0': + '@rollup/rollup-linux-arm64-musl@4.25.0': optional: true - '@rollup/rollup-linux-x64-musl@4.19.1': + '@rollup/rollup-linux-powerpc64le-gnu@4.25.0': optional: true - '@rollup/rollup-linux-x64-musl@4.21.0': + '@rollup/rollup-linux-riscv64-gnu@4.25.0': optional: true - '@rollup/rollup-win32-arm64-msvc@4.19.1': + '@rollup/rollup-linux-s390x-gnu@4.25.0': optional: true - '@rollup/rollup-win32-arm64-msvc@4.21.0': + '@rollup/rollup-linux-x64-gnu@4.25.0': optional: true - '@rollup/rollup-win32-ia32-msvc@4.19.1': + '@rollup/rollup-linux-x64-musl@4.25.0': optional: true - '@rollup/rollup-win32-ia32-msvc@4.21.0': + '@rollup/rollup-win32-arm64-msvc@4.25.0': optional: true - '@rollup/rollup-win32-x64-msvc@4.19.1': + '@rollup/rollup-win32-ia32-msvc@4.25.0': optional: true - '@rollup/rollup-win32-x64-msvc@4.21.0': + '@rollup/rollup-win32-x64-msvc@4.25.0': optional: true - '@smithy/abort-controller@3.1.5': + '@smithy/abort-controller@3.1.6': dependencies: - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@smithy/chunked-blob-reader-native@3.0.0': + '@smithy/chunked-blob-reader-native@3.0.1': dependencies: '@smithy/util-base64': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.1 - '@smithy/chunked-blob-reader@3.0.0': + '@smithy/chunked-blob-reader@4.0.0': dependencies: - tslib: 2.6.3 + tslib: 2.8.1 - '@smithy/config-resolver@3.0.9': + '@smithy/config-resolver@3.0.10': dependencies: - '@smithy/node-config-provider': 3.1.8 - '@smithy/types': 3.5.0 + '@smithy/node-config-provider': 3.1.9 + '@smithy/types': 3.6.0 '@smithy/util-config-provider': 3.0.0 - '@smithy/util-middleware': 3.0.7 - tslib: 2.6.3 + '@smithy/util-middleware': 3.0.8 + tslib: 2.8.1 - '@smithy/core@2.4.8': + '@smithy/core@2.5.1': dependencies: - '@smithy/middleware-endpoint': 3.1.4 - '@smithy/middleware-retry': 3.0.23 - '@smithy/middleware-serde': 3.0.7 - '@smithy/protocol-http': 4.1.4 - '@smithy/smithy-client': 3.4.0 - '@smithy/types': 3.5.0 + '@smithy/middleware-serde': 3.0.8 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 '@smithy/util-body-length-browser': 3.0.0 - '@smithy/util-middleware': 3.0.7 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-stream': 3.2.1 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.1 - '@smithy/credential-provider-imds@3.2.4': + '@smithy/credential-provider-imds@3.2.5': dependencies: - '@smithy/node-config-provider': 3.1.8 - '@smithy/property-provider': 3.1.7 - '@smithy/types': 3.5.0 - '@smithy/url-parser': 3.0.7 - tslib: 2.6.3 + '@smithy/node-config-provider': 3.1.9 + '@smithy/property-provider': 3.1.8 + '@smithy/types': 3.6.0 + '@smithy/url-parser': 3.0.8 + tslib: 2.8.1 - '@smithy/eventstream-codec@3.1.6': + '@smithy/eventstream-codec@3.1.7': dependencies: '@aws-crypto/crc32': 5.2.0 - '@smithy/types': 3.5.0 + '@smithy/types': 3.6.0 '@smithy/util-hex-encoding': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.1 - '@smithy/eventstream-serde-browser@3.0.10': + '@smithy/eventstream-serde-browser@3.0.11': dependencies: - '@smithy/eventstream-serde-universal': 3.0.9 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@smithy/eventstream-serde-universal': 3.0.10 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@smithy/eventstream-serde-config-resolver@3.0.7': + '@smithy/eventstream-serde-config-resolver@3.0.8': dependencies: - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@smithy/eventstream-serde-node@3.0.9': + '@smithy/eventstream-serde-node@3.0.10': dependencies: - '@smithy/eventstream-serde-universal': 3.0.9 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@smithy/eventstream-serde-universal': 3.0.10 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@smithy/eventstream-serde-universal@3.0.9': + '@smithy/eventstream-serde-universal@3.0.10': dependencies: - '@smithy/eventstream-codec': 3.1.6 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@smithy/eventstream-codec': 3.1.7 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@smithy/fetch-http-handler@3.2.9': + '@smithy/fetch-http-handler@4.0.0': dependencies: - '@smithy/protocol-http': 4.1.4 - '@smithy/querystring-builder': 3.0.7 - '@smithy/types': 3.5.0 + '@smithy/protocol-http': 4.1.5 + '@smithy/querystring-builder': 3.0.8 + '@smithy/types': 3.6.0 '@smithy/util-base64': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.1 - '@smithy/hash-blob-browser@3.1.6': + '@smithy/hash-blob-browser@3.1.7': dependencies: - '@smithy/chunked-blob-reader': 3.0.0 - '@smithy/chunked-blob-reader-native': 3.0.0 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@smithy/chunked-blob-reader': 4.0.0 + '@smithy/chunked-blob-reader-native': 3.0.1 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@smithy/hash-node@3.0.7': + '@smithy/hash-node@3.0.8': dependencies: - '@smithy/types': 3.5.0 + '@smithy/types': 3.6.0 '@smithy/util-buffer-from': 3.0.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.1 - '@smithy/hash-stream-node@3.1.6': + '@smithy/hash-stream-node@3.1.7': dependencies: - '@smithy/types': 3.5.0 + '@smithy/types': 3.6.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.1 - '@smithy/invalid-dependency@3.0.7': + '@smithy/invalid-dependency@3.0.8': dependencies: - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@smithy/types': 3.6.0 + tslib: 2.8.1 '@smithy/is-array-buffer@2.2.0': dependencies: - tslib: 2.6.3 + tslib: 2.8.1 '@smithy/is-array-buffer@3.0.0': dependencies: - tslib: 2.6.3 + tslib: 2.8.1 - '@smithy/md5-js@3.0.7': + '@smithy/md5-js@3.0.8': dependencies: - '@smithy/types': 3.5.0 + '@smithy/types': 3.6.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 - - '@smithy/middleware-content-length@3.0.9': - dependencies: - '@smithy/protocol-http': 4.1.4 - '@smithy/types': 3.5.0 - tslib: 2.6.3 - - '@smithy/middleware-endpoint@3.1.4': - dependencies: - '@smithy/middleware-serde': 3.0.7 - '@smithy/node-config-provider': 3.1.8 - '@smithy/shared-ini-file-loader': 3.1.8 - '@smithy/types': 3.5.0 - '@smithy/url-parser': 3.0.7 - '@smithy/util-middleware': 3.0.7 - tslib: 2.6.3 - - '@smithy/middleware-retry@3.0.23': - dependencies: - '@smithy/node-config-provider': 3.1.8 - '@smithy/protocol-http': 4.1.4 - '@smithy/service-error-classification': 3.0.7 - '@smithy/smithy-client': 3.4.0 - '@smithy/types': 3.5.0 - '@smithy/util-middleware': 3.0.7 - '@smithy/util-retry': 3.0.7 - tslib: 2.6.3 + tslib: 2.8.1 + + '@smithy/middleware-content-length@3.0.10': + dependencies: + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 + tslib: 2.8.1 + + '@smithy/middleware-endpoint@3.2.1': + dependencies: + '@smithy/core': 2.5.1 + '@smithy/middleware-serde': 3.0.8 + '@smithy/node-config-provider': 3.1.9 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 + '@smithy/url-parser': 3.0.8 + '@smithy/util-middleware': 3.0.8 + tslib: 2.8.1 + + '@smithy/middleware-retry@3.0.25': + dependencies: + '@smithy/node-config-provider': 3.1.9 + '@smithy/protocol-http': 4.1.5 + '@smithy/service-error-classification': 3.0.8 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + '@smithy/util-middleware': 3.0.8 + '@smithy/util-retry': 3.0.8 + tslib: 2.8.1 uuid: 9.0.1 - '@smithy/middleware-serde@3.0.7': + '@smithy/middleware-serde@3.0.8': dependencies: - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@smithy/middleware-stack@3.0.7': + '@smithy/middleware-stack@3.0.8': dependencies: - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@smithy/node-config-provider@3.1.8': + '@smithy/node-config-provider@3.1.9': dependencies: - '@smithy/property-provider': 3.1.7 - '@smithy/shared-ini-file-loader': 3.1.8 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@smithy/property-provider': 3.1.8 + '@smithy/shared-ini-file-loader': 3.1.9 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@smithy/node-http-handler@3.2.4': + '@smithy/node-http-handler@3.2.5': dependencies: - '@smithy/abort-controller': 3.1.5 - '@smithy/protocol-http': 4.1.4 - '@smithy/querystring-builder': 3.0.7 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@smithy/abort-controller': 3.1.6 + '@smithy/protocol-http': 4.1.5 + '@smithy/querystring-builder': 3.0.8 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@smithy/property-provider@3.1.7': + '@smithy/property-provider@3.1.8': dependencies: - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@smithy/protocol-http@4.1.4': + '@smithy/protocol-http@4.1.5': dependencies: - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@smithy/querystring-builder@3.0.7': + '@smithy/querystring-builder@3.0.8': dependencies: - '@smithy/types': 3.5.0 + '@smithy/types': 3.6.0 '@smithy/util-uri-escape': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.1 - '@smithy/querystring-parser@3.0.7': + '@smithy/querystring-parser@3.0.8': dependencies: - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@smithy/service-error-classification@3.0.7': + '@smithy/service-error-classification@3.0.8': dependencies: - '@smithy/types': 3.5.0 + '@smithy/types': 3.6.0 - '@smithy/shared-ini-file-loader@3.1.8': + '@smithy/shared-ini-file-loader@3.1.9': dependencies: - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@smithy/signature-v4@4.2.0': + '@smithy/signature-v4@4.2.1': dependencies: '@smithy/is-array-buffer': 3.0.0 - '@smithy/protocol-http': 4.1.4 - '@smithy/types': 3.5.0 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 '@smithy/util-hex-encoding': 3.0.0 - '@smithy/util-middleware': 3.0.7 + '@smithy/util-middleware': 3.0.8 '@smithy/util-uri-escape': 3.0.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.1 - '@smithy/smithy-client@3.4.0': + '@smithy/smithy-client@3.4.2': dependencies: - '@smithy/middleware-endpoint': 3.1.4 - '@smithy/middleware-stack': 3.0.7 - '@smithy/protocol-http': 4.1.4 - '@smithy/types': 3.5.0 - '@smithy/util-stream': 3.1.9 - tslib: 2.6.3 + '@smithy/core': 2.5.1 + '@smithy/middleware-endpoint': 3.2.1 + '@smithy/middleware-stack': 3.0.8 + '@smithy/protocol-http': 4.1.5 + '@smithy/types': 3.6.0 + '@smithy/util-stream': 3.2.1 + tslib: 2.8.1 - '@smithy/types@3.5.0': + '@smithy/types@3.6.0': dependencies: - tslib: 2.6.3 + tslib: 2.8.1 - '@smithy/url-parser@3.0.7': + '@smithy/url-parser@3.0.8': dependencies: - '@smithy/querystring-parser': 3.0.7 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@smithy/querystring-parser': 3.0.8 + '@smithy/types': 3.6.0 + tslib: 2.8.1 '@smithy/util-base64@3.0.0': dependencies: '@smithy/util-buffer-from': 3.0.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.1 '@smithy/util-body-length-browser@3.0.0': dependencies: - tslib: 2.6.3 + tslib: 2.8.1 '@smithy/util-body-length-node@3.0.0': dependencies: - tslib: 2.6.3 + tslib: 2.8.1 '@smithy/util-buffer-from@2.2.0': dependencies: '@smithy/is-array-buffer': 2.2.0 - tslib: 2.6.3 + tslib: 2.8.1 '@smithy/util-buffer-from@3.0.0': dependencies: '@smithy/is-array-buffer': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.1 '@smithy/util-config-provider@3.0.0': dependencies: - tslib: 2.6.3 + tslib: 2.8.1 - '@smithy/util-defaults-mode-browser@3.0.23': + '@smithy/util-defaults-mode-browser@3.0.25': dependencies: - '@smithy/property-provider': 3.1.7 - '@smithy/smithy-client': 3.4.0 - '@smithy/types': 3.5.0 + '@smithy/property-provider': 3.1.8 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 bowser: 2.11.0 - tslib: 2.6.3 + tslib: 2.8.1 - '@smithy/util-defaults-mode-node@3.0.23': + '@smithy/util-defaults-mode-node@3.0.25': dependencies: - '@smithy/config-resolver': 3.0.9 - '@smithy/credential-provider-imds': 3.2.4 - '@smithy/node-config-provider': 3.1.8 - '@smithy/property-provider': 3.1.7 - '@smithy/smithy-client': 3.4.0 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@smithy/config-resolver': 3.0.10 + '@smithy/credential-provider-imds': 3.2.5 + '@smithy/node-config-provider': 3.1.9 + '@smithy/property-provider': 3.1.8 + '@smithy/smithy-client': 3.4.2 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@smithy/util-endpoints@2.1.3': + '@smithy/util-endpoints@2.1.4': dependencies: - '@smithy/node-config-provider': 3.1.8 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@smithy/node-config-provider': 3.1.9 + '@smithy/types': 3.6.0 + tslib: 2.8.1 '@smithy/util-hex-encoding@3.0.0': dependencies: - tslib: 2.6.3 + tslib: 2.8.1 - '@smithy/util-middleware@3.0.7': + '@smithy/util-middleware@3.0.8': dependencies: - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@smithy/util-retry@3.0.7': + '@smithy/util-retry@3.0.8': dependencies: - '@smithy/service-error-classification': 3.0.7 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@smithy/service-error-classification': 3.0.8 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@smithy/util-stream@3.1.9': + '@smithy/util-stream@3.2.1': dependencies: - '@smithy/fetch-http-handler': 3.2.9 - '@smithy/node-http-handler': 3.2.4 - '@smithy/types': 3.5.0 + '@smithy/fetch-http-handler': 4.0.0 + '@smithy/node-http-handler': 3.2.5 + '@smithy/types': 3.6.0 '@smithy/util-base64': 3.0.0 '@smithy/util-buffer-from': 3.0.0 '@smithy/util-hex-encoding': 3.0.0 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.1 '@smithy/util-uri-escape@3.0.0': dependencies: - tslib: 2.6.3 + tslib: 2.8.1 '@smithy/util-utf8@2.3.0': dependencies: '@smithy/util-buffer-from': 2.2.0 - tslib: 2.6.3 + tslib: 2.8.1 '@smithy/util-utf8@3.0.0': dependencies: '@smithy/util-buffer-from': 3.0.0 - tslib: 2.6.3 + tslib: 2.8.1 - '@smithy/util-waiter@3.1.6': + '@smithy/util-waiter@3.1.7': dependencies: - '@smithy/abort-controller': 3.1.5 - '@smithy/types': 3.5.0 - tslib: 2.6.3 + '@smithy/abort-controller': 3.1.6 + '@smithy/types': 3.6.0 + tslib: 2.8.1 - '@types/estree@1.0.5': {} + '@stdlib/array-base-accessor-getter@0.2.2': {} - '@types/node@12.20.55': {} + '@stdlib/array-base-accessor-setter@0.2.2': {} - '@types/node@20.16.9': + '@stdlib/array-base-arraylike2object@0.2.1': dependencies: - undici-types: 6.19.8 + '@stdlib/array-base-accessor-getter': 0.2.2 + '@stdlib/array-base-accessor-setter': 0.2.2 + '@stdlib/array-base-assert-is-accessor-array': 0.2.2 + '@stdlib/array-base-getter': 0.2.2 + '@stdlib/array-base-setter': 0.2.2 + '@stdlib/array-dtype': 0.2.1 + transitivePeerDependencies: + - supports-color - '@types/node@22.0.0': - dependencies: - undici-types: 6.11.1 + '@stdlib/array-base-assert-is-accessor-array@0.2.2': {} - '@types/semver@7.5.8': {} + '@stdlib/array-base-assert-is-complex128array@0.2.2': {} - '@types/triple-beam@1.3.5': {} + '@stdlib/array-base-assert-is-complex64array@0.2.2': {} - '@vitejs/plugin-vue@5.1.3(vite@5.4.3(@types/node@22.0.0))(vue@3.4.38(typescript@5.5.4))': - dependencies: - vite: 5.4.3(@types/node@22.0.0) - vue: 3.4.38(typescript@5.5.4) + '@stdlib/array-base-filled@0.2.2': {} - '@vitest/expect@2.1.1': - dependencies: - '@vitest/spy': 2.1.1 - '@vitest/utils': 2.1.1 - chai: 5.1.1 - tinyrainbow: 1.2.0 + '@stdlib/array-base-getter@0.2.2': {} - '@vitest/expect@2.1.2': + '@stdlib/array-base-incrspace@0.2.2': dependencies: - '@vitest/spy': 2.1.2 - '@vitest/utils': 2.1.2 - chai: 5.1.1 - tinyrainbow: 1.2.0 + '@stdlib/math-base-special-ceil': 0.2.2 + transitivePeerDependencies: + - supports-color - '@vitest/mocker@2.1.1(@vitest/spy@2.1.1)(vite@5.4.3(@types/node@22.0.0))': - dependencies: - '@vitest/spy': 2.1.1 - estree-walker: 3.0.3 - magic-string: 0.30.11 - optionalDependencies: - vite: 5.4.3(@types/node@22.0.0) + '@stdlib/array-base-setter@0.2.2': {} + + '@stdlib/array-base-zeros@0.2.2': + dependencies: + '@stdlib/array-base-filled': 0.2.2 + + '@stdlib/array-complex128@0.2.1': + dependencies: + '@stdlib/array-base-accessor-getter': 0.2.2 + '@stdlib/array-base-assert-is-complex128array': 0.2.2 + '@stdlib/array-base-assert-is-complex64array': 0.2.2 + '@stdlib/array-base-getter': 0.2.2 + '@stdlib/array-float64': 0.2.2 + '@stdlib/assert-has-iterator-symbol-support': 0.2.2 + '@stdlib/assert-is-array': 0.2.2 + '@stdlib/assert-is-array-like-object': 0.2.2 + '@stdlib/assert-is-arraybuffer': 0.2.2 + '@stdlib/assert-is-collection': 0.2.2 + '@stdlib/assert-is-complex-like': 0.2.2 + '@stdlib/assert-is-function': 0.2.2 + '@stdlib/assert-is-nonnegative-integer': 0.2.2 + '@stdlib/assert-is-object': 0.2.2 + '@stdlib/assert-is-string': 0.2.2 + '@stdlib/complex-float64': 0.2.1 + '@stdlib/complex-imag': 0.2.1 + '@stdlib/complex-real': 0.2.1 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/math-base-assert-is-even': 0.2.3 + '@stdlib/math-base-assert-is-integer': 0.2.5 + '@stdlib/math-base-special-floor': 0.2.3 + '@stdlib/strided-base-reinterpret-complex128': 0.2.2 + '@stdlib/strided-base-reinterpret-complex64': 0.2.1 + '@stdlib/string-format': 0.2.2 + '@stdlib/symbol-iterator': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-accessor': 0.2.3 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color - '@vitest/mocker@2.1.2(@vitest/spy@2.1.2)(vite@5.4.3(@types/node@22.0.0))': - dependencies: - '@vitest/spy': 2.1.2 - estree-walker: 3.0.3 - magic-string: 0.30.11 - optionalDependencies: - vite: 5.4.3(@types/node@22.0.0) + '@stdlib/array-complex64@0.2.1': + dependencies: + '@stdlib/array-base-accessor-getter': 0.2.2 + '@stdlib/array-base-assert-is-complex128array': 0.2.2 + '@stdlib/array-base-assert-is-complex64array': 0.2.2 + '@stdlib/array-base-getter': 0.2.2 + '@stdlib/array-float32': 0.2.2 + '@stdlib/assert-has-iterator-symbol-support': 0.2.2 + '@stdlib/assert-is-array': 0.2.2 + '@stdlib/assert-is-array-like-object': 0.2.2 + '@stdlib/assert-is-arraybuffer': 0.2.2 + '@stdlib/assert-is-collection': 0.2.2 + '@stdlib/assert-is-complex-like': 0.2.2 + '@stdlib/assert-is-function': 0.2.2 + '@stdlib/assert-is-nonnegative-integer': 0.2.2 + '@stdlib/assert-is-object': 0.2.2 + '@stdlib/assert-is-string': 0.2.2 + '@stdlib/complex-float32': 0.2.1 + '@stdlib/complex-imagf': 0.2.1 + '@stdlib/complex-realf': 0.2.1 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/math-base-assert-is-even': 0.2.3 + '@stdlib/math-base-assert-is-integer': 0.2.5 + '@stdlib/math-base-special-floor': 0.2.3 + '@stdlib/strided-base-reinterpret-complex128': 0.2.2 + '@stdlib/strided-base-reinterpret-complex64': 0.2.1 + '@stdlib/string-format': 0.2.2 + '@stdlib/symbol-iterator': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-accessor': 0.2.3 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/array-dtype@0.2.1': + dependencies: + '@stdlib/array-complex128': 0.2.1 + '@stdlib/array-complex64': 0.2.1 + '@stdlib/array-float32': 0.2.2 + '@stdlib/array-float64': 0.2.2 + '@stdlib/array-int16': 0.2.2 + '@stdlib/array-int32': 0.2.2 + '@stdlib/array-int8': 0.2.2 + '@stdlib/array-uint16': 0.2.2 + '@stdlib/array-uint32': 0.2.2 + '@stdlib/array-uint8': 0.2.2 + '@stdlib/array-uint8c': 0.2.2 + '@stdlib/assert-is-array': 0.2.2 + '@stdlib/assert-is-buffer': 0.2.2 + '@stdlib/utils-constructor-name': 0.2.2 + transitivePeerDependencies: + - supports-color - '@vitest/pretty-format@2.1.1': + '@stdlib/array-float32@0.2.2': dependencies: - tinyrainbow: 1.2.0 + '@stdlib/assert-has-float32array-support': 0.2.2 - '@vitest/pretty-format@2.1.2': + '@stdlib/array-float64@0.2.2': dependencies: - tinyrainbow: 1.2.0 + '@stdlib/assert-has-float64array-support': 0.2.2 - '@vitest/runner@2.1.1': + '@stdlib/array-int16@0.2.2': dependencies: - '@vitest/utils': 2.1.1 - pathe: 1.1.2 + '@stdlib/assert-has-int16array-support': 0.2.2 - '@vitest/runner@2.1.2': + '@stdlib/array-int32@0.2.2': dependencies: - '@vitest/utils': 2.1.2 - pathe: 1.1.2 + '@stdlib/assert-has-int32array-support': 0.2.2 - '@vitest/snapshot@2.1.1': + '@stdlib/array-int8@0.2.2': dependencies: - '@vitest/pretty-format': 2.1.1 - magic-string: 0.30.11 - pathe: 1.1.2 + '@stdlib/assert-has-int8array-support': 0.2.2 - '@vitest/snapshot@2.1.2': + '@stdlib/array-uint16@0.2.2': dependencies: - '@vitest/pretty-format': 2.1.2 - magic-string: 0.30.11 - pathe: 1.1.2 + '@stdlib/assert-has-uint16array-support': 0.2.2 - '@vitest/spy@2.1.1': + '@stdlib/array-uint32@0.2.2': dependencies: - tinyspy: 3.0.0 + '@stdlib/assert-has-uint32array-support': 0.2.2 - '@vitest/spy@2.1.2': + '@stdlib/array-uint8@0.2.2': dependencies: - tinyspy: 3.0.0 + '@stdlib/assert-has-uint8array-support': 0.2.2 - '@vitest/utils@2.1.1': + '@stdlib/array-uint8c@0.2.2': dependencies: - '@vitest/pretty-format': 2.1.1 - loupe: 3.1.1 - tinyrainbow: 1.2.0 + '@stdlib/assert-has-uint8clampedarray-support': 0.2.2 - '@vitest/utils@2.1.2': + '@stdlib/assert-contains@0.2.2': dependencies: - '@vitest/pretty-format': 2.1.2 - loupe: 3.1.1 + '@stdlib/assert-is-collection': 0.2.2 + '@stdlib/assert-is-integer': 0.2.2 + '@stdlib/assert-is-nan': 0.2.2 + '@stdlib/assert-is-string': 0.2.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/string-format': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/assert-has-float32array-support@0.2.2': + dependencies: + '@stdlib/assert-is-float32array': 0.2.2 + '@stdlib/constants-float64-pinf': 0.2.2 + + '@stdlib/assert-has-float64array-support@0.2.2': + dependencies: + '@stdlib/assert-is-float64array': 0.2.2 + + '@stdlib/assert-has-generator-support@0.2.2': + dependencies: + '@stdlib/utils-eval': 0.2.2 + + '@stdlib/assert-has-int16array-support@0.2.2': + dependencies: + '@stdlib/assert-is-int16array': 0.2.2 + '@stdlib/constants-int16-max': 0.2.2 + '@stdlib/constants-int16-min': 0.2.2 + + '@stdlib/assert-has-int32array-support@0.2.2': + dependencies: + '@stdlib/assert-is-int32array': 0.2.2 + '@stdlib/constants-int32-max': 0.3.0 + '@stdlib/constants-int32-min': 0.2.2 + + '@stdlib/assert-has-int8array-support@0.2.2': + dependencies: + '@stdlib/assert-is-int8array': 0.2.2 + '@stdlib/constants-int8-max': 0.2.2 + '@stdlib/constants-int8-min': 0.2.2 + + '@stdlib/assert-has-iterator-symbol-support@0.2.2': + dependencies: + '@stdlib/assert-has-own-property': 0.2.2 + '@stdlib/symbol-ctor': 0.2.2 + + '@stdlib/assert-has-own-property@0.2.2': {} + + '@stdlib/assert-has-symbol-support@0.2.2': {} + + '@stdlib/assert-has-tostringtag-support@0.2.2': + dependencies: + '@stdlib/assert-has-symbol-support': 0.2.2 + + '@stdlib/assert-has-uint16array-support@0.2.2': + dependencies: + '@stdlib/assert-is-uint16array': 0.2.2 + '@stdlib/constants-uint16-max': 0.2.2 + + '@stdlib/assert-has-uint32array-support@0.2.2': + dependencies: + '@stdlib/assert-is-uint32array': 0.2.2 + '@stdlib/constants-uint32-max': 0.2.2 + + '@stdlib/assert-has-uint8array-support@0.2.2': + dependencies: + '@stdlib/assert-is-uint8array': 0.2.2 + '@stdlib/constants-uint8-max': 0.2.2 + + '@stdlib/assert-has-uint8clampedarray-support@0.2.2': + dependencies: + '@stdlib/assert-is-uint8clampedarray': 0.2.2 + + '@stdlib/assert-is-arguments@0.2.2': + dependencies: + '@stdlib/assert-has-own-property': 0.2.2 + '@stdlib/assert-is-array': 0.2.2 + '@stdlib/assert-is-enumerable-property': 0.2.2 + '@stdlib/constants-uint32-max': 0.2.2 + '@stdlib/math-base-assert-is-integer': 0.2.5 + '@stdlib/utils-native-class': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/assert-is-array-like-object@0.2.2': + dependencies: + '@stdlib/constants-array-max-array-length': 0.2.2 + '@stdlib/math-base-assert-is-integer': 0.2.5 + transitivePeerDependencies: + - supports-color + + '@stdlib/assert-is-array-like@0.2.2': + dependencies: + '@stdlib/constants-array-max-array-length': 0.2.2 + '@stdlib/math-base-assert-is-integer': 0.2.5 + transitivePeerDependencies: + - supports-color + + '@stdlib/assert-is-array@0.2.2': + dependencies: + '@stdlib/utils-native-class': 0.2.2 + + '@stdlib/assert-is-arraybuffer@0.2.2': + dependencies: + '@stdlib/utils-native-class': 0.2.2 + + '@stdlib/assert-is-big-endian@0.2.2': + dependencies: + '@stdlib/array-uint16': 0.2.2 + '@stdlib/array-uint8': 0.2.2 + + '@stdlib/assert-is-boolean@0.2.2': + dependencies: + '@stdlib/assert-has-tostringtag-support': 0.2.2 + '@stdlib/boolean-ctor': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + '@stdlib/utils-native-class': 0.2.2 + + '@stdlib/assert-is-buffer@0.2.2': + dependencies: + '@stdlib/assert-is-object-like': 0.2.2 + + '@stdlib/assert-is-collection@0.2.2': + dependencies: + '@stdlib/constants-array-max-typed-array-length': 0.2.2 + '@stdlib/math-base-assert-is-integer': 0.2.5 + transitivePeerDependencies: + - supports-color + + '@stdlib/assert-is-complex-like@0.2.2': + dependencies: + '@stdlib/complex-float32-ctor': 0.0.2 + '@stdlib/complex-float64-ctor': 0.0.2 + + '@stdlib/assert-is-enumerable-property@0.2.2': + dependencies: + '@stdlib/assert-is-integer': 0.2.2 + '@stdlib/assert-is-nan': 0.2.2 + '@stdlib/assert-is-string': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/assert-is-float32array@0.2.2': + dependencies: + '@stdlib/utils-native-class': 0.2.2 + + '@stdlib/assert-is-float64array@0.2.2': + dependencies: + '@stdlib/utils-native-class': 0.2.2 + + '@stdlib/assert-is-function@0.2.2': + dependencies: + '@stdlib/utils-type-of': 0.2.2 + + '@stdlib/assert-is-int16array@0.2.2': + dependencies: + '@stdlib/utils-native-class': 0.2.2 + + '@stdlib/assert-is-int32array@0.2.2': + dependencies: + '@stdlib/utils-native-class': 0.2.2 + + '@stdlib/assert-is-int8array@0.2.2': + dependencies: + '@stdlib/utils-native-class': 0.2.2 + + '@stdlib/assert-is-integer@0.2.2': + dependencies: + '@stdlib/assert-is-number': 0.2.2 + '@stdlib/constants-float64-ninf': 0.2.2 + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/math-base-assert-is-integer': 0.2.5 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/assert-is-little-endian@0.2.2': + dependencies: + '@stdlib/array-uint16': 0.2.2 + '@stdlib/array-uint8': 0.2.2 + + '@stdlib/assert-is-nan@0.2.2': + dependencies: + '@stdlib/assert-is-number': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/assert-is-nonnegative-integer@0.2.2': + dependencies: + '@stdlib/assert-is-integer': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/assert-is-number-array@0.2.2': + dependencies: + '@stdlib/assert-is-number': 0.2.2 + '@stdlib/assert-tools-array-like-function': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/assert-is-number@0.2.2': + dependencies: + '@stdlib/assert-has-tostringtag-support': 0.2.2 + '@stdlib/number-ctor': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + '@stdlib/utils-native-class': 0.2.2 + + '@stdlib/assert-is-object-like@0.2.2': + dependencies: + '@stdlib/assert-tools-array-function': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + + '@stdlib/assert-is-object@0.2.2': + dependencies: + '@stdlib/assert-is-array': 0.2.2 + + '@stdlib/assert-is-plain-object@0.2.2': + dependencies: + '@stdlib/assert-has-own-property': 0.2.2 + '@stdlib/assert-is-function': 0.2.2 + '@stdlib/assert-is-object': 0.2.2 + '@stdlib/utils-get-prototype-of': 0.2.2 + '@stdlib/utils-native-class': 0.2.2 + + '@stdlib/assert-is-positive-integer@0.2.2': + dependencies: + '@stdlib/assert-is-integer': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/assert-is-regexp@0.2.2': + dependencies: + '@stdlib/assert-has-tostringtag-support': 0.2.2 + '@stdlib/utils-native-class': 0.2.2 + + '@stdlib/assert-is-string@0.2.2': + dependencies: + '@stdlib/assert-has-tostringtag-support': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + '@stdlib/utils-native-class': 0.2.2 + + '@stdlib/assert-is-typed-array-like@0.2.2': + dependencies: + '@stdlib/assert-is-nonnegative-integer': 0.2.2 + '@stdlib/constants-array-max-typed-array-length': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/assert-is-uint16array@0.2.2': + dependencies: + '@stdlib/utils-native-class': 0.2.2 + + '@stdlib/assert-is-uint32array@0.2.2': + dependencies: + '@stdlib/utils-native-class': 0.2.2 + + '@stdlib/assert-is-uint8array@0.2.2': + dependencies: + '@stdlib/utils-native-class': 0.2.2 + + '@stdlib/assert-is-uint8clampedarray@0.2.2': + dependencies: + '@stdlib/utils-native-class': 0.2.2 + + '@stdlib/assert-tools-array-function@0.2.2': + dependencies: + '@stdlib/assert-is-array': 0.2.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/string-format': 0.2.2 + + '@stdlib/assert-tools-array-like-function@0.2.2': + dependencies: + '@stdlib/assert-is-array-like': 0.2.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/string-format': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/blas-base-gcopy@0.2.1': + dependencies: + '@stdlib/array-base-arraylike2object': 0.2.1 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/blas-ext-base-gapxsumpw@0.2.2': + dependencies: + '@stdlib/math-base-special-floor': 0.2.3 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/blas-ext-base-gsumpw@0.2.2': + dependencies: + '@stdlib/math-base-special-floor': 0.2.3 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/boolean-ctor@0.2.2': {} + + '@stdlib/complex-float32-ctor@0.0.1': + dependencies: + '@stdlib/assert-is-number': 0.2.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/number-float64-base-to-float32': 0.2.2 + '@stdlib/string-format': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + '@stdlib/utils-define-property': 0.2.4 + + '@stdlib/complex-float32-ctor@0.0.2': + dependencies: + '@stdlib/assert-is-number': 0.2.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/number-float64-base-to-float32': 0.2.2 + '@stdlib/string-format': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + '@stdlib/utils-define-property': 0.2.4 + + '@stdlib/complex-float32-reim@0.1.2': + dependencies: + '@stdlib/array-float32': 0.2.2 + '@stdlib/complex-float32-ctor': 0.0.2 + + '@stdlib/complex-float32@0.2.1': + dependencies: + '@stdlib/assert-is-number': 0.2.2 + '@stdlib/number-float64-base-to-float32': 0.2.2 + '@stdlib/string-format': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + '@stdlib/utils-define-property': 0.2.4 + + '@stdlib/complex-float64-ctor@0.0.2': + dependencies: + '@stdlib/assert-is-number': 0.2.2 + '@stdlib/complex-float32-ctor': 0.0.1 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/string-format': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + '@stdlib/utils-define-property': 0.2.4 + + '@stdlib/complex-float64-ctor@0.0.3': + dependencies: + '@stdlib/assert-is-number': 0.2.2 + '@stdlib/complex-float32-ctor': 0.0.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/string-format': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + '@stdlib/utils-define-property': 0.2.4 + + '@stdlib/complex-float64-reim@0.1.2': + dependencies: + '@stdlib/array-float64': 0.2.2 + '@stdlib/complex-float64-ctor': 0.0.3 + + '@stdlib/complex-float64@0.2.1': + dependencies: + '@stdlib/assert-is-number': 0.2.2 + '@stdlib/complex-float32': 0.2.1 + '@stdlib/string-format': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + '@stdlib/utils-define-property': 0.2.4 + + '@stdlib/complex-imag@0.2.1': + dependencies: + '@stdlib/complex-float64': 0.2.1 + + '@stdlib/complex-imagf@0.2.1': + dependencies: + '@stdlib/complex-float32': 0.2.1 + + '@stdlib/complex-real@0.2.1': + dependencies: + '@stdlib/complex-float64': 0.2.1 + + '@stdlib/complex-realf@0.2.1': + dependencies: + '@stdlib/complex-float32': 0.2.1 + + '@stdlib/complex-reim@0.2.1': + dependencies: + '@stdlib/array-float64': 0.2.2 + '@stdlib/complex-float64': 0.2.1 + + '@stdlib/complex-reimf@0.2.1': + dependencies: + '@stdlib/array-float32': 0.2.2 + '@stdlib/complex-float32': 0.2.1 + + '@stdlib/constants-array-max-array-length@0.2.2': {} + + '@stdlib/constants-array-max-typed-array-length@0.2.2': {} + + '@stdlib/constants-float32-max@0.2.2': {} + + '@stdlib/constants-float32-smallest-normal@0.2.2': {} + + '@stdlib/constants-float64-e@0.2.2': {} + + '@stdlib/constants-float64-eps@0.2.2': {} + + '@stdlib/constants-float64-eulergamma@0.2.2': {} + + '@stdlib/constants-float64-exponent-bias@0.2.2': {} + + '@stdlib/constants-float64-fourth-pi@0.2.2': {} + + '@stdlib/constants-float64-gamma-lanczos-g@0.2.2': {} + + '@stdlib/constants-float64-half-ln-two@0.2.2': {} + + '@stdlib/constants-float64-half-pi@0.2.2': {} + + '@stdlib/constants-float64-high-word-abs-mask@0.2.2': {} + + '@stdlib/constants-float64-high-word-exponent-mask@0.2.2': {} + + '@stdlib/constants-float64-high-word-sign-mask@0.2.1': {} + + '@stdlib/constants-float64-high-word-significand-mask@0.2.2': {} + + '@stdlib/constants-float64-ln-sqrt-two-pi@0.2.2': {} + + '@stdlib/constants-float64-ln-two@0.2.2': {} + + '@stdlib/constants-float64-max-base10-exponent@0.2.2': {} + + '@stdlib/constants-float64-max-base2-exponent-subnormal@0.2.1': {} + + '@stdlib/constants-float64-max-base2-exponent@0.2.2': {} + + '@stdlib/constants-float64-max-ln@0.2.2': {} + + '@stdlib/constants-float64-max-safe-integer@0.2.2': {} + + '@stdlib/constants-float64-max-safe-nth-factorial@0.1.0': {} + + '@stdlib/constants-float64-max@0.2.2': {} + + '@stdlib/constants-float64-min-base10-exponent-subnormal@0.2.1': {} + + '@stdlib/constants-float64-min-base10-exponent@0.2.2': {} + + '@stdlib/constants-float64-min-base2-exponent-subnormal@0.2.1': {} + + '@stdlib/constants-float64-min-base2-exponent@0.2.2': {} + + '@stdlib/constants-float64-min-ln@0.2.2': {} + + '@stdlib/constants-float64-ninf@0.2.2': + dependencies: + '@stdlib/number-ctor': 0.2.2 + + '@stdlib/constants-float64-pi@0.2.2': {} + + '@stdlib/constants-float64-pinf@0.2.2': {} + + '@stdlib/constants-float64-smallest-normal@0.2.2': {} + + '@stdlib/constants-float64-smallest-subnormal@0.2.2': {} + + '@stdlib/constants-float64-sqrt-eps@0.2.2': {} + + '@stdlib/constants-float64-sqrt-two-pi@0.2.2': {} + + '@stdlib/constants-float64-sqrt-two@0.2.2': {} + + '@stdlib/constants-float64-two-pi@0.2.2': {} + + '@stdlib/constants-int16-max@0.2.2': {} + + '@stdlib/constants-int16-min@0.2.2': {} + + '@stdlib/constants-int32-max@0.2.1': {} + + '@stdlib/constants-int32-max@0.3.0': {} + + '@stdlib/constants-int32-min@0.2.2': {} + + '@stdlib/constants-int8-max@0.2.2': {} + + '@stdlib/constants-int8-min@0.2.2': {} + + '@stdlib/constants-uint16-max@0.2.2': {} + + '@stdlib/constants-uint32-max@0.2.2': {} + + '@stdlib/constants-uint8-max@0.2.2': {} + + '@stdlib/error-tools-fmtprodmsg@0.2.2': {} + + '@stdlib/fs-exists@0.2.2': + dependencies: + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + + '@stdlib/fs-resolve-parent-path@0.2.2': + dependencies: + '@stdlib/assert-has-own-property': 0.2.2 + '@stdlib/assert-is-function': 0.2.2 + '@stdlib/assert-is-plain-object': 0.2.2 + '@stdlib/assert-is-string': 0.2.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/fs-exists': 0.2.2 + '@stdlib/process-cwd': 0.2.2 + '@stdlib/string-format': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + + '@stdlib/function-ctor@0.2.2': {} + + '@stdlib/math-base-assert-is-even@0.2.3': + dependencies: + '@stdlib/math-base-assert-is-integer': 0.2.5 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-assert-is-finite@0.2.2': + dependencies: + '@stdlib/constants-float64-ninf': 0.2.2 + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-assert-is-infinite@0.2.2': + dependencies: + '@stdlib/constants-float64-ninf': 0.2.2 + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-assert-is-integer@0.2.5': + dependencies: + '@stdlib/math-base-special-floor': 0.2.3 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-assert-is-nan@0.2.2': + dependencies: + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-assert-is-negative-zero@0.2.2': + dependencies: + '@stdlib/constants-float64-ninf': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-assert-is-odd@0.2.1': + dependencies: + '@stdlib/math-base-assert-is-even': 0.2.3 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-assert-is-odd@0.3.0': + dependencies: + '@stdlib/math-base-assert-is-even': 0.2.3 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-assert-is-positive-integer@0.3.0': + dependencies: + '@stdlib/math-base-special-floor': 0.2.3 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-assert-is-positive-zero@0.2.2': + dependencies: + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-napi-binary@0.2.1': + dependencies: + '@stdlib/complex-float32': 0.2.1 + '@stdlib/complex-float64': 0.2.1 + '@stdlib/complex-reim': 0.2.1 + '@stdlib/complex-reimf': 0.2.1 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-napi-binary@0.3.0': + dependencies: + '@stdlib/complex-float32-ctor': 0.0.2 + '@stdlib/complex-float32-reim': 0.1.2 + '@stdlib/complex-float64-ctor': 0.0.3 + '@stdlib/complex-float64-reim': 0.1.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-napi-unary@0.2.3': + dependencies: + '@stdlib/complex-float32-ctor': 0.0.2 + '@stdlib/complex-float32-reim': 0.1.2 + '@stdlib/complex-float64-ctor': 0.0.3 + '@stdlib/complex-float64-reim': 0.1.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-abs@0.2.2': + dependencies: + '@stdlib/constants-float64-high-word-abs-mask': 0.2.2 + '@stdlib/math-base-napi-unary': 0.2.3 + '@stdlib/number-float64-base-to-words': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-acos@0.2.3': + dependencies: + '@stdlib/constants-float64-fourth-pi': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-napi-unary': 0.2.3 + '@stdlib/math-base-special-asin': 0.2.3 + '@stdlib/math-base-special-sqrt': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-asin@0.2.3': + dependencies: + '@stdlib/constants-float64-fourth-pi': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-napi-unary': 0.2.3 + '@stdlib/math-base-special-sqrt': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-beta@0.3.0': + dependencies: + '@stdlib/constants-float64-e': 0.2.2 + '@stdlib/constants-float64-eps': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-napi-binary': 0.3.0 + '@stdlib/math-base-special-abs': 0.2.2 + '@stdlib/math-base-special-exp': 0.2.4 + '@stdlib/math-base-special-log1p': 0.2.3 + '@stdlib/math-base-special-pow': 0.3.0 + '@stdlib/math-base-special-sqrt': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-betainc@0.2.2': + dependencies: + '@stdlib/math-base-special-kernel-betainc': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-binomcoef@0.2.3': + dependencies: + '@stdlib/constants-float64-max-safe-integer': 0.2.2 + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/math-base-assert-is-integer': 0.2.5 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-assert-is-odd': 0.3.0 + '@stdlib/math-base-special-floor': 0.2.3 + '@stdlib/math-base-special-gcd': 0.2.1 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-ceil@0.2.2': + dependencies: + '@stdlib/math-base-napi-unary': 0.2.3 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-copysign@0.2.2': + dependencies: + '@stdlib/constants-float64-high-word-abs-mask': 0.2.2 + '@stdlib/constants-float64-high-word-sign-mask': 0.2.1 + '@stdlib/math-base-napi-binary': 0.3.0 + '@stdlib/number-float64-base-from-words': 0.2.2 + '@stdlib/number-float64-base-get-high-word': 0.2.2 + '@stdlib/number-float64-base-to-words': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-cos@0.2.1': + dependencies: + '@stdlib/math-base-special-kernel-cos': 0.2.3 + '@stdlib/math-base-special-kernel-sin': 0.2.3 + '@stdlib/math-base-special-rempio2': 0.2.1 + '@stdlib/number-float64-base-get-high-word': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-cos@0.3.0': + dependencies: + '@stdlib/constants-float64-high-word-abs-mask': 0.2.2 + '@stdlib/constants-float64-high-word-exponent-mask': 0.2.2 + '@stdlib/math-base-napi-unary': 0.2.3 + '@stdlib/math-base-special-kernel-cos': 0.2.3 + '@stdlib/math-base-special-kernel-sin': 0.2.3 + '@stdlib/math-base-special-rempio2': 0.2.1 + '@stdlib/number-float64-base-get-high-word': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-erfc@0.2.4': + dependencies: + '@stdlib/constants-float64-ninf': 0.2.2 + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-napi-unary': 0.2.3 + '@stdlib/math-base-special-exp': 0.2.4 + '@stdlib/number-float64-base-set-low-word': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-erfcinv@0.2.3': + dependencies: + '@stdlib/constants-float64-ninf': 0.2.2 + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-napi-unary': 0.2.3 + '@stdlib/math-base-special-ln': 0.2.4 + '@stdlib/math-base-special-sqrt': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-exp@0.2.4': + dependencies: + '@stdlib/constants-float64-ninf': 0.2.2 + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-napi-unary': 0.2.3 + '@stdlib/math-base-special-ldexp': 0.2.3 + '@stdlib/math-base-special-trunc': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-expm1@0.2.3': + dependencies: + '@stdlib/constants-float64-exponent-bias': 0.2.2 + '@stdlib/constants-float64-half-ln-two': 0.2.2 + '@stdlib/constants-float64-ninf': 0.2.2 + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-napi-unary': 0.2.3 + '@stdlib/number-float64-base-from-words': 0.2.2 + '@stdlib/number-float64-base-get-high-word': 0.2.2 + '@stdlib/number-float64-base-set-high-word': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-factorial@0.2.1': + dependencies: + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/math-base-assert-is-integer': 0.2.5 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-special-gamma': 0.2.1 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-factorial@0.3.0': + dependencies: + '@stdlib/constants-float64-max-safe-nth-factorial': 0.1.0 + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/math-base-assert-is-integer': 0.2.5 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-napi-unary': 0.2.3 + '@stdlib/math-base-special-gamma': 0.2.1 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-floor@0.2.3': + dependencies: + '@stdlib/math-base-napi-unary': 0.2.3 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-fmod@0.1.0': + dependencies: + '@stdlib/constants-float64-exponent-bias': 0.2.2 + '@stdlib/constants-float64-high-word-abs-mask': 0.2.2 + '@stdlib/constants-float64-high-word-exponent-mask': 0.2.2 + '@stdlib/constants-float64-high-word-sign-mask': 0.2.1 + '@stdlib/constants-float64-high-word-significand-mask': 0.2.2 + '@stdlib/constants-float64-min-base2-exponent': 0.2.2 + '@stdlib/math-base-napi-binary': 0.3.0 + '@stdlib/number-float64-base-from-words': 0.2.2 + '@stdlib/number-float64-base-to-words': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-gamma-delta-ratio@0.2.2': + dependencies: + '@stdlib/constants-float64-e': 0.2.2 + '@stdlib/constants-float64-eps': 0.2.2 + '@stdlib/constants-float64-gamma-lanczos-g': 0.2.2 + '@stdlib/math-base-special-abs': 0.2.2 + '@stdlib/math-base-special-exp': 0.2.4 + '@stdlib/math-base-special-factorial': 0.2.1 + '@stdlib/math-base-special-floor': 0.2.3 + '@stdlib/math-base-special-gamma': 0.2.1 + '@stdlib/math-base-special-gamma-lanczos-sum': 0.3.0 + '@stdlib/math-base-special-log1p': 0.2.3 + '@stdlib/math-base-special-pow': 0.3.0 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-gamma-lanczos-sum-expg-scaled@0.3.0': + dependencies: + '@stdlib/math-base-napi-unary': 0.2.3 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-gamma-lanczos-sum@0.3.0': + dependencies: + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/math-base-napi-unary': 0.2.3 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-gamma1pm1@0.2.2': + dependencies: + '@stdlib/constants-float64-eps': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-special-expm1': 0.2.3 + '@stdlib/math-base-special-gamma': 0.2.1 + '@stdlib/math-base-special-ln': 0.2.4 + '@stdlib/math-base-special-log1p': 0.2.3 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-gamma@0.2.1': + dependencies: + '@stdlib/constants-float64-eulergamma': 0.2.2 + '@stdlib/constants-float64-ninf': 0.2.2 + '@stdlib/constants-float64-pi': 0.2.2 + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/constants-float64-sqrt-two-pi': 0.2.2 + '@stdlib/math-base-assert-is-integer': 0.2.5 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-assert-is-negative-zero': 0.2.2 + '@stdlib/math-base-special-abs': 0.2.2 + '@stdlib/math-base-special-exp': 0.2.4 + '@stdlib/math-base-special-floor': 0.2.3 + '@stdlib/math-base-special-pow': 0.2.1 + '@stdlib/math-base-special-sin': 0.2.1 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-gamma@0.3.0': + dependencies: + '@stdlib/constants-float64-eulergamma': 0.2.2 + '@stdlib/constants-float64-ninf': 0.2.2 + '@stdlib/constants-float64-pi': 0.2.2 + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/constants-float64-sqrt-two-pi': 0.2.2 + '@stdlib/math-base-assert-is-integer': 0.2.5 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-assert-is-negative-zero': 0.2.2 + '@stdlib/math-base-napi-unary': 0.2.3 + '@stdlib/math-base-special-abs': 0.2.2 + '@stdlib/math-base-special-exp': 0.2.4 + '@stdlib/math-base-special-floor': 0.2.3 + '@stdlib/math-base-special-pow': 0.3.0 + '@stdlib/math-base-special-sin': 0.2.1 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-gammainc@0.2.2': + dependencies: + '@stdlib/constants-float64-e': 0.2.2 + '@stdlib/constants-float64-gamma-lanczos-g': 0.2.2 + '@stdlib/constants-float64-max': 0.2.2 + '@stdlib/constants-float64-max-ln': 0.2.2 + '@stdlib/constants-float64-min-ln': 0.2.2 + '@stdlib/constants-float64-pi': 0.2.2 + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/constants-float64-sqrt-eps': 0.2.2 + '@stdlib/constants-float64-sqrt-two-pi': 0.2.2 + '@stdlib/constants-float64-two-pi': 0.2.2 + '@stdlib/math-base-special-abs': 0.2.2 + '@stdlib/math-base-special-erfc': 0.2.4 + '@stdlib/math-base-special-exp': 0.2.4 + '@stdlib/math-base-special-floor': 0.2.3 + '@stdlib/math-base-special-gamma': 0.3.0 + '@stdlib/math-base-special-gamma-lanczos-sum-expg-scaled': 0.3.0 + '@stdlib/math-base-special-gamma1pm1': 0.2.2 + '@stdlib/math-base-special-gammaln': 0.2.2 + '@stdlib/math-base-special-ln': 0.2.4 + '@stdlib/math-base-special-log1p': 0.2.3 + '@stdlib/math-base-special-log1pmx': 0.2.3 + '@stdlib/math-base-special-max': 0.3.0 + '@stdlib/math-base-special-min': 0.2.3 + '@stdlib/math-base-special-pow': 0.3.0 + '@stdlib/math-base-special-powm1': 0.3.1 + '@stdlib/math-base-special-sqrt': 0.2.2 + '@stdlib/math-base-tools-continued-fraction': 0.2.2 + '@stdlib/math-base-tools-evalpoly': 0.2.2 + '@stdlib/math-base-tools-sum-series': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-gammaincinv@0.2.2': + dependencies: + '@stdlib/constants-float32-max': 0.2.2 + '@stdlib/constants-float32-smallest-normal': 0.2.2 + '@stdlib/constants-float64-ln-sqrt-two-pi': 0.2.2 + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/constants-float64-sqrt-two-pi': 0.2.2 + '@stdlib/constants-float64-two-pi': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-special-abs': 0.2.2 + '@stdlib/math-base-special-erfcinv': 0.2.3 + '@stdlib/math-base-special-exp': 0.2.4 + '@stdlib/math-base-special-gamma': 0.3.0 + '@stdlib/math-base-special-gammainc': 0.2.2 + '@stdlib/math-base-special-gammaln': 0.2.2 + '@stdlib/math-base-special-ln': 0.2.4 + '@stdlib/math-base-special-min': 0.2.3 + '@stdlib/math-base-special-pow': 0.3.0 + '@stdlib/math-base-special-sqrt': 0.2.2 + '@stdlib/math-base-tools-evalpoly': 0.2.2 + debug: 2.6.9 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-gammaln@0.2.2': + dependencies: + '@stdlib/constants-float64-pi': 0.2.2 + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/math-base-assert-is-infinite': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-special-abs': 0.2.2 + '@stdlib/math-base-special-ln': 0.2.4 + '@stdlib/math-base-special-sinpi': 0.2.1 + '@stdlib/math-base-special-trunc': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-gcd@0.2.1': + dependencies: + '@stdlib/constants-float64-ninf': 0.2.2 + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/constants-int32-max': 0.2.1 + '@stdlib/math-base-assert-is-integer': 0.2.5 + '@stdlib/math-base-assert-is-nan': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-kernel-betainc@0.2.2': + dependencies: + '@stdlib/constants-float64-e': 0.2.2 + '@stdlib/constants-float64-eps': 0.2.2 + '@stdlib/constants-float64-gamma-lanczos-g': 0.2.2 + '@stdlib/constants-float64-half-pi': 0.2.2 + '@stdlib/constants-float64-max': 0.2.2 + '@stdlib/constants-float64-max-ln': 0.2.2 + '@stdlib/constants-float64-min-ln': 0.2.2 + '@stdlib/constants-float64-pi': 0.2.2 + '@stdlib/constants-float64-smallest-normal': 0.2.2 + '@stdlib/constants-int32-max': 0.3.0 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-special-abs': 0.2.2 + '@stdlib/math-base-special-asin': 0.2.3 + '@stdlib/math-base-special-beta': 0.3.0 + '@stdlib/math-base-special-binomcoef': 0.2.3 + '@stdlib/math-base-special-exp': 0.2.4 + '@stdlib/math-base-special-expm1': 0.2.3 + '@stdlib/math-base-special-factorial': 0.3.0 + '@stdlib/math-base-special-floor': 0.2.3 + '@stdlib/math-base-special-gamma': 0.3.0 + '@stdlib/math-base-special-gamma-delta-ratio': 0.2.2 + '@stdlib/math-base-special-gamma-lanczos-sum-expg-scaled': 0.3.0 + '@stdlib/math-base-special-gammainc': 0.2.2 + '@stdlib/math-base-special-gammaln': 0.2.2 + '@stdlib/math-base-special-ln': 0.2.4 + '@stdlib/math-base-special-log1p': 0.2.3 + '@stdlib/math-base-special-max': 0.3.0 + '@stdlib/math-base-special-maxabs': 0.3.0 + '@stdlib/math-base-special-min': 0.2.3 + '@stdlib/math-base-special-minabs': 0.2.3 + '@stdlib/math-base-special-pow': 0.3.0 + '@stdlib/math-base-special-sqrt': 0.2.2 + '@stdlib/math-base-tools-continued-fraction': 0.2.2 + '@stdlib/math-base-tools-sum-series': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-kernel-betaincinv@0.2.2': + dependencies: + '@stdlib/constants-float64-eps': 0.2.2 + '@stdlib/constants-float64-half-pi': 0.2.2 + '@stdlib/constants-float64-max': 0.2.2 + '@stdlib/constants-float64-pi': 0.2.2 + '@stdlib/constants-float64-smallest-normal': 0.2.2 + '@stdlib/constants-float64-smallest-subnormal': 0.2.2 + '@stdlib/constants-float64-sqrt-two': 0.2.2 + '@stdlib/math-base-special-abs': 0.2.2 + '@stdlib/math-base-special-acos': 0.2.3 + '@stdlib/math-base-special-asin': 0.2.3 + '@stdlib/math-base-special-beta': 0.3.0 + '@stdlib/math-base-special-betainc': 0.2.2 + '@stdlib/math-base-special-cos': 0.3.0 + '@stdlib/math-base-special-erfcinv': 0.2.3 + '@stdlib/math-base-special-exp': 0.2.4 + '@stdlib/math-base-special-expm1': 0.2.3 + '@stdlib/math-base-special-floor': 0.2.3 + '@stdlib/math-base-special-gamma-delta-ratio': 0.2.2 + '@stdlib/math-base-special-gammaincinv': 0.2.2 + '@stdlib/math-base-special-kernel-betainc': 0.2.2 + '@stdlib/math-base-special-ldexp': 0.2.3 + '@stdlib/math-base-special-ln': 0.2.4 + '@stdlib/math-base-special-log1p': 0.2.3 + '@stdlib/math-base-special-max': 0.3.0 + '@stdlib/math-base-special-min': 0.2.3 + '@stdlib/math-base-special-pow': 0.3.0 + '@stdlib/math-base-special-round': 0.3.0 + '@stdlib/math-base-special-signum': 0.2.2 + '@stdlib/math-base-special-sin': 0.3.0 + '@stdlib/math-base-special-sqrt': 0.2.2 + '@stdlib/math-base-tools-evalpoly': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-kernel-cos@0.2.3': + dependencies: + '@stdlib/math-base-napi-binary': 0.3.0 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-kernel-sin@0.2.3': + dependencies: + '@stdlib/math-base-napi-binary': 0.3.0 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-ldexp@0.2.3': + dependencies: + '@stdlib/constants-float64-exponent-bias': 0.2.2 + '@stdlib/constants-float64-max-base2-exponent': 0.2.2 + '@stdlib/constants-float64-max-base2-exponent-subnormal': 0.2.1 + '@stdlib/constants-float64-min-base2-exponent-subnormal': 0.2.1 + '@stdlib/constants-float64-ninf': 0.2.2 + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/math-base-assert-is-infinite': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-special-abs': 0.2.2 + '@stdlib/math-base-special-copysign': 0.2.2 + '@stdlib/number-float32-base-to-word': 0.2.2 + '@stdlib/number-float64-base-exponent': 0.2.2 + '@stdlib/number-float64-base-from-words': 0.2.2 + '@stdlib/number-float64-base-normalize': 0.2.3 + '@stdlib/number-float64-base-to-words': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-ln@0.2.4': + dependencies: + '@stdlib/constants-float64-exponent-bias': 0.2.2 + '@stdlib/constants-float64-ninf': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-napi-unary': 0.2.3 + '@stdlib/number-float64-base-get-high-word': 0.2.2 + '@stdlib/number-float64-base-set-high-word': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-log1p@0.2.3': + dependencies: + '@stdlib/constants-float64-exponent-bias': 0.2.2 + '@stdlib/constants-float64-ninf': 0.2.2 + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-napi-unary': 0.2.3 + '@stdlib/number-float64-base-get-high-word': 0.2.2 + '@stdlib/number-float64-base-set-high-word': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-log1pmx@0.2.3': + dependencies: + '@stdlib/constants-float64-eps': 0.2.2 + '@stdlib/math-base-napi-unary': 0.2.3 + '@stdlib/math-base-special-abs': 0.2.2 + '@stdlib/math-base-special-ln': 0.2.4 + '@stdlib/math-base-special-log1p': 0.2.3 + '@stdlib/math-base-tools-sum-series': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-max@0.2.1': + dependencies: + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-assert-is-positive-zero': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-max@0.3.0': + dependencies: + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-assert-is-positive-zero': 0.2.2 + '@stdlib/math-base-napi-binary': 0.2.1 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-maxabs@0.3.0': + dependencies: + '@stdlib/math-base-napi-binary': 0.2.1 + '@stdlib/math-base-special-abs': 0.2.2 + '@stdlib/math-base-special-max': 0.2.1 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-min@0.2.3': + dependencies: + '@stdlib/constants-float64-ninf': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-assert-is-negative-zero': 0.2.2 + '@stdlib/math-base-napi-binary': 0.2.1 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-minabs@0.2.3': + dependencies: + '@stdlib/math-base-napi-binary': 0.2.1 + '@stdlib/math-base-special-abs': 0.2.2 + '@stdlib/math-base-special-min': 0.2.3 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-pow@0.2.1': + dependencies: + '@stdlib/constants-float64-exponent-bias': 0.2.2 + '@stdlib/constants-float64-high-word-abs-mask': 0.2.2 + '@stdlib/constants-float64-high-word-significand-mask': 0.2.2 + '@stdlib/constants-float64-ln-two': 0.2.2 + '@stdlib/constants-float64-ninf': 0.2.2 + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/math-base-assert-is-infinite': 0.2.2 + '@stdlib/math-base-assert-is-integer': 0.2.5 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-assert-is-odd': 0.2.1 + '@stdlib/math-base-special-abs': 0.2.2 + '@stdlib/math-base-special-copysign': 0.2.2 + '@stdlib/math-base-special-ldexp': 0.2.3 + '@stdlib/math-base-special-sqrt': 0.2.2 + '@stdlib/number-float64-base-get-high-word': 0.2.2 + '@stdlib/number-float64-base-set-high-word': 0.2.2 + '@stdlib/number-float64-base-set-low-word': 0.2.2 + '@stdlib/number-float64-base-to-words': 0.2.2 + '@stdlib/number-uint32-base-to-int32': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-pow@0.3.0': + dependencies: + '@stdlib/constants-float64-exponent-bias': 0.2.2 + '@stdlib/constants-float64-high-word-abs-mask': 0.2.2 + '@stdlib/constants-float64-high-word-significand-mask': 0.2.2 + '@stdlib/constants-float64-ln-two': 0.2.2 + '@stdlib/constants-float64-ninf': 0.2.2 + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/math-base-assert-is-infinite': 0.2.2 + '@stdlib/math-base-assert-is-integer': 0.2.5 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-assert-is-odd': 0.3.0 + '@stdlib/math-base-napi-binary': 0.3.0 + '@stdlib/math-base-special-abs': 0.2.2 + '@stdlib/math-base-special-copysign': 0.2.2 + '@stdlib/math-base-special-ldexp': 0.2.3 + '@stdlib/math-base-special-sqrt': 0.2.2 + '@stdlib/number-float64-base-get-high-word': 0.2.2 + '@stdlib/number-float64-base-set-high-word': 0.2.2 + '@stdlib/number-float64-base-set-low-word': 0.2.2 + '@stdlib/number-float64-base-to-words': 0.2.2 + '@stdlib/number-uint32-base-to-int32': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-powm1@0.3.1': + dependencies: + '@stdlib/math-base-assert-is-infinite': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-napi-binary': 0.3.0 + '@stdlib/math-base-special-abs': 0.2.2 + '@stdlib/math-base-special-expm1': 0.2.3 + '@stdlib/math-base-special-fmod': 0.1.0 + '@stdlib/math-base-special-ln': 0.2.4 + '@stdlib/math-base-special-pow': 0.3.0 + '@stdlib/math-base-special-trunc': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-rempio2@0.2.1': + dependencies: + '@stdlib/array-base-zeros': 0.2.2 + '@stdlib/constants-float64-high-word-abs-mask': 0.2.2 + '@stdlib/constants-float64-high-word-exponent-mask': 0.2.2 + '@stdlib/constants-float64-high-word-significand-mask': 0.2.2 + '@stdlib/math-base-special-floor': 0.2.3 + '@stdlib/math-base-special-ldexp': 0.2.3 + '@stdlib/math-base-special-round': 0.2.1 + '@stdlib/number-float64-base-from-words': 0.2.2 + '@stdlib/number-float64-base-get-high-word': 0.2.2 + '@stdlib/number-float64-base-get-low-word': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-round@0.2.1': {} + + '@stdlib/math-base-special-round@0.3.0': + dependencies: + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-assert-is-negative-zero': 0.2.2 + '@stdlib/math-base-napi-unary': 0.2.3 + '@stdlib/math-base-special-floor': 0.2.3 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-roundn@0.2.2': + dependencies: + '@stdlib/constants-float64-max-base10-exponent': 0.2.2 + '@stdlib/constants-float64-max-safe-integer': 0.2.2 + '@stdlib/constants-float64-min-base10-exponent': 0.2.2 + '@stdlib/constants-float64-min-base10-exponent-subnormal': 0.2.1 + '@stdlib/math-base-assert-is-infinite': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-napi-binary': 0.3.0 + '@stdlib/math-base-special-abs': 0.2.2 + '@stdlib/math-base-special-pow': 0.3.0 + '@stdlib/math-base-special-round': 0.3.0 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-signum@0.2.2': + dependencies: + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-napi-unary': 0.2.3 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-sin@0.2.1': + dependencies: + '@stdlib/constants-float64-high-word-abs-mask': 0.2.2 + '@stdlib/constants-float64-high-word-exponent-mask': 0.2.2 + '@stdlib/math-base-special-kernel-cos': 0.2.3 + '@stdlib/math-base-special-kernel-sin': 0.2.3 + '@stdlib/math-base-special-rempio2': 0.2.1 + '@stdlib/number-float64-base-get-high-word': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-sin@0.3.0': + dependencies: + '@stdlib/constants-float64-high-word-abs-mask': 0.2.2 + '@stdlib/constants-float64-high-word-exponent-mask': 0.2.2 + '@stdlib/math-base-napi-unary': 0.2.3 + '@stdlib/math-base-special-kernel-cos': 0.2.3 + '@stdlib/math-base-special-kernel-sin': 0.2.3 + '@stdlib/math-base-special-rempio2': 0.2.1 + '@stdlib/number-float64-base-get-high-word': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-sinpi@0.2.1': + dependencies: + '@stdlib/constants-float64-pi': 0.2.2 + '@stdlib/math-base-assert-is-infinite': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-special-abs': 0.2.2 + '@stdlib/math-base-special-copysign': 0.2.2 + '@stdlib/math-base-special-cos': 0.2.1 + '@stdlib/math-base-special-sin': 0.2.1 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-sqrt@0.2.2': + dependencies: + '@stdlib/math-base-napi-unary': 0.2.3 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-special-trunc@0.2.2': + dependencies: + '@stdlib/math-base-napi-unary': 0.2.3 + '@stdlib/math-base-special-ceil': 0.2.2 + '@stdlib/math-base-special-floor': 0.2.3 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-tools-continued-fraction@0.2.2': + dependencies: + '@stdlib/assert-has-generator-support': 0.2.2 + '@stdlib/constants-float32-smallest-normal': 0.2.2 + '@stdlib/constants-float64-eps': 0.2.2 + '@stdlib/math-base-special-abs': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/math-base-tools-evalpoly@0.2.2': + dependencies: + '@stdlib/function-ctor': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + + '@stdlib/math-base-tools-sum-series@0.2.2': + dependencies: + '@stdlib/assert-has-generator-support': 0.2.2 + '@stdlib/constants-float64-eps': 0.2.2 + '@stdlib/math-base-special-abs': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/number-ctor@0.2.2': {} + + '@stdlib/number-float32-base-to-word@0.2.2': + dependencies: + '@stdlib/array-float32': 0.2.2 + '@stdlib/array-uint32': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/number-float64-base-exponent@0.2.2': + dependencies: + '@stdlib/constants-float64-exponent-bias': 0.2.2 + '@stdlib/constants-float64-high-word-exponent-mask': 0.2.2 + '@stdlib/number-float64-base-get-high-word': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/number-float64-base-from-words@0.2.2': + dependencies: + '@stdlib/array-float64': 0.2.2 + '@stdlib/array-uint32': 0.2.2 + '@stdlib/assert-is-little-endian': 0.2.2 + '@stdlib/number-float64-base-to-words': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/number-float64-base-get-high-word@0.2.2': + dependencies: + '@stdlib/array-float64': 0.2.2 + '@stdlib/array-uint32': 0.2.2 + '@stdlib/assert-is-little-endian': 0.2.2 + '@stdlib/number-float64-base-to-words': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/number-float64-base-get-low-word@0.2.2': + dependencies: + '@stdlib/array-float64': 0.2.2 + '@stdlib/array-uint32': 0.2.2 + '@stdlib/assert-is-little-endian': 0.2.2 + '@stdlib/number-float64-base-to-words': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/number-float64-base-normalize@0.2.3': + dependencies: + '@stdlib/constants-float64-smallest-normal': 0.2.2 + '@stdlib/math-base-assert-is-infinite': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-special-abs': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/number-float64-base-set-high-word@0.2.2': + dependencies: + '@stdlib/array-float64': 0.2.2 + '@stdlib/array-uint32': 0.2.2 + '@stdlib/assert-is-little-endian': 0.2.2 + '@stdlib/number-float64-base-to-words': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/number-float64-base-set-low-word@0.2.2': + dependencies: + '@stdlib/array-float64': 0.2.2 + '@stdlib/array-uint32': 0.2.2 + '@stdlib/assert-is-little-endian': 0.2.2 + '@stdlib/number-float64-base-to-words': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/number-float64-base-to-float32@0.2.2': + dependencies: + '@stdlib/array-float32': 0.2.2 + + '@stdlib/number-float64-base-to-words@0.2.2': + dependencies: + '@stdlib/array-float64': 0.2.2 + '@stdlib/array-uint32': 0.2.2 + '@stdlib/assert-is-little-endian': 0.2.2 + '@stdlib/os-byte-order': 0.2.2 + '@stdlib/os-float-word-order': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + '@stdlib/utils-library-manifest': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/number-uint32-base-to-int32@0.2.2': {} + + '@stdlib/object-ctor@0.2.1': {} + + '@stdlib/os-byte-order@0.2.2': + dependencies: + '@stdlib/assert-is-big-endian': 0.2.2 + '@stdlib/assert-is-little-endian': 0.2.2 + + '@stdlib/os-float-word-order@0.2.2': + dependencies: + '@stdlib/os-byte-order': 0.2.2 + + '@stdlib/process-cwd@0.2.2': {} + + '@stdlib/regexp-extended-length-path@0.2.2': + dependencies: + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + + '@stdlib/regexp-function-name@0.2.2': + dependencies: + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + + '@stdlib/stats-anova1@0.2.2': + dependencies: + '@stdlib/assert-has-own-property': 0.2.2 + '@stdlib/assert-is-array': 0.2.2 + '@stdlib/assert-is-boolean': 0.2.2 + '@stdlib/assert-is-nan': 0.2.2 + '@stdlib/assert-is-number': 0.2.2 + '@stdlib/assert-is-number-array': 0.2.2 + '@stdlib/assert-is-plain-object': 0.2.2 + '@stdlib/assert-is-positive-integer': 0.2.2 + '@stdlib/assert-is-typed-array-like': 0.2.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/math-base-special-max': 0.3.0 + '@stdlib/math-base-special-roundn': 0.2.2 + '@stdlib/stats-base-dists-f-cdf': 0.2.2 + '@stdlib/stats-incr-stdev': 0.2.2 + '@stdlib/string-format': 0.2.2 + '@stdlib/string-repeat': 0.2.2 + '@stdlib/utils-define-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/stats-base-dists-chisquare-cdf@0.2.2': + dependencies: + '@stdlib/stats-base-dists-gamma-cdf': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/stats-base-dists-degenerate-cdf@0.2.2': + dependencies: + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/utils-constant-function': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/stats-base-dists-f-cdf@0.2.2': + dependencies: + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-special-betainc': 0.2.2 + '@stdlib/utils-constant-function': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/stats-base-dists-gamma-cdf@0.2.2': + dependencies: + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-special-gammainc': 0.2.2 + '@stdlib/stats-base-dists-degenerate-cdf': 0.2.2 + '@stdlib/utils-constant-function': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/stats-base-dists-normal-cdf@0.2.2': + dependencies: + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-special-erfc': 0.2.4 + '@stdlib/math-base-special-sqrt': 0.2.2 + '@stdlib/stats-base-dists-degenerate-cdf': 0.2.2 + '@stdlib/utils-constant-function': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/stats-base-dists-signrank-cdf@0.2.2': + dependencies: + '@stdlib/constants-float64-ln-two': 0.2.2 + '@stdlib/math-base-assert-is-finite': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-assert-is-positive-integer': 0.3.0 + '@stdlib/math-base-special-exp': 0.2.4 + '@stdlib/math-base-special-round': 0.3.0 + '@stdlib/utils-constant-function': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + '@stdlib/utils-memoize': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/stats-base-dists-t-cdf@0.2.2': + dependencies: + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-special-betainc': 0.2.2 + '@stdlib/math-base-special-pow': 0.3.0 + '@stdlib/utils-constant-function': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/stats-base-dists-t-quantile@0.2.2': + dependencies: + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-special-kernel-betaincinv': 0.2.2 + '@stdlib/math-base-special-signum': 0.2.2 + '@stdlib/math-base-special-sqrt': 0.2.2 + '@stdlib/utils-constant-function': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/stats-base-mean@0.2.2': + dependencies: + '@stdlib/stats-base-meanpn': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/stats-base-meanpn@0.2.2': + dependencies: + '@stdlib/blas-ext-base-gapxsumpw': 0.2.2 + '@stdlib/blas-ext-base-gsumpw': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/stats-base-variance@0.2.2': + dependencies: + '@stdlib/stats-base-variancepn': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/stats-base-variancepn@0.2.2': + dependencies: + '@stdlib/blas-ext-base-gsumpw': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/stats-incr-stdev@0.2.2': + dependencies: + '@stdlib/assert-is-number': 0.2.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-special-sqrt': 0.2.2 + '@stdlib/string-format': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/stats-kruskal-test@0.2.2': + dependencies: + '@stdlib/array-base-incrspace': 0.2.2 + '@stdlib/assert-has-own-property': 0.2.2 + '@stdlib/assert-is-array': 0.2.2 + '@stdlib/assert-is-boolean': 0.2.2 + '@stdlib/assert-is-collection': 0.2.2 + '@stdlib/assert-is-nan': 0.2.2 + '@stdlib/assert-is-number': 0.2.2 + '@stdlib/assert-is-plain-object': 0.2.2 + '@stdlib/assert-is-positive-integer': 0.2.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/math-base-special-pow': 0.3.0 + '@stdlib/math-base-special-roundn': 0.2.2 + '@stdlib/stats-base-dists-chisquare-cdf': 0.2.2 + '@stdlib/stats-ranks': 0.2.2 + '@stdlib/string-format': 0.2.2 + '@stdlib/utils-count-by': 0.2.2 + '@stdlib/utils-define-read-only-property': 0.2.2 + '@stdlib/utils-identity-function': 0.2.2 + '@stdlib/utils-keys': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/stats-ranks@0.2.2': + dependencies: + '@stdlib/assert-contains': 0.2.2 + '@stdlib/assert-has-own-property': 0.2.2 + '@stdlib/assert-is-array': 0.2.2 + '@stdlib/assert-is-collection': 0.2.2 + '@stdlib/assert-is-object': 0.2.2 + '@stdlib/assert-is-string': 0.2.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/string-format': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/stats-ttest2@0.2.2': + dependencies: + '@stdlib/assert-has-own-property': 0.2.2 + '@stdlib/assert-is-boolean': 0.2.2 + '@stdlib/assert-is-nan': 0.2.2 + '@stdlib/assert-is-number': 0.2.2 + '@stdlib/assert-is-number-array': 0.2.2 + '@stdlib/assert-is-plain-object': 0.2.2 + '@stdlib/assert-is-positive-integer': 0.2.2 + '@stdlib/assert-is-string': 0.2.2 + '@stdlib/assert-is-typed-array-like': 0.2.2 + '@stdlib/constants-float64-ninf': 0.2.2 + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/math-base-special-abs': 0.2.2 + '@stdlib/math-base-special-pow': 0.3.0 + '@stdlib/math-base-special-roundn': 0.2.2 + '@stdlib/math-base-special-sqrt': 0.2.2 + '@stdlib/stats-base-dists-t-cdf': 0.2.2 + '@stdlib/stats-base-dists-t-quantile': 0.2.2 + '@stdlib/stats-base-mean': 0.2.2 + '@stdlib/stats-base-variance': 0.2.2 + '@stdlib/string-format': 0.2.2 + '@stdlib/utils-define-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/stats-ttest@0.2.2': + dependencies: + '@stdlib/array-float64': 0.2.2 + '@stdlib/assert-contains': 0.2.2 + '@stdlib/assert-has-own-property': 0.2.2 + '@stdlib/assert-is-boolean': 0.2.2 + '@stdlib/assert-is-number': 0.2.2 + '@stdlib/assert-is-number-array': 0.2.2 + '@stdlib/assert-is-plain-object': 0.2.2 + '@stdlib/assert-is-positive-integer': 0.2.2 + '@stdlib/assert-is-string': 0.2.2 + '@stdlib/assert-is-typed-array-like': 0.2.2 + '@stdlib/blas-base-gcopy': 0.2.1 + '@stdlib/constants-float64-ninf': 0.2.2 + '@stdlib/constants-float64-pinf': 0.2.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/math-base-assert-is-nan': 0.2.2 + '@stdlib/math-base-special-abs': 0.2.2 + '@stdlib/math-base-special-roundn': 0.2.2 + '@stdlib/math-base-special-sqrt': 0.2.2 + '@stdlib/stats-base-dists-t-cdf': 0.2.2 + '@stdlib/stats-base-dists-t-quantile': 0.2.2 + '@stdlib/stats-base-mean': 0.2.2 + '@stdlib/stats-base-variance': 0.2.2 + '@stdlib/string-format': 0.2.2 + '@stdlib/utils-define-read-only-property': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/stats-wilcoxon@0.2.2': + dependencies: + '@stdlib/array-float64': 0.2.2 + '@stdlib/assert-contains': 0.2.2 + '@stdlib/assert-has-own-property': 0.2.2 + '@stdlib/assert-is-boolean': 0.2.2 + '@stdlib/assert-is-nan': 0.2.2 + '@stdlib/assert-is-number': 0.2.2 + '@stdlib/assert-is-number-array': 0.2.2 + '@stdlib/assert-is-plain-object': 0.2.2 + '@stdlib/assert-is-positive-integer': 0.2.2 + '@stdlib/assert-is-string': 0.2.2 + '@stdlib/assert-is-typed-array-like': 0.2.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/math-base-special-abs': 0.2.2 + '@stdlib/math-base-special-roundn': 0.2.2 + '@stdlib/math-base-special-signum': 0.2.2 + '@stdlib/math-base-special-sqrt': 0.2.2 + '@stdlib/stats-base-dists-normal-cdf': 0.2.2 + '@stdlib/stats-base-dists-signrank-cdf': 0.2.2 + '@stdlib/stats-ranks': 0.2.2 + '@stdlib/string-format': 0.2.2 + '@stdlib/utils-define-read-only-property': 0.2.2 + '@stdlib/utils-tabulate': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/strided-base-reinterpret-complex128@0.2.2': + dependencies: + '@stdlib/array-float64': 0.2.2 + + '@stdlib/strided-base-reinterpret-complex64@0.2.1': + dependencies: + '@stdlib/array-float32': 0.2.2 + + '@stdlib/string-base-format-interpolate@0.2.2': {} + + '@stdlib/string-base-format-tokenize@0.2.2': {} + + '@stdlib/string-base-lowercase@0.4.0': {} + + '@stdlib/string-base-repeat@0.2.2': {} + + '@stdlib/string-base-replace@0.2.2': {} + + '@stdlib/string-format@0.2.2': + dependencies: + '@stdlib/string-base-format-interpolate': 0.2.2 + '@stdlib/string-base-format-tokenize': 0.2.2 + + '@stdlib/string-repeat@0.2.2': + dependencies: + '@stdlib/assert-is-nonnegative-integer': 0.2.2 + '@stdlib/assert-is-string': 0.2.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/string-base-repeat': 0.2.2 + '@stdlib/string-format': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/string-replace@0.2.2': + dependencies: + '@stdlib/assert-is-function': 0.2.2 + '@stdlib/assert-is-regexp': 0.2.2 + '@stdlib/assert-is-string': 0.2.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/string-base-replace': 0.2.2 + '@stdlib/string-format': 0.2.2 + '@stdlib/utils-escape-regexp-string': 0.2.2 + + '@stdlib/symbol-ctor@0.2.2': {} + + '@stdlib/symbol-iterator@0.2.2': + dependencies: + '@stdlib/assert-has-iterator-symbol-support': 0.2.2 + + '@stdlib/utils-constant-function@0.2.2': {} + + '@stdlib/utils-constructor-name@0.2.2': + dependencies: + '@stdlib/assert-is-buffer': 0.2.2 + '@stdlib/regexp-function-name': 0.2.2 + '@stdlib/utils-native-class': 0.2.2 + + '@stdlib/utils-convert-path@0.2.2': + dependencies: + '@stdlib/assert-is-string': 0.2.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/regexp-extended-length-path': 0.2.2 + '@stdlib/string-base-lowercase': 0.4.0 + '@stdlib/string-format': 0.2.2 + '@stdlib/string-replace': 0.2.2 + + '@stdlib/utils-count-by@0.2.2': + dependencies: + '@stdlib/assert-has-own-property': 0.2.2 + '@stdlib/assert-is-collection': 0.2.2 + '@stdlib/assert-is-function': 0.2.2 + '@stdlib/assert-is-plain-object': 0.2.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/string-format': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/utils-define-nonenumerable-read-only-accessor@0.2.3': + dependencies: + '@stdlib/utils-define-property': 0.2.4 + + '@stdlib/utils-define-nonenumerable-read-only-property@0.2.2': + dependencies: + '@stdlib/utils-define-property': 0.2.4 + + '@stdlib/utils-define-property@0.2.4': + dependencies: + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/string-format': 0.2.2 + + '@stdlib/utils-define-read-only-property@0.2.2': + dependencies: + '@stdlib/utils-define-property': 0.2.4 + + '@stdlib/utils-escape-regexp-string@0.2.2': + dependencies: + '@stdlib/assert-is-string': 0.2.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/string-format': 0.2.2 + + '@stdlib/utils-eval@0.2.2': {} + + '@stdlib/utils-get-prototype-of@0.2.2': + dependencies: + '@stdlib/assert-is-function': 0.2.2 + '@stdlib/object-ctor': 0.2.1 + '@stdlib/utils-native-class': 0.2.2 + + '@stdlib/utils-global@0.2.2': + dependencies: + '@stdlib/assert-is-boolean': 0.2.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/string-format': 0.2.2 + + '@stdlib/utils-identity-function@0.2.2': {} + + '@stdlib/utils-index-of@0.2.2': + dependencies: + '@stdlib/assert-is-collection': 0.2.2 + '@stdlib/assert-is-integer': 0.2.2 + '@stdlib/assert-is-nan': 0.2.2 + '@stdlib/assert-is-string': 0.2.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/string-format': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/utils-keys@0.2.2': + dependencies: + '@stdlib/assert-has-own-property': 0.2.2 + '@stdlib/assert-is-arguments': 0.2.2 + '@stdlib/assert-is-enumerable-property': 0.2.2 + '@stdlib/assert-is-object-like': 0.2.2 + '@stdlib/utils-index-of': 0.2.2 + '@stdlib/utils-noop': 0.2.2 + '@stdlib/utils-type-of': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/utils-library-manifest@0.2.2': + dependencies: + '@stdlib/fs-resolve-parent-path': 0.2.2 + '@stdlib/utils-convert-path': 0.2.2 + debug: 2.6.9 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + + '@stdlib/utils-memoize@0.2.2': + dependencies: + '@stdlib/assert-has-own-property': 0.2.2 + '@stdlib/assert-is-function': 0.2.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/string-format': 0.2.2 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.2.2 + '@stdlib/utils-identity-function': 0.2.2 + + '@stdlib/utils-native-class@0.2.2': + dependencies: + '@stdlib/assert-has-own-property': 0.2.2 + '@stdlib/assert-has-tostringtag-support': 0.2.2 + '@stdlib/symbol-ctor': 0.2.2 + + '@stdlib/utils-noop@0.2.2': {} + + '@stdlib/utils-tabulate@0.2.2': + dependencies: + '@stdlib/assert-is-collection': 0.2.2 + '@stdlib/error-tools-fmtprodmsg': 0.2.2 + '@stdlib/string-format': 0.2.2 + '@stdlib/utils-index-of': 0.2.2 + transitivePeerDependencies: + - supports-color + + '@stdlib/utils-type-of@0.2.2': + dependencies: + '@stdlib/utils-constructor-name': 0.2.2 + '@stdlib/utils-global': 0.2.2 + + '@types/d3-hierarchy@3.1.7': {} + + '@types/estree@1.0.6': {} + + '@types/node@12.20.55': {} + + '@types/node@20.16.15': + dependencies: + undici-types: 6.19.8 + + '@types/node@22.9.0': + dependencies: + undici-types: 6.19.8 + + '@types/triple-beam@1.3.5': {} + + '@vitejs/plugin-vue@5.1.5(vite@5.4.11(@types/node@22.9.0))(vue@3.5.12(typescript@5.6.3))': + dependencies: + vite: 5.4.11(@types/node@22.9.0) + vue: 3.5.12(typescript@5.6.3) + + '@vitest/expect@2.1.4': + dependencies: + '@vitest/spy': 2.1.4 + '@vitest/utils': 2.1.4 + chai: 5.1.2 tinyrainbow: 1.2.0 - '@volar/language-core@2.4.1': + '@vitest/mocker@2.1.4(vite@5.4.11(@types/node@22.9.0))': dependencies: - '@volar/source-map': 2.4.1 + '@vitest/spy': 2.1.4 + estree-walker: 3.0.3 + magic-string: 0.30.12 + optionalDependencies: + vite: 5.4.11(@types/node@22.9.0) - '@volar/source-map@2.4.1': {} + '@vitest/pretty-format@2.1.4': + dependencies: + tinyrainbow: 1.2.0 - '@volar/typescript@2.4.1': + '@vitest/runner@2.1.4': dependencies: - '@volar/language-core': 2.4.1 - path-browserify: 1.0.1 - vscode-uri: 3.0.8 + '@vitest/utils': 2.1.4 + pathe: 1.1.2 - '@vue/compiler-core@3.4.38': + '@vitest/snapshot@2.1.4': dependencies: - '@babel/parser': 7.25.0 - '@vue/shared': 3.4.38 - entities: 4.5.0 - estree-walker: 2.0.2 - source-map-js: 1.2.0 + '@vitest/pretty-format': 2.1.4 + magic-string: 0.30.12 + pathe: 1.1.2 - '@vue/compiler-core@3.5.11': + '@vitest/spy@2.1.4': dependencies: - '@babel/parser': 7.25.7 - '@vue/shared': 3.5.11 - entities: 4.5.0 - estree-walker: 2.0.2 - source-map-js: 1.2.0 + tinyspy: 3.0.2 - '@vue/compiler-dom@3.4.38': + '@vitest/utils@2.1.4': dependencies: - '@vue/compiler-core': 3.4.38 - '@vue/shared': 3.4.38 + '@vitest/pretty-format': 2.1.4 + loupe: 3.1.2 + tinyrainbow: 1.2.0 - '@vue/compiler-dom@3.5.11': + '@volar/language-core@2.4.10': dependencies: - '@vue/compiler-core': 3.5.11 - '@vue/shared': 3.5.11 + '@volar/source-map': 2.4.10 - '@vue/compiler-sfc@3.4.38': + '@volar/source-map@2.4.10': {} + + '@volar/typescript@2.4.10': dependencies: - '@babel/parser': 7.25.0 - '@vue/compiler-core': 3.4.38 - '@vue/compiler-dom': 3.4.38 - '@vue/compiler-ssr': 3.4.38 - '@vue/shared': 3.4.38 - estree-walker: 2.0.2 - magic-string: 0.30.10 - postcss: 8.4.44 - source-map-js: 1.2.0 + '@volar/language-core': 2.4.10 + path-browserify: 1.0.1 + vscode-uri: 3.0.8 - '@vue/compiler-sfc@3.5.11': + '@vue/compiler-core@3.5.12': dependencies: - '@babel/parser': 7.25.7 - '@vue/compiler-core': 3.5.11 - '@vue/compiler-dom': 3.5.11 - '@vue/compiler-ssr': 3.5.11 - '@vue/shared': 3.5.11 + '@babel/parser': 7.26.2 + '@vue/shared': 3.5.12 + entities: 4.5.0 estree-walker: 2.0.2 - magic-string: 0.30.11 - postcss: 8.4.47 - source-map-js: 1.2.0 + source-map-js: 1.2.1 - '@vue/compiler-ssr@3.4.38': + '@vue/compiler-dom@3.5.12': dependencies: - '@vue/compiler-dom': 3.4.38 - '@vue/shared': 3.4.38 + '@vue/compiler-core': 3.5.12 + '@vue/shared': 3.5.12 - '@vue/compiler-ssr@3.5.11': + '@vue/compiler-sfc@3.5.12': dependencies: - '@vue/compiler-dom': 3.5.11 - '@vue/shared': 3.5.11 + '@babel/parser': 7.26.2 + '@vue/compiler-core': 3.5.12 + '@vue/compiler-dom': 3.5.12 + '@vue/compiler-ssr': 3.5.12 + '@vue/shared': 3.5.12 + estree-walker: 2.0.2 + magic-string: 0.30.12 + postcss: 8.4.48 + source-map-js: 1.2.1 + + '@vue/compiler-ssr@3.5.12': + dependencies: + '@vue/compiler-dom': 3.5.12 + '@vue/shared': 3.5.12 '@vue/compiler-vue2@2.7.16': dependencies: de-indent: 1.0.2 he: 1.2.0 - '@vue/language-core@2.1.6(typescript@5.5.4)': + '@vue/language-core@2.1.10(typescript@5.6.3)': dependencies: - '@volar/language-core': 2.4.1 - '@vue/compiler-dom': 3.4.38 + '@volar/language-core': 2.4.10 + '@vue/compiler-dom': 3.5.12 '@vue/compiler-vue2': 2.7.16 - '@vue/shared': 3.4.38 - computeds: 0.0.1 + '@vue/shared': 3.5.12 + alien-signals: 0.2.1 minimatch: 9.0.5 muggle-string: 0.4.1 path-browserify: 1.0.1 optionalDependencies: - typescript: 5.5.4 - - '@vue/reactivity@3.4.38': - dependencies: - '@vue/shared': 3.4.38 - - '@vue/reactivity@3.5.11': - dependencies: - '@vue/shared': 3.5.11 + typescript: 5.6.3 - '@vue/runtime-core@3.4.38': + '@vue/reactivity@3.5.12': dependencies: - '@vue/reactivity': 3.4.38 - '@vue/shared': 3.4.38 + '@vue/shared': 3.5.12 - '@vue/runtime-core@3.5.11': + '@vue/runtime-core@3.5.12': dependencies: - '@vue/reactivity': 3.5.11 - '@vue/shared': 3.5.11 + '@vue/reactivity': 3.5.12 + '@vue/shared': 3.5.12 - '@vue/runtime-dom@3.4.38': + '@vue/runtime-dom@3.5.12': dependencies: - '@vue/reactivity': 3.4.38 - '@vue/runtime-core': 3.4.38 - '@vue/shared': 3.4.38 + '@vue/reactivity': 3.5.12 + '@vue/runtime-core': 3.5.12 + '@vue/shared': 3.5.12 csstype: 3.1.3 - '@vue/runtime-dom@3.5.11': + '@vue/server-renderer@3.5.12(vue@3.5.12(typescript@5.6.3))': dependencies: - '@vue/reactivity': 3.5.11 - '@vue/runtime-core': 3.5.11 - '@vue/shared': 3.5.11 - csstype: 3.1.3 + '@vue/compiler-ssr': 3.5.12 + '@vue/shared': 3.5.12 + vue: 3.5.12(typescript@5.6.3) - '@vue/server-renderer@3.4.38(vue@3.4.38(typescript@5.5.4))': - dependencies: - '@vue/compiler-ssr': 3.4.38 - '@vue/shared': 3.4.38 - vue: 3.4.38(typescript@5.5.4) + '@vue/shared@3.5.12': {} - '@vue/server-renderer@3.5.11(vue@3.5.11(typescript@5.5.4))': - dependencies: - '@vue/compiler-ssr': 3.5.11 - '@vue/shared': 3.5.11 - vue: 3.5.11(typescript@5.5.4) + abbrev@1.1.1: {} - '@vue/shared@3.4.38': {} + ag-charts-types@10.3.1: {} - '@vue/shared@3.5.11': {} + ag-grid-community@32.3.2: + dependencies: + ag-charts-types: 10.3.1 - abbrev@1.1.1: {} + ag-grid-vue3@32.3.2(typescript@5.6.3): + dependencies: + ag-grid-community: 32.3.2 + vue: 3.5.12(typescript@5.6.3) + transitivePeerDependencies: + - typescript agent-base@6.0.2: dependencies: @@ -4701,6 +8658,8 @@ snapshots: transitivePeerDependencies: - supports-color + alien-signals@0.2.1: {} + ansi-colors@4.1.3: {} ansi-escapes@4.3.2: @@ -4709,7 +8668,7 @@ snapshots: ansi-regex@5.0.1: {} - ansi-regex@6.0.1: {} + ansi-regex@6.1.0: {} ansi-styles@4.3.0: dependencies: @@ -4721,11 +8680,6 @@ snapshots: any-promise@1.3.0: {} - anymatch@3.1.3: - dependencies: - normalize-path: 3.0.0 - picomatch: 2.3.1 - aproba@2.0.0: {} are-we-there-yet@2.0.0: @@ -4741,40 +8695,45 @@ snapshots: assertion-error@2.0.1: {} - async@3.2.5: {} + async@3.2.6: {} - b4a@1.6.6: {} + b4a@1.6.7: {} balanced-match@1.0.2: {} - bare-events@2.4.2: + bare-events@2.5.0: optional: true - bare-fs@2.3.1: + bare-fs@2.3.5: dependencies: - bare-events: 2.4.2 + bare-events: 2.5.0 bare-path: 2.1.3 - bare-stream: 2.1.3 + bare-stream: 2.3.2 optional: true - bare-os@2.4.0: + bare-os@2.4.4: optional: true bare-path@2.1.3: dependencies: - bare-os: 2.4.0 + bare-os: 2.4.4 optional: true - bare-stream@2.1.3: + bare-stream@2.3.2: dependencies: - streamx: 2.18.0 + streamx: 2.20.1 optional: true + base64-js@1.5.1: {} + better-path-resolve@1.0.0: dependencies: is-windows: 1.0.2 - binary-extensions@2.3.0: {} + bl@1.2.3: + dependencies: + readable-stream: 2.3.8 + safe-buffer: 5.2.1 bowser@2.11.0: {} @@ -4791,9 +8750,30 @@ snapshots: dependencies: fill-range: 7.1.1 - bundle-require@5.0.0(esbuild@0.23.0): + 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@5.6.0: + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + + buffer@5.7.1: + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + + bundle-require@5.0.0(esbuild@0.24.0): dependencies: - esbuild: 0.23.0 + esbuild: 0.24.0 load-tsconfig: 0.2.5 cac@6.7.14: {} @@ -4802,12 +8782,12 @@ snapshots: canonicalize@2.0.0: {} - chai@5.1.1: + chai@5.1.2: dependencies: assertion-error: 2.0.1 check-error: 2.1.1 deep-eql: 5.0.2 - loupe: 3.1.1 + loupe: 3.1.2 pathval: 2.0.0 chalk@4.1.2: @@ -4819,17 +8799,9 @@ snapshots: check-error@2.1.1: {} - chokidar@3.6.0: + chokidar@4.0.1: dependencies: - anymatch: 3.1.3 - braces: 3.0.3 - glob-parent: 5.1.2 - is-binary-path: 2.1.0 - is-glob: 4.0.3 - normalize-path: 3.0.0 - readdirp: 3.6.0 - optionalDependencies: - fsevents: 2.3.3 + readdirp: 4.0.2 chownr@2.0.0: {} @@ -4878,9 +8850,9 @@ snapshots: color: 3.2.1 text-hex: 1.0.0 - commander@4.1.1: {} + commander@2.20.3: {} - computeds@0.0.1: {} + commander@4.1.1: {} concat-map@0.0.1: {} @@ -4888,13 +8860,15 @@ snapshots: console-control-strings@1.1.0: {} + core-util-is@1.0.3: {} + cross-spawn@5.1.0: dependencies: lru-cache: 4.1.5 shebang-command: 1.2.0 which: 1.3.1 - cross-spawn@7.0.3: + cross-spawn@7.0.5: dependencies: path-key: 3.1.1 shebang-command: 2.0.0 @@ -4902,11 +8876,88 @@ snapshots: csstype@3.1.3: {} + d3-array@3.2.4: + dependencies: + internmap: 2.0.3 + + d3-axis@3.0.0: {} + + d3-color@3.1.0: {} + + d3-dispatch@3.0.1: {} + + d3-drag@3.0.0: + dependencies: + d3-dispatch: 3.0.1 + d3-selection: 3.0.0 + + d3-ease@3.0.1: {} + + d3-format@3.1.0: {} + + d3-hierarchy@3.1.2: {} + + d3-interpolate@3.0.1: + dependencies: + d3-color: 3.1.0 + + d3-path@3.1.0: {} + + d3-quadtree@3.0.1: {} + + d3-random@3.0.1: {} + + d3-scale-chromatic@3.1.0: + dependencies: + d3-color: 3.1.0 + d3-interpolate: 3.0.1 + + d3-scale@4.0.2: + dependencies: + d3-array: 3.2.4 + d3-format: 3.1.0 + d3-interpolate: 3.0.1 + d3-time: 3.1.0 + d3-time-format: 4.1.0 + + d3-selection@3.0.0: {} + + d3-shape@3.2.0: + dependencies: + d3-path: 3.1.0 + + d3-time-format@4.1.0: + dependencies: + d3-time: 3.1.0 + + d3-time@3.1.0: + dependencies: + d3-array: 3.2.4 + + d3-timer@3.0.1: {} + + d3-transition@3.0.1(d3-selection@3.0.0): + dependencies: + d3-color: 3.1.0 + d3-dispatch: 3.0.1 + d3-ease: 3.0.1 + d3-interpolate: 3.0.1 + d3-selection: 3.0.0 + d3-timer: 3.0.1 + + d3-zoom@3.0.0: + dependencies: + d3-dispatch: 3.0.1 + d3-drag: 3.0.0 + d3-interpolate: 3.0.1 + d3-selection: 3.0.0 + d3-transition: 3.0.1(d3-selection@3.0.0) + de-indent@1.0.2: {} - debug@4.3.6: + debug@2.6.9: dependencies: - ms: 2.1.2 + ms: 2.0.0 debug@4.3.7(supports-color@8.1.1): dependencies: @@ -4914,6 +8965,44 @@ snapshots: optionalDependencies: supports-color: 8.1.1 + 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 + deep-eql@5.0.2: {} delegates@1.0.0: {} @@ -4977,34 +9066,34 @@ snapshots: '@esbuild/win32-ia32': 0.21.5 '@esbuild/win32-x64': 0.21.5 - esbuild@0.23.0: + esbuild@0.24.0: optionalDependencies: - '@esbuild/aix-ppc64': 0.23.0 - '@esbuild/android-arm': 0.23.0 - '@esbuild/android-arm64': 0.23.0 - '@esbuild/android-x64': 0.23.0 - '@esbuild/darwin-arm64': 0.23.0 - '@esbuild/darwin-x64': 0.23.0 - '@esbuild/freebsd-arm64': 0.23.0 - '@esbuild/freebsd-x64': 0.23.0 - '@esbuild/linux-arm': 0.23.0 - '@esbuild/linux-arm64': 0.23.0 - '@esbuild/linux-ia32': 0.23.0 - '@esbuild/linux-loong64': 0.23.0 - '@esbuild/linux-mips64el': 0.23.0 - '@esbuild/linux-ppc64': 0.23.0 - '@esbuild/linux-riscv64': 0.23.0 - '@esbuild/linux-s390x': 0.23.0 - '@esbuild/linux-x64': 0.23.0 - '@esbuild/netbsd-x64': 0.23.0 - '@esbuild/openbsd-arm64': 0.23.0 - '@esbuild/openbsd-x64': 0.23.0 - '@esbuild/sunos-x64': 0.23.0 - '@esbuild/win32-arm64': 0.23.0 - '@esbuild/win32-ia32': 0.23.0 - '@esbuild/win32-x64': 0.23.0 - - escalade@3.1.2: {} + '@esbuild/aix-ppc64': 0.24.0 + '@esbuild/android-arm': 0.24.0 + '@esbuild/android-arm64': 0.24.0 + '@esbuild/android-x64': 0.24.0 + '@esbuild/darwin-arm64': 0.24.0 + '@esbuild/darwin-x64': 0.24.0 + '@esbuild/freebsd-arm64': 0.24.0 + '@esbuild/freebsd-x64': 0.24.0 + '@esbuild/linux-arm': 0.24.0 + '@esbuild/linux-arm64': 0.24.0 + '@esbuild/linux-ia32': 0.24.0 + '@esbuild/linux-loong64': 0.24.0 + '@esbuild/linux-mips64el': 0.24.0 + '@esbuild/linux-ppc64': 0.24.0 + '@esbuild/linux-riscv64': 0.24.0 + '@esbuild/linux-s390x': 0.24.0 + '@esbuild/linux-x64': 0.24.0 + '@esbuild/netbsd-x64': 0.24.0 + '@esbuild/openbsd-arm64': 0.24.0 + '@esbuild/openbsd-x64': 0.24.0 + '@esbuild/sunos-x64': 0.24.0 + '@esbuild/win32-arm64': 0.24.0 + '@esbuild/win32-ia32': 0.24.0 + '@esbuild/win32-x64': 0.24.0 + + escalade@3.2.0: {} escape-string-regexp@4.0.0: {} @@ -5014,19 +9103,11 @@ snapshots: estree-walker@3.0.3: dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 - execa@5.1.1: - dependencies: - cross-spawn: 7.0.3 - get-stream: 6.0.1 - human-signals: 2.1.0 - is-stream: 2.0.1 - merge-stream: 2.0.0 - npm-run-path: 4.0.1 - onetime: 5.1.2 - signal-exit: 3.0.7 - strip-final-newline: 2.0.0 + events@3.3.0: {} + + expect-type@1.1.0: {} extendable-error@0.1.7: {} @@ -5044,7 +9125,7 @@ snapshots: '@nodelib/fs.walk': 1.2.8 glob-parent: 5.1.2 merge2: 1.4.1 - micromatch: 4.0.7 + micromatch: 4.0.8 fast-xml-parser@4.4.1: dependencies: @@ -5054,8 +9135,22 @@ 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 + fecha@4.2.3: {} + file-type@3.9.0: {} + + file-type@5.2.0: {} + + file-type@6.2.0: {} + filelist@1.0.4: dependencies: minimatch: 5.1.6 @@ -5071,11 +9166,13 @@ snapshots: fn.name@1.1.0: {} - foreground-child@3.2.1: + foreground-child@3.3.0: dependencies: - cross-spawn: 7.0.3 + cross-spawn: 7.0.5 signal-exit: 4.1.0 + fs-constants@1.0.0: {} + fs-extra@7.0.1: dependencies: graceful-fs: 4.2.11 @@ -5097,6 +9194,8 @@ snapshots: fsevents@2.3.3: optional: true + function-bind@1.1.2: {} + gauge@3.0.2: dependencies: aproba: 2.0.0 @@ -5111,11 +9210,12 @@ snapshots: get-caller-file@2.0.5: {} - get-func-name@2.0.2: {} - get-package-type@0.1.0: {} - get-stream@6.0.1: {} + get-stream@2.3.1: + dependencies: + object-assign: 4.1.1 + pinkie-promise: 2.0.1 glob-parent@5.1.2: dependencies: @@ -5123,11 +9223,11 @@ snapshots: glob@10.4.5: dependencies: - foreground-child: 3.2.1 + foreground-child: 3.3.0 jackspeak: 3.4.3 minimatch: 9.0.5 minipass: 7.1.2 - package-json-from-dist: 1.0.0 + package-json-from-dist: 1.0.1 path-scurry: 1.11.1 glob@7.2.3: @@ -5144,7 +9244,7 @@ snapshots: array-union: 2.1.0 dir-glob: 3.0.1 fast-glob: 3.3.2 - ignore: 5.3.1 + ignore: 5.3.2 merge2: 1.4.1 slash: 3.0.0 @@ -5154,6 +9254,10 @@ snapshots: has-unicode@2.0.1: {} + hasown@2.0.2: + dependencies: + function-bind: 1.1.2 + he@1.2.0: {} https-proxy-agent@5.0.1: @@ -5172,13 +9276,13 @@ snapshots: human-id@1.0.2: {} - human-signals@2.1.0: {} - iconv-lite@0.4.24: dependencies: safer-buffer: 2.1.2 - ignore@5.3.1: {} + ieee754@1.2.1: {} + + ignore@5.3.2: {} indent-string@4.0.0: {} @@ -5189,13 +9293,15 @@ snapshots: inherits@2.0.4: {} + internmap@2.0.3: {} + is-arrayish@0.3.2: {} - is-binary-path@2.1.0: + is-core-module@2.15.1: dependencies: - binary-extensions: 2.3.0 + hasown: 2.0.2 - is-docker@3.0.0: {} + is-docker@2.2.1: {} is-extglob@2.1.1: {} @@ -5205,12 +9311,12 @@ snapshots: dependencies: is-extglob: 2.1.1 - is-inside-container@1.0.0: - dependencies: - is-docker: 3.0.0 + is-natural-number@4.0.1: {} is-number@7.0.0: {} + is-stream@1.1.0: {} + is-stream@2.0.1: {} is-subdir@1.2.0: @@ -5219,9 +9325,11 @@ snapshots: is-windows@1.0.2: {} - is-wsl@3.1.0: + is-wsl@2.2.0: dependencies: - is-inside-container: 1.0.0 + is-docker: 2.2.1 + + isarray@1.0.0: {} isexe@2.0.0: {} @@ -5233,13 +9341,15 @@ snapshots: jake@10.9.2: dependencies: - async: 3.2.5 + async: 3.2.6 chalk: 4.1.2 filelist: 1.0.4 minimatch: 3.1.2 joycon@3.1.1: {} + js-tokens@4.0.0: {} + js-yaml@3.14.1: dependencies: argparse: 1.0.10 @@ -5267,47 +9377,49 @@ snapshots: lodash.startcase@4.4.0: {} - logform@2.6.1: + lodash@4.17.21: {} + + logform@2.7.0: dependencies: '@colors/colors': 1.6.0 '@types/triple-beam': 1.3.5 fecha: 4.2.3 ms: 2.1.3 - safe-stable-stringify: 2.4.3 + safe-stable-stringify: 2.5.0 triple-beam: 1.4.1 long@5.2.3: {} - loupe@3.1.1: + loose-envify@1.4.0: dependencies: - get-func-name: 2.0.2 + js-tokens: 4.0.0 + + loupe@3.1.2: {} lru-cache@10.4.3: {} - lru-cache@11.0.1: {} + lru-cache@11.0.2: {} lru-cache@4.1.5: dependencies: pseudomap: 1.0.2 yallist: 2.1.2 - magic-string@0.30.10: + magic-string@0.30.12: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 - magic-string@0.30.11: + make-dir@1.3.0: dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 + pify: 3.0.0 make-dir@3.1.0: dependencies: semver: 6.3.1 - merge-stream@2.0.0: {} - merge2@1.4.1: {} - micromatch@4.0.7: + micromatch@4.0.8: dependencies: braces: 3.0.3 picomatch: 2.3.1 @@ -5318,8 +9430,6 @@ snapshots: dependencies: mime-db: 1.52.0 - mimic-fn@2.1.0: {} - minimatch@3.1.2: dependencies: brace-expansion: 1.1.11 @@ -5348,7 +9458,7 @@ snapshots: minizlib@3.0.1: dependencies: minipass: 7.1.2 - rimraf: 5.0.9 + rimraf: 5.0.10 mkdirp@1.0.4: {} @@ -5356,7 +9466,7 @@ snapshots: mri@1.2.0: {} - ms@2.1.2: {} + ms@2.0.0: {} ms@2.1.3: {} @@ -5378,12 +9488,6 @@ snapshots: dependencies: abbrev: 1.1.1 - normalize-path@3.0.0: {} - - npm-run-path@4.0.1: - dependencies: - path-key: 3.1.1 - npmlog@5.0.1: dependencies: are-we-there-yet: 2.0.0 @@ -5401,10 +9505,6 @@ snapshots: dependencies: fn.name: 1.1.0 - onetime@5.1.2: - dependencies: - mimic-fn: 2.1.0 - os-tmpdir@1.0.2: {} outdent@0.5.0: {} @@ -5425,9 +9525,9 @@ snapshots: p-try@2.2.0: {} - package-json-from-dist@1.0.0: {} + package-json-from-dist@1.0.1: {} - package-manager-detector@0.2.0: {} + package-manager-detector@0.2.2: {} path-browserify@1.0.1: {} @@ -5437,6 +9537,8 @@ snapshots: path-key@3.1.1: {} + path-parse@1.0.7: {} + path-scurry@1.11.1: dependencies: lru-cache: 10.4.3 @@ -5448,36 +9550,46 @@ snapshots: pathval@2.0.0: {} - picocolors@1.1.0: {} + pend@1.2.0: {} + + picocolors@1.1.1: {} picomatch@2.3.1: {} + picomatch@4.0.2: {} + + pify@2.3.0: {} + + pify@3.0.0: {} + pify@4.0.1: {} + pinkie-promise@2.0.1: + dependencies: + pinkie: 2.0.4 + + pinkie@2.0.4: {} + pirates@4.0.6: {} - postcss-load-config@6.0.1(postcss@8.4.47)(yaml@2.5.1): + postcss-load-config@6.0.1(postcss@8.4.48)(yaml@2.6.0): dependencies: lilconfig: 3.1.2 optionalDependencies: - postcss: 8.4.47 - yaml: 2.5.1 - - postcss@8.4.44: - dependencies: - nanoid: 3.3.7 - picocolors: 1.1.0 - source-map-js: 1.2.0 + postcss: 8.4.48 + yaml: 2.6.0 - postcss@8.4.47: + postcss@8.4.48: dependencies: nanoid: 3.3.7 - picocolors: 1.1.0 + picocolors: 1.1.1 source-map-js: 1.2.1 prettier@2.8.8: {} - protobufjs@7.3.2: + process-nextick-args@2.0.1: {} + + protobufjs@7.4.0: dependencies: '@protobufjs/aspromise': 1.1.2 '@protobufjs/base64': 1.1.2 @@ -5489,12 +9601,12 @@ snapshots: '@protobufjs/path': 1.1.2 '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 - '@types/node': 22.0.0 + '@types/node': 22.9.0 long: 5.2.3 pseudomap@1.0.2: {} - pump@3.0.0: + pump@3.0.2: dependencies: end-of-stream: 1.4.4 once: 1.4.0 @@ -5517,6 +9629,16 @@ snapshots: '@jitl/quickjs-wasmfile-release-sync': 0.31.0 quickjs-emscripten-core: 0.31.0 + react-dom@18.3.1(react@18.3.1): + dependencies: + loose-envify: 1.4.0 + react: 18.3.1 + scheduler: 0.23.2 + + react@18.3.1: + dependencies: + loose-envify: 1.4.0 + read-yaml-file@1.1.0: dependencies: graceful-fs: 4.2.11 @@ -5524,15 +9646,23 @@ snapshots: pify: 4.0.1 strip-bom: 3.0.0 + readable-stream@2.3.8: + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 1.0.0 + process-nextick-args: 2.0.1 + safe-buffer: 5.1.2 + string_decoder: 1.1.1 + util-deprecate: 1.0.2 + readable-stream@3.6.2: dependencies: inherits: 2.0.4 string_decoder: 1.3.0 util-deprecate: 1.0.2 - readdirp@3.6.0: - dependencies: - picomatch: 2.3.1 + readdirp@4.0.2: {} regenerator-runtime@0.14.1: {} @@ -5540,70 +9670,66 @@ snapshots: resolve-from@5.0.0: {} + resolve@1.22.8: + dependencies: + is-core-module: 2.15.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + reusify@1.0.4: {} rimraf@3.0.2: dependencies: glob: 7.2.3 - rimraf@5.0.9: + rimraf@5.0.10: dependencies: glob: 10.4.5 - rollup@4.19.1: - dependencies: - '@types/estree': 1.0.5 - optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.19.1 - '@rollup/rollup-android-arm64': 4.19.1 - '@rollup/rollup-darwin-arm64': 4.19.1 - '@rollup/rollup-darwin-x64': 4.19.1 - '@rollup/rollup-linux-arm-gnueabihf': 4.19.1 - '@rollup/rollup-linux-arm-musleabihf': 4.19.1 - '@rollup/rollup-linux-arm64-gnu': 4.19.1 - '@rollup/rollup-linux-arm64-musl': 4.19.1 - '@rollup/rollup-linux-powerpc64le-gnu': 4.19.1 - '@rollup/rollup-linux-riscv64-gnu': 4.19.1 - '@rollup/rollup-linux-s390x-gnu': 4.19.1 - '@rollup/rollup-linux-x64-gnu': 4.19.1 - '@rollup/rollup-linux-x64-musl': 4.19.1 - '@rollup/rollup-win32-arm64-msvc': 4.19.1 - '@rollup/rollup-win32-ia32-msvc': 4.19.1 - '@rollup/rollup-win32-x64-msvc': 4.19.1 - fsevents: 2.3.3 - - rollup@4.21.0: + rollup@4.25.0: dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.21.0 - '@rollup/rollup-android-arm64': 4.21.0 - '@rollup/rollup-darwin-arm64': 4.21.0 - '@rollup/rollup-darwin-x64': 4.21.0 - '@rollup/rollup-linux-arm-gnueabihf': 4.21.0 - '@rollup/rollup-linux-arm-musleabihf': 4.21.0 - '@rollup/rollup-linux-arm64-gnu': 4.21.0 - '@rollup/rollup-linux-arm64-musl': 4.21.0 - '@rollup/rollup-linux-powerpc64le-gnu': 4.21.0 - '@rollup/rollup-linux-riscv64-gnu': 4.21.0 - '@rollup/rollup-linux-s390x-gnu': 4.21.0 - '@rollup/rollup-linux-x64-gnu': 4.21.0 - '@rollup/rollup-linux-x64-musl': 4.21.0 - '@rollup/rollup-win32-arm64-msvc': 4.21.0 - '@rollup/rollup-win32-ia32-msvc': 4.21.0 - '@rollup/rollup-win32-x64-msvc': 4.21.0 + '@rollup/rollup-android-arm-eabi': 4.25.0 + '@rollup/rollup-android-arm64': 4.25.0 + '@rollup/rollup-darwin-arm64': 4.25.0 + '@rollup/rollup-darwin-x64': 4.25.0 + '@rollup/rollup-freebsd-arm64': 4.25.0 + '@rollup/rollup-freebsd-x64': 4.25.0 + '@rollup/rollup-linux-arm-gnueabihf': 4.25.0 + '@rollup/rollup-linux-arm-musleabihf': 4.25.0 + '@rollup/rollup-linux-arm64-gnu': 4.25.0 + '@rollup/rollup-linux-arm64-musl': 4.25.0 + '@rollup/rollup-linux-powerpc64le-gnu': 4.25.0 + '@rollup/rollup-linux-riscv64-gnu': 4.25.0 + '@rollup/rollup-linux-s390x-gnu': 4.25.0 + '@rollup/rollup-linux-x64-gnu': 4.25.0 + '@rollup/rollup-linux-x64-musl': 4.25.0 + '@rollup/rollup-win32-arm64-msvc': 4.25.0 + '@rollup/rollup-win32-ia32-msvc': 4.25.0 + '@rollup/rollup-win32-x64-msvc': 4.25.0 fsevents: 2.3.3 run-parallel@1.2.0: dependencies: queue-microtask: 1.2.3 + safe-buffer@5.1.2: {} + safe-buffer@5.2.1: {} - safe-stable-stringify@2.4.3: {} + safe-stable-stringify@2.5.0: {} safer-buffer@2.1.2: {} + scheduler@0.23.2: + dependencies: + loose-envify: 1.4.0 + + seek-bzip@1.0.6: + dependencies: + commander: 2.20.3 + semver@6.3.1: {} semver@7.6.3: {} @@ -5634,8 +9760,6 @@ snapshots: slash@3.0.0: {} - source-map-js@1.2.0: {} - source-map-js@1.2.1: {} source-map@0.8.0-beta.0: @@ -5653,15 +9777,20 @@ snapshots: stackback@0.0.2: {} - std-env@3.7.0: {} + std-env@3.8.0: {} + + stream-browserify@3.0.0: + dependencies: + inherits: 2.0.4 + readable-stream: 3.6.2 - streamx@2.18.0: + streamx@2.20.1: dependencies: fast-fifo: 1.3.2 queue-tick: 1.0.1 - text-decoder: 1.1.1 + text-decoder: 1.2.1 optionalDependencies: - bare-events: 2.4.2 + bare-events: 2.5.0 string-width@4.2.3: dependencies: @@ -5675,6 +9804,10 @@ snapshots: emoji-regex: 9.2.2 strip-ansi: 7.1.0 + string_decoder@1.1.1: + dependencies: + safe-buffer: 5.1.2 + string_decoder@1.3.0: dependencies: safe-buffer: 5.2.1 @@ -5685,11 +9818,13 @@ snapshots: strip-ansi@7.1.0: dependencies: - ansi-regex: 6.0.1 + ansi-regex: 6.1.0 strip-bom@3.0.0: {} - strip-final-newline@2.0.0: {} + strip-dirs@2.1.0: + dependencies: + is-natural-number: 4.0.1 strnum@1.0.5: {} @@ -5711,19 +9846,31 @@ snapshots: dependencies: has-flag: 4.0.0 + supports-preserve-symlinks-flag@1.0.0: {} + tar-fs@3.0.6: dependencies: - pump: 3.0.0 + pump: 3.0.2 tar-stream: 3.1.7 optionalDependencies: - bare-fs: 2.3.1 + bare-fs: 2.3.5 bare-path: 2.1.3 + 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@3.1.7: dependencies: - b4a: 1.6.6 + b4a: 1.6.7 fast-fifo: 1.3.2 - streamx: 2.18.0 + streamx: 2.20.1 tar@6.2.1: dependencies: @@ -5745,9 +9892,7 @@ snapshots: term-size@2.2.1: {} - text-decoder@1.1.1: - dependencies: - b4a: 1.6.6 + text-decoder@1.2.1: {} text-hex@1.0.0: {} @@ -5759,21 +9904,28 @@ snapshots: dependencies: any-promise: 1.3.0 + through@2.3.8: {} + tinybench@2.9.0: {} - tinyexec@0.3.0: {} + tinyexec@0.3.1: {} + + tinyglobby@0.2.10: + dependencies: + fdir: 6.4.2(picomatch@4.0.2) + picomatch: 4.0.2 - tinypool@1.0.0: {} + tinypool@1.0.1: {} tinyrainbow@1.2.0: {} - tinyspy@3.0.0: {} + tinyspy@3.0.2: {} tmp@0.0.33: dependencies: os-tmpdir: 1.0.2 - to-fast-properties@2.0.0: {} + to-buffer@1.1.1: {} to-regex-range@5.0.1: dependencies: @@ -5791,45 +9943,76 @@ snapshots: ts-interface-checker@0.1.13: {} - tslib@2.6.3: {} + tslib@2.8.1: {} - tsup@8.1.2(postcss@8.4.47)(typescript@5.5.4)(yaml@2.5.1): + tsup@8.3.5(postcss@8.4.48)(typescript@5.6.3)(yaml@2.6.0): dependencies: - bundle-require: 5.0.0(esbuild@0.23.0) + bundle-require: 5.0.0(esbuild@0.24.0) cac: 6.7.14 - chokidar: 3.6.0 + chokidar: 4.0.1 consola: 3.2.3 - debug: 4.3.6 - esbuild: 0.23.0 - execa: 5.1.1 - globby: 11.1.0 + debug: 4.3.7(supports-color@8.1.1) + esbuild: 0.24.0 joycon: 3.1.1 - postcss-load-config: 6.0.1(postcss@8.4.47)(yaml@2.5.1) + picocolors: 1.1.1 + postcss-load-config: 6.0.1(postcss@8.4.48)(yaml@2.6.0) resolve-from: 5.0.0 - rollup: 4.19.1 + rollup: 4.25.0 source-map: 0.8.0-beta.0 sucrase: 3.35.0 + tinyexec: 0.3.1 + tinyglobby: 0.2.10 tree-kill: 1.2.2 optionalDependencies: - postcss: 8.4.47 - typescript: 5.5.4 + postcss: 8.4.48 + typescript: 5.6.3 transitivePeerDependencies: - jiti - supports-color - tsx - yaml + turbo-darwin-64@2.2.3: + optional: true + + turbo-darwin-arm64@2.2.3: + optional: true + + turbo-linux-64@2.2.3: + optional: true + + turbo-linux-arm64@2.2.3: + optional: true + + turbo-windows-64@2.2.3: + optional: true + + turbo-windows-arm64@2.2.3: + optional: true + + turbo@2.2.3: + optionalDependencies: + turbo-darwin-64: 2.2.3 + turbo-darwin-arm64: 2.2.3 + turbo-linux-64: 2.2.3 + turbo-linux-arm64: 2.2.3 + turbo-windows-64: 2.2.3 + turbo-windows-arm64: 2.2.3 + type-fest@0.21.3: {} typescript@3.9.10: {} - typescript@5.5.4: {} + typescript@5.6.3: {} - undici-types@6.11.1: {} + unbzip2-stream@1.4.3: + dependencies: + buffer: 5.7.1 + through: 2.3.8 undici-types@6.19.8: {} - undici@6.19.8: {} + undici@6.20.1: {} universalify@0.1.2: {} @@ -5839,29 +10022,12 @@ snapshots: uuid@9.0.1: {} - vite-node@2.1.1(@types/node@22.0.0): - dependencies: - cac: 6.7.14 - debug: 4.3.7(supports-color@8.1.1) - pathe: 1.1.2 - vite: 5.4.3(@types/node@22.0.0) - transitivePeerDependencies: - - '@types/node' - - less - - lightningcss - - sass - - sass-embedded - - stylus - - sugarss - - supports-color - - terser - - vite-node@2.1.2(@types/node@22.0.0): + vite-node@2.1.4(@types/node@22.9.0): dependencies: cac: 6.7.14 debug: 4.3.7(supports-color@8.1.1) pathe: 1.1.2 - vite: 5.4.3(@types/node@22.0.0) + vite: 5.4.11(@types/node@22.9.0) transitivePeerDependencies: - '@types/node' - less @@ -5873,72 +10039,39 @@ snapshots: - supports-color - terser - vite@5.4.3(@types/node@22.0.0): + vite@5.4.11(@types/node@22.9.0): dependencies: esbuild: 0.21.5 - postcss: 8.4.44 - rollup: 4.21.0 + postcss: 8.4.48 + rollup: 4.25.0 optionalDependencies: - '@types/node': 22.0.0 + '@types/node': 22.9.0 fsevents: 2.3.3 - vitest@2.1.1(@types/node@22.0.0): - dependencies: - '@vitest/expect': 2.1.1 - '@vitest/mocker': 2.1.1(@vitest/spy@2.1.1)(vite@5.4.3(@types/node@22.0.0)) - '@vitest/pretty-format': 2.1.1 - '@vitest/runner': 2.1.1 - '@vitest/snapshot': 2.1.1 - '@vitest/spy': 2.1.1 - '@vitest/utils': 2.1.1 - chai: 5.1.1 - debug: 4.3.7(supports-color@8.1.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.3(@types/node@22.0.0) - vite-node: 2.1.1(@types/node@22.0.0) - why-is-node-running: 2.3.0 - optionalDependencies: - '@types/node': 22.0.0 - transitivePeerDependencies: - - less - - lightningcss - - msw - - sass - - sass-embedded - - stylus - - sugarss - - supports-color - - terser - - vitest@2.1.2(@types/node@22.0.0): + vitest@2.1.4(@types/node@22.9.0): dependencies: - '@vitest/expect': 2.1.2 - '@vitest/mocker': 2.1.2(@vitest/spy@2.1.2)(vite@5.4.3(@types/node@22.0.0)) - '@vitest/pretty-format': 2.1.2 - '@vitest/runner': 2.1.2 - '@vitest/snapshot': 2.1.2 - '@vitest/spy': 2.1.2 - '@vitest/utils': 2.1.2 - chai: 5.1.1 + '@vitest/expect': 2.1.4 + '@vitest/mocker': 2.1.4(vite@5.4.11(@types/node@22.9.0)) + '@vitest/pretty-format': 2.1.4 + '@vitest/runner': 2.1.4 + '@vitest/snapshot': 2.1.4 + '@vitest/spy': 2.1.4 + '@vitest/utils': 2.1.4 + chai: 5.1.2 debug: 4.3.7(supports-color@8.1.1) - magic-string: 0.30.11 + expect-type: 1.1.0 + magic-string: 0.30.12 pathe: 1.1.2 - std-env: 3.7.0 + std-env: 3.8.0 tinybench: 2.9.0 - tinyexec: 0.3.0 - tinypool: 1.0.0 + tinyexec: 0.3.1 + tinypool: 1.0.1 tinyrainbow: 1.2.0 - vite: 5.4.3(@types/node@22.0.0) - vite-node: 2.1.2(@types/node@22.0.0) + vite: 5.4.11(@types/node@22.9.0) + vite-node: 2.1.4(@types/node@22.9.0) why-is-node-running: 2.3.0 optionalDependencies: - '@types/node': 22.0.0 + '@types/node': 22.9.0 transitivePeerDependencies: - less - lightningcss @@ -5952,32 +10085,22 @@ snapshots: vscode-uri@3.0.8: {} - vue-tsc@2.1.6(typescript@5.5.4): + vue-tsc@2.1.10(typescript@5.6.3): dependencies: - '@volar/typescript': 2.4.1 - '@vue/language-core': 2.1.6(typescript@5.5.4) + '@volar/typescript': 2.4.10 + '@vue/language-core': 2.1.10(typescript@5.6.3) semver: 7.6.3 - typescript: 5.5.4 - - vue@3.4.38(typescript@5.5.4): - dependencies: - '@vue/compiler-dom': 3.4.38 - '@vue/compiler-sfc': 3.4.38 - '@vue/runtime-dom': 3.4.38 - '@vue/server-renderer': 3.4.38(vue@3.4.38(typescript@5.5.4)) - '@vue/shared': 3.4.38 - optionalDependencies: - typescript: 5.5.4 + typescript: 5.6.3 - vue@3.5.11(typescript@5.5.4): + vue@3.5.12(typescript@5.6.3): dependencies: - '@vue/compiler-dom': 3.5.11 - '@vue/compiler-sfc': 3.5.11 - '@vue/runtime-dom': 3.5.11 - '@vue/server-renderer': 3.5.11(vue@3.5.11(typescript@5.5.4)) - '@vue/shared': 3.5.11 + '@vue/compiler-dom': 3.5.12 + '@vue/compiler-sfc': 3.5.12 + '@vue/runtime-dom': 3.5.12 + '@vue/server-renderer': 3.5.12(vue@3.5.12(typescript@5.6.3)) + '@vue/shared': 3.5.12 optionalDependencies: - typescript: 5.5.4 + typescript: 5.6.3 webidl-conversions@3.0.1: {} @@ -6015,25 +10138,25 @@ snapshots: dependencies: string-width: 4.2.3 - winston-transport@4.7.1: + winston-transport@4.9.0: dependencies: - logform: 2.6.1 + logform: 2.7.0 readable-stream: 3.6.2 triple-beam: 1.4.1 - winston@3.14.2: + winston@3.17.0: dependencies: '@colors/colors': 1.6.0 '@dabh/diagnostics': 2.0.3 - async: 3.2.5 + async: 3.2.6 is-stream: 2.0.1 - logform: 2.6.1 + logform: 2.7.0 one-time: 1.0.0 readable-stream: 3.6.2 - safe-stable-stringify: 2.4.3 + safe-stable-stringify: 2.5.0 stack-trace: 0.0.10 triple-beam: 1.4.1 - winston-transport: 4.7.1 + winston-transport: 4.9.0 wordwrap@1.0.0: {} @@ -6051,6 +10174,8 @@ snapshots: wrappy@1.0.2: {} + xtend@4.0.2: {} + y18n@5.0.8: {} yallist@2.1.2: {} @@ -6059,18 +10184,23 @@ snapshots: yallist@5.0.0: {} - yaml@2.5.1: {} + yaml@2.6.0: {} yargs-parser@21.1.1: {} yargs@17.7.2: dependencies: cliui: 8.0.1 - escalade: 3.1.2 + escalade: 3.2.0 get-caller-file: 2.0.5 require-directory: 2.1.1 string-width: 4.2.3 y18n: 5.0.8 yargs-parser: 21.1.1 + yauzl@2.10.0: + dependencies: + buffer-crc32: 0.2.13 + fd-slicer: 1.1.0 + zod@3.23.8: {} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 1483b2c..66adc79 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -3,26 +3,30 @@ packages: - model - ui - test + - software - . catalog: - "@platforma-sdk/model": ^1.5.40 - "@platforma-sdk/ui-vue": ^1.5.38 - "@platforma-sdk/workflow-tengo": ^1.3.0 - "@platforma-sdk/block-tools": ^2.3.12 - "@platforma-sdk/test": ^1.5.43 - "@platforma-sdk/tengo-builder": ^1.14.13 + "@platforma-sdk/model": ^1.7.20 + "@platforma-sdk/ui-vue": ^1.7.46 + "@platforma-sdk/workflow-tengo": ^1.8.1 + "@platforma-sdk/block-tools": ^2.3.21 + "@platforma-sdk/test": ^1.8.5 + "@platforma-sdk/tengo-builder": ^1.16.1 + "@platforma-sdk/package-builder": ^2.11.1 "@milaboratories/graph-maker": ^1.0.19 + "@platforma-open/milaboratories.runenv-python-3": ^3.12.6 - "vue": ^3.4.34 - "vue-tsc": ^2.0.29 + "vue": ^3.5.12 + "vue-tsc": ^2.1.6 - "typescript": ^5.5.4 - "tsup": ~8.1.2 + "typescript": ^5.6.3 + "tsup": ~8.3.5 + "turbo": ^2.2.3 - "vite": ^5.3.5 - "vitest": ^2.0.4 - "@vitejs/plugin-vue": ^5.1.0 + "vite": ^5.4.10 + "vitest": ^2.1.4 + "@vitejs/plugin-vue": ^5.1.4 - "@changesets/cli": ^2.27.7 + "@changesets/cli": ^2.27.9 diff --git a/software/package.json b/software/package.json new file mode 100644 index 0000000..9f060da --- /dev/null +++ b/software/package.json @@ -0,0 +1,40 @@ +{ + "name": "@platforma-open/my-org.block-boilerplate.software", + "version": "1.0.0", + "type": "module", + "description": "Block Software", + "scripts": { + "build": "pl-pkg build", + "build:dev": "pl-pkg build --dev=local", + "test": "true", + + "prepublishOnly": "" + }, + "block-software": { + "artifacts": { + "hello-python-artifact": { + "type": "python", + "registry": "platforma-open", + "version": "1.0.0", + "environment": "@platforma-open/milaboratories.runenv-python-3:3.12.6", + "dependencies": { + "toolset": "pip", + "requirements": "requirements.txt" + }, + "root": "./src_python" + } + }, + "entrypoints": { + "hello-world-python": { + "binary": { + "artifact": "hello-python-artifact", + "cmd": [ "python", "{pkg}/hello.py" ] + } + } + } + }, + "devDependencies": { + "@platforma-open/milaboratories.runenv-python-3": "^1.0.0", + "@platforma-sdk/package-builder": "catalog:" + } +} diff --git a/software/src_python/hello.py b/software/src_python/hello.py new file mode 100644 index 0000000..d47d804 --- /dev/null +++ b/software/src_python/hello.py @@ -0,0 +1,4 @@ +import sys +import click + +print("Hello from Python, " + sys.argv[1] + "!") diff --git a/software/src_python/requirements.txt b/software/src_python/requirements.txt new file mode 100644 index 0000000..2f72dd5 --- /dev/null +++ b/software/src_python/requirements.txt @@ -0,0 +1 @@ +click==8.1.7 diff --git a/turbo.json b/turbo.json new file mode 100644 index 0000000..9bd1ef4 --- /dev/null +++ b/turbo.json @@ -0,0 +1,20 @@ +{ + "$schema": "https://turbo.build/schema.json", + "globalDependencies": ["tsconfig.json"], + "extends": ["//"], + "tasks": { + "build": { + "inputs": ["$TURBO_DEFAULT$"], + "outputs": ["./dist/**"], + "dependsOn": ["^build"] + }, + "build:dev": { + "dependsOn": ["build"], + "outputs": ["./dist/**"] + }, + "test": { + "dependsOn": ["^build:dev", "build"], + "passThroughEnv": ["PL_ADDRESS", "PL_TEST_PASSWORD", "PL_TEST_USER", "PL_TEST_PROXY", "DEBUG"] + } + } +} diff --git a/ui/src/app.ts b/ui/src/app.ts index efebcb2..425afec 100644 --- a/ui/src/app.ts +++ b/ui/src/app.ts @@ -5,7 +5,7 @@ import MainPage from "./pages/MainPage.vue"; export const sdkPlugin = defineApp(model, () => { return { routes: { - "/": MainPage, + "/": () => MainPage, }, }; }); diff --git a/ui/src/pages/MainPage.vue b/ui/src/pages/MainPage.vue index c24c5c8..3e98018 100644 --- a/ui/src/pages/MainPage.vue +++ b/ui/src/pages/MainPage.vue @@ -11,11 +11,9 @@ const app = useApp(); - + {{ app.model.outputs.tengoMessage }} - {{ app.model.outputs.message }} - - + {{ app.model.outputs.pythonMessage }} diff --git a/workflow/package.json b/workflow/package.json index 9eaeaca..9eeb416 100644 --- a/workflow/package.json +++ b/workflow/package.json @@ -8,6 +8,9 @@ "test": "vitest", "format": "/usr/bin/env emacs --script ./format.el" }, + "dependencies": { + "@platforma-open/my-org.block-boilerplate.software": "workspace:*" + }, "devDependencies": { "@platforma-sdk/tengo-builder": "catalog:", "@platforma-sdk/workflow-tengo": "catalog:", diff --git a/workflow/src/main.tpl.tengo b/workflow/src/main.tpl.tengo index 204d76d..1bd013f 100644 --- a/workflow/src/main.tpl.tengo +++ b/workflow/src/main.tpl.tengo @@ -1,12 +1,25 @@ // "hello world" wf := import("@platforma-sdk/workflow-tengo:workflow") +exec := import("@platforma-sdk/workflow-tengo:exec") +assets:= import("@platforma-sdk/workflow-tengo:assets") wf.body(func(args) { + python := exec.builder(). + software(assets.importSoftware("@platforma-open/my-org.block-boilerplate.software:hello-world-python")). + arg(args.name). + saveStdoutContent(). + run() + pythonMessage := python.getStdoutFileContent() + + tengoMessage := "Hello from Tengo, " + args.name + "!" + return { outputs: { - message: "Hello, " + args.name + "!" + pythonMessage: pythonMessage, + tengoMessage: tengoMessage }, exports: {} } }) + diff --git a/workflow/src/wf.test.ts b/workflow/src/wf.test.ts index 456d31b..4399ddb 100644 --- a/workflow/src/wf.test.ts +++ b/workflow/src/wf.test.ts @@ -7,7 +7,10 @@ tplTest( name: 'World' }); - const message = results.output("message", (a) => a?.getDataAsJson()); - expect(await message.awaitStableValue()).eq('Hello, World!'); + const pythonMessage = results.output("pythonMessage", (a) => a?.getDataAsString()); + expect(await pythonMessage.awaitStableValue()).eq('Hello from Python, World!\n'); + + const tengoMessage = results.output("tengoMessage", (a) => a?.getDataAsJson()); + expect(await tengoMessage.awaitStableValue()).eq('Hello from Tengo, World!'); } );