From 08e2d7d1470197cc504c970ef7ddefd45f935194 Mon Sep 17 00:00:00 2001 From: Benjamin Isbarn Date: Mon, 16 Jan 2023 19:58:26 +0100 Subject: [PATCH 1/2] photoprism: use buildNpmPackage for frontend --- .../node-packages/node-packages.json | 1 - pkgs/development/node-packages/overrides.nix | 4 - pkgs/servers/photoprism/frontend.nix | 33 +---- pkgs/servers/photoprism/package.json | 123 ------------------ 4 files changed, 7 insertions(+), 154 deletions(-) delete mode 100644 pkgs/servers/photoprism/package.json diff --git a/pkgs/development/node-packages/node-packages.json b/pkgs/development/node-packages/node-packages.json index d686311dd55c..c687e763c284 100644 --- a/pkgs/development/node-packages/node-packages.json +++ b/pkgs/development/node-packages/node-packages.json @@ -249,7 +249,6 @@ , "patch-package" , "peerflix" , "peerflix-server" -, {"photoprism-frontend": "../../servers/photoprism"} , "pkg" , "pm2" , "pnpm" diff --git a/pkgs/development/node-packages/overrides.nix b/pkgs/development/node-packages/overrides.nix index f7bab3a9321f..e11e15f67eee 100644 --- a/pkgs/development/node-packages/overrides.nix +++ b/pkgs/development/node-packages/overrides.nix @@ -361,10 +361,6 @@ final: prev: { ''; }; - photoprism-frontend = prev."photoprism-frontend-../../servers/photoprism".override { - meta.broken = true; # use the top-level package instead - }; - pnpm = prev.pnpm.override { nativeBuildInputs = [ pkgs.buildPackages.makeWrapper ]; diff --git a/pkgs/servers/photoprism/frontend.nix b/pkgs/servers/photoprism/frontend.nix index 0eb5731e2224..08822eb0c56a 100644 --- a/pkgs/servers/photoprism/frontend.nix +++ b/pkgs/servers/photoprism/frontend.nix @@ -1,39 +1,20 @@ -{ lib, nodePackages, nodejs-14_x, stdenv, src, version, ... }: +{ lib, buildNpmPackage, src, version }: -let - nodeDependencies = nodePackages.photoprism-frontend.override { - inherit version; - name = "photoprism-frontend-dependencies"; - - # Workaround for lack of sourceRoot option in buildNodePackage. - src = "${src}/frontend"; - - meta.broken = false; - }; -in -stdenv.mkDerivation { +buildNpmPackage { inherit src version; pname = "photoprism-frontend"; - buildInputs = [ nodejs-14_x ]; - - buildPhase = '' - runHook preBuild - - pushd frontend - ln -s ${nodeDependencies}/lib/node_modules/photoprism/node_modules ./node_modules - export PATH="${nodeDependencies}/lib/node_modules/photoprism/node_modules/.bin:$PATH" - NODE_ENV=production npm run build - popd - - runHook postBuild + postPatch = '' + cd frontend ''; + npmDepsHash = "sha256-NAtZ85WjiQn9w0B9Y78XL+tSsshHlaXS8+WtojFJmGg="; + installPhase = '' runHook preInstall mkdir $out - cp -r assets $out/ + cp -r ../assets $out/ runHook postInstall ''; diff --git a/pkgs/servers/photoprism/package.json b/pkgs/servers/photoprism/package.json deleted file mode 100644 index 97a0b80c226a..000000000000 --- a/pkgs/servers/photoprism/package.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "name": "photoprism", - "version": "1.0.0", - "description": "AI-Powered Photos App", - "author": "PhotoPrism UG", - "license": "AGPL-3.0", - "private": true, - "scripts": { - "watch": "webpack --watch", - "build": "webpack --node-env=production", - "trace": "webpack --stats-children", - "debug": "webpack --stats-error-details", - "lint": "eslint --cache src/ *.js", - "fmt": "eslint --cache --fix src/ *.js .eslintrc.js", - "test": "karma start", - "upgrade": "npm --depth 10 update && npm audit fix", - "testcafe": "testcafe", - "acceptance-local": "testcafe chromium --selector-timeout 5000 -S -s tests/acceptance/screenshots tests/acceptance", - "gettext-extract": "gettext-extract --output src/locales/translations.pot $(find ${SRC:-src} -type f \\( -iname \\*.vue -o -iname \\*.js \\) -not -path src/common/vm.js)", - "gettext-compile": "gettext-compile --output src/locales/translations.json src/locales/*.po" - }, - "dependencies": { - "@babel/cli": "^7.19.3", - "@babel/core": "^7.19.3", - "@babel/eslint-parser": "^7.19.1", - "@babel/plugin-proposal-class-properties": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.19.4", - "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.4", - "@babel/register": "^7.18.9", - "@babel/runtime": "^7.19.4", - "@lcdp/offline-plugin": "^5.1.1", - "@vvo/tzdb": "^6.71.0", - "axios": "^0.27.2", - "axios-mock-adapter": "^1.21.2", - "babel-loader": "^8.2.5", - "babel-plugin-istanbul": "^6.1.1", - "browserslist": "^4.21.4", - "chai": "^4.3.6", - "cheerio": "1.0.0-rc.10", - "chrome-finder": "^1.0.7", - "core-js": "^3.25.5", - "cross-env": "^7.0.3", - "css-loader": "^6.7.1", - "cssnano": "^5.1.13", - "easygettext": "^2.17.0", - "eslint": "^8.25.0", - "eslint-config-prettier": "^8.5.0", - "eslint-config-standard": "^17.0.0", - "eslint-formatter-pretty": "^4.1.0", - "eslint-plugin-html": "^7.1.0", - "eslint-plugin-import": "^2.26.0", - "eslint-plugin-node": "^11.1.0", - "eslint-plugin-prettier-vue": "^4.2.0", - "eslint-plugin-promise": "^6.1.0", - "eslint-plugin-vue": "^9.6.0", - "eslint-webpack-plugin": "^3.2.0", - "eventsource-polyfill": "^0.9.6", - "file-loader": "^6.2.0", - "file-saver": "^2.0.5", - "hls.js": "^1.2.4", - "i": "^0.3.7", - "karma": "^6.4.1", - "karma-chrome-launcher": "^3.1.1", - "karma-coverage-istanbul-reporter": "^3.0.3", - "karma-htmlfile-reporter": "^0.3.8", - "karma-mocha": "^2.0.1", - "karma-verbose-reporter": "^0.0.8", - "karma-webpack": "^5.0.0", - "luxon": "^3.0.4", - "maplibre-gl": "^2.4.0", - "memoize-one": "^6.0.0", - "mini-css-extract-plugin": "^2.6.1", - "minimist": ">=1.2.5", - "mocha": "^10.1.0", - "node-storage-shim": "^2.0.1", - "photoswipe": "^4.1.3", - "postcss": "^8.4.18", - "postcss-import": "^15.0.0", - "postcss-loader": "^7.0.1", - "postcss-preset-env": "^7.8.2", - "postcss-reporter": "^7.0.5", - "postcss-url": "^10.1.3", - "prettier": "^2.7.1", - "pubsub-js": "^1.9.4", - "regenerator-runtime": "^0.13.10", - "resolve-url-loader": "^5.0.0", - "sass": "^1.55.0", - "sass-loader": "^13.1.0", - "server": "^1.0.37", - "sockette": "^2.0.6", - "style-loader": "^3.3.1", - "svg-url-loader": "^8.0.0", - "tar": "^6.1.11", - "url-loader": "^4.1.1", - "util": "^0.12.5", - "vue": "^2.6.14", - "vue-fullscreen": "^2.5.2", - "vue-gettext": "^2.1.12", - "vue-infinite-scroll": "^2.0.2", - "vue-loader": "^15.9.8", - "vue-loader-plugin": "^1.3.0", - "vue-luxon": "^0.10.0", - "vue-router": "^3.5.2", - "vue-style-loader": "^4.1.3", - "vue-template-compiler": "^2.7.10", - "vue2-filters": "^0.14.0", - "vuetify": "^1.5.24", - "webpack": "^5.74.0", - "webpack-bundle-analyzer": "^4.6.1", - "webpack-cli": "^4.10.0", - "webpack-hot-middleware": "^2.25.2", - "webpack-manifest-plugin": "^5.0.0", - "webpack-md5-hash": "^0.0.6", - "webpack-merge": "^5.8.0" - }, - "engines": { - "node": ">= 16.0.0", - "npm": ">= 8.0.0", - "yarn": "please use npm" - }, - "browserslist": ">0.25% and last 2 years" -} From 7d1f7b6b09b4a42b154afd8eef45d06c1795a15a Mon Sep 17 00:00:00 2001 From: Benjamin Isbarn Date: Tue, 17 Jan 2023 20:01:27 +0100 Subject: [PATCH 2/2] photoprism: 221102-905925b4d -> 221118-e58fee0fb --- .../node-packages/node-packages.nix | 14328 ++++++---------- pkgs/servers/photoprism/backend.nix | 2 +- pkgs/servers/photoprism/default.nix | 4 +- pkgs/servers/photoprism/frontend.nix | 2 +- 4 files changed, 5491 insertions(+), 8845 deletions(-) diff --git a/pkgs/development/node-packages/node-packages.nix b/pkgs/development/node-packages/node-packages.nix index c7695c982218..57364cbde497 100644 --- a/pkgs/development/node-packages/node-packages.nix +++ b/pkgs/development/node-packages/node-packages.nix @@ -31,13 +31,13 @@ let sha512 = "ULSIYPy4ZPM301dfCxRz0l2GJjOwIo/PqmWonIu1bLml7UmnVQmH+juJcoyXp6E8gIRRNAjGYftJnNQlfy4vPg=="; }; }; - "@adobe/css-tools-4.0.1" = { + "@adobe/css-tools-4.0.2" = { name = "_at_adobe_slash_css-tools"; packageName = "@adobe/css-tools"; - version = "4.0.1"; + version = "4.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.0.1.tgz"; - sha512 = "+u76oB43nOHrF4DDWRLWDCtci7f3QJoEBigemIdIeTi1ODqjx6Tad9NCVnPRwewWlKkVab5PlK8DCtPTyX7S8g=="; + url = "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.0.2.tgz"; + sha512 = "Fx6tYjk2wKUgLi8uMANZr8GNZx05u44ArIJldn9VxLvolzlJVgHbTUCbwhMd6bcYky178+WUSxPHO3DAtGLWpw=="; }; }; "@akryum/winattr-3.0.0" = { @@ -94,13 +94,13 @@ let sha512 = "K7EO1cd89xNdwctQaR2bY9aQFDArSIrYGSWSDCnqG7RKIZ1J+XASkKVylW9NCIeVcguD6Qemxai8ZFCWg9lLFg=="; }; }; - "@alexbosworth/fiat-1.0.3" = { + "@alexbosworth/fiat-1.0.4" = { name = "_at_alexbosworth_slash_fiat"; packageName = "@alexbosworth/fiat"; - version = "1.0.3"; + version = "1.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@alexbosworth/fiat/-/fiat-1.0.3.tgz"; - sha512 = "M1OE/iyK+H77lrOEZz93f9QIi7B4RaD66O3ICRv24ECDbZogddwPWwG9HK9QDJvdGPlni67PYu8krpzEsTvFPg=="; + url = "https://registry.npmjs.org/@alexbosworth/fiat/-/fiat-1.0.4.tgz"; + sha512 = "MNjRwLfb8o3jDxJea4kAcocGo0opUoGq1U/eJ+OEBxPu1BtSNme/ih758Qma7Z2vOrknhU6isbHiXIXg7vNPAw=="; }; }; "@alexbosworth/html2unicode-1.1.5" = { @@ -148,31 +148,13 @@ let sha512 = "qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w=="; }; }; - "@angular-devkit/architect-0.1500.4" = { + "@angular-devkit/architect-0.1501.1" = { name = "_at_angular-devkit_slash_architect"; packageName = "@angular-devkit/architect"; - version = "0.1500.4"; + version = "0.1501.1"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1500.4.tgz"; - sha512 = "U9RQueICmmNk9c2zQjUN8qi/+H6kO2VKqeyuh3Vwj6yj4lQEINf1SNX8Ba9UFH/rxNo64iFM0k5x5vX0VajvCw=="; - }; - }; - "@angular-devkit/core-14.2.1" = { - name = "_at_angular-devkit_slash_core"; - packageName = "@angular-devkit/core"; - version = "14.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-14.2.1.tgz"; - sha512 = "lW8oNGuJqr4r31FWBjfWQYkSXdiOHBGOThIEtHvUVBKfPF/oVrupLueCUgBPel+NvxENXdo93uPsqHN7bZbmsQ=="; - }; - }; - "@angular-devkit/core-14.2.2" = { - name = "_at_angular-devkit_slash_core"; - packageName = "@angular-devkit/core"; - version = "14.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-14.2.2.tgz"; - sha512 = "ofDhTmJqoAkmkJP0duwUaCxDBMxPlc+AWYwgs3rKKZeJBb0d+tchEXHXevD5bYbbRfXtnwM+Vye2XYHhA4nWAA=="; + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.1501.1.tgz"; + sha512 = "2uDa/+nVGwQ5X6UJtB14V37SbD/64WSg0hKyX5z1yp6wYrSuk7PWV8hddIsiYM3aIT5wTGqfLil6NkV4G/BzQw=="; }; }; "@angular-devkit/core-15.0.4" = { @@ -184,22 +166,13 @@ let sha512 = "4ITpRAevd652SxB+qNesIQ9qfbm7wT5UBU5kJOPPwGL77I21g8CQpkmV1n5VSacPvC9Zbz90feOWexf7w7JzcA=="; }; }; - "@angular-devkit/schematics-14.2.1" = { - name = "_at_angular-devkit_slash_schematics"; - packageName = "@angular-devkit/schematics"; - version = "14.2.1"; + "@angular-devkit/core-15.1.1" = { + name = "_at_angular-devkit_slash_core"; + packageName = "@angular-devkit/core"; + version = "15.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-14.2.1.tgz"; - sha512 = "0U18FwDYt4zROBPrvewH6iBTkf2ozVHN4/gxUb9jWrqVw8mPU5AWc/iYxQLHBSinkr2Egjo1H/i9aBqgJSeh3g=="; - }; - }; - "@angular-devkit/schematics-14.2.2" = { - name = "_at_angular-devkit_slash_schematics"; - packageName = "@angular-devkit/schematics"; - version = "14.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-14.2.2.tgz"; - sha512 = "90hseNg1yQ2AR+lVr/NByZRHnYAlzCL6hr9p9q1KPHxA3Owo04yX6n6dvR/xf27hCopXInXKPsasR59XCx5ZOQ=="; + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-15.1.1.tgz"; + sha512 = "wss76zfw4oPHs+Dd0OIbLv8os/BXDkDErj9hCjBbycQN768EqF8z7EBNGy6SKHYhmfXJy9REUkEgt9qPMJb4CQ=="; }; }; "@angular-devkit/schematics-15.0.4" = { @@ -211,13 +184,22 @@ let sha512 = "/gXiLFS0+xFdx6wPoBpe/c6/K9I5edMpaASqPf4XheKtrsSvL+qTlIi3nsbfItzOiDXbaBmlbxGfkMHz/yg0Ig=="; }; }; - "@angular-devkit/schematics-cli-14.2.2" = { + "@angular-devkit/schematics-15.1.1" = { + name = "_at_angular-devkit_slash_schematics"; + packageName = "@angular-devkit/schematics"; + version = "15.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-15.1.1.tgz"; + sha512 = "ullwoxFT9aMhQR2aNwb/66A6l4HTgp4I6thbBywt86nn+ZGbJCzLKRdv2vmYh9JaxZYh1pydxWjKLEUdlycKXg=="; + }; + }; + "@angular-devkit/schematics-cli-15.0.4" = { name = "_at_angular-devkit_slash_schematics-cli"; packageName = "@angular-devkit/schematics-cli"; - version = "14.2.2"; + version = "15.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/schematics-cli/-/schematics-cli-14.2.2.tgz"; - sha512 = "timCty5tO1A5VOcy8nVJ+jL98i6+ct5/Hg+4rQxc3J6agmmNL9fALboJBEz1ckTt7MewlGtrpohMMy+YGhuWOg=="; + url = "https://registry.npmjs.org/@angular-devkit/schematics-cli/-/schematics-cli-15.0.4.tgz"; + sha512 = "rEzkpjiQcJqCgbZ1Ns8jn1BL4724jcj+YFS7Qw5d4v6yQYA8iSLz12HDTH0TiNEv7u5S55fYuRz2QreI0QUT8A=="; }; }; "@antora/asciidoc-loader-3.1.2" = { @@ -562,13 +544,13 @@ let sha512 = "TmB2K5UfpDpSbCNBBntXzKHcAk2EA3/P68jmWvmJvglVUdkO9V6kTAuXVe12+h6C4GK0ndwuCrHHtEVcL5t6pQ=="; }; }; - "@astrojs/compiler-0.29.19" = { + "@astrojs/compiler-0.31.4" = { name = "_at_astrojs_slash_compiler"; packageName = "@astrojs/compiler"; - version = "0.29.19"; + version = "0.31.4"; src = fetchurl { - url = "https://registry.npmjs.org/@astrojs/compiler/-/compiler-0.29.19.tgz"; - sha512 = "lvPpoOA6Fc1NpJrPT65ZOhhFieYkiBds9wzOhWX55lXMUpNPu5CUxqzgDAkNSTIoXHZxkxHfi+6EpFNnRZBBYQ=="; + url = "https://registry.npmjs.org/@astrojs/compiler/-/compiler-0.31.4.tgz"; + sha512 = "6bBFeDTtPOn4jZaiD3p0f05MEGQL9pw2Zbfj546oFETNmjJFWO3nzHz6/m+P53calknCvyVzZ5YhoBLIvzn5iw=="; }; }; "@asyncapi/specs-3.2.1" = { @@ -679,40 +661,40 @@ let sha512 = "JeOZ95PW+fJ6bbuqPySYqLqHk1n4+4ueEEraJsiUrPBV0S1ZtyvOGHcnGztKUjr2PYNaiexmpWuvUve9K12HRA=="; }; }; - "@aws-sdk/client-s3-3.236.0" = { + "@aws-sdk/client-s3-3.252.0" = { name = "_at_aws-sdk_slash_client-s3"; packageName = "@aws-sdk/client-s3"; - version = "3.236.0"; + version = "3.252.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.236.0.tgz"; - sha512 = "SfTq6M8a1QxMGJVzKaC+pfBzBf//Ywojb6BFhCK7jjtsUEAzvWzaaD6QbRSrZ4sN9+hpLpM7FkgXZ9NOsBX3Tg=="; + url = "https://registry.npmjs.org/@aws-sdk/client-s3/-/client-s3-3.252.0.tgz"; + sha512 = "VsTDuztgrwwBnkTZKm3t3cyXNTnWRCxDN4fCeEabw8/GB6KKSrs1a9pYXyWXuXtuvV5lFG4tIZMcXF7UkVXqyg=="; }; }; - "@aws-sdk/client-sso-3.236.0" = { + "@aws-sdk/client-sso-3.252.0" = { name = "_at_aws-sdk_slash_client-sso"; packageName = "@aws-sdk/client-sso"; - version = "3.236.0"; + version = "3.252.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.236.0.tgz"; - sha512 = "2E/XHiVSRI+L2SlVscmV/+z4A2iWF6BTUjVBFBGMmsailvGDV6XKPFocTBsHI64G25/SYkhMdELvjn5jHLKBGQ=="; + url = "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.252.0.tgz"; + sha512 = "VgBqJvvCU4y9zAHJwYj5nOeNGcCxKdCO4edUxWQVHcpLsVWu49maOVtWuteq9MOrHYeWfQi8bVWGt8MPvv9+bA=="; }; }; - "@aws-sdk/client-sso-oidc-3.236.0" = { + "@aws-sdk/client-sso-oidc-3.252.0" = { name = "_at_aws-sdk_slash_client-sso-oidc"; packageName = "@aws-sdk/client-sso-oidc"; - version = "3.236.0"; + version = "3.252.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.236.0.tgz"; - sha512 = "9TuigSXGafVto+GjKsVkhNLlnSgNWzRL5/ClZ5lY3dWrcDEJGZjFwwRB3ICerFQJBdDfsYwjNjJPhYEHzdyBfQ=="; + url = "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.252.0.tgz"; + sha512 = "OOwfEXFS+UliGZorEleARsXXUp3ObZSXo9/YY+8XF7/8froAqYjKCEi0tflghgYlh7d6qe7wzD7/6gDL1a/qgA=="; }; }; - "@aws-sdk/client-sts-3.236.0" = { + "@aws-sdk/client-sts-3.252.0" = { name = "_at_aws-sdk_slash_client-sts"; packageName = "@aws-sdk/client-sts"; - version = "3.236.0"; + version = "3.252.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.236.0.tgz"; - sha512 = "ruEALU0oPwsA8xZ/HBCoUO9rsyhPyalj20GMGpzVaNcf1dr1jMTThDQvQvvjAHjY3W56mI7ApxjK+D+gok55aw=="; + url = "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.252.0.tgz"; + sha512 = "wzfsWOlDFLdmeML8R7DUJWGl9wcRKf2uiunfB1aWzpdlgms0Z7FkHWgkDYHjCPyYHL6EBm84ajGl1UkE7AcmqQ=="; }; }; "@aws-sdk/config-resolver-3.234.0" = { @@ -742,22 +724,22 @@ let sha512 = "//z/COQm2AjYFI1Lb0wKHTQSrvLFTyuKLFQGPJsKS7DPoxGOCKB7hmYerlbl01IDoCxTdyL//TyyPxbZEOQD5Q=="; }; }; - "@aws-sdk/credential-provider-ini-3.236.0" = { + "@aws-sdk/credential-provider-ini-3.252.0" = { name = "_at_aws-sdk_slash_credential-provider-ini"; packageName = "@aws-sdk/credential-provider-ini"; - version = "3.236.0"; + version = "3.252.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.236.0.tgz"; - sha512 = "W5vMEauWgFCzvf4Hks6ToU5dhbN87gyijmwp/l9AkKKvuJ25LkveAhk8xz3bydJThHdgWNEuBMyfmlVWmdybIg=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.252.0.tgz"; + sha512 = "OfpU8xMYK7+6XQ2dUO4rN0gUhhb/ZLV7iwSL6Ji2pI9gglGhKdOSfmbn6fBfCB50kzWZRNoiQJVaBu/d0Kr0EQ=="; }; }; - "@aws-sdk/credential-provider-node-3.236.0" = { + "@aws-sdk/credential-provider-node-3.252.0" = { name = "_at_aws-sdk_slash_credential-provider-node"; packageName = "@aws-sdk/credential-provider-node"; - version = "3.236.0"; + version = "3.252.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.236.0.tgz"; - sha512 = "ktRPwmqw2P4dDzs/nJYTnuesSYqpDUEtqm2KSCKNT/fobzgfsrESLk3a7TY4l6N3muxQtKwguIa9Lulhe82+wg=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.252.0.tgz"; + sha512 = "Jt854JnB7izkJ/gb3S0hBFqAQPUNUP3eL8gXX2uqk9A9bQFQdS57/Ci0FXaEPwOXzJwAAPazD8dTf6HXMhnm3w=="; }; }; "@aws-sdk/credential-provider-process-3.226.0" = { @@ -769,13 +751,13 @@ let sha512 = "iUDMdnrTvbvaCFhWwqyXrhvQ9+ojPqPqXhwZtY1X/Qaz+73S9gXBPJHZaZb2Ke0yKE1Ql3bJbKvmmxC/qLQMng=="; }; }; - "@aws-sdk/credential-provider-sso-3.236.0" = { + "@aws-sdk/credential-provider-sso-3.252.0" = { name = "_at_aws-sdk_slash_credential-provider-sso"; packageName = "@aws-sdk/credential-provider-sso"; - version = "3.236.0"; + version = "3.252.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.236.0.tgz"; - sha512 = "HLeVsFHd8QLQwhjwhdlBhXOFIa33mzqmxOqe2Qr4FVD5IR1/G4zLpSWSwtYjpvWRZs2oWSg6XI7vSyeQttPmHg=="; + url = "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.252.0.tgz"; + sha512 = "2JGoojMOBjG9/DenctEszjdPechq0uDTpH5nx+z1xxIAugA5+HYG/ncNfpwhmUBCrnOxpRaQViTNqXddEPHlAg=="; }; }; "@aws-sdk/credential-provider-web-identity-3.226.0" = { @@ -1102,13 +1084,13 @@ let sha512 = "FzB+VrQ47KAFxiPt2YXrKZ8AOLZQqGTLCKHzx4bjxGmwgsjV8yIbtJiJhZLMcUQV4LtGeIY9ixIqQhGvnZHE4A=="; }; }; - "@aws-sdk/s3-request-presigner-3.236.0" = { + "@aws-sdk/s3-request-presigner-3.252.0" = { name = "_at_aws-sdk_slash_s3-request-presigner"; packageName = "@aws-sdk/s3-request-presigner"; - version = "3.236.0"; + version = "3.252.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.236.0.tgz"; - sha512 = "tDCmtKJxPXGRwj+d2oDpHpXRvZ/4IZkV4JCMLJSoP0OW0f/3NHC3cAqseL5uhXQWD6yQAsGYm8p72baLMiGU3A=="; + url = "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.252.0.tgz"; + sha512 = "9V94Fi30Yz5pYPd3aDlbzRYMCUfe7C5D5srMeygZ/XPFsvKC+B16xGKYc2fXb74V+gm68W+6pUVCshOT/AThzA=="; }; }; "@aws-sdk/service-error-classification-3.229.0" = { @@ -1165,13 +1147,13 @@ let sha512 = "8AtR/k4vsFvjXeQbIzq/Wy7Nbk48Ou0wUEeVYPHWHPSU8QamFWORkOwmKtKMfHAyZvmqiAPeQqHFkq+UJhWyyQ=="; }; }; - "@aws-sdk/token-providers-3.236.0" = { + "@aws-sdk/token-providers-3.252.0" = { name = "_at_aws-sdk_slash_token-providers"; packageName = "@aws-sdk/token-providers"; - version = "3.236.0"; + version = "3.252.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.236.0.tgz"; - sha512 = "gmHuWuQgl6+2UfdbOvtsns/byZQnPGjyQ88/SlKgnX2EcDd31ENb8wRa9gfIEwvx6rTB2ve1NAhuliydB9AomQ=="; + url = "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.252.0.tgz"; + sha512 = "xi3pUP31tyKF4lJFCOgtkwSWESE9W1vE23Vybsq53wzXEYfnRql8RP+C9FFkUouAR6ixPHEcEYplB+l92CY49g=="; }; }; "@aws-sdk/types-3.226.0" = { @@ -1273,13 +1255,13 @@ let sha512 = "UGjQ+OjBYYhxFVtUY+jtr0ZZgzZh6OHtYwRhFt8IHewJXFCfZTyfsbX20szBj5y1S4HRIUJ7cwBLIytTqMbI5w=="; }; }; - "@aws-sdk/util-endpoints-3.226.0" = { + "@aws-sdk/util-endpoints-3.245.0" = { name = "_at_aws-sdk_slash_util-endpoints"; packageName = "@aws-sdk/util-endpoints"; - version = "3.226.0"; + version = "3.245.0"; src = fetchurl { - url = "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.226.0.tgz"; - sha512 = "iqOkac/zLmyPBUJd7SLN0PeZMkOmlGgD5PHmmekTClOkce2eUjK9SNX1PzL73aXPoPTyhg9QGLH8uEZEQ8YUzg=="; + url = "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.245.0.tgz"; + sha512 = "UNOFquB1tKx+8RT8n82Zb5tIwDyZHVPBg/m0LB0RsLETjr6krien5ASpqWezsXKIR1hftN9uaxN4bvf2dZrWHg=="; }; }; "@aws-sdk/util-format-url-3.226.0" = { @@ -1444,13 +1426,13 @@ let sha512 = "HFrcTgmuSuukRf/EdPmqBrc5l6Q5Uu+2TbuhaKbgaCpP2TfAeiNaQPAadxO+CYBRHGUzIDteMAjFspFLDLnKVQ=="; }; }; - "@azure/core-client-1.6.1" = { + "@azure/core-client-1.7.0" = { name = "_at_azure_slash_core-client"; packageName = "@azure/core-client"; - version = "1.6.1"; + version = "1.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/core-client/-/core-client-1.6.1.tgz"; - sha512 = "mZ1MSKhZBYoV8GAWceA+PEJFWV2VpdNSpxxcj1wjIAOi00ykRuIQChT99xlQGZWLY3/NApWhSImlFwsmCEs4vA=="; + url = "https://registry.npmjs.org/@azure/core-client/-/core-client-1.7.0.tgz"; + sha512 = "fgaLVlF3xGg8JAt7Hl7vkKIJcCAA9NpsvIvb44qaEOW6CaJ+IaHKL7oWe5+oGOVR+y/z2Gd2joyvslqwDvRfTw=="; }; }; "@azure/core-http-2.3.1" = { @@ -1471,13 +1453,13 @@ let sha512 = "ZN9avruqbQ5TxopzG3ih3KRy52n8OAbitX3fnZT5go4hzu0J+KVPSzkL+Wt3hpJpdG8WIfg1sBD1tWkgUdEpBA=="; }; }; - "@azure/core-lro-2.4.0" = { + "@azure/core-lro-2.5.0" = { name = "_at_azure_slash_core-lro"; packageName = "@azure/core-lro"; - version = "2.4.0"; + version = "2.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/core-lro/-/core-lro-2.4.0.tgz"; - sha512 = "F65+rYkll1dpw3RGm8/SSiSj+/QkMeYDanzS/QKlM1dmuneVyXbO46C88V1MRHluLGdMP6qfD3vDRYALn0z0tQ=="; + url = "https://registry.npmjs.org/@azure/core-lro/-/core-lro-2.5.0.tgz"; + sha512 = "Vsd5Sl04RG/p5ui/p0dAFMov5I/W4dmRjOrtWGXVs4vY/hNMPefiFH7cZEOr+1u0XrBKkpvt634IyUUD9bVRuQ=="; }; }; "@azure/core-paging-1.4.0" = { @@ -1489,13 +1471,13 @@ let sha512 = "tabFtZTg8D9XqZKEfNUOGh63SuYeOxmvH4GDcOJN+R1bZWZ1FZskctgY9Pmuwzhn+0Xvq9rmimK9hsvtLkeBsw=="; }; }; - "@azure/core-rest-pipeline-1.10.0" = { + "@azure/core-rest-pipeline-1.10.1" = { name = "_at_azure_slash_core-rest-pipeline"; packageName = "@azure/core-rest-pipeline"; - version = "1.10.0"; + version = "1.10.1"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.10.0.tgz"; - sha512 = "m6c4iAalfaf6sytOOQhLKFprEHSkSjQuRgkW7MTMnAN+GENDDL4XZJp7WKFnq9VpKUE+ggq+rp5xX9GI93lumw=="; + url = "https://registry.npmjs.org/@azure/core-rest-pipeline/-/core-rest-pipeline-1.10.1.tgz"; + sha512 = "Kji9k6TOFRDB5ZMTw8qUf2IJ+CeJtsuMdAHox9eqpTf1cefiNMpzrfnF6sINEBZJsaVaWgQ0o48B6kcUH68niA=="; }; }; "@azure/core-tracing-1.0.0-preview.13" = { @@ -1552,13 +1534,13 @@ let sha512 = "aK4s3Xxjrx3daZr3VylxejK3vG5ExXck5WOHDJ8in/k9AqlfIyFMMT1uG7u8mNjX+QRILTIn0/Xgschfh/dQ9g=="; }; }; - "@azure/msal-browser-2.32.1" = { + "@azure/msal-browser-2.32.2" = { name = "_at_azure_slash_msal-browser"; packageName = "@azure/msal-browser"; - version = "2.32.1"; + version = "2.32.2"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.32.1.tgz"; - sha512 = "2G3B12ZEIpiimi6/Yqq7KLk4ud1zZWoHvVd2kJ2VthN1HjMsZjdMUxeHkwMWaQ6RzO6mv9rZiuKmRX64xkXW9g=="; + url = "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-2.32.2.tgz"; + sha512 = "1YqGzXtPG3QrZPFBKaMWr2WQdukDj+PelqUCv351+p+hlw/AhdRrb8haY73/iqkhT6Cdrbnh7sL4gikVsF4O1g=="; }; }; "@azure/msal-common-7.6.0" = { @@ -1570,22 +1552,22 @@ let sha512 = "XqfbglUTVLdkHQ8F9UQJtKseRr3sSnr9ysboxtoswvaMVaEfvyLtMoHv9XdKUfOc0qKGzNgRFd9yRjIWVepl6Q=="; }; }; - "@azure/msal-common-9.0.1" = { + "@azure/msal-common-9.1.0" = { name = "_at_azure_slash_msal-common"; packageName = "@azure/msal-common"; - version = "9.0.1"; + version = "9.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-9.0.1.tgz"; - sha512 = "eNNHIW/cwPTZDWs9KtYgb1X6gtQ+cC+FGX2YN+t4AUVsBdUbqlMTnUs6/c/VBxC2AAGIhgLREuNnO3F66AN2zQ=="; + url = "https://registry.npmjs.org/@azure/msal-common/-/msal-common-9.1.0.tgz"; + sha512 = "Ai7SUJPkHOVUNAjepKp753ZXI8Haw5snTNIu+Vi6fdNPAH1KCuxSyWeBZT6hLDJSgfmYf/kazZqz7Q0BjyAGTA=="; }; }; - "@azure/msal-node-1.14.5" = { + "@azure/msal-node-1.14.6" = { name = "_at_azure_slash_msal-node"; packageName = "@azure/msal-node"; - version = "1.14.5"; + version = "1.14.6"; src = fetchurl { - url = "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.14.5.tgz"; - sha512 = "NcVdMfn8Z3ogN+9RjOSF7uwf2Gki5DEJl0BdDSL83KUAgVAobtkZi5W8EqxbJLrTO/ET0jv5DregrcR5qg2pEA=="; + url = "https://registry.npmjs.org/@azure/msal-node/-/msal-node-1.14.6.tgz"; + sha512 = "em/qqFL5tLMxMPl9vormAs13OgZpmQoJbiQ/GlWr+BA77eCLoL+Ehr5xRHowYo+LFe5b+p+PJVkRvT+mLvOkwA=="; }; }; "@azure/storage-blob-12.11.0" = { @@ -1633,13 +1615,13 @@ let sha512 = "TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q=="; }; }; - "@babel/compat-data-7.20.5" = { + "@babel/compat-data-7.20.10" = { name = "_at_babel_slash_compat-data"; packageName = "@babel/compat-data"; - version = "7.20.5"; + version = "7.20.10"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.5.tgz"; - sha512 = "KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g=="; + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.10.tgz"; + sha512 = "sEnuDPpOJR/fcafHMjpcpGN5M2jbUGUHwmuWKM/YdPzeEDJg8bgmbcWQFUfE32MQjti1koACvoPVsDe8Uq+idg=="; }; }; "@babel/core-7.0.0" = { @@ -1651,13 +1633,13 @@ let sha512 = "nrvxS5u6QUN5gLl1GEakIcmOeoUHT1/gQtdMRq18WFURJ5osn4ppJLVSseMQo4zVWKJfBTF4muIYijXUnKlRLQ=="; }; }; - "@babel/core-7.20.7" = { + "@babel/core-7.20.12" = { name = "_at_babel_slash_core"; packageName = "@babel/core"; - version = "7.20.7"; + version = "7.20.12"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/core/-/core-7.20.7.tgz"; - sha512 = "t1ZjCluspe5DW24bn2Rr1CDb2v9rn/hROtg9a2tmd0+QYf4bsloYfLQzjG4qHPNMhWtKdGC33R5AxGR2Af2cBw=="; + url = "https://registry.npmjs.org/@babel/core/-/core-7.20.12.tgz"; + sha512 = "XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg=="; }; }; "@babel/core-7.9.0" = { @@ -1669,15 +1651,6 @@ let sha512 = "kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w=="; }; }; - "@babel/eslint-parser-7.19.1" = { - name = "_at_babel_slash_eslint-parser"; - packageName = "@babel/eslint-parser"; - version = "7.19.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.19.1.tgz"; - sha512 = "AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ=="; - }; - }; "@babel/generator-7.18.2" = { name = "_at_babel_slash_generator"; packageName = "@babel/generator"; @@ -1723,13 +1696,13 @@ let sha512 = "4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ=="; }; }; - "@babel/helper-create-class-features-plugin-7.20.7" = { + "@babel/helper-create-class-features-plugin-7.20.12" = { name = "_at_babel_slash_helper-create-class-features-plugin"; packageName = "@babel/helper-create-class-features-plugin"; - version = "7.20.7"; + version = "7.20.12"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.7.tgz"; - sha512 = "LtoWbDXOaidEf50hmdDqn9g8VEzsorMexoWMQdQODbvmqYmaF23pBP5VNPAGIFHsFQCIeKokDiz3CH5Y2jlY6w=="; + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.12.tgz"; + sha512 = "9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ=="; }; }; "@babel/helper-create-regexp-features-plugin-7.20.5" = { @@ -1804,13 +1777,13 @@ let sha512 = "0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA=="; }; }; - "@babel/helper-module-transforms-7.20.7" = { + "@babel/helper-module-transforms-7.20.11" = { name = "_at_babel_slash_helper-module-transforms"; packageName = "@babel/helper-module-transforms"; - version = "7.20.7"; + version = "7.20.11"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.7.tgz"; - sha512 = "FNdu7r67fqMUSVuQpFQGE6BPdhJIhitoxhGzDbAXNcA07uoVG37fOiMk3OSV8rEICuyG6t8LGkd9EE64qIEoIA=="; + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz"; + sha512 = "uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg=="; }; }; "@babel/helper-optimise-call-expression-7.18.6" = { @@ -2371,13 +2344,13 @@ let sha512 = "ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ=="; }; }; - "@babel/plugin-transform-block-scoping-7.20.8" = { + "@babel/plugin-transform-block-scoping-7.20.11" = { name = "_at_babel_slash_plugin-transform-block-scoping"; packageName = "@babel/plugin-transform-block-scoping"; - version = "7.20.8"; + version = "7.20.11"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.8.tgz"; - sha512 = "ztBCIWJvcWJvtxhMqIrItLmGlbxaa/5hl7HlZvV4f9oS08wWn/mEtf5D35qxFp3rTK8KjV9TePEoeal8z02gzA=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.11.tgz"; + sha512 = "tA4N427a7fjf1P0/2I4ScsHGc5jcHPbb30xMbaTke2gxDuWpUfXDuX1FEymJwKk4tuGUvGcejAR6HdZVqmmPyw=="; }; }; "@babel/plugin-transform-classes-7.20.7" = { @@ -2479,31 +2452,31 @@ let sha512 = "qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA=="; }; }; - "@babel/plugin-transform-modules-amd-7.20.7" = { + "@babel/plugin-transform-modules-amd-7.20.11" = { name = "_at_babel_slash_plugin-transform-modules-amd"; packageName = "@babel/plugin-transform-modules-amd"; - version = "7.20.7"; + version = "7.20.11"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.7.tgz"; - sha512 = "+1IVLD+dHOzRZWNFFSoyPZz4ffsVmOP+OhhjeahLKpU97v/52LcCb9RabRl5eHM1/HAuH5Dl0q9Pyzrq1v2otQ=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz"; + sha512 = "NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g=="; }; }; - "@babel/plugin-transform-modules-commonjs-7.20.7" = { + "@babel/plugin-transform-modules-commonjs-7.20.11" = { name = "_at_babel_slash_plugin-transform-modules-commonjs"; packageName = "@babel/plugin-transform-modules-commonjs"; - version = "7.20.7"; + version = "7.20.11"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.7.tgz"; - sha512 = "76jqqFiFdCD+RJwEdtBHUG2/rEKQAmpejPbAKyQECEE3/y4U5CMPc9IXvipS990vgQhzq+ZRw6WJ+q4xJ/P24w=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.11.tgz"; + sha512 = "S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw=="; }; }; - "@babel/plugin-transform-modules-systemjs-7.19.6" = { + "@babel/plugin-transform-modules-systemjs-7.20.11" = { name = "_at_babel_slash_plugin-transform-modules-systemjs"; packageName = "@babel/plugin-transform-modules-systemjs"; - version = "7.19.6"; + version = "7.20.11"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.6.tgz"; - sha512 = "fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz"; + sha512 = "vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw=="; }; }; "@babel/plugin-transform-modules-umd-7.18.6" = { @@ -2884,13 +2857,13 @@ let sha512 = "8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw=="; }; }; - "@babel/traverse-7.20.8" = { + "@babel/traverse-7.20.12" = { name = "_at_babel_slash_traverse"; packageName = "@babel/traverse"; - version = "7.20.8"; + version = "7.20.12"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.8.tgz"; - sha512 = "/RNkaYDeCy4MjyV70+QkSHhxbvj2JO/5Ft2Pa880qJOG8tWrqcT/wXUuCCv43yogfqPzHL77Xu101KQPf4clnQ=="; + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.12.tgz"; + sha512 = "MsIbFN0u+raeja38qboyF8TIT7K0BFzz/Yd/77ta4MsUsmP2RAnidIlwq7d5HFQrH/OZJecGV6B71C4zAgpoSQ=="; }; }; "@babel/types-7.18.4" = { @@ -2911,49 +2884,22 @@ let sha512 = "69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg=="; }; }; - "@bmewburn/js-beautify-1.13.0" = { + "@bmewburn/js-beautify-1.14.7" = { name = "_at_bmewburn_slash_js-beautify"; packageName = "@bmewburn/js-beautify"; - version = "1.13.0"; + version = "1.14.7"; src = fetchurl { - url = "https://registry.npmjs.org/@bmewburn/js-beautify/-/js-beautify-1.13.0.tgz"; - sha512 = "m68Sgw8XrbIWNIVk/LBqR2KrGqs7EniEbUqcmZaFLhyDjA873ns+TjVEi7cGxEaTXdq6l1mJ7L566NrEgPWBvA=="; + url = "https://registry.npmjs.org/@bmewburn/js-beautify/-/js-beautify-1.14.7.tgz"; + sha512 = "+s+Lw9+SesDdh4TsZyTRn6dCohzv3ioiR4YEXR8bQ+nl8J0Cz9oy+i/7vfrlLTD47/v1O8WsitR8wqL6epeevw=="; }; }; - "@bmewburn/minidom-1.0.1" = { - name = "_at_bmewburn_slash_minidom"; - packageName = "@bmewburn/minidom"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@bmewburn/minidom/-/minidom-1.0.1.tgz"; - sha512 = "T8sxd/2JQWdzQbeLMhTQ1nGj/oUl2h2EEqHeGy3a3LMY9L9J9NuXYco7xiu17hHuo7joPPzCnPg+2xLtQ/tg2g=="; - }; - }; - "@bmewburn/turndown-5.0.3" = { - name = "_at_bmewburn_slash_turndown"; - packageName = "@bmewburn/turndown"; - version = "5.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@bmewburn/turndown/-/turndown-5.0.3.tgz"; - sha512 = "tf6pg5b2Y5nQ206VkUWR7EWBAg/W+T+ABxmWniDIVEfCpLuIQF4D7KbxGr399TC/JlbsCl5k3QJUwSKpqROQKQ=="; - }; - }; - "@bmewburn/turndown-plugin-gfm-1.0.2" = { - name = "_at_bmewburn_slash_turndown-plugin-gfm"; - packageName = "@bmewburn/turndown-plugin-gfm"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@bmewburn/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.2.tgz"; - sha512 = "uy9L0ic7IHBzCptXVkA66Zl4G1sG5M8Rir7uFqI/wQY4uUhzueZKemk/ROQ01Ty0wQFVrluEki4hwKJJRMAiwg=="; - }; - }; - "@bmewburn/vscode-html-languageserver-1.3.0" = { + "@bmewburn/vscode-html-languageserver-1.9.0" = { name = "_at_bmewburn_slash_vscode-html-languageserver"; packageName = "@bmewburn/vscode-html-languageserver"; - version = "1.3.0"; + version = "1.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/@bmewburn/vscode-html-languageserver/-/vscode-html-languageserver-1.3.0.tgz"; - sha512 = "WUwXC5pOHNuSzFUpzh0KpbuTfAtbPAU5DLKdYIWhWSrs4iof7Qxq25dkWfiA6Ksp/AmM2tnCTLDWaU7AxpCQOQ=="; + url = "https://registry.npmjs.org/@bmewburn/vscode-html-languageserver/-/vscode-html-languageserver-1.9.0.tgz"; + sha512 = "yzZ6OK0W7frfoCqvl0s3KeVUUB22wYs74Qu3Y+VGgvW7yvq5m0M82RZQWghKdtLyQejc4469QlmhQsJmCF7ULg=="; }; }; "@braintree/sanitize-url-6.0.2" = { @@ -2965,49 +2911,58 @@ let sha512 = "Tbsj02wXCbqGmzdnXNk0SOF19ChhRU70BsroIi4Pm6Ehp56in6vch94mfbdQ17DozxkL3BAVjbZ4Qc1a0HFRAg=="; }; }; - "@cdktf/cli-core-0.14.3" = { + "@cdktf/cli-core-0.15.0" = { name = "_at_cdktf_slash_cli-core"; packageName = "@cdktf/cli-core"; - version = "0.14.3"; + version = "0.15.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/cli-core/-/cli-core-0.14.3.tgz"; - sha512 = "dwOtPkcpOC1jkaqcdGWLVdQ3zzavDR6TLCZLRicWw8w5H+KhSzVdxOGhWq0j7gh4/cDZuClwoKUdnfyEMiVmIg=="; + url = "https://registry.npmjs.org/@cdktf/cli-core/-/cli-core-0.15.0.tgz"; + sha512 = "1N1N66dMl1kfAXcxTgKgePO9RfhB/p5T4dCAhfMCzLe+R0rOO1xfYQcIEXWqoORwRiIE2EyW9O9OSkxLx0DuyQ=="; }; }; - "@cdktf/commons-0.14.3" = { + "@cdktf/commons-0.15.0" = { name = "_at_cdktf_slash_commons"; packageName = "@cdktf/commons"; - version = "0.14.3"; + version = "0.15.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/commons/-/commons-0.14.3.tgz"; - sha512 = "syI2hlifH0v+bSkBMaYVcdbhxia/jlE/F6vXqt2dNkhFx6Awdd8ZRK0D5ggJSz4mDhWxKeoJRaSjZjS+fBd1fw=="; + url = "https://registry.npmjs.org/@cdktf/commons/-/commons-0.15.0.tgz"; + sha512 = "c3NB2X4OsUGUicpUMJSV9MGnmU+/nYNs0n7G98c/N7nctxWpm1oPoXkoSC8GsDbc3n44cuokBDgW2JiscB/YRA=="; }; }; - "@cdktf/hcl2cdk-0.14.3" = { + "@cdktf/hcl2cdk-0.15.0" = { name = "_at_cdktf_slash_hcl2cdk"; packageName = "@cdktf/hcl2cdk"; - version = "0.14.3"; + version = "0.15.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.14.3.tgz"; - sha512 = "aY/RaRTaLrftgAlq9Bg1F5t3DWIDK4uU3CnJqo/NCKZnHWxg1dgy4rgl90ffLDfJVdK4wd7LO1k+rvWXGmA09Q=="; + url = "https://registry.npmjs.org/@cdktf/hcl2cdk/-/hcl2cdk-0.15.0.tgz"; + sha512 = "X88IejdGoYpB7DkAf09v8YLMQiYu1VTKWVvggiGkS0q7DgFb79Q/S9aFfC5RfPrMNhZSV01Jrt/pDCQdcFJQ1A=="; }; }; - "@cdktf/hcl2json-0.14.3" = { + "@cdktf/hcl2json-0.15.0" = { name = "_at_cdktf_slash_hcl2json"; packageName = "@cdktf/hcl2json"; - version = "0.14.3"; + version = "0.15.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.14.3.tgz"; - sha512 = "vvTIxnaK7S8z9zYzn/9GQgCFGfHn2vK2rmWEcraZp7kE/rpmSZpd7sJh7/it/kb4NXMcmHXNYjQLld9ygMCsdQ=="; + url = "https://registry.npmjs.org/@cdktf/hcl2json/-/hcl2json-0.15.0.tgz"; + sha512 = "pVYjTosthO0Mro/VD5x4iUM6TcVk0hdeNzk8uaaxk49/XnJB4DiwHbvIdjKJk4BuY2YuW+bCsz6X2QjKJmz2jA=="; }; }; - "@cdktf/provider-generator-0.14.3" = { + "@cdktf/node-pty-prebuilt-multiarch-0.10.1-pre.10" = { + name = "_at_cdktf_slash_node-pty-prebuilt-multiarch"; + packageName = "@cdktf/node-pty-prebuilt-multiarch"; + version = "0.10.1-pre.10"; + src = fetchurl { + url = "https://registry.npmjs.org/@cdktf/node-pty-prebuilt-multiarch/-/node-pty-prebuilt-multiarch-0.10.1-pre.10.tgz"; + sha512 = "5ysQrHJvqYLYg407KvaDNu+xx68ZGaqeF0SohXe5e4yNqJhPFPUQ536rkReQcPc2yZiF5PDmmvf5T9MOacHpSQ=="; + }; + }; + "@cdktf/provider-generator-0.15.0" = { name = "_at_cdktf_slash_provider-generator"; packageName = "@cdktf/provider-generator"; - version = "0.14.3"; + version = "0.15.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cdktf/provider-generator/-/provider-generator-0.14.3.tgz"; - sha512 = "XSb29Muas+hHQRFUUqMZIxgOSKVhPBJrg5Ysesr8UN3hdwtw0HReveiXpVEfMrEbUaC6ODZbcGgVBiS5/H8FVA=="; + url = "https://registry.npmjs.org/@cdktf/provider-generator/-/provider-generator-0.15.0.tgz"; + sha512 = "YY2ANbC9xuhq1yXc6dhVPvMCCKMjcXNRBUP6BqvlE2smD0RWx1s0uWKAG5Tw4D4kx4Nb6EXYpvFHRIEnjVJ4wA=="; }; }; "@chemzqm/msgpack-lite-0.1.29" = { @@ -3055,139 +3010,139 @@ let sha512 = "ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ=="; }; }; - "@commitlint/config-validator-17.1.0" = { + "@commitlint/config-validator-17.4.0" = { name = "_at_commitlint_slash_config-validator"; packageName = "@commitlint/config-validator"; - version = "17.1.0"; + version = "17.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-17.1.0.tgz"; - sha512 = "Q1rRRSU09ngrTgeTXHq6ePJs2KrI+axPTgkNYDWSJIuS1Op4w3J30vUfSXjwn5YEJHklK3fSqWNHmBhmTR7Vdg=="; + url = "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-17.4.0.tgz"; + sha512 = "Sa/+8KNpDXz4zT4bVbz2fpFjvgkPO6u2V2fP4TKgt6FjmOw2z3eEX859vtfeaTav/ukBw0/0jr+5ZTZp9zCBhA=="; }; }; - "@commitlint/ensure-17.3.0" = { + "@commitlint/ensure-17.4.0" = { name = "_at_commitlint_slash_ensure"; packageName = "@commitlint/ensure"; - version = "17.3.0"; + version = "17.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/ensure/-/ensure-17.3.0.tgz"; - sha512 = "kWbrQHDoW5veIUQx30gXoLOCjWvwC6OOEofhPCLl5ytRPBDAQObMbxTha1Bt2aSyNE/IrJ0s0xkdZ1Gi3wJwQg=="; + url = "https://registry.npmjs.org/@commitlint/ensure/-/ensure-17.4.0.tgz"; + sha512 = "7oAxt25je0jeQ/E0O/M8L3ADb1Cvweu/5lc/kYF8g/kXatI0wxGE5La52onnAUAWeWlsuvBNar15WcrmDmr5Mw=="; }; }; - "@commitlint/execute-rule-17.0.0" = { + "@commitlint/execute-rule-17.4.0" = { name = "_at_commitlint_slash_execute-rule"; packageName = "@commitlint/execute-rule"; - version = "17.0.0"; + version = "17.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-17.0.0.tgz"; - sha512 = "nVjL/w/zuqjCqSJm8UfpNaw66V9WzuJtQvEnCrK4jDw6qKTmZB+1JQ8m6BQVZbNBcwfYdDNKnhIhqI0Rk7lgpQ=="; + url = "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-17.4.0.tgz"; + sha512 = "LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA=="; }; }; - "@commitlint/format-17.0.0" = { + "@commitlint/format-17.4.0" = { name = "_at_commitlint_slash_format"; packageName = "@commitlint/format"; - version = "17.0.0"; + version = "17.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/format/-/format-17.0.0.tgz"; - sha512 = "MZzJv7rBp/r6ZQJDEodoZvdRM0vXu1PfQvMTNWFb8jFraxnISMTnPBWMMjr2G/puoMashwaNM//fl7j8gGV5lA=="; + url = "https://registry.npmjs.org/@commitlint/format/-/format-17.4.0.tgz"; + sha512 = "Z2bWAU5+f1YZh9W76c84J8iLIWIvvm+mzqogTz0Nsc1x6EHW0Z2gI38g5HAjB0r0I3ZjR15IDEJKhsxyblcyhA=="; }; }; - "@commitlint/is-ignored-17.2.0" = { + "@commitlint/is-ignored-17.4.2" = { name = "_at_commitlint_slash_is-ignored"; packageName = "@commitlint/is-ignored"; - version = "17.2.0"; + version = "17.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-17.2.0.tgz"; - sha512 = "rgUPUQraHxoMLxiE8GK430HA7/R2vXyLcOT4fQooNrZq9ERutNrP6dw3gdKLkq22Nede3+gEHQYUzL4Wu75ndg=="; + url = "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-17.4.2.tgz"; + sha512 = "1b2Y2qJ6n7bHG9K6h8S4lBGUl6kc7mMhJN9gy1SQfUZqe92ToDjUTtgNWb6LbzR1X8Cq4SEus4VU8Z/riEa94Q=="; }; }; - "@commitlint/lint-17.3.0" = { + "@commitlint/lint-17.4.2" = { name = "_at_commitlint_slash_lint"; packageName = "@commitlint/lint"; - version = "17.3.0"; + version = "17.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/lint/-/lint-17.3.0.tgz"; - sha512 = "VilOTPg0i9A7CCWM49E9bl5jytfTvfTxf9iwbWAWNjxJ/A5mhPKbm3sHuAdwJ87tDk1k4j8vomYfH23iaY+1Rw=="; + url = "https://registry.npmjs.org/@commitlint/lint/-/lint-17.4.2.tgz"; + sha512 = "HcymabrdBhsDMNzIv146+ZPNBPBK5gMNsVH+el2lCagnYgCi/4ixrHooeVyS64Fgce2K26+MC7OQ4vVH8wQWVw=="; }; }; - "@commitlint/load-17.3.0" = { + "@commitlint/load-17.4.2" = { name = "_at_commitlint_slash_load"; packageName = "@commitlint/load"; - version = "17.3.0"; + version = "17.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/load/-/load-17.3.0.tgz"; - sha512 = "u/pV6rCAJrCUN+HylBHLzZ4qj1Ew3+eN9GBPhNi9otGxtOfA8b+8nJSxaNbcC23Ins/kcpjGf9zPSVW7628Umw=="; + url = "https://registry.npmjs.org/@commitlint/load/-/load-17.4.2.tgz"; + sha512 = "Si++F85rJ9t4hw6JcOw1i2h0fdpdFQt0YKwjuK4bk9KhFjyFkRxvR3SB2dPaMs+EwWlDrDBGL+ygip1QD6gmPw=="; }; }; - "@commitlint/message-17.2.0" = { + "@commitlint/message-17.4.2" = { name = "_at_commitlint_slash_message"; packageName = "@commitlint/message"; - version = "17.2.0"; + version = "17.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/message/-/message-17.2.0.tgz"; - sha512 = "/4l2KFKxBOuoEn1YAuuNNlAU05Zt7sNsC9H0mPdPm3chOrT4rcX0pOqrQcLtdMrMkJz0gC7b3SF80q2+LtdL9Q=="; + url = "https://registry.npmjs.org/@commitlint/message/-/message-17.4.2.tgz"; + sha512 = "3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q=="; }; }; - "@commitlint/parse-17.2.0" = { + "@commitlint/parse-17.4.2" = { name = "_at_commitlint_slash_parse"; packageName = "@commitlint/parse"; - version = "17.2.0"; + version = "17.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/parse/-/parse-17.2.0.tgz"; - sha512 = "vLzLznK9Y21zQ6F9hf8D6kcIJRb2haAK5T/Vt1uW2CbHYOIfNsR/hJs0XnF/J9ctM20Tfsqv4zBitbYvVw7F6Q=="; + url = "https://registry.npmjs.org/@commitlint/parse/-/parse-17.4.2.tgz"; + sha512 = "DK4EwqhxfXpyCA+UH8TBRIAXAfmmX4q9QRBz/2h9F9sI91yt6mltTrL6TKURMcjUVmgaB80wgS9QybNIyVBIJA=="; }; }; - "@commitlint/read-17.2.0" = { + "@commitlint/read-17.4.2" = { name = "_at_commitlint_slash_read"; packageName = "@commitlint/read"; - version = "17.2.0"; + version = "17.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/read/-/read-17.2.0.tgz"; - sha512 = "bbblBhrHkjxra3ptJNm0abxu7yeAaxumQ8ZtD6GIVqzURCETCP7Dm0tlVvGRDyXBuqX6lIJxh3W7oyKqllDsHQ=="; + url = "https://registry.npmjs.org/@commitlint/read/-/read-17.4.2.tgz"; + sha512 = "hasYOdbhEg+W4hi0InmXHxtD/1favB4WdwyFxs1eOy/DvMw6+2IZBmATgGOlqhahsypk4kChhxjAFJAZ2F+JBg=="; }; }; - "@commitlint/resolve-extends-17.3.0" = { + "@commitlint/resolve-extends-17.4.0" = { name = "_at_commitlint_slash_resolve-extends"; packageName = "@commitlint/resolve-extends"; - version = "17.3.0"; + version = "17.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-17.3.0.tgz"; - sha512 = "Lf3JufJlc5yVEtJWC8o4IAZaB8FQAUaVlhlAHRACd0TTFizV2Lk2VH70et23KgvbQNf7kQzHs/2B4QZalBv6Cg=="; + url = "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-17.4.0.tgz"; + sha512 = "3JsmwkrCzoK8sO22AzLBvNEvC1Pmdn/65RKXzEtQMy6oYMl0Snrq97a5bQQEFETF0VsvbtUuKttLqqgn99OXRQ=="; }; }; - "@commitlint/rules-17.3.0" = { + "@commitlint/rules-17.4.2" = { name = "_at_commitlint_slash_rules"; packageName = "@commitlint/rules"; - version = "17.3.0"; + version = "17.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/rules/-/rules-17.3.0.tgz"; - sha512 = "s2UhDjC5yP2utx3WWqsnZRzjgzAX8BMwr1nltC0u0p8T/nzpkx4TojEfhlsOUj1t7efxzZRjUAV0NxNwdJyk+g=="; + url = "https://registry.npmjs.org/@commitlint/rules/-/rules-17.4.2.tgz"; + sha512 = "OGrPsMb9Fx3/bZ64/EzJehY9YDSGWzp81Pj+zJiY+r/NSgJI3nUYdlS37jykNIugzazdEXfMtQ10kmA+Kx2pZQ=="; }; }; - "@commitlint/to-lines-17.0.0" = { + "@commitlint/to-lines-17.4.0" = { name = "_at_commitlint_slash_to-lines"; packageName = "@commitlint/to-lines"; - version = "17.0.0"; + version = "17.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-17.0.0.tgz"; - sha512 = "nEi4YEz04Rf2upFbpnEorG8iymyH7o9jYIVFBG1QdzebbIFET3ir+8kQvCZuBE5pKCtViE4XBUsRZz139uFrRQ=="; + url = "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-17.4.0.tgz"; + sha512 = "LcIy/6ZZolsfwDUWfN1mJ+co09soSuNASfKEU5sCmgFCvX5iHwRYLiIuoqXzOVDYOy7E7IcHilr/KS0e5T+0Hg=="; }; }; - "@commitlint/top-level-17.0.0" = { + "@commitlint/top-level-17.4.0" = { name = "_at_commitlint_slash_top-level"; packageName = "@commitlint/top-level"; - version = "17.0.0"; + version = "17.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/top-level/-/top-level-17.0.0.tgz"; - sha512 = "dZrEP1PBJvodNWYPOYiLWf6XZergdksKQaT6i1KSROLdjf5Ai0brLOv5/P+CPxBeoj3vBxK4Ax8H1Pg9t7sHIQ=="; + url = "https://registry.npmjs.org/@commitlint/top-level/-/top-level-17.4.0.tgz"; + sha512 = "/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g=="; }; }; - "@commitlint/types-17.0.0" = { + "@commitlint/types-17.4.0" = { name = "_at_commitlint_slash_types"; packageName = "@commitlint/types"; - version = "17.0.0"; + version = "17.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/types/-/types-17.0.0.tgz"; - sha512 = "hBAw6U+SkAT5h47zDMeOu3HSiD0SODw4Aq7rRNh1ceUmL7GyLKYhPbUvlRWqZ65XjBLPHZhFyQlRaPNz8qvUyQ=="; + url = "https://registry.npmjs.org/@commitlint/types/-/types-17.4.0.tgz"; + sha512 = "2NjAnq5IcxY9kXtUeO2Ac0aPpvkuOmwbH/BxIm36XXK5LtWFObWJWjXOA+kcaABMrthjWu6la+FUpyYFMHRvbA=="; }; }; "@cronvel/get-pixels-3.4.1" = { @@ -3199,40 +3154,40 @@ let sha512 = "gB5C5nDIacLUdsMuW8YsM9SzK3vaFANe4J11CVXpovpy7bZUGrcJKmc6m/0gWG789pKr6XSZY2aEetjFvSRw5g=="; }; }; - "@cspell/cspell-bundled-dicts-6.18.0" = { + "@cspell/cspell-bundled-dicts-6.19.2" = { name = "_at_cspell_slash_cspell-bundled-dicts"; packageName = "@cspell/cspell-bundled-dicts"; - version = "6.18.0"; + version = "6.19.2"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.18.0.tgz"; - sha512 = "068hNBeMwgz/QKNO4RLGgElKn00Atp2dGLI0JOkGHiEAwLnBkP0waXITGhad6aQhN1feYeJ93i1oeKJDQm/vKA=="; + url = "https://registry.npmjs.org/@cspell/cspell-bundled-dicts/-/cspell-bundled-dicts-6.19.2.tgz"; + sha512 = "dbzMGK1JHRTUJ8Pkw/EYbj02RMYhM1/vfrAzgRpqogj83m0cfBC/0IHELkVIl3taC1KdFZ1XHXPp7310LZ6+ww=="; }; }; - "@cspell/cspell-pipe-6.18.0" = { + "@cspell/cspell-pipe-6.19.2" = { name = "_at_cspell_slash_cspell-pipe"; packageName = "@cspell/cspell-pipe"; - version = "6.18.0"; + version = "6.19.2"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.18.0.tgz"; - sha512 = "QpN58smDEew89cjKJLT/f6IsV3XyrdKM1onl+qIa1YYrgfQf/a+ngCba0nx8yByYAg+ugYPSBIoVdFZR4OMM1A=="; + url = "https://registry.npmjs.org/@cspell/cspell-pipe/-/cspell-pipe-6.19.2.tgz"; + sha512 = "OS+hUdSXU8408OjzBl1EgQ0R4OCXSFAthkN2nqByuQvIa2Ho0yRtXB9BgGCwfcAaffNzdLyTzzQsHhLjjRO0gg=="; }; }; - "@cspell/cspell-service-bus-6.18.0" = { + "@cspell/cspell-service-bus-6.19.2" = { name = "_at_cspell_slash_cspell-service-bus"; packageName = "@cspell/cspell-service-bus"; - version = "6.18.0"; + version = "6.19.2"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-6.18.0.tgz"; - sha512 = "tCZfAzH2hqVX7yMnfpJEbrvdpRxPcOhUvVY8uBxU5lqviKq66WyoZ0riLb7yhnTnywm04ItJxyqXcK4JTD+aag=="; + url = "https://registry.npmjs.org/@cspell/cspell-service-bus/-/cspell-service-bus-6.19.2.tgz"; + sha512 = "PVv8q1y2KtuYIXd7tbWujJHNrIgd93k5aOEB9ffIMrrw1MhDFnuuB1l4rDN83zykLlab2dWPU29zhaGnH/EtMw=="; }; }; - "@cspell/cspell-types-6.18.0" = { + "@cspell/cspell-types-6.19.2" = { name = "_at_cspell_slash_cspell-types"; packageName = "@cspell/cspell-types"; - version = "6.18.0"; + version = "6.19.2"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.18.0.tgz"; - sha512 = "zEh53QNE/1xnhAZ8yiMHgl2SI6KfvK3oBNOM0jufIz0PsD6vT6p/S2Xgh1UKEX6fWyFC8e/c5998CGv9e/jWoA=="; + url = "https://registry.npmjs.org/@cspell/cspell-types/-/cspell-types-6.19.2.tgz"; + sha512 = "Eyivx0MAuYdOAOXrNC/oksMx5QL9NBi9Vvb+7CWPJSFk7p66B5sjcxAz6ujZcQ1WVBLoAqL75BoIqF+lgma9aA=="; }; }; "@cspell/dict-ada-4.0.1" = { @@ -3289,13 +3244,13 @@ let sha512 = "Aw07qiTroqSST2P5joSrC4uOA05zTXzI2wMb+me3q4Davv1D9sCkzXY0TGoC2vzhNv5ooemRi9KATGaBSdU1sw=="; }; }; - "@cspell/dict-companies-3.0.4" = { + "@cspell/dict-companies-3.0.6" = { name = "_at_cspell_slash_dict-companies"; packageName = "@cspell/dict-companies"; - version = "3.0.4"; + version = "3.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-3.0.4.tgz"; - sha512 = "cO06nle+9dQGrjUOvP/zRAEV0xT3jKM8dHIXWhnd70IcZQnRdka6vxjW+KGaoXk3ABY5uMCymRmuaOZtLd1lFQ=="; + url = "https://registry.npmjs.org/@cspell/dict-companies/-/dict-companies-3.0.6.tgz"; + sha512 = "6rWuwZxPisn/MP41DzBtChVgbz9b6HSjBH3X0s3k7zlBaxrw6xFAZGKH9KGFSPTiV+WD9j+IIn2/ITXERGjNLA=="; }; }; "@cspell/dict-cpp-1.1.40" = { @@ -3361,13 +3316,13 @@ let sha512 = "HU8RbFRoGanFH85mT01Ot/Ay48ixr/gG25VPLtdq56QTrmPsw79gxYm/5Qay16eQbpoPIxaj5CAWNam+DX4GbA=="; }; }; - "@cspell/dict-css-4.0.1" = { + "@cspell/dict-css-4.0.2" = { name = "_at_cspell_slash_dict-css"; packageName = "@cspell/dict-css"; - version = "4.0.1"; + version = "4.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-css/-/dict-css-4.0.1.tgz"; - sha512 = "jxsncdeiN/wkZGqU8iLtn24n3e0Fwugj6T48rjWUItn/i3C9j2W7RXOVqd7ZIeWeV8ibyq0WWiwA8Ajg6XaKpA=="; + url = "https://registry.npmjs.org/@cspell/dict-css/-/dict-css-4.0.2.tgz"; + sha512 = "0NxBcB36b1Jy23Tf5YLrD8+PvBhE3FgBci3rwtw2DEqVigEX6uodecfoh9I4kcU8PZlVsDujrUfwgzYCWh/feQ=="; }; }; "@cspell/dict-dart-2.0.1" = { @@ -3397,13 +3352,13 @@ let sha512 = "q3l7OH39qzeN2Y64jpY39SEAqki5BUzPTypnhzM40yT+LOGSWqSh9Ix5UecejtXPDVrD8vML+m7Bp5070h52HQ=="; }; }; - "@cspell/dict-docker-1.1.4" = { + "@cspell/dict-docker-1.1.5" = { name = "_at_cspell_slash_dict-docker"; packageName = "@cspell/dict-docker"; - version = "1.1.4"; + version = "1.1.5"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-docker/-/dict-docker-1.1.4.tgz"; - sha512 = "DnsDzv3e5aPZ/ciu7weoD85SYErl6ChKtphhyULcsSBFexucAAO54ZWx4fRCEwNv/T29KlZ7P5sh4BnSYokCRQ=="; + url = "https://registry.npmjs.org/@cspell/dict-docker/-/dict-docker-1.1.5.tgz"; + sha512 = "SNEohOScQ+0+y9dp/jKTx60OOJQrf5es5BJ32gh5Ck3jKXNo4wd9KLgPOmQMUpencb5SGjrBsC4rr1fyfCwytg=="; }; }; "@cspell/dict-dotnet-1.0.32" = { @@ -3460,13 +3415,13 @@ let sha512 = "UPwR4rfiJCxnS+Py+EK9E4AUj3aPZE4p/yBRSHN+5aBQConlI0lLDtMceH5wlupA/sQTU1ERZGPJA9L96jVSyQ=="; }; }; - "@cspell/dict-en_us-4.1.1" = { + "@cspell/dict-en_us-4.2.0" = { name = "_at_cspell_slash_dict-en_us"; packageName = "@cspell/dict-en_us"; - version = "4.1.1"; + version = "4.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.1.1.tgz"; - sha512 = "I7pgGfYNSOnyNtDWs89B5jY0lZsSEy4ORwZHzLK55MaOq8YaSs+HyXKQsCX/Ce5ktCV03M3ObB01xE4OKoWPuQ=="; + url = "https://registry.npmjs.org/@cspell/dict-en_us/-/dict-en_us-4.2.0.tgz"; + sha512 = "n5hz8vQ6FAp4f+ZW/raN/f4G69V1LrhNZ7kgXM+Nirmkrz16oXmd1defTulbd7yf2T2XU8DmsrTnkuRG9mSQKw=="; }; }; "@cspell/dict-filetypes-1.1.8" = { @@ -3514,22 +3469,22 @@ let sha512 = "Mbi+zWdiP9yzL+X4YD9Tgcm5YQ95Ql+Y3vF2LRnOY6g2QWaijTRN1rgksVuxzpFqHi//+bx2uoUb0XEKBYDi8g=="; }; }; - "@cspell/dict-fullstack-3.0.0" = { + "@cspell/dict-fullstack-3.1.1" = { name = "_at_cspell_slash_dict-fullstack"; packageName = "@cspell/dict-fullstack"; - version = "3.0.0"; + version = "3.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.0.0.tgz"; - sha512 = "BMQRTaeReLufjMwgWqqwPdrXQ7jkVGTv7/YvOLsHFZvcAP3eM7WqX+rvdXckLhJmuuzbceFRDKs5F/9Ig2x/tQ=="; + url = "https://registry.npmjs.org/@cspell/dict-fullstack/-/dict-fullstack-3.1.1.tgz"; + sha512 = "w2n3QvqEiufmvlBuNduury/pySrhfOcWFfCvvpUXTJvWbfRVGkt6ANZuTuy3/7Z2q4GYUqsd139te4Q8m0jRHQ=="; }; }; - "@cspell/dict-gaming-terms-1.0.2" = { + "@cspell/dict-gaming-terms-1.0.4" = { name = "_at_cspell_slash_dict-gaming-terms"; packageName = "@cspell/dict-gaming-terms"; - version = "1.0.2"; + version = "1.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-gaming-terms/-/dict-gaming-terms-1.0.2.tgz"; - sha512 = "TLqqfvU4GbuYsBhDQTYXx1elz44/rjC5i4w9YaNLc8LH67qAKLESSv43jGKE8gsziPWluvJkcsnv21S//NL+Tw=="; + url = "https://registry.npmjs.org/@cspell/dict-gaming-terms/-/dict-gaming-terms-1.0.4.tgz"; + sha512 = "hbDduNXlk4AOY0wFxcDMWBPpm34rpqJBeqaySeoUH70eKxpxm+dvjpoRLJgyu0TmymEICCQSl6lAHTHSDiWKZg=="; }; }; "@cspell/dict-git-2.0.0" = { @@ -3622,13 +3577,13 @@ let sha512 = "LcOg9srYLDoNGd8n3kbfDBlZD+LOC9IVcnFCdua1b/luCHNVmlgBx7e677qPu7olpMYOD5TQIVW2OmM1+/6MFA=="; }; }; - "@cspell/dict-java-5.0.3" = { + "@cspell/dict-java-5.0.4" = { name = "_at_cspell_slash_dict-java"; packageName = "@cspell/dict-java"; - version = "5.0.3"; + version = "5.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-5.0.3.tgz"; - sha512 = "zQYPZxfso0W4QigsX5zX4lAZZYIrBcnHbrZkHplgmpDwR34GWBg2GypPMkDbli5Oogij/R7o4MaoefBQzcNIPA=="; + url = "https://registry.npmjs.org/@cspell/dict-java/-/dict-java-5.0.4.tgz"; + sha512 = "43VrLOLcBxavv6eyL4BpsnHrhVOgyYYeJqQRJG5XKObcpWy3+Lpadj58CfTVOr7M/Je3pUpd4tvsUhf/lWXMVA=="; }; }; "@cspell/dict-k8s-1.0.0" = { @@ -3649,13 +3604,13 @@ let sha512 = "cEgg91Migqcp1SdVV7dUeMxbPDhxdNo6Fgq2eygAXQjIOFK520FFvh/qxyBvW90qdZbIRoU2AJpchyHfGuwZFA=="; }; }; - "@cspell/dict-latex-3.0.0" = { + "@cspell/dict-latex-3.1.0" = { name = "_at_cspell_slash_dict-latex"; packageName = "@cspell/dict-latex"; - version = "3.0.0"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-3.0.0.tgz"; - sha512 = "QsRWj+Jll4ueVbce8ofKa743oQ2exmbVNZN70MaMbmu8PSbjW2+Rj3OdExVStesANMj7qc20inS/TgPr8DrInQ=="; + url = "https://registry.npmjs.org/@cspell/dict-latex/-/dict-latex-3.1.0.tgz"; + sha512 = "XD5S3FY0DrYiun2vm/KKOkeaD30LXp9v5EzVTVQvmxqQrQh0HvOT3TFD7lgKbyzZaG7E+l3wS94uwwm80cOmuw=="; }; }; "@cspell/dict-lorem-ipsum-1.0.22" = { @@ -3685,13 +3640,13 @@ let sha512 = "YiHDt8kmHJ8nSBy0tHzaxiuitYp+oJ66ffCYuFWTNB3//Y0SI4OGHU3omLsQVeXIfCeVrO4DrVvRDoCls9B5zQ=="; }; }; - "@cspell/dict-lua-3.0.0" = { + "@cspell/dict-lua-4.0.0" = { name = "_at_cspell_slash_dict-lua"; packageName = "@cspell/dict-lua"; - version = "3.0.0"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-lua/-/dict-lua-3.0.0.tgz"; - sha512 = "WOhSCgS5wMxkGQJ8siB90iTB9ElquJB7FeqYSbJqqs6cUwH8G7MM/CEDPL6h7vCo0+v3GuxQ8yKWDSUcUhz9Lg=="; + url = "https://registry.npmjs.org/@cspell/dict-lua/-/dict-lua-4.0.0.tgz"; + sha512 = "aQPyc/nP67tOlW6ACpio9Q5mZ/Z1hqwXC5rt5tkoQ2GsnCqeyIXDrX0CN+RGK53Lj4P02Jz/dPxs/nX8eDUFsw=="; }; }; "@cspell/dict-node-1.0.12" = { @@ -3721,13 +3676,13 @@ let sha512 = "RwkuZGcYBxL3Yux3cSG/IOWGlQ1e9HLCpHeyMtTVGYKAIkFAVUnGrz20l16/Q7zUG7IEktBz5O42kAozrEnqMQ=="; }; }; - "@cspell/dict-npm-5.0.1" = { + "@cspell/dict-npm-5.0.3" = { name = "_at_cspell_slash_dict-npm"; packageName = "@cspell/dict-npm"; - version = "5.0.1"; + version = "5.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.0.1.tgz"; - sha512 = "ynZ37WvOhl9nX4sq1CK6pAKeWkZXgJVv30ndOvnURJk0gtUAIjJ8rns2uHIMMhlsn1lsnaKlNlUuOtkUsd9qLw=="; + url = "https://registry.npmjs.org/@cspell/dict-npm/-/dict-npm-5.0.3.tgz"; + sha512 = "fEX67zIJISbS3gXVk/y/ZUvDIVtjc/CYJK7Mz0iTVrmlCKnLiD41lApe8v4g/12eE7hLfx/sfCXDrUWyzXVq1A=="; }; }; "@cspell/dict-php-1.0.25" = { @@ -3757,13 +3712,13 @@ let sha512 = "zF/raM/lkhXeHf4I43OtK0gP9rBeEJFArscTVwLWOCIvNk21MJcNoTYoaGw+c056+Q+hJL0psGLO7QN+mxYH1A=="; }; }; - "@cspell/dict-powershell-3.0.0" = { + "@cspell/dict-powershell-4.0.0" = { name = "_at_cspell_slash_dict-powershell"; packageName = "@cspell/dict-powershell"; - version = "3.0.0"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-powershell/-/dict-powershell-3.0.0.tgz"; - sha512 = "pkztY9Ak4oc33q+Qxcn9/CTOKo4N8YIRRE6v67WwQOncA5QIJfcOPUrjfR3Z8SpzElXhu3s9qtWWSqbCy6qmcA=="; + url = "https://registry.npmjs.org/@cspell/dict-powershell/-/dict-powershell-4.0.0.tgz"; + sha512 = "1Lbm+3+Sx63atl4MM3lPeCUc90JjRyKP9+exmy2cQimXNju9ngtuDWwapHUnhQ47qnzrsBY4ydm36KCfJarXJA=="; }; }; "@cspell/dict-public-licenses-2.0.1" = { @@ -3811,13 +3766,13 @@ let sha512 = "I76hJA///lc1pgmDTGUFHN/O8KLIZIU/8TgIYIGI6Ix/YzSEvWNdQYbANn6JbCynS0X+7IbZ2Ft+QqvmGtIWuA=="; }; }; - "@cspell/dict-ruby-3.0.0" = { + "@cspell/dict-ruby-4.0.1" = { name = "_at_cspell_slash_dict-ruby"; packageName = "@cspell/dict-ruby"; - version = "3.0.0"; + version = "4.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-3.0.0.tgz"; - sha512 = "sA98T8Y1Pmq3RStVkO14E8vTWkq6JUn8c8PldiMyYgV0yfQgwhQfFAzlSfF3Gg2B0VkIdqt2et2SPN7f9wp7fQ=="; + url = "https://registry.npmjs.org/@cspell/dict-ruby/-/dict-ruby-4.0.1.tgz"; + sha512 = "p9nLDsffPadPLLwdLQj4Gk0IsZ64iCSxnSCaeFXslFiD17FtJVh1YMHP7KE9M73u22Hprq+a1Yw25/xp6Tkt3g=="; }; }; "@cspell/dict-rust-1.0.23" = { @@ -3829,13 +3784,13 @@ let sha512 = "lR4boDzs79YD6+30mmiSGAMMdwh7HTBAPUFSB0obR3Kidibfc3GZ+MHWZXay5dxZ4nBKM06vyjtanF9VJ8q1Iw=="; }; }; - "@cspell/dict-rust-3.0.0" = { + "@cspell/dict-rust-4.0.0" = { name = "_at_cspell_slash_dict-rust"; packageName = "@cspell/dict-rust"; - version = "3.0.0"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-3.0.0.tgz"; - sha512 = "L1T1IBsYJZVDmfOGAbVLcpc6arWxRRCSJYvHSwEDBGrNuMyJ4jx/NvBEz5crcKf4vVKgwVlXgzQlJJZ8AVxU9w=="; + url = "https://registry.npmjs.org/@cspell/dict-rust/-/dict-rust-4.0.0.tgz"; + sha512 = "nzJsgLR6/JXtM41Cr5FG89r8sBKW6aFjvCqPxeaBJYLAL0JuvsVUcd16rW2lTsdbx5J8yUQDD7mgCZFk6merJQ=="; }; }; "@cspell/dict-scala-1.0.21" = { @@ -3847,13 +3802,13 @@ let sha512 = "5V/R7PRbbminTpPS3ywgdAalI9BHzcEjEj9ug4kWYvBIGwSnS7T6QCFCiu+e9LvEGUqQC+NHgLY4zs1NaBj2vA=="; }; }; - "@cspell/dict-scala-3.0.0" = { + "@cspell/dict-scala-4.0.0" = { name = "_at_cspell_slash_dict-scala"; packageName = "@cspell/dict-scala"; - version = "3.0.0"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-scala/-/dict-scala-3.0.0.tgz"; - sha512 = "sIiCQDIMMnNns/fzD61z5npbh5pypaKq07Orqe0+eRfdQpika8iRSGUGFHVbtdd1JzB1DyTCV2e8OwdaQiXqJQ=="; + url = "https://registry.npmjs.org/@cspell/dict-scala/-/dict-scala-4.0.0.tgz"; + sha512 = "ugdjt66/Ah34yF3u3DUNjCHXnBqIuxUUfdeBobbGxfm29CNgidrISV1NUh+xi8tPynMzSTpGbBiArFBH6on5XQ=="; }; }; "@cspell/dict-software-terms-1.0.48" = { @@ -3865,13 +3820,13 @@ let sha512 = "pfF3Ys2gRffu5ElqkH7FQMDMi/iZMyOzpGMb3FSH0PJ2AnRQ5rRNWght1h2L36YxvXl0mWVaFrrfwiOyRIc8ZQ=="; }; }; - "@cspell/dict-software-terms-3.0.6" = { + "@cspell/dict-software-terms-3.1.0" = { name = "_at_cspell_slash_dict-software-terms"; packageName = "@cspell/dict-software-terms"; - version = "3.0.6"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-3.0.6.tgz"; - sha512 = "Zf7RrgLtdwDgQqHjS2OaL88haYZ2sBEBZX4ARmLTpJkS4lHM0nKRsPf7QKi9/AhrH1CGjOwgyx9Q/aVC/MdggA=="; + url = "https://registry.npmjs.org/@cspell/dict-software-terms/-/dict-software-terms-3.1.0.tgz"; + sha512 = "KQVpHmuGJprkriClbwTf1TfCjkCkS+GqLBO8ytltmYylCHZumJMfA3sM10e3zmsVIlungrtNLG9xz5opIdm/2A=="; }; }; "@cspell/dict-sql-2.0.1" = { @@ -3883,13 +3838,13 @@ let sha512 = "7fvVcvy751cl31KMD5j04yMGq2UKj018/1hx3FNtdUI9UuUTMvhBrTAqHEEemR3ZeIC9i/5p5SQjwQ13bn04qw=="; }; }; - "@cspell/dict-svelte-1.0.1" = { + "@cspell/dict-svelte-1.0.2" = { name = "_at_cspell_slash_dict-svelte"; packageName = "@cspell/dict-svelte"; - version = "1.0.1"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-svelte/-/dict-svelte-1.0.1.tgz"; - sha512 = "CYnEftTY2cFAy+Ag8AN+OxUtqhyhPfT7yX6Cxf701RSzLCllWDHZ4wlCii+uYqkscZUZp1Ko2QY+t3SyOqlG0g=="; + url = "https://registry.npmjs.org/@cspell/dict-svelte/-/dict-svelte-1.0.2.tgz"; + sha512 = "rPJmnn/GsDs0btNvrRBciOhngKV98yZ9SHmg8qI6HLS8hZKvcXc0LMsf9LLuMK1TmS2+WQFAan6qeqg6bBxL2Q=="; }; }; "@cspell/dict-swift-2.0.1" = { @@ -3910,13 +3865,13 @@ let sha512 = "yIuGeeZtQA2gqpGefGjZqBl8iGJpIYWz0QzDqsscNi2qfSnLsbjM0RkRbTehM8y9gGGe7xfgUP5adxceJa5Krg=="; }; }; - "@cspell/dict-typescript-3.0.2" = { + "@cspell/dict-typescript-3.1.0" = { name = "_at_cspell_slash_dict-typescript"; packageName = "@cspell/dict-typescript"; - version = "3.0.2"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-3.0.2.tgz"; - sha512 = "+xg/Lan+ObJbmGXuAN1RI84eUy+P6ZzFrWO1JoaU9zHXs62IHetkAGrUXfc+rM3m4O6lpMKawHjokFWqkFa4Vw=="; + url = "https://registry.npmjs.org/@cspell/dict-typescript/-/dict-typescript-3.1.0.tgz"; + sha512 = "4hdLlQMOYrUbGfJg2cWnbsBUevObwgL76TLVC0rwnrkSwzOxAxiGaG39VtRMvgAAe2lX6L+jka3fy0MmxzFOHw=="; }; }; "@cspell/dict-vue-3.0.0" = { @@ -3928,13 +3883,13 @@ let sha512 = "niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A=="; }; }; - "@cspell/strong-weak-map-6.18.0" = { + "@cspell/strong-weak-map-6.19.2" = { name = "_at_cspell_slash_strong-weak-map"; packageName = "@cspell/strong-weak-map"; - version = "6.18.0"; + version = "6.19.2"; src = fetchurl { - url = "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-6.18.0.tgz"; - sha512 = "sHTUWzc1rL3v38HFKyD4vUdK7NotNsbnHaR6nWXvPgDOF1LxgNf4M4YcX9taiMghln/5GR1MnrjXjm3ZsRwfbg=="; + url = "https://registry.npmjs.org/@cspell/strong-weak-map/-/strong-weak-map-6.19.2.tgz"; + sha512 = "0P2f1JNGw+lEyqz0jxj1ob+772HgbQEIrXXuWF9vQXKdYx0kVzkSNVAUGZjqWiO+ieGFJVr0pqHA+wGcIx1VAQ=="; }; }; "@cspotcode/source-map-consumer-0.8.0" = { @@ -3964,132 +3919,6 @@ let sha512 = "IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw=="; }; }; - "@csstools/postcss-cascade-layers-1.1.1" = { - name = "_at_csstools_slash_postcss-cascade-layers"; - packageName = "@csstools/postcss-cascade-layers"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-1.1.1.tgz"; - sha512 = "+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA=="; - }; - }; - "@csstools/postcss-color-function-1.1.1" = { - name = "_at_csstools_slash_postcss-color-function"; - packageName = "@csstools/postcss-color-function"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-1.1.1.tgz"; - sha512 = "Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw=="; - }; - }; - "@csstools/postcss-font-format-keywords-1.0.1" = { - name = "_at_csstools_slash_postcss-font-format-keywords"; - packageName = "@csstools/postcss-font-format-keywords"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-1.0.1.tgz"; - sha512 = "ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg=="; - }; - }; - "@csstools/postcss-hwb-function-1.0.2" = { - name = "_at_csstools_slash_postcss-hwb-function"; - packageName = "@csstools/postcss-hwb-function"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-1.0.2.tgz"; - sha512 = "YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w=="; - }; - }; - "@csstools/postcss-ic-unit-1.0.1" = { - name = "_at_csstools_slash_postcss-ic-unit"; - packageName = "@csstools/postcss-ic-unit"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-1.0.1.tgz"; - sha512 = "Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw=="; - }; - }; - "@csstools/postcss-is-pseudo-class-2.0.7" = { - name = "_at_csstools_slash_postcss-is-pseudo-class"; - packageName = "@csstools/postcss-is-pseudo-class"; - version = "2.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-2.0.7.tgz"; - sha512 = "7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA=="; - }; - }; - "@csstools/postcss-nested-calc-1.0.0" = { - name = "_at_csstools_slash_postcss-nested-calc"; - packageName = "@csstools/postcss-nested-calc"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-1.0.0.tgz"; - sha512 = "JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ=="; - }; - }; - "@csstools/postcss-normalize-display-values-1.0.1" = { - name = "_at_csstools_slash_postcss-normalize-display-values"; - packageName = "@csstools/postcss-normalize-display-values"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-1.0.1.tgz"; - sha512 = "jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw=="; - }; - }; - "@csstools/postcss-oklab-function-1.1.1" = { - name = "_at_csstools_slash_postcss-oklab-function"; - packageName = "@csstools/postcss-oklab-function"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-1.1.1.tgz"; - sha512 = "nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA=="; - }; - }; - "@csstools/postcss-progressive-custom-properties-1.3.0" = { - name = "_at_csstools_slash_postcss-progressive-custom-properties"; - packageName = "@csstools/postcss-progressive-custom-properties"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-1.3.0.tgz"; - sha512 = "ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA=="; - }; - }; - "@csstools/postcss-stepped-value-functions-1.0.1" = { - name = "_at_csstools_slash_postcss-stepped-value-functions"; - packageName = "@csstools/postcss-stepped-value-functions"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-1.0.1.tgz"; - sha512 = "dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ=="; - }; - }; - "@csstools/postcss-text-decoration-shorthand-1.0.0" = { - name = "_at_csstools_slash_postcss-text-decoration-shorthand"; - packageName = "@csstools/postcss-text-decoration-shorthand"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-1.0.0.tgz"; - sha512 = "c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw=="; - }; - }; - "@csstools/postcss-trigonometric-functions-1.0.2" = { - name = "_at_csstools_slash_postcss-trigonometric-functions"; - packageName = "@csstools/postcss-trigonometric-functions"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-1.0.2.tgz"; - sha512 = "woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og=="; - }; - }; - "@csstools/postcss-unset-value-1.0.2" = { - name = "_at_csstools_slash_postcss-unset-value"; - packageName = "@csstools/postcss-unset-value"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-1.0.2.tgz"; - sha512 = "c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g=="; - }; - }; "@csstools/selector-specificity-2.0.2" = { name = "_at_csstools_slash_selector-specificity"; packageName = "@csstools/selector-specificity"; @@ -4333,13 +4162,13 @@ let sha512 = "Z9fJ0JfZw9w5OVZgy0qVGapGMQqfaLyQSHzEfm2HQdGGJrHkeXJkMn8Yd1E8h5EPMb3jF5tHRw3VopelzcPQxQ=="; }; }; - "@electron/asar-3.2.2" = { + "@electron/asar-3.2.3" = { name = "_at_electron_slash_asar"; packageName = "@electron/asar"; - version = "3.2.2"; + version = "3.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@electron/asar/-/asar-3.2.2.tgz"; - sha512 = "32fMU68x8a6zvxtC1IC/BhPDKTh8rQjdmwEplj3CDpnkcwBzZVN9v/8cK0LJqQ0FOQQVZW8BWZ1S6UU53TYR4w=="; + url = "https://registry.npmjs.org/@electron/asar/-/asar-3.2.3.tgz"; + sha512 = "wmOfE6szYyqZhRIiLH+eyZEp+bGcJI0OD/SCvSUrfBE0jvauyGYO2ZhpWxmNCcDojKu5DYrsVqT5BOCZZ01XIg=="; }; }; "@electron/get-2.0.2" = { @@ -4513,13 +4342,13 @@ let sha512 = "J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw=="; }; }; - "@eslint/eslintrc-1.4.0" = { + "@eslint/eslintrc-1.4.1" = { name = "_at_eslint_slash_eslintrc"; packageName = "@eslint/eslintrc"; - version = "1.4.0"; + version = "1.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.0.tgz"; - sha512 = "7yfvXy6MWLgWSFsLhz5yH3iQ52St8cdUY6FoGieKkRDVxuxmrNuUetIuu6cmjNWwniUHiWXjxCr5tTXDrbYS5A=="; + url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz"; + sha512 = "XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA=="; }; }; "@esm2cjs/cacheable-lookup-7.0.0" = { @@ -4531,13 +4360,13 @@ let sha512 = "5HzrA5N0lSMtx2RdXfD9Z4HUFaRGwVOFs7jsFG8jDivoZjYYwZFsSqvA17TaNZYFcwBrkSCqHlxDu2YDpjjUBA=="; }; }; - "@esm2cjs/cacheable-request-10.2.3" = { + "@esm2cjs/cacheable-request-10.2.5" = { name = "_at_esm2cjs_slash_cacheable-request"; packageName = "@esm2cjs/cacheable-request"; - version = "10.2.3"; + version = "10.2.5"; src = fetchurl { - url = "https://registry.npmjs.org/@esm2cjs/cacheable-request/-/cacheable-request-10.2.3.tgz"; - sha512 = "3XI8RZmu37SaqAOcoKq2mn0oI1hg2kZf2YvLfye1izti2n9W6o5UnFE4sQK/IPLPJx1XPWuvq3EQPdUzGCX99g=="; + url = "https://registry.npmjs.org/@esm2cjs/cacheable-request/-/cacheable-request-10.2.5.tgz"; + sha512 = "fen7CINhjqLjNCVtleKzDJxc1P0gLMR4KXEq5dh1CxkHZ2X8KvM0km1DwdAuLRRBusmPwgj6jqZDDtPZpIOi5Q=="; }; }; "@esm2cjs/form-data-encoder-2.1.4" = { @@ -4684,22 +4513,13 @@ let sha512 = "Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA=="; }; }; - "@expo/cli-0.4.10" = { + "@expo/cli-0.4.11" = { name = "_at_expo_slash_cli"; packageName = "@expo/cli"; - version = "0.4.10"; + version = "0.4.11"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/cli/-/cli-0.4.10.tgz"; - sha512 = "c8NJOVa5b8g9CYj8ahdaN21cVE2wPwUaFrtTE0kLeRR5ASy8reWLFEOcstEtt6eufdcN/uGgBWQ0FLovgLZuzw=="; - }; - }; - "@expo/code-signing-certificates-0.0.3" = { - name = "_at_expo_slash_code-signing-certificates"; - packageName = "@expo/code-signing-certificates"; - version = "0.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/code-signing-certificates/-/code-signing-certificates-0.0.3.tgz"; - sha512 = "rHOUnsLaceOcdC8wUhkG+SuBJDbj/Nf/7kbBZH6ZbHzn22x92ZII/clIYOxt7C5P0xfeUwYKa7pRuZm6ut5k/g=="; + url = "https://registry.npmjs.org/@expo/cli/-/cli-0.4.11.tgz"; + sha512 = "L9Ci9RBh0aPFEDF1AjDYPk54OgeUJIKzxF3lRgITm+lQpI3IEKjAc9LaYeQeO1mlZMUQmPkHArF8iyz1eOeVoQ=="; }; }; "@expo/code-signing-certificates-0.0.5" = { @@ -4720,15 +4540,6 @@ let sha512 = "OcACI1md1Yo5TQmUxxueJ/RaTlR2Mgl6KswTFOYCL1XJERF/jjAx95zhWXH+JQGdlM0yB0vqM6vB6GbUFRvLxA=="; }; }; - "@expo/config-7.0.1" = { - name = "_at_expo_slash_config"; - packageName = "@expo/config"; - version = "7.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/config/-/config-7.0.1.tgz"; - sha512 = "4lu0wr45XXJ2MXiLAm2+fmOyy/jjqF3NuDm92fO6nuulRzEEvTP4w3vsibJ690rT81ohtvhpruKhkRs0wSjKWA=="; - }; - }; "@expo/config-7.0.3" = { name = "_at_expo_slash_config"; packageName = "@expo/config"; @@ -4747,15 +4558,6 @@ let sha512 = "RVvU40RtZt12HavuDAe+LDIq9lHj7sheOfMEHdmpJ/uTA8pgvkbc56XF6JHQD+yRr6+uhhb+JnAasGq49dsQbw=="; }; }; - "@expo/config-plugins-5.0.1" = { - name = "_at_expo_slash_config-plugins"; - packageName = "@expo/config-plugins"; - version = "5.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-5.0.1.tgz"; - sha512 = "1OfnsOrfeSkB0VZfT01UjQ5Uq6p+yYbq8yNkj0e99K/6NLHpyvIxj+5tZIV0nQXgkOcqBIABL2uA7lwB8CkaBQ=="; - }; - }; "@expo/config-plugins-5.0.4" = { name = "_at_expo_slash_config-plugins"; packageName = "@expo/config-plugins"; @@ -4774,15 +4576,6 @@ let sha512 = "/QGhhLWyaGautgEyU50UJr5YqKJix5t77ePTwreOVAhmZH+ff3nrrtYTTnccx+qF08ZNQmfAyYMCD3rQfzpiJA=="; }; }; - "@expo/config-types-46.0.2" = { - name = "_at_expo_slash_config-types"; - packageName = "@expo/config-types"; - version = "46.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/config-types/-/config-types-46.0.2.tgz"; - sha512 = "PXkmOgNwRyBfgVT1HmFZhfh3Qm7WKKyV6mk3/5HJ/LzPh1t+Zs2JrWX8U2YncTLV1QzV7nV8tnkyvszzqnZEzQ=="; - }; - }; "@expo/config-types-47.0.0" = { name = "_at_expo_slash_config-types"; packageName = "@expo/config-types"; @@ -4801,13 +4594,13 @@ let sha512 = "kqr71GAXzBVmjT+qSmqckBKY6Y9lFf4Oy1S4aVygx72CNgyzVTw4CPqT5RsNhcvQEEdACgarczDbPnNkmrm7GQ=="; }; }; - "@expo/dev-server-0.1.123" = { + "@expo/dev-server-0.1.124" = { name = "_at_expo_slash_dev-server"; packageName = "@expo/dev-server"; - version = "0.1.123"; + version = "0.1.124"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.123.tgz"; - sha512 = "N6UVzzeemfX0AONUSWInvkAAbqon8hRXpyYE/nMPaC6TvAmgGY5ILZAGoXwlpxwY2VKNT0Lx4s/UJ53ytIaHbA=="; + url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.124.tgz"; + sha512 = "iHczVcf+rgWupCY/3b3ePIizNtzsy1O/w8jdKv3bKvoOfXiVIVOo4KGiVDpAJOahKiMOsRlbKeemB8OLNKzdSA=="; }; }; "@expo/devcert-1.1.0" = { @@ -4819,31 +4612,22 @@ let sha512 = "ghUVhNJQOCTdQckSGTHctNp/0jzvVoMMkVh+6SHn+TZj8sU15U/npXIDt8NtQp0HedlPaCgkVdMu8Sacne0aEA=="; }; }; - "@expo/eas-build-job-0.2.97" = { + "@expo/eas-build-job-0.2.102" = { name = "_at_expo_slash_eas-build-job"; packageName = "@expo/eas-build-job"; - version = "0.2.97"; + version = "0.2.102"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/eas-build-job/-/eas-build-job-0.2.97.tgz"; - sha512 = "1OtHIoJbMQSsp0jEqBLI7nsqqhy1Hv38H0Ogznyr3uFqk5zWLX57pmSx4wWYv9R8M6SXsgJJq/nNa5RAopsipA=="; + url = "https://registry.npmjs.org/@expo/eas-build-job/-/eas-build-job-0.2.102.tgz"; + sha512 = "1gav4gHhZCnRDIscd0/sat/fjts543QmexiWXUWDv15uzCxx/NnewN13tcmOwMV0K3Z3agOlJLRPN2t6UvIMAg=="; }; }; - "@expo/eas-json-3.0.0" = { + "@expo/eas-json-3.3.2" = { name = "_at_expo_slash_eas-json"; packageName = "@expo/eas-json"; - version = "3.0.0"; + version = "3.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/eas-json/-/eas-json-3.0.0.tgz"; - sha512 = "+Fp3rbQ+iQp+uWRUF5iQATPGiiIjpC0W4ywXNVvc5FjOKcWd4sBRxsSJaxc1ugTL3izO7DYJH+K8B8Oha5DD2w=="; - }; - }; - "@expo/image-utils-0.3.20" = { - name = "_at_expo_slash_image-utils"; - packageName = "@expo/image-utils"; - version = "0.3.20"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/image-utils/-/image-utils-0.3.20.tgz"; - sha512 = "NgF/80XENyCS+amwC0P6uk1fauEtUq7gijD19jvl2xknJaADq8M2dMCRHwWMVOXosr2v46f3Z++G/NjmyOVS7A=="; + url = "https://registry.npmjs.org/@expo/eas-json/-/eas-json-3.3.2.tgz"; + sha512 = "O85CbdCXUjzUOyXITpVT7qnnIqdRaaEiaY7gCeYYW4c9KUO0fNobiePKBAYTFzoSJMt5bJT9jkwKNk3dML8zkQ=="; }; }; "@expo/image-utils-0.3.21" = { @@ -4882,6 +4666,15 @@ let sha512 = "tOZfTiIFA5KmMpdW9KF7bc6CFiGjb0xnbieJhTGlHrLL+ps2G0OkqmuZ3pFEXBOMnJYUVpnSy++52LFxvpa5ZQ=="; }; }; + "@expo/json-file-8.2.37" = { + name = "_at_expo_slash_json-file"; + packageName = "@expo/json-file"; + version = "8.2.37"; + src = fetchurl { + url = "https://registry.npmjs.org/@expo/json-file/-/json-file-8.2.37.tgz"; + sha512 = "YaH6rVg11JoTS2P6LsW7ybS2CULjf40AbnAHw2F1eDPuheprNjARZMnyHFPkKv7GuxCy+B9GPcbOKgc4cgA80Q=="; + }; + }; "@expo/metro-config-0.3.18" = { name = "_at_expo_slash_metro-config"; packageName = "@expo/metro-config"; @@ -4927,6 +4720,15 @@ let sha512 = "PGk34uz4XDyhoNIlPh2D+BDsiXYuW2jXavTiax8d32uvHlRO6FN0cAsqlWD6fx3H2hRn8cU/leTuc4M7pYovCQ=="; }; }; + "@expo/package-manager-0.0.57" = { + name = "_at_expo_slash_package-manager"; + packageName = "@expo/package-manager"; + version = "0.0.57"; + src = fetchurl { + url = "https://registry.npmjs.org/@expo/package-manager/-/package-manager-0.0.57.tgz"; + sha512 = "Y4RpSL9EqaPF+Vd2GrK6r7Xx7Dv0Xdq3AGAD9C0KwV21WqP/scj/dpjxFY+ABwmdhNsFzYXb8fmDyh4tiKenPQ=="; + }; + }; "@expo/pkcs12-0.0.8" = { name = "_at_expo_slash_pkcs12"; packageName = "@expo/pkcs12"; @@ -4945,31 +4747,31 @@ let sha512 = "+48gRqUiz65R21CZ/IXa7RNBXgAI/uPSdvJqoN9x1hfL44DNbUoWHgHiEXTx7XelcATpDwNTz6sHLfy0iNqf+w=="; }; }; - "@expo/plist-0.0.19" = { + "@expo/plist-0.0.20" = { name = "_at_expo_slash_plist"; packageName = "@expo/plist"; - version = "0.0.19"; + version = "0.0.20"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/plist/-/plist-0.0.19.tgz"; - sha512 = "9+GdsnLOZ475bITOSwU6MxIXukYHS3yTVCK2+cSDMyb9h2NuBwpnHFJGFUqcg9HcA6fbmyhGnNpPD3vk7zqWFQ=="; + url = "https://registry.npmjs.org/@expo/plist/-/plist-0.0.20.tgz"; + sha512 = "UXQ4LXCfTZ580LDHGJ5q62jSTwJFFJ1GqBu8duQMThiHKWbMJ+gajJh6rsB6EJ3aLUr9wcauxneL5LVRFxwBEA=="; }; }; - "@expo/plugin-help-5.1.16" = { + "@expo/plugin-help-5.1.22" = { name = "_at_expo_slash_plugin-help"; packageName = "@expo/plugin-help"; - version = "5.1.16"; + version = "5.1.22"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/plugin-help/-/plugin-help-5.1.16.tgz"; - sha512 = "4yuVUoLgUz5tbPRu7dxKE5nP+1UHYXb4t9QmeoNg/8kIrdBH6OquW0wxre45T3zUrMq5+YYuTAvoPYuAhF1XWA=="; + url = "https://registry.npmjs.org/@expo/plugin-help/-/plugin-help-5.1.22.tgz"; + sha512 = "FhLc5Ukcxb6vZvWgge/aW0pEUb1bGkN1GQBEan8NlJfVYj/uhvgmcPu1fvihwARdcLCOeoQgUVbUX5Tu/SBABg=="; }; }; - "@expo/plugin-warn-if-update-available-2.4.0" = { + "@expo/plugin-warn-if-update-available-2.5.0" = { name = "_at_expo_slash_plugin-warn-if-update-available"; packageName = "@expo/plugin-warn-if-update-available"; - version = "2.4.0"; + version = "2.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/plugin-warn-if-update-available/-/plugin-warn-if-update-available-2.4.0.tgz"; - sha512 = "+tRZJUNeybjy2xnncGk4puZBWbiRIEG1n+RVYPD/SQXpz1YCnZlcXByTT13GB3WABmy0xF87kFeBxoCoYQuIsQ=="; + url = "https://registry.npmjs.org/@expo/plugin-warn-if-update-available/-/plugin-warn-if-update-available-2.5.0.tgz"; + sha512 = "DNq+7mkAQFjOGGNDVwcWvr1/6FPvBrDAkhR92ul3cNaLmZ36WxnnQ/HEUUUEj0gMjwiPEER4mBqC4auMsbBp9g=="; }; }; "@expo/prebuild-config-4.0.3" = { @@ -4981,15 +4783,6 @@ let sha512 = "ZRMn0a9Wo/coKXLMvizUytqtG5pniUHaBMSS28yFTcGVvyDJh2nFVkBf9po52mSkbm9rGp/Pev6GAf57m6S2BA=="; }; }; - "@expo/prebuild-config-5.0.3" = { - name = "_at_expo_slash_prebuild-config"; - packageName = "@expo/prebuild-config"; - version = "5.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-5.0.3.tgz"; - sha512 = "G4j1H3WFjRaiQ+FgFNULrnIm7RsQyjc4xp6lLTP2ydBv79wO3x8wAdeZvaZh7eOkfu9BESpQzACT1uuJTag5jg=="; - }; - }; "@expo/prebuild-config-5.0.7" = { name = "_at_expo_slash_prebuild-config"; packageName = "@expo/prebuild-config"; @@ -5071,13 +4864,13 @@ let sha512 = "TI+l71+5aSKnShYclFa14Kum+hQMZ86b95SH6tQUG3qZEmLTarvWpKwqtTwQKqvlJSJrpFiSFu3eCuZokY6zWA=="; }; }; - "@expo/webpack-config-0.17.3" = { + "@expo/webpack-config-0.17.4" = { name = "_at_expo_slash_webpack-config"; packageName = "@expo/webpack-config"; - version = "0.17.3"; + version = "0.17.4"; src = fetchurl { - url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.17.3.tgz"; - sha512 = "EcnHHmMscC7mL7qGQpXoSSpOrXbyfnMErUfqaBVjMYz7I4xVvoPQqiM13v4JXnz9TnZHDxD9t7+VSa9hPJVssA=="; + url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.17.4.tgz"; + sha512 = "vn37RDhYowfLc2oRaXhmbI/9FStjQFXPONG3yRLfwUnA4dRtfXapJUSKHJKRwOy4fBBmTrb2tthtsdb4zeWmsw=="; }; }; "@expo/xcpretty-4.2.2" = { @@ -5197,85 +4990,85 @@ let sha512 = "P4ZMRFxVMnfMsOyTfBM/+nkTodLeOUfXNPo+X1bKEWBiZxRErqX/IHS5sLA0yAH8XmtKZcL7Cu6M26ztGcQYxw=="; }; }; - "@fluentui/date-time-utilities-8.5.3" = { + "@fluentui/date-time-utilities-8.5.4" = { name = "_at_fluentui_slash_date-time-utilities"; packageName = "@fluentui/date-time-utilities"; - version = "8.5.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/date-time-utilities/-/date-time-utilities-8.5.3.tgz"; - sha512 = "jwbwcJlnerdjENIAfn/YHxl5H2sQruReOMWXWMgmvX0CmcbqsN9VBxBt+E35Tlr4Ds3MbGs60eyfZUIPpaB5RQ=="; - }; - }; - "@fluentui/dom-utilities-2.2.3" = { - name = "_at_fluentui_slash_dom-utilities"; - packageName = "@fluentui/dom-utilities"; - version = "2.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/dom-utilities/-/dom-utilities-2.2.3.tgz"; - sha512 = "Ml/xwpTC6vb9lHHVAbSUD9jMbt9nVzV208D0FEoQn0c0+dP2vdMXSvXC/QHs/57B6JicttVQPuX6EcPwR3Mkpg=="; - }; - }; - "@fluentui/font-icons-mdl2-8.5.5" = { - name = "_at_fluentui_slash_font-icons-mdl2"; - packageName = "@fluentui/font-icons-mdl2"; - version = "8.5.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.5.5.tgz"; - sha512 = "mCyQNGT2axvU2M7+dc0HmwQa9vzE33HXxcz32nZJugliy4lA3H2gIrkEt3xfY80DnzCUWz2Wd9RmComGFrei0g=="; - }; - }; - "@fluentui/foundation-legacy-8.2.25" = { - name = "_at_fluentui_slash_foundation-legacy"; - packageName = "@fluentui/foundation-legacy"; - version = "8.2.25"; - src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.2.25.tgz"; - sha512 = "yK14cYaviKs7UW8GFB5rR1+2GtLOMzZ71pPw8Od5ilOTYD6VgUTTRZZfUjAidFCJ1+XsocNnzUQXX73q4tSC3Q=="; - }; - }; - "@fluentui/keyboard-key-0.4.3" = { - name = "_at_fluentui_slash_keyboard-key"; - packageName = "@fluentui/keyboard-key"; - version = "0.4.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/keyboard-key/-/keyboard-key-0.4.3.tgz"; - sha512 = "uLiwx+UyXDN7tShv/s2NzDPtqeT/BZCHvY9yxEeb6LgEkos8TZvT5ep/7G8BpxA/SuBnviZ8xpDB5JObyZikqQ=="; - }; - }; - "@fluentui/merge-styles-8.5.4" = { - name = "_at_fluentui_slash_merge-styles"; - packageName = "@fluentui/merge-styles"; version = "8.5.4"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.5.4.tgz"; - sha512 = "CeQIEcEgZu0cxqqyhJyTqySXoUL1vXfdWDJ8WMzchaNnhvOvoXISw8xXHpNXUtEn+HgPrcy9mHQwFcAc+jv3Wg=="; + url = "https://registry.npmjs.org/@fluentui/date-time-utilities/-/date-time-utilities-8.5.4.tgz"; + sha512 = "PHLrbKs/s80xVkvFLQkaYb78a9nRUlohj8FCDBFQ8F1qPJj3iVH1RuSLyTiCIRJy/v1hW6KMEIXqLu/EoMefXw=="; }; }; - "@fluentui/react-8.104.0" = { + "@fluentui/dom-utilities-2.2.4" = { + name = "_at_fluentui_slash_dom-utilities"; + packageName = "@fluentui/dom-utilities"; + version = "2.2.4"; + src = fetchurl { + url = "https://registry.npmjs.org/@fluentui/dom-utilities/-/dom-utilities-2.2.4.tgz"; + sha512 = "X4fN5zbvAETw9LE8bw9x5otKcpS3A3cB9wn/BookbTD4hkBESx06SzmX/WdabFq7qqbDqbURiQMpmdGUUlLsqw=="; + }; + }; + "@fluentui/font-icons-mdl2-8.5.6" = { + name = "_at_fluentui_slash_font-icons-mdl2"; + packageName = "@fluentui/font-icons-mdl2"; + version = "8.5.6"; + src = fetchurl { + url = "https://registry.npmjs.org/@fluentui/font-icons-mdl2/-/font-icons-mdl2-8.5.6.tgz"; + sha512 = "6yGZcc/fIeT/HDPjnn003TNuC/EUoiZTiyZQyPSSQl5PeOzkmNOqG8nq/l8s+qXHs4uZC/FH081vxPxSwA2qWA=="; + }; + }; + "@fluentui/foundation-legacy-8.2.26" = { + name = "_at_fluentui_slash_foundation-legacy"; + packageName = "@fluentui/foundation-legacy"; + version = "8.2.26"; + src = fetchurl { + url = "https://registry.npmjs.org/@fluentui/foundation-legacy/-/foundation-legacy-8.2.26.tgz"; + sha512 = "7XKz23HB7IeIIXORS1os2fIakYTLTTGFcs+mnK5f/b4xFJAOxxdte6i10f2WsPPFiTjW1kLOzICsRsfwuHAVRw=="; + }; + }; + "@fluentui/keyboard-key-0.4.4" = { + name = "_at_fluentui_slash_keyboard-key"; + packageName = "@fluentui/keyboard-key"; + version = "0.4.4"; + src = fetchurl { + url = "https://registry.npmjs.org/@fluentui/keyboard-key/-/keyboard-key-0.4.4.tgz"; + sha512 = "nx0bQ9B5QtUym9a21ig5eHPt2T6EWaqrleFb37d6ImikP6xVXUHrWQJFuVS1CSg0n63KOPsmh1QvAUfxfmyLhw=="; + }; + }; + "@fluentui/merge-styles-8.5.5" = { + name = "_at_fluentui_slash_merge-styles"; + packageName = "@fluentui/merge-styles"; + version = "8.5.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@fluentui/merge-styles/-/merge-styles-8.5.5.tgz"; + sha512 = "+cyN28iRAn8BWlZkMSEWzXpsJJiy3wWFxdJx5UnvU3iLK1slwog94inJak/BmnQKk3dFXK9vVPtDp2s3l+2/hg=="; + }; + }; + "@fluentui/react-8.104.5" = { name = "_at_fluentui_slash_react"; packageName = "@fluentui/react"; - version = "8.104.0"; + version = "8.104.5"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react/-/react-8.104.0.tgz"; - sha512 = "D68dmf4ZTScb3dADwESPMyJtQGzQ5eTY5y1uPAyaMwlAc2oUCimycqYkaggb55ELrxlSdCzFSfTQ/5Xq3pGs+A=="; + url = "https://registry.npmjs.org/@fluentui/react/-/react-8.104.5.tgz"; + sha512 = "BdyDS6yEccDuzUzYQ1h1idO2wrKLi9iMkErg1wJfODlnnqVVU5x+3x8cjkH8xHndScQ0zaVBuw84xxqP7ZCPFA=="; }; }; - "@fluentui/react-focus-8.8.11" = { + "@fluentui/react-focus-8.8.12" = { name = "_at_fluentui_slash_react-focus"; packageName = "@fluentui/react-focus"; - version = "8.8.11"; + version = "8.8.12"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.8.11.tgz"; - sha512 = "RJlytqrdhVC6HqtUKk/SGqOx8IW5S6SxxUbutsto7LZT72wFMBf8VsrxvkfweVrWT2jQp+VkH/c0CHJzzZtztQ=="; + url = "https://registry.npmjs.org/@fluentui/react-focus/-/react-focus-8.8.12.tgz"; + sha512 = "2uuU/CQ371YnNxKqUVfnxahW93OT3y2Tp8calmBVxzmyBwZxGpI5JF+PdNorNWhDSaruX+j31QwxoXUNz1vI9Q=="; }; }; - "@fluentui/react-hooks-8.6.14" = { + "@fluentui/react-hooks-8.6.15" = { name = "_at_fluentui_slash_react-hooks"; packageName = "@fluentui/react-hooks"; - version = "8.6.14"; + version = "8.6.15"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.6.14.tgz"; - sha512 = "mM2bW7xIRGGx7thBXKDR64SaZB1tYwICdM9qpM/Jfiu0H+VPQhhhtMPJ+ImmG+DM8MxX9n5Su8ePo2QWtz9mYA=="; + url = "https://registry.npmjs.org/@fluentui/react-hooks/-/react-hooks-8.6.15.tgz"; + sha512 = "oh1OdXAUwPyhMRum8TU2/C8V4hb69qGFTh/XYzyfiAwa0UzODszq/LoaDyVThEJEi5OBPdeuXturAvgqCT8kNw=="; }; }; "@fluentui/react-portal-compat-context-9.0.4" = { @@ -5287,58 +5080,58 @@ let sha512 = "qw2lmkxZ2TmgC0pB2dvFyrzVffxBdpCx1BdWRaF+MRGUlTxRtqfybSx3Edsqa6NMewc3J0ThLMFdVFBQ5Yafqw=="; }; }; - "@fluentui/react-window-provider-2.2.4" = { + "@fluentui/react-window-provider-2.2.5" = { name = "_at_fluentui_slash_react-window-provider"; packageName = "@fluentui/react-window-provider"; - version = "2.2.4"; + version = "2.2.5"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/react-window-provider/-/react-window-provider-2.2.4.tgz"; - sha512 = "tCiIGQSILSipcn8DwwRgYq5IMtwBKiSQ+/cVRNq54cJZoq5ie/kMGFpldZ+vREDbM8wjmO3eNgNi63A3QRx39g=="; + url = "https://registry.npmjs.org/@fluentui/react-window-provider/-/react-window-provider-2.2.5.tgz"; + sha512 = "uct8xpHLFoECeoM8xRsw98yrxLV1MY2rA/Ml0M65JSWREdDUk+btgu7HLZp4QV/GpfPvP1WiNFLSLhrZFSnIAg=="; }; }; - "@fluentui/set-version-8.2.3" = { + "@fluentui/set-version-8.2.4" = { name = "_at_fluentui_slash_set-version"; packageName = "@fluentui/set-version"; - version = "8.2.3"; + version = "8.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/set-version/-/set-version-8.2.3.tgz"; - sha512 = "/+5vrI1Bq/ZsNDEK9++RClnDOeCILS8RXxZb7OAqmOc8GnPScxKcIN8e/1bosUxTjb2EB1KbVk6XeUpk0WvQIg=="; + url = "https://registry.npmjs.org/@fluentui/set-version/-/set-version-8.2.4.tgz"; + sha512 = "v12VUrpThYcJESFrnu3LdL7/s957hoSCJ3t8C014Hp2IOmk3dnZRZJymf1k/RAOXztS4w9dF2Zhs8uP31qwcZw=="; }; }; - "@fluentui/style-utilities-8.8.4" = { + "@fluentui/style-utilities-8.8.5" = { name = "_at_fluentui_slash_style-utilities"; packageName = "@fluentui/style-utilities"; - version = "8.8.4"; + version = "8.8.5"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.8.4.tgz"; - sha512 = "Zu7ddNd9p3rQbeHijCWfMzjCt6aWqpr02HNj8qRa8egGuzb5zmVoOXHiuYcJIbHpMvK+TNCbRK1HjUKkHHCusw=="; + url = "https://registry.npmjs.org/@fluentui/style-utilities/-/style-utilities-8.8.5.tgz"; + sha512 = "qUi+1a2v0nWo3LB4c13Qf81qQH1yO9YHAgfbRNLqs4w7Oie7NDBDkq7UgRmLErpSVEafvlcCZeCSKW5pvSxz5w=="; }; }; - "@fluentui/theme-2.6.20" = { + "@fluentui/theme-2.6.21" = { name = "_at_fluentui_slash_theme"; packageName = "@fluentui/theme"; - version = "2.6.20"; + version = "2.6.21"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/theme/-/theme-2.6.20.tgz"; - sha512 = "nJbKBx676hqV7e0RWDSavleIZ0ixrIP2/lOcD651PItLogpe1IexlH6LbMIhNI56BfKmDttE+MYEzELK7ORr/w=="; + url = "https://registry.npmjs.org/@fluentui/theme/-/theme-2.6.21.tgz"; + sha512 = "jqPOo375pt1bQ4WuzP2GP5gfgeBK/PDHUf4+DxDTZ9y0TXp8KxV4jCp5Rq2rnVYlXi51JQ2Y+snFtMDcMTyfRQ=="; }; }; - "@fluentui/utilities-8.13.4" = { + "@fluentui/utilities-8.13.5" = { name = "_at_fluentui_slash_utilities"; packageName = "@fluentui/utilities"; - version = "8.13.4"; + version = "8.13.5"; src = fetchurl { - url = "https://registry.npmjs.org/@fluentui/utilities/-/utilities-8.13.4.tgz"; - sha512 = "oJ6q8BvVdr0eEG5RgI/VBtKX2JvJV2h0AUkR7FwZoT8fvUUH/iykPZO/5CAVcQDyiXj73hmBibiEGkWNFFuPfw=="; + url = "https://registry.npmjs.org/@fluentui/utilities/-/utilities-8.13.5.tgz"; + sha512 = "YusKxwTEQmsJidEWxn8blf5ehBmBDMZDrOjQkSX4piCvi/57MfigQZ57L3Bdic8kDKsabVtS1IVMHLZzGy4zcQ=="; }; }; - "@forge/api-2.9.0" = { + "@forge/api-2.9.1" = { name = "_at_forge_slash_api"; packageName = "@forge/api"; - version = "2.9.0"; + version = "2.9.1"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/api/-/api-2.9.0.tgz"; - sha512 = "nwu3VJ84NdtyxwIind5d+hmIodwRi4xPG0n+gCEpLVjg7yN9qCQoS6B7/6TImSq8vHPPg+pKZLRraU3AjHc3Pw=="; + url = "https://registry.npmjs.org/@forge/api/-/api-2.9.1.tgz"; + sha512 = "ZGW5WW9NmWkYaGXLqbZ7HwAvYO0sSCY7j8IX0ij7vMuQb7myFXk5jCFYxaA3a4uI2RnYf2v0ROZxfPx4kxd5Aw=="; }; }; "@forge/auth-0.0.1" = { @@ -5359,22 +5152,22 @@ let sha512 = "+GFtFqBhFzwKaKmeEfw1jWQgZJNX4q11CCx1fSPFJB49Fdjb7k3lx74jAyzHlX0UWnm6DMK+/cYT7j5t6G9LfA=="; }; }; - "@forge/bundler-4.1.0" = { + "@forge/bundler-4.2.0" = { name = "_at_forge_slash_bundler"; packageName = "@forge/bundler"; - version = "4.1.0"; + version = "4.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/bundler/-/bundler-4.1.0.tgz"; - sha512 = "yQow+EDuu9GXQMLaIOMGFtlFQOFjclBdjc99FGd2on45zzWIcp5qQAveI+JSXMf+qgfr+pqdNZiKkgn8FHcvMQ=="; + url = "https://registry.npmjs.org/@forge/bundler/-/bundler-4.2.0.tgz"; + sha512 = "4xL9ZjPVgIrrpVeg1S3187FhDbCB4EBa/9nhCBAG8abDujb+D8/zJuiapin5AmUkWl6bFS1PjTBmetanBD4gcA=="; }; }; - "@forge/cli-shared-3.4.0" = { + "@forge/cli-shared-3.5.0" = { name = "_at_forge_slash_cli-shared"; packageName = "@forge/cli-shared"; - version = "3.4.0"; + version = "3.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/cli-shared/-/cli-shared-3.4.0.tgz"; - sha512 = "lq17fBZmv+C1oyU/7ichIFAtBgrm6P0cR+C0LC6W+PEpROycTXhl0GyKG4fwe+Cib/DQRvAOIYfnMrESEBkxRA=="; + url = "https://registry.npmjs.org/@forge/cli-shared/-/cli-shared-3.5.0.tgz"; + sha512 = "n7CSsL55BCAm3s4g/duDpk/khlARggcjGoTT3KhVYe0duZ0okN47XtRo2D7mSnfM/a3jHac5zCiv+BOEFyYSag=="; }; }; "@forge/egress-1.1.1" = { @@ -5386,22 +5179,22 @@ let sha512 = "ycnIIOKyurzchlocjjvTwqtQNsCF98XRT+YvwVwZWwKZ0OmSzPcXPZImrIFw3dF1qySwRwRL31R0xZ1HYUEs8w=="; }; }; - "@forge/lint-3.2.11" = { + "@forge/lint-3.2.12" = { name = "_at_forge_slash_lint"; packageName = "@forge/lint"; - version = "3.2.11"; + version = "3.2.12"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/lint/-/lint-3.2.11.tgz"; - sha512 = "behuGIhZhMmnavg2ujP8teSEXoUxKltMtuRSh2DJTntIxERKe5uevo3cAhb4N1+cENVO0xdAJ1wWTQJJsuCPQw=="; + url = "https://registry.npmjs.org/@forge/lint/-/lint-3.2.12.tgz"; + sha512 = "Z1dRnj3zRf+Rf9BMA2ompNYQdAAXYwOVw2NHBrYK0zwQjfnKC7Aco1tAyvYjkSbnyXnDSLlWAsFocgzJ7pX5Cw=="; }; }; - "@forge/manifest-4.5.2" = { + "@forge/manifest-4.5.3" = { name = "_at_forge_slash_manifest"; packageName = "@forge/manifest"; - version = "4.5.2"; + version = "4.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/manifest/-/manifest-4.5.2.tgz"; - sha512 = "1t5f/hT6XF8QoUPGYsOLQgzY/5yCpAvnZgnLZBpr4Ts2aF9vH6XyAHLJfoKhDwfuy7w3PPQRpvZ3wUtnGjA8tA=="; + url = "https://registry.npmjs.org/@forge/manifest/-/manifest-4.5.3.tgz"; + sha512 = "px02/hJJk31JiEdMhm4kUgZwNlr6b7wAyL72cxnul2PjQ9bsMUXoP22/nSCV1uIzNznqGbXNnKJ+GKGqIhyQ1g=="; }; }; "@forge/storage-1.3.1" = { @@ -5458,6 +5251,15 @@ let sha512 = "d/cseQQUvj1V02jXo6HBpuMarf6e6GdrxEaiWrjAiS2nDEQFRGxDGtPHzqgU84aN11nEBFnFa0vaSMqcZG/+9w=="; }; }; + "@glideapps/ts-necessities-2.1.2" = { + name = "_at_glideapps_slash_ts-necessities"; + packageName = "@glideapps/ts-necessities"; + version = "2.1.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@glideapps/ts-necessities/-/ts-necessities-2.1.2.tgz"; + sha512 = "tLjfhinr6doUBcWi7BWnkT2zT6G5UhiZftsiIH6xVvykeXE+FU7Wr0MyqwmqideWlDD5rG+VjVLptLviGo04CA=="; + }; + }; "@google-cloud/paginator-4.0.1" = { name = "_at_google-cloud_slash_paginator"; packageName = "@google-cloud/paginator"; @@ -5512,13 +5314,13 @@ let sha512 = "/LDNozZ+6qTS0yqMXo/ki6yJqTVx2s6ncOM/m/t4PjqeXrN8ejTwoiNDoDVZq18bsHjZBPP4o03M2goFYWJCHA=="; }; }; - "@grammyjs/types-2.10.3" = { + "@grammyjs/types-2.11.2" = { name = "_at_grammyjs_slash_types"; packageName = "@grammyjs/types"; - version = "2.10.3"; + version = "2.11.2"; src = fetchurl { - url = "https://registry.npmjs.org/@grammyjs/types/-/types-2.10.3.tgz"; - sha512 = "8TG9uiJlPcwFb5fxJ2LdQw0eWKDmHoVYY0vS63vwHb7wJIOmZHPpPfEWKRNtEcc7/e7HHZ5qoxixZ24dPjU3Fg=="; + url = "https://registry.npmjs.org/@grammyjs/types/-/types-2.11.2.tgz"; + sha512 = "qglunvUIL8mz/TS0vqdcg2uABwM34UkSkUQcZVWjxWH34c9ptsMvY3zO0n9P0eLBaRLV4BwnD8MBx35BN2FFNw=="; }; }; "@graphql-cli/common-4.1.0" = { @@ -5548,13 +5350,13 @@ let sha512 = "IuR2SB2MnC2ztA/XeTMTfWcA0Wy7ZH5u+nDkDNLAdX+AaSyDnsQS35sCmHqG0VOGTl7rzoyBWLCKGwSJplgtwg=="; }; }; - "@graphql-tools/batch-execute-8.5.14" = { + "@graphql-tools/batch-execute-8.5.15" = { name = "_at_graphql-tools_slash_batch-execute"; packageName = "@graphql-tools/batch-execute"; - version = "8.5.14"; + version = "8.5.15"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.5.14.tgz"; - sha512 = "m6yXqqmFAH2V5JuSIC/geiGLBQA1Y6RddOJfUtkc9Z7ttkULRCd1W39TpYS6IlrCwYyTj+klO1/kdWiny38f5g=="; + url = "https://registry.npmjs.org/@graphql-tools/batch-execute/-/batch-execute-8.5.15.tgz"; + sha512 = "qb12M8XCK6SBJmZDS8Lzd4PVJFsIwNUkYmFuqcTiBqOI/WsoDlQDZI++ghRpGcusLkL9uzcIOTT/61OeHhsaLg=="; }; }; "@graphql-tools/delegate-7.1.5" = { @@ -5566,49 +5368,49 @@ let sha512 = "bQu+hDd37e+FZ0CQGEEczmRSfQRnnXeUxI/0miDV+NV/zCbEdIJj5tYFNrKT03W6wgdqx8U06d8L23LxvGri/g=="; }; }; - "@graphql-tools/delegate-9.0.21" = { + "@graphql-tools/delegate-9.0.22" = { name = "_at_graphql-tools_slash_delegate"; packageName = "@graphql-tools/delegate"; - version = "9.0.21"; + version = "9.0.22"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-9.0.21.tgz"; - sha512 = "SM8tFeq6ogFGhIxDE82WTS44/3IQ/wz9QksAKT7xWkcICQnyR9U6Qyt+W7VGnHiybqNsVK3kHNNS/i4KGSF85g=="; + url = "https://registry.npmjs.org/@graphql-tools/delegate/-/delegate-9.0.22.tgz"; + sha512 = "dWJGMN8V7KORtbI8eDAjHYTWiMyis/md27M6pPhrlYVlcsDk3U0jbNdgkswBBUEBvqumPRCv8pVOxKcLS4caKA=="; }; }; - "@graphql-tools/executor-0.0.11" = { + "@graphql-tools/executor-0.0.12" = { name = "_at_graphql-tools_slash_executor"; packageName = "@graphql-tools/executor"; - version = "0.0.11"; + version = "0.0.12"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/executor/-/executor-0.0.11.tgz"; - sha512 = "GjtXW0ZMGZGKad6A1HXFPArkfxE0AIpznusZuQdy4laQx+8Ut3Zx8SAFJNnDfZJ2V5kU29B5Xv3Fr0/DiMBHOQ=="; + url = "https://registry.npmjs.org/@graphql-tools/executor/-/executor-0.0.12.tgz"; + sha512 = "bWpZcYRo81jDoTVONTnxS9dDHhEkNVjxzvFCH4CRpuyzD3uL+5w3MhtxIh24QyWm4LvQ4f+Bz3eMV2xU2I5+FA=="; }; }; - "@graphql-tools/executor-graphql-ws-0.0.5" = { + "@graphql-tools/executor-graphql-ws-0.0.6" = { name = "_at_graphql-tools_slash_executor-graphql-ws"; packageName = "@graphql-tools/executor-graphql-ws"; - version = "0.0.5"; + version = "0.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-0.0.5.tgz"; - sha512 = "1bJfZdSBPCJWz1pJ5g/YHMtGt6YkNRDdmqNQZ8v+VlQTNVfuBpY2vzj15uvf5uDrZLg2MSQThrKlL8av4yFpsA=="; + url = "https://registry.npmjs.org/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-0.0.6.tgz"; + sha512 = "n6JvIviYO8iiasV/baclimQqNkYGP7JRlkNSnphNG5LULmVpQ2WsyvbgJHV7wtlTZ8ZQ3+dILgQF83PFyLsfdA=="; }; }; - "@graphql-tools/executor-http-0.0.7" = { + "@graphql-tools/executor-http-0.1.1" = { name = "_at_graphql-tools_slash_executor-http"; packageName = "@graphql-tools/executor-http"; - version = "0.0.7"; + version = "0.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/executor-http/-/executor-http-0.0.7.tgz"; - sha512 = "g0NV4HVZVABsylk6SIA/gfjQbMIsy3NjZYW0k0JZmTcp9698J37uG50GZC2mKe0F8pIlDvPLvrPloqdKGX3ZAA=="; + url = "https://registry.npmjs.org/@graphql-tools/executor-http/-/executor-http-0.1.1.tgz"; + sha512 = "bFE6StI7CJEIYGRkAnTYxutSV4OtC1c4MQU3nStOYZZO7KmzIgEQZ4ygPSPrRb+jtRsMCBEqPqlYOD4Rq02aMw=="; }; }; - "@graphql-tools/executor-legacy-ws-0.0.5" = { + "@graphql-tools/executor-legacy-ws-0.0.6" = { name = "_at_graphql-tools_slash_executor-legacy-ws"; packageName = "@graphql-tools/executor-legacy-ws"; - version = "0.0.5"; + version = "0.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-0.0.5.tgz"; - sha512 = "j2ZQVTI4rKIT41STzLPK206naYDhHxmGHot0siJKBKX1vMqvxtWBqvL66v7xYEOaX79wJrFc8l6oeURQP2LE6g=="; + url = "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-0.0.6.tgz"; + sha512 = "L1hRuSvBUCNerYDhfeSZXFeqliDlnNXa3fDHTp7efI3Newpbevqa19Fm0mVzsCL7gqIKOwzrPORwh7kOVE/vew=="; }; }; "@graphql-tools/graphql-file-loader-6.2.7" = { @@ -5620,22 +5422,22 @@ let sha512 = "5k2SNz0W87tDcymhEMZMkd6/vs6QawDyjQXWtqkuLTBF3vxjxPD1I4dwHoxgWPIjjANhXybvulD7E+St/7s9TQ=="; }; }; - "@graphql-tools/graphql-file-loader-7.5.13" = { + "@graphql-tools/graphql-file-loader-7.5.14" = { name = "_at_graphql-tools_slash_graphql-file-loader"; packageName = "@graphql-tools/graphql-file-loader"; - version = "7.5.13"; + version = "7.5.14"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.5.13.tgz"; - sha512 = "VWFVnw3aB6sykGfpb/Dn3sxQswqvp2FsVwDy8ubH1pgLuxlDuurhHjRHvMG2+p7IaHC7q8T3Vk/rLtZftrwOBQ=="; + url = "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-7.5.14.tgz"; + sha512 = "JGer4g57kq4wtsvqv8uZsT4ZG1lLsz1x5yHDfSj2OxyiWw2f1jFkzgby7Ut3H2sseJiQzeeDYZcbm06qgR32pg=="; }; }; - "@graphql-tools/import-6.7.14" = { + "@graphql-tools/import-6.7.15" = { name = "_at_graphql-tools_slash_import"; packageName = "@graphql-tools/import"; - version = "6.7.14"; + version = "6.7.15"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.7.14.tgz"; - sha512 = "lRX/MHM0Km497kg4VXMvtV1DeG/AfPJFO2ovaL0kDujWEdyCsWxsB4whY7nPeiNaPA/nT3mQ8MU7yFzVjogF/Q=="; + url = "https://registry.npmjs.org/@graphql-tools/import/-/import-6.7.15.tgz"; + sha512 = "WNhvauAt2I2iUg+JdQK5oQebKLXqUZWe8naP13K1jOkbTQT7hK3P/4I9AaVmzt0KXRJW5Uow3RgdHZ7eUBKVsA=="; }; }; "@graphql-tools/json-file-loader-6.2.6" = { @@ -5647,13 +5449,13 @@ let sha512 = "CnfwBSY5926zyb6fkDBHnlTblHnHI4hoBALFYXnrg0Ev4yWU8B04DZl/pBRUc459VNgO2x8/mxGIZj2hPJG1EA=="; }; }; - "@graphql-tools/json-file-loader-7.4.14" = { + "@graphql-tools/json-file-loader-7.4.15" = { name = "_at_graphql-tools_slash_json-file-loader"; packageName = "@graphql-tools/json-file-loader"; - version = "7.4.14"; + version = "7.4.15"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.4.14.tgz"; - sha512 = "AD9v3rN08wvVqgbrUSiHa8Ztrlk3EgwctcxuNE5qm47zPNL4gLaJ7Tw/KlGOR7Cm+pjlQylJHMUKNfaRLPZ0og=="; + url = "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-7.4.15.tgz"; + sha512 = "pH+hbsDetcEpj+Tmi7ZRUkxzJez2DLdSQuvK5Qi38FX/Nz/5nZKRfW9nqIptGYbuS9+2JPrt9WWNn1aGtegIFQ=="; }; }; "@graphql-tools/load-6.2.4" = { @@ -5665,13 +5467,13 @@ let sha512 = "FlQC50VELwRxoWUbJMMMs5gG0Dl8BaQYMrXUHTsxwqR7UmksUYnysC21rdousvs6jVZ7pf4unZfZFtBjz+8Edg=="; }; }; - "@graphql-tools/load-7.8.8" = { + "@graphql-tools/load-7.8.9" = { name = "_at_graphql-tools_slash_load"; packageName = "@graphql-tools/load"; - version = "7.8.8"; + version = "7.8.9"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.8.tgz"; - sha512 = "gMuQdO2jXmI0BNUc1MafxRQTWVMUtuH500pZAQtOdDdNJppV7lJdY6mMhITQ2qnhYDuMrcZPHhIkcftyQfkgUg=="; + url = "https://registry.npmjs.org/@graphql-tools/load/-/load-7.8.9.tgz"; + sha512 = "/eHRv6OCTI/Ir5XcbtSx0XbW3zOQVscp2MZQFGZKDzqCcGD+NVy4mLCoBwR/OsOUpvWAwMnc+Llb4SDKAYGmjQ=="; }; }; "@graphql-tools/merge-6.2.17" = { @@ -5692,22 +5494,22 @@ let sha512 = "BMm99mqdNZbEYeTPK3it9r9S6rsZsQKtlqJsSBknAclXq2pGEfOxjcIZi+kBSkHZKPKCRrYDd5vY0+rUmIHVLg=="; }; }; - "@graphql-tools/merge-8.3.14" = { + "@graphql-tools/merge-8.3.15" = { name = "_at_graphql-tools_slash_merge"; packageName = "@graphql-tools/merge"; - version = "8.3.14"; + version = "8.3.15"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.14.tgz"; - sha512 = "zV0MU1DnxJLIB0wpL4N3u21agEiYFsjm6DI130jqHpwF0pR9HkF+Ni65BNfts4zQelP0GjkHltG+opaozAJ1NA=="; + url = "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.3.15.tgz"; + sha512 = "hYYOlsqkUlL6oOo7zzuk6hIv7xQzy+x21sgK84d5FWaiWYkLYh9As8myuDd9SD5xovWWQ9m/iRhIOVDEMSyEKA=="; }; }; - "@graphql-tools/mock-8.7.14" = { + "@graphql-tools/mock-8.7.15" = { name = "_at_graphql-tools_slash_mock"; packageName = "@graphql-tools/mock"; - version = "8.7.14"; + version = "8.7.15"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.7.14.tgz"; - sha512 = "kIYirhGqhhSI6p/5qj95U8Lngm4mml5B3Z/r7ShI4+/EACyOOV+wUlql45+Y21b9NRUxJbsNHpztGxzgCSyviQ=="; + url = "https://registry.npmjs.org/@graphql-tools/mock/-/mock-8.7.15.tgz"; + sha512 = "0zImG5tuObhowqtijlB6TMAIVtCIBsnGGwNW8gnCOa+xZAqfGdUMsSma17tHC2XuI7xhv7A0O8pika9e3APLUg=="; }; }; "@graphql-tools/schema-7.1.5" = { @@ -5728,13 +5530,13 @@ let sha512 = "0Esilsh0P/qYcB5DKQpiKeQs/jevzIadNTaT0jeWklPMwNbT7yMX4EqZany7mbeRRlSRwMzNzL5olyFdffHBZg=="; }; }; - "@graphql-tools/schema-9.0.12" = { + "@graphql-tools/schema-9.0.13" = { name = "_at_graphql-tools_slash_schema"; packageName = "@graphql-tools/schema"; - version = "9.0.12"; + version = "9.0.13"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.12.tgz"; - sha512 = "DmezcEltQai0V1y96nwm0Kg11FDS/INEFekD4nnVgzBqawvznWqK6D6bujn+cw6kivoIr3Uq//QmU/hBlBzUlQ=="; + url = "https://registry.npmjs.org/@graphql-tools/schema/-/schema-9.0.13.tgz"; + sha512 = "guRA3fwAtv+M1Kh930P4ydH9aKJTWscIkhVFcWpj/cnjYYxj88jkEJ15ZNiJX/2breNY+sbVgmlgLKb6aXi/Jg=="; }; }; "@graphql-tools/url-loader-6.10.1" = { @@ -5746,13 +5548,13 @@ let sha512 = "DSDrbhQIv7fheQ60pfDpGD256ixUQIR6Hhf9Z5bRjVkXOCvO5XrkwoWLiU7iHL81GB1r0Ba31bf+sl+D4nyyfw=="; }; }; - "@graphql-tools/url-loader-7.16.28" = { + "@graphql-tools/url-loader-7.17.2" = { name = "_at_graphql-tools_slash_url-loader"; packageName = "@graphql-tools/url-loader"; - version = "7.16.28"; + version = "7.17.2"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.16.28.tgz"; - sha512 = "C3Qmpr5g3aNf7yKbfqSEmNEoPNkY4kpm+K1FyuGQw8N6ZKdq/70VPL8beSfqE1e2CTJua95pLQCpSD9ZsWfUEg=="; + url = "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-7.17.2.tgz"; + sha512 = "VgCXa5vQzcM13+loJvVHLXltp3qN8PHUTeth50cImUhCm3qtRwOeuSYjpph38vllPb8DKxsZkNFxzYgzscWIow=="; }; }; "@graphql-tools/utils-6.2.4" = { @@ -5800,13 +5602,13 @@ let sha512 = "pjJIWH0XOVnYGXCqej8g/u/tsfV4LvLlj0eATKQu5zwnxd/TiTHq7Cg313qUPTFFHZ3PP5wJ15chYVtLDwaymg=="; }; }; - "@graphql-tools/utils-9.1.3" = { + "@graphql-tools/utils-9.1.4" = { name = "_at_graphql-tools_slash_utils"; packageName = "@graphql-tools/utils"; - version = "9.1.3"; + version = "9.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.1.3.tgz"; - sha512 = "bbJyKhs6awp1/OmP+WKA1GOyu9UbgZGkhIj5srmiMGLHohEOKMjW784Sk0BZil1w2x95UPu0WHw6/d/HVCACCg=="; + url = "https://registry.npmjs.org/@graphql-tools/utils/-/utils-9.1.4.tgz"; + sha512 = "hgIeLt95h9nQgQuzbbdhuZmh+8WV7RZ/6GbTj6t3IU4Zd2zs9yYJ2jgW/krO587GMOY8zCwrjNOMzD40u3l7Vg=="; }; }; "@graphql-tools/wrap-7.0.8" = { @@ -5818,13 +5620,13 @@ let sha512 = "1NDUymworsOlb53Qfh7fonDi2STvqCtbeE68ntKY9K/Ju/be2ZNxrFSbrBHwnxWcN9PjISNnLcAyJ1L5tCUyhg=="; }; }; - "@graphql-tools/wrap-9.2.23" = { + "@graphql-tools/wrap-9.3.1" = { name = "_at_graphql-tools_slash_wrap"; packageName = "@graphql-tools/wrap"; - version = "9.2.23"; + version = "9.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-9.2.23.tgz"; - sha512 = "R+ar8lHdSnRQtfvkwQMOkBRlYLcBPdmFzZPiAj+tL9Nii4VNr4Oub37jcHiPBvRZSdKa9FHcKq5kKSQcbg1xuQ=="; + url = "https://registry.npmjs.org/@graphql-tools/wrap/-/wrap-9.3.1.tgz"; + sha512 = "uzY1HKc7qMErWL3ybv8bFG3hI1rTJPVYQ8WeJkCF/r/+aHEkUj0Bo2PYZrZTX1UIr3Tb4P5GyhqYBgZOXraZjw=="; }; }; "@graphql-typed-document-node/core-3.1.1" = { @@ -5836,33 +5638,6 @@ let sha512 = "NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg=="; }; }; - "@grpc/grpc-js-1.6.11" = { - name = "_at_grpc_slash_grpc-js"; - packageName = "@grpc/grpc-js"; - version = "1.6.11"; - src = fetchurl { - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.6.11.tgz"; - sha512 = "e/adiPjUxf5cKYiAlV4m+0jJS4k6g2w78X7WTZB3ISOBzcCwm+cwjB2dSRfBHbu46inGGzQMmWAmsgYLg8yT5g=="; - }; - }; - "@grpc/grpc-js-1.6.12" = { - name = "_at_grpc_slash_grpc-js"; - packageName = "@grpc/grpc-js"; - version = "1.6.12"; - src = fetchurl { - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.6.12.tgz"; - sha512 = "JmvQ03OTSpVd9JTlj/K3IWHSz4Gk/JMLUTtW7Zb0KvO1LcOYGATh5cNuRYzCAeDR3O8wq+q8FZe97eO9MBrkUw=="; - }; - }; - "@grpc/grpc-js-1.7.0" = { - name = "_at_grpc_slash_grpc-js"; - packageName = "@grpc/grpc-js"; - version = "1.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.7.0.tgz"; - sha512 = "wvKxal+40Xx11DXO2q5PfY3UiE25iwTb8SOz6A9IJII/V7d19x2ex0he+GJfVW0JZCaBjCPSjUB0yU9Ecm4WCw=="; - }; - }; "@grpc/grpc-js-1.7.3" = { name = "_at_grpc_slash_grpc-js"; packageName = "@grpc/grpc-js"; @@ -5881,22 +5656,22 @@ let sha512 = "ySMTXQuMvvswoobvN+0LsaPf7ITO2JVfJmHxQKI4cGehNrrUms+n81BlHEX7Hl/LExji6XE3fnI9U04GSkRruA=="; }; }; - "@grpc/proto-loader-0.7.2" = { - name = "_at_grpc_slash_proto-loader"; - packageName = "@grpc/proto-loader"; - version = "0.7.2"; + "@grpc/grpc-js-1.8.1" = { + name = "_at_grpc_slash_grpc-js"; + packageName = "@grpc/grpc-js"; + version = "1.8.1"; src = fetchurl { - url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.2.tgz"; - sha512 = "jCdyLIT/tdQ1zhrbTQnJNK5nbDf0GoBpy5jVNywBzzMDF+Vs6uEaHnfz46dMtDxkvwrF2hzk5Z67goliceH0sA=="; + url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.8.1.tgz"; + sha512 = "mdqYADWl/9Kb75XLstt6pvBnS1DpxSDFRKrbadkY1ymUd29hq49nP6tLcL7a7qLydgqFCpjNwa2RsyrqB3MsXA=="; }; }; - "@grpc/proto-loader-0.7.3" = { - name = "_at_grpc_slash_proto-loader"; - packageName = "@grpc/proto-loader"; - version = "0.7.3"; + "@grpc/grpc-js-1.8.4" = { + name = "_at_grpc_slash_grpc-js"; + packageName = "@grpc/grpc-js"; + version = "1.8.4"; src = fetchurl { - url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.3.tgz"; - sha512 = "5dAvoZwna2Py3Ef96Ux9jIkp3iZ62TUsV00p3wVBPNX5K178UbNi8Q7gQVqwXT1Yq9RejIGG9G2IPEo93T6RcA=="; + url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.8.4.tgz"; + sha512 = "oaETBotls7FTBpySg5dhyUCyXSxSeCMmkBBXHXG1iw57MiNoB6D7VRhkrXYbwyHM3Q3Afjp4KlsBX0Zb+ELZXw=="; }; }; "@grpc/proto-loader-0.7.4" = { @@ -6475,13 +6250,13 @@ let sha512 = "3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ=="; }; }; - "@js-joda/core-5.4.2" = { + "@js-joda/core-5.5.2" = { name = "_at_js-joda_slash_core"; packageName = "@js-joda/core"; - version = "5.4.2"; + version = "5.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/@js-joda/core/-/core-5.4.2.tgz"; - sha512 = "QIDIZ9a0NfDStgD47VaTgwiPjlw1p4QPLwjOB/9+/DqIztoQopPNNAd+HdtQMHgE+ibP3dJacd8/TVL/A1RaaA=="; + url = "https://registry.npmjs.org/@js-joda/core/-/core-5.5.2.tgz"; + sha512 = "retLUN4TwCJ0QJDi9OCJwYVaXAz93NeOkEtEQL98M2bykBOxmURlP0YlfsuE46kItOOVZIWRYC3KsSLhQ1R2Qw=="; }; }; "@jsdevtools/ono-7.1.3" = { @@ -6493,13 +6268,13 @@ let sha512 = "4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg=="; }; }; - "@jsdoc/salty-0.2.2" = { + "@jsdoc/salty-0.2.3" = { name = "_at_jsdoc_slash_salty"; packageName = "@jsdoc/salty"; - version = "0.2.2"; + version = "0.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@jsdoc/salty/-/salty-0.2.2.tgz"; - sha512 = "A1FrVnc7L9qI2gUGsfN0trTiJNK72Y0CL/VAyrmYEmeKI3pnHDawP64CEev31XLyAAOx2xmDo3tbadPxC0CSbw=="; + url = "https://registry.npmjs.org/@jsdoc/salty/-/salty-0.2.3.tgz"; + sha512 = "bbtCxCkxcnWhi50I+4Lj6mdz9w3pOXOgEQrID8TCZ/DF51fW7M9GCQW2y45SpBDdHd1Eirm1X/Cf6CkAAe8HPg=="; }; }; "@jsep-plugin/regex-1.0.3" = { @@ -6520,22 +6295,22 @@ let sha512 = "qtLGzCNzPVJ3kdH6/zoLWDPjauHIKiLSBAR71Wa0+PWvGA8wODUQvRgxtpUA5YqAYL3CQ8S4qXhd/9WuWTZirg=="; }; }; - "@jsii/check-node-1.72.0" = { + "@jsii/check-node-1.73.0" = { name = "_at_jsii_slash_check-node"; packageName = "@jsii/check-node"; - version = "1.72.0"; + version = "1.73.0"; src = fetchurl { - url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.72.0.tgz"; - sha512 = "OmXpp+Ipt6vhZVdVvaNCrGFgQg/FPh3wATz9WeLooMYtNPiaAmIkq29hZS1WzM4CGxJKc7T1i2e8lYPU3vGp0w=="; + url = "https://registry.npmjs.org/@jsii/check-node/-/check-node-1.73.0.tgz"; + sha512 = "oneDKgjplUw2Ivk78iAb9lCsAasxkuQ6Ii15qzXsw16CPSRCqQlE78lUVV7pr+rxx/vQDWBAa8ycRbuVghC6TQ=="; }; }; - "@jsii/spec-1.72.0" = { + "@jsii/spec-1.73.0" = { name = "_at_jsii_slash_spec"; packageName = "@jsii/spec"; - version = "1.72.0"; + version = "1.73.0"; src = fetchurl { - url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.72.0.tgz"; - sha512 = "zlKTRU8Pu8gIFTMl7ctj+f0l5YPEjAitUfOnSSNv6rZUY20p/zPjkBBw75Nt/4wfkz4UVagWJKuangxfkpsMuw=="; + url = "https://registry.npmjs.org/@jsii/spec/-/spec-1.73.0.tgz"; + sha512 = "h0BeA6WQfxvYl5BaacmlvB5bAIdhlgf9SInJljxtERn2eYN+VjgMyU/1iv0Ww4Lp71xMGL96bmfXpdlFgRQFEg=="; }; }; "@koa/multer-3.0.2" = { @@ -6574,15 +6349,6 @@ let sha512 = "GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw=="; }; }; - "@lcdp/offline-plugin-5.1.1" = { - name = "_at_lcdp_slash_offline-plugin"; - packageName = "@lcdp/offline-plugin"; - version = "5.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@lcdp/offline-plugin/-/offline-plugin-5.1.1.tgz"; - sha512 = "TjLyneaRVHBNyzHHXeDfpejMqNYPZqs/hZqgEwPH5bgqDgh348dId/rOAHWkiGtujgv4ZejWZNM4derv0Mjdqw=="; - }; - }; "@ledgerhq/devices-5.51.1" = { name = "_at_ledgerhq_slash_devices"; packageName = "@ledgerhq/devices"; @@ -6592,13 +6358,13 @@ let sha512 = "4w+P0VkbjzEXC7kv8T1GJ/9AVaP9I6uasMZ/JcdwZBS3qwvKo5A5z9uGhP5c7TvItzcmPb44b5Mw2kT+WjUuAA=="; }; }; - "@ledgerhq/devices-7.0.6" = { + "@ledgerhq/devices-7.0.7" = { name = "_at_ledgerhq_slash_devices"; packageName = "@ledgerhq/devices"; - version = "7.0.6"; + version = "7.0.7"; src = fetchurl { - url = "https://registry.npmjs.org/@ledgerhq/devices/-/devices-7.0.6.tgz"; - sha512 = "trEqJqgXuXLgb228c6kJdur0idTVxtofy8NxumvsspZKh5x/pHJX8EoNxWX91Pg7H3AA+jxLEeRvAjNDVDJgGQ=="; + url = "https://registry.npmjs.org/@ledgerhq/devices/-/devices-7.0.7.tgz"; + sha512 = "PZ9TtaTGBYUm/g0qNKPbECZt7DDNvqM3ILS5wAtOMna2cBR+mrywUGXrkjuOWlHpuqZ8wenaAKveQBbzF2ba8w=="; }; }; "@ledgerhq/errors-5.50.0" = { @@ -6610,13 +6376,13 @@ let sha512 = "gu6aJ/BHuRlpU7kgVpy2vcYk6atjB4iauP2ymF7Gk0ez0Y/6VSMVSJvubeEQN+IV60+OBK0JgeIZG7OiHaw8ow=="; }; }; - "@ledgerhq/errors-6.12.2" = { + "@ledgerhq/errors-6.12.3" = { name = "_at_ledgerhq_slash_errors"; packageName = "@ledgerhq/errors"; - version = "6.12.2"; + version = "6.12.3"; src = fetchurl { - url = "https://registry.npmjs.org/@ledgerhq/errors/-/errors-6.12.2.tgz"; - sha512 = "qYTkxlWHVItxPAb9pQewfVoN8nFvvFYzWEyzVRX/NuO/g3JKL5kef5lLuqTtUIFOvFROMLi3EBxU+vbvV0ktow=="; + url = "https://registry.npmjs.org/@ledgerhq/errors/-/errors-6.12.3.tgz"; + sha512 = "djiMSgB/7hnK3aLR/c5ZMMivxjcI7o2+y3VKcsZZpydPoVf9+FXqeJPRfOwmJ0JxbQ//LinUfWpIfHew8LkaVw=="; }; }; "@ledgerhq/hw-transport-5.51.1" = { @@ -6628,31 +6394,31 @@ let sha512 = "6wDYdbWrw9VwHIcoDnqWBaDFyviyjZWv6H9vz9Vyhe4Qd7TIFmbTl/eWs6hZvtZBza9K8y7zD8ChHwRI4s9tSw=="; }; }; - "@ledgerhq/hw-transport-6.27.9" = { + "@ledgerhq/hw-transport-6.27.10" = { name = "_at_ledgerhq_slash_hw-transport"; packageName = "@ledgerhq/hw-transport"; - version = "6.27.9"; + version = "6.27.10"; src = fetchurl { - url = "https://registry.npmjs.org/@ledgerhq/hw-transport/-/hw-transport-6.27.9.tgz"; - sha512 = "Po0eFWyH3C6I5oxLW3t/jtjqFJdF6/zmF9WL3n5lvSVbtmilPGz2IFOwHoz/XWSwM4PLwV6JXgFBIC6h6UNn/Q=="; + url = "https://registry.npmjs.org/@ledgerhq/hw-transport/-/hw-transport-6.27.10.tgz"; + sha512 = "3cmwQZsiRKe6VcHA1kAtC8+Wt0xjCa9Y0TO/Ns2k4BmEhIlG143I4H1dJntkX6XhDpE1pK9Xn2niBQsTTeGhqA=="; }; }; - "@ledgerhq/hw-transport-node-hid-6.27.9" = { + "@ledgerhq/hw-transport-node-hid-6.27.10" = { name = "_at_ledgerhq_slash_hw-transport-node-hid"; packageName = "@ledgerhq/hw-transport-node-hid"; - version = "6.27.9"; + version = "6.27.10"; src = fetchurl { - url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid/-/hw-transport-node-hid-6.27.9.tgz"; - sha512 = "XdRbMvUr7+3rja6GWOL+kdXnnFU7Qj+wjX1OJCOZ33oU3pzztCsTtaDD+JOHBHXBLIwXtqImWgi9++7ryEOXfw=="; + url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid/-/hw-transport-node-hid-6.27.10.tgz"; + sha512 = "+08Js51ED1OvnqS+qMnC0bxTYVQ1X3GBvKXRbh3w2IOAdp7ji8srD2VnSe1fz2iXJ19OR7KZL5quRpcv+TOWQw=="; }; }; - "@ledgerhq/hw-transport-node-hid-noevents-6.27.9" = { + "@ledgerhq/hw-transport-node-hid-noevents-6.27.10" = { name = "_at_ledgerhq_slash_hw-transport-node-hid-noevents"; packageName = "@ledgerhq/hw-transport-node-hid-noevents"; - version = "6.27.9"; + version = "6.27.10"; src = fetchurl { - url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid-noevents/-/hw-transport-node-hid-noevents-6.27.9.tgz"; - sha512 = "ZxJS2WIUKVh9HWxny9o+r44wNr3TvQHkJkHDbDEAfNwzY6ERLjB0r69YM/pNG+gNd5+SPU5D6Ri5izQRjDD4SQ=="; + url = "https://registry.npmjs.org/@ledgerhq/hw-transport-node-hid-noevents/-/hw-transport-node-hid-noevents-6.27.10.tgz"; + sha512 = "IyZO88VJubSnfDePSiOG83Ly1n7xfvvErtf7ESQxFhwCrkObkUczQDarYo8XJLCJBDuRr2UgiOfb/yAZrlf+vA=="; }; }; "@ledgerhq/hw-transport-u2f-5.36.0-deprecated" = { @@ -6709,544 +6475,544 @@ let sha512 = "Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A=="; }; }; - "@lerna/add-6.1.0" = { + "@lerna/add-6.4.1" = { name = "_at_lerna_slash_add"; packageName = "@lerna/add"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/add/-/add-6.1.0.tgz"; - sha512 = "f2cAeS1mE/p7QvSRn5TCgdUXw6QVbu8PeRxaTOxTThhTdJIWdXZfY00QjAsU6jw1PdYXK1qGUSwWOPkdR16mBg=="; + url = "https://registry.npmjs.org/@lerna/add/-/add-6.4.1.tgz"; + sha512 = "YSRnMcsdYnQtQQK0NSyrS9YGXvB3jzvx183o+JTH892MKzSlBqwpBHekCknSibyxga1HeZ0SNKQXgsHAwWkrRw=="; }; }; - "@lerna/bootstrap-6.1.0" = { + "@lerna/bootstrap-6.4.1" = { name = "_at_lerna_slash_bootstrap"; packageName = "@lerna/bootstrap"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-6.1.0.tgz"; - sha512 = "aDxKqgxexVj/Z0B1aPu7P1iPbPqhk1FPkl/iayCmPlkAh90pYEH0uVytGzi1hFB5iXEfG7Pa6azGQywUodx/1g=="; + url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-6.4.1.tgz"; + sha512 = "64cm0mnxzxhUUjH3T19ZSjPdn28vczRhhTXhNAvOhhU0sQgHrroam1xQC1395qbkV3iosSertlu8e7xbXW033w=="; }; }; - "@lerna/changed-6.1.0" = { + "@lerna/changed-6.4.1" = { name = "_at_lerna_slash_changed"; packageName = "@lerna/changed"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/changed/-/changed-6.1.0.tgz"; - sha512 = "p7C2tf1scmvoUC1Osck/XIKVKXAQ8m8neL8/rfgKSYsvUVjsOB1LbF5HH1VUZntE6S4OxkRxUQGkAHVf5xrGqw=="; + url = "https://registry.npmjs.org/@lerna/changed/-/changed-6.4.1.tgz"; + sha512 = "Z/z0sTm3l/iZW0eTSsnQpcY5d6eOpNO0g4wMOK+hIboWG0QOTc8b28XCnfCUO+33UisKl8PffultgoaHMKkGgw=="; }; }; - "@lerna/check-working-tree-6.1.0" = { + "@lerna/check-working-tree-6.4.1" = { name = "_at_lerna_slash_check-working-tree"; packageName = "@lerna/check-working-tree"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/check-working-tree/-/check-working-tree-6.1.0.tgz"; - sha512 = "hSciDmRqsNPevMhAD+SYbnhjatdb7UUu9W8vTyGtUXkrq2xtRZU0vAOgqovV8meirRkbC41pZePYKqyQtF0y3w=="; + url = "https://registry.npmjs.org/@lerna/check-working-tree/-/check-working-tree-6.4.1.tgz"; + sha512 = "EnlkA1wxaRLqhJdn9HX7h+JYxqiTK9aWEFOPqAE8lqjxHn3RpM9qBp1bAdL7CeUk3kN1lvxKwDEm0mfcIyMbPA=="; }; }; - "@lerna/child-process-6.1.0" = { + "@lerna/child-process-6.4.1" = { name = "_at_lerna_slash_child-process"; packageName = "@lerna/child-process"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/child-process/-/child-process-6.1.0.tgz"; - sha512 = "jhr3sCFeps6Y15SCrWEPvqE64i+QLOTSh+OzxlziCBf7ZEUu7sF0yA4n5bAqw8j43yCKhhjkf/ZLYxZe+pnl3Q=="; + url = "https://registry.npmjs.org/@lerna/child-process/-/child-process-6.4.1.tgz"; + sha512 = "dvEKK0yKmxOv8pccf3I5D/k+OGiLxQp5KYjsrDtkes2pjpCFfQAMbmpol/Tqx6w/2o2rSaRrLsnX8TENo66FsA=="; }; }; - "@lerna/clean-6.1.0" = { + "@lerna/clean-6.4.1" = { name = "_at_lerna_slash_clean"; packageName = "@lerna/clean"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/clean/-/clean-6.1.0.tgz"; - sha512 = "LRK2hiNUiBhPe5tmJiefOVpkaX2Yob0rp15IFNIbuteRWUJg0oERFQo62WvnxwElfzKSOhr8OGuEq/vN4bMrRA=="; + url = "https://registry.npmjs.org/@lerna/clean/-/clean-6.4.1.tgz"; + sha512 = "FuVyW3mpos5ESCWSkQ1/ViXyEtsZ9k45U66cdM/HnteHQk/XskSQw0sz9R+whrZRUDu6YgYLSoj1j0YAHVK/3A=="; }; }; - "@lerna/cli-6.1.0" = { + "@lerna/cli-6.4.1" = { name = "_at_lerna_slash_cli"; packageName = "@lerna/cli"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/cli/-/cli-6.1.0.tgz"; - sha512 = "p4G/OSPIrHiNkEl8bXrQdFOh4ORAZp2+ljvbXmAxpdf2qmopaUdr+bZYtIAxd+Z42SxRnDNz9IEyR0kOsARRQQ=="; + url = "https://registry.npmjs.org/@lerna/cli/-/cli-6.4.1.tgz"; + sha512 = "2pNa48i2wzFEd9LMPKWI3lkW/3widDqiB7oZUM1Xvm4eAOuDWc9I3RWmAUIVlPQNf3n4McxJCvsZZ9BpQN50Fg=="; }; }; - "@lerna/collect-uncommitted-6.1.0" = { + "@lerna/collect-uncommitted-6.4.1" = { name = "_at_lerna_slash_collect-uncommitted"; packageName = "@lerna/collect-uncommitted"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/collect-uncommitted/-/collect-uncommitted-6.1.0.tgz"; - sha512 = "VvWvqDZG+OiF4PwV4Ro695r3+8ty4w+11Bnq8tbsbu5gq8qZiam8Fkc/TQLuNNqP0SPi4qmMPaIzWvSze3SmDg=="; + url = "https://registry.npmjs.org/@lerna/collect-uncommitted/-/collect-uncommitted-6.4.1.tgz"; + sha512 = "5IVQGhlLrt7Ujc5ooYA1Xlicdba/wMcDSnbQwr8ufeqnzV2z4729pLCVk55gmi6ZienH/YeBPHxhB5u34ofE0Q=="; }; }; - "@lerna/collect-updates-6.1.0" = { + "@lerna/collect-updates-6.4.1" = { name = "_at_lerna_slash_collect-updates"; packageName = "@lerna/collect-updates"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/collect-updates/-/collect-updates-6.1.0.tgz"; - sha512 = "dgH7kgstwCXFctylQ4cxuCmhwSIE6VJZfHdh2bOaLuncs6ATMErKWN/mVuFHuUWEqPDRyy5Ky40Cu9S40nUq5w=="; + url = "https://registry.npmjs.org/@lerna/collect-updates/-/collect-updates-6.4.1.tgz"; + sha512 = "pzw2/FC+nIqYkknUHK9SMmvP3MsLEjxI597p3WV86cEDN3eb1dyGIGuHiKShtjvT08SKSwpTX+3bCYvLVxtC5Q=="; }; }; - "@lerna/command-6.1.0" = { + "@lerna/command-6.4.1" = { name = "_at_lerna_slash_command"; packageName = "@lerna/command"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/command/-/command-6.1.0.tgz"; - sha512 = "OnMqBDaEBY0C8v9CXIWFbGGKgsiUtZrnKVvQRbupMSZDKMpVGWIUd3X98Is9j9MAmk1ynhBMWE9Fwai5ML/mcA=="; + url = "https://registry.npmjs.org/@lerna/command/-/command-6.4.1.tgz"; + sha512 = "3Lifj8UTNYbRad8JMP7IFEEdlIyclWyyvq/zvNnTS9kCOEymfmsB3lGXr07/AFoi6qDrvN64j7YSbPZ6C6qonw=="; }; }; - "@lerna/conventional-commits-6.1.0" = { + "@lerna/conventional-commits-6.4.1" = { name = "_at_lerna_slash_conventional-commits"; packageName = "@lerna/conventional-commits"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/conventional-commits/-/conventional-commits-6.1.0.tgz"; - sha512 = "Tipo3cVr8mNVca4btzrCIzct59ZJWERT8/ZCZ/TQWuI4huUJZs6LRofLtB0xsGJAVZ7Vz2WRXAeH4XYgeUxutQ=="; + url = "https://registry.npmjs.org/@lerna/conventional-commits/-/conventional-commits-6.4.1.tgz"; + sha512 = "NIvCOjStjQy5O8VojB7/fVReNNDEJOmzRG2sTpgZ/vNS4AzojBQZ/tobzhm7rVkZZ43R9srZeuhfH9WgFsVUSA=="; }; }; - "@lerna/create-6.1.0" = { + "@lerna/create-6.4.1" = { name = "_at_lerna_slash_create"; packageName = "@lerna/create"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/create/-/create-6.1.0.tgz"; - sha512 = "ZqlknXu0L29cV5mcfNgBLl+1RbKTWmNk8mj545zgXc7qQDgmrY+EVvrs8Cirey8C7bBpVkzP7Brzze0MSoB4rQ=="; + url = "https://registry.npmjs.org/@lerna/create/-/create-6.4.1.tgz"; + sha512 = "qfQS8PjeGDDlxEvKsI/tYixIFzV2938qLvJohEKWFn64uvdLnXCamQ0wvRJST8p1ZpHWX4AXrB+xEJM3EFABrA=="; }; }; - "@lerna/create-symlink-6.1.0" = { + "@lerna/create-symlink-6.4.1" = { name = "_at_lerna_slash_create-symlink"; packageName = "@lerna/create-symlink"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/create-symlink/-/create-symlink-6.1.0.tgz"; - sha512 = "ulMa5OUJEwEWBHSgCUNGxrcsJllq1YMYWqhufvIigmMPJ0Zv3TV1Hha5i2MsqLJAakxtW0pNuwdutkUTtUdgxQ=="; + url = "https://registry.npmjs.org/@lerna/create-symlink/-/create-symlink-6.4.1.tgz"; + sha512 = "rNivHFYV1GAULxnaTqeGb2AdEN2OZzAiZcx5CFgj45DWXQEGwPEfpFmCSJdXhFZbyd3K0uiDlAXjAmV56ov3FQ=="; }; }; - "@lerna/describe-ref-6.1.0" = { + "@lerna/describe-ref-6.4.1" = { name = "_at_lerna_slash_describe-ref"; packageName = "@lerna/describe-ref"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/describe-ref/-/describe-ref-6.1.0.tgz"; - sha512 = "0RQAYnxBaMz1SrEb/rhfR+8VeZx5tvCNYKRee5oXIDZdQ2c6/EPyrKCp3WcqiuOWY50SfGOVfxJEcxpK8Y3FNA=="; + url = "https://registry.npmjs.org/@lerna/describe-ref/-/describe-ref-6.4.1.tgz"; + sha512 = "MXGXU8r27wl355kb1lQtAiu6gkxJ5tAisVJvFxFM1M+X8Sq56icNoaROqYrvW6y97A9+3S8Q48pD3SzkFv31Xw=="; }; }; - "@lerna/diff-6.1.0" = { + "@lerna/diff-6.4.1" = { name = "_at_lerna_slash_diff"; packageName = "@lerna/diff"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/diff/-/diff-6.1.0.tgz"; - sha512 = "GhP+jPDbcp9QcAMSAjFn4lzM8MKpLR1yt5jll+zUD831U1sL0I5t8HUosFroe5MoRNffEL/jHuI3SbC3jjqWjQ=="; + url = "https://registry.npmjs.org/@lerna/diff/-/diff-6.4.1.tgz"; + sha512 = "TnzJsRPN2fOjUrmo5Boi43fJmRtBJDsVgwZM51VnLoKcDtO1kcScXJ16Od2Xx5bXbp5dES5vGDLL/USVVWfeAg=="; }; }; - "@lerna/exec-6.1.0" = { + "@lerna/exec-6.4.1" = { name = "_at_lerna_slash_exec"; packageName = "@lerna/exec"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/exec/-/exec-6.1.0.tgz"; - sha512 = "Ej6WlPHXLF6hZHsfD+J/dxeuTrnc0HIfIXR1DU//msHW5RNCdi9+I7StwreCAQH/dLEsdBjPg5chNmuj2JLQRg=="; + url = "https://registry.npmjs.org/@lerna/exec/-/exec-6.4.1.tgz"; + sha512 = "KAWfuZpoyd3FMejHUORd0GORMr45/d9OGAwHitfQPVs4brsxgQFjbbBEEGIdwsg08XhkDb4nl6IYVASVTq9+gA=="; }; }; - "@lerna/filter-options-6.1.0" = { + "@lerna/filter-options-6.4.1" = { name = "_at_lerna_slash_filter-options"; packageName = "@lerna/filter-options"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/filter-options/-/filter-options-6.1.0.tgz"; - sha512 = "kPf92Z7uLsR6MUiXnyXWebaUWArLa15wLfpfTwIp5H3MNk1lTbuG7QnrxE7OxQj+ozFmBvXeV9fuwfLsYTfmOw=="; + url = "https://registry.npmjs.org/@lerna/filter-options/-/filter-options-6.4.1.tgz"; + sha512 = "efJh3lP2T+9oyNIP2QNd9EErf0Sm3l3Tz8CILMsNJpjSU6kO43TYWQ+L/ezu2zM99KVYz8GROLqDcHRwdr8qUA=="; }; }; - "@lerna/filter-packages-6.1.0" = { + "@lerna/filter-packages-6.4.1" = { name = "_at_lerna_slash_filter-packages"; packageName = "@lerna/filter-packages"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/filter-packages/-/filter-packages-6.1.0.tgz"; - sha512 = "zW2avsZHs/ITE/37AEMhegGVHjiD0rgNk9bguNDfz6zaPa90UaW6PWDH6Tf4ThPRlbkl2Go48N3bFYHYSJKbcw=="; + url = "https://registry.npmjs.org/@lerna/filter-packages/-/filter-packages-6.4.1.tgz"; + sha512 = "LCMGDGy4b+Mrb6xkcVzp4novbf5MoZEE6ZQF1gqG0wBWqJzNcKeFiOmf352rcDnfjPGZP6ct5+xXWosX/q6qwg=="; }; }; - "@lerna/get-npm-exec-opts-6.1.0" = { + "@lerna/get-npm-exec-opts-6.4.1" = { name = "_at_lerna_slash_get-npm-exec-opts"; packageName = "@lerna/get-npm-exec-opts"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-6.1.0.tgz"; - sha512 = "10Pdf+W0z7RT34o0SWlf+WVzz2/WbnTIJ1tQqXvXx6soj2L/xGLhOPvhJiKNtl4WlvUiO/zQ91yb83ESP4TZaA=="; + url = "https://registry.npmjs.org/@lerna/get-npm-exec-opts/-/get-npm-exec-opts-6.4.1.tgz"; + sha512 = "IvN/jyoklrWcjssOf121tZhOc16MaFPOu5ii8a+Oy0jfTriIGv929Ya8MWodj75qec9s+JHoShB8yEcMqZce4g=="; }; }; - "@lerna/get-packed-6.1.0" = { + "@lerna/get-packed-6.4.1" = { name = "_at_lerna_slash_get-packed"; packageName = "@lerna/get-packed"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/get-packed/-/get-packed-6.1.0.tgz"; - sha512 = "lg0wPpV0wPekcD0mebJp619hMxsOgbZDOH5AkL/bCR217391eha0iPhQ0dU/G0Smd2vv6Cg443+J5QdI4LGRTg=="; + url = "https://registry.npmjs.org/@lerna/get-packed/-/get-packed-6.4.1.tgz"; + sha512 = "uaDtYwK1OEUVIXn84m45uPlXShtiUcw6V9TgB3rvHa3rrRVbR7D4r+JXcwVxLGrAS7LwxVbYWEEO/Z/bX7J/Lg=="; }; }; - "@lerna/github-client-6.1.0" = { + "@lerna/github-client-6.4.1" = { name = "_at_lerna_slash_github-client"; packageName = "@lerna/github-client"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/github-client/-/github-client-6.1.0.tgz"; - sha512 = "+/4PtDgsjt0VRRZtOCN2Piyu0asU/16gSZZy/opVb8dlT44lTrH/ZghrJLE4tSL8Nuv688kx0kSgbUG8BY54jQ=="; + url = "https://registry.npmjs.org/@lerna/github-client/-/github-client-6.4.1.tgz"; + sha512 = "ridDMuzmjMNlcDmrGrV9mxqwUKzt9iYqCPwVYJlRYrnE3jxyg+RdooquqskVFj11djcY6xCV2Q2V1lUYwF+PmA=="; }; }; - "@lerna/gitlab-client-6.1.0" = { + "@lerna/gitlab-client-6.4.1" = { name = "_at_lerna_slash_gitlab-client"; packageName = "@lerna/gitlab-client"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/gitlab-client/-/gitlab-client-6.1.0.tgz"; - sha512 = "fUI/ppXzxJafN9ceSl+FDgsYvu3iTsO6UW0WTD63pS32CfM+PiCryLQHzuc4RkyVW8WQH3aCR/GbaKCqbu52bw=="; + url = "https://registry.npmjs.org/@lerna/gitlab-client/-/gitlab-client-6.4.1.tgz"; + sha512 = "AdLG4d+jbUvv0jQyygQUTNaTCNSMDxioJso6aAjQ/vkwyy3fBJ6FYzX74J4adSfOxC2MQZITFyuG+c9ggp7pyQ=="; }; }; - "@lerna/global-options-6.1.0" = { + "@lerna/global-options-6.4.1" = { name = "_at_lerna_slash_global-options"; packageName = "@lerna/global-options"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/global-options/-/global-options-6.1.0.tgz"; - sha512 = "1OyJ/N1XJh3ZAy8S20c6th9C4yBm/k3bRIdC+z0XxpDaHwfNt8mT9kUIDt6AIFCUvVKjSwnIsMHwhzXqBnwYSA=="; + url = "https://registry.npmjs.org/@lerna/global-options/-/global-options-6.4.1.tgz"; + sha512 = "UTXkt+bleBB8xPzxBPjaCN/v63yQdfssVjhgdbkQ//4kayaRA65LyEtJTi9rUrsLlIy9/rbeb+SAZUHg129fJg=="; }; }; - "@lerna/has-npm-version-6.1.0" = { + "@lerna/has-npm-version-6.4.1" = { name = "_at_lerna_slash_has-npm-version"; packageName = "@lerna/has-npm-version"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/has-npm-version/-/has-npm-version-6.1.0.tgz"; - sha512 = "up5PVuP6BmKQ5/UgH/t2c5B1q4HhjwW3/bqbNayX6V0qNz8OijnMYvEUbxFk8fOdeN41qVnhAk0Tb5kbdtYh2A=="; + url = "https://registry.npmjs.org/@lerna/has-npm-version/-/has-npm-version-6.4.1.tgz"; + sha512 = "vW191w5iCkwNWWWcy4542ZOpjKYjcP/pU3o3+w6NM1J3yBjWZcNa8lfzQQgde2QkGyNi+i70o6wIca1o0sdKwg=="; }; }; - "@lerna/import-6.1.0" = { + "@lerna/import-6.4.1" = { name = "_at_lerna_slash_import"; packageName = "@lerna/import"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/import/-/import-6.1.0.tgz"; - sha512 = "xsBhiKLUavATR32dAFL+WFY0yuab0hsM1eztKtRKk4wy7lSyxRfA5EIUcNCsLXx2xaDOKoMncCTXgNcpeYuqcQ=="; + url = "https://registry.npmjs.org/@lerna/import/-/import-6.4.1.tgz"; + sha512 = "oDg8g1PNrCM1JESLsG3rQBtPC+/K9e4ohs0xDKt5E6p4l7dc0Ib4oo0oCCT/hGzZUlNwHxrc2q9JMRzSAn6P/Q=="; }; }; - "@lerna/info-6.1.0" = { + "@lerna/info-6.4.1" = { name = "_at_lerna_slash_info"; packageName = "@lerna/info"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/info/-/info-6.1.0.tgz"; - sha512 = "CsrWdW/Wyb4kcvHSnrsm7KYWFvjUNItu+ryeyWBZJtWYQOv45jNmWix6j2L4/w1+mMlWMjsfLmBscg82UBrF5w=="; + url = "https://registry.npmjs.org/@lerna/info/-/info-6.4.1.tgz"; + sha512 = "Ks4R7IndIr4vQXz+702gumPVhH6JVkshje0WKA3+ew2qzYZf68lU1sBe1OZsQJU3eeY2c60ax+bItSa7aaIHGw=="; }; }; - "@lerna/init-6.1.0" = { + "@lerna/init-6.4.1" = { name = "_at_lerna_slash_init"; packageName = "@lerna/init"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/init/-/init-6.1.0.tgz"; - sha512 = "z8oUeVjn+FQYAtepAw6G47cGodLyBAyNoEjO3IsJjQLWE1yH3r83L2sjyD/EckgR3o2VTEzrKo4ArhxLp2mNmg=="; + url = "https://registry.npmjs.org/@lerna/init/-/init-6.4.1.tgz"; + sha512 = "CXd/s/xgj0ZTAoOVyolOTLW2BG7uQOhWW4P/ktlwwJr9s3c4H/z+Gj36UXw3q5X1xdR29NZt7Vc6fvROBZMjUQ=="; }; }; - "@lerna/link-6.1.0" = { + "@lerna/link-6.4.1" = { name = "_at_lerna_slash_link"; packageName = "@lerna/link"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/link/-/link-6.1.0.tgz"; - sha512 = "7OD2lYNQHl6Kl1KYmplt8KoWjVHdiaqpYqwD38AwcB09YN58nGmo4aJgC12Fdx8DSNjkumgM0ROg/JOjMCTIzQ=="; + url = "https://registry.npmjs.org/@lerna/link/-/link-6.4.1.tgz"; + sha512 = "O8Rt7MAZT/WT2AwrB/+HY76ktnXA9cDFO9rhyKWZGTHdplbzuJgfsGzu8Xv0Ind+w+a8xLfqtWGPlwiETnDyrw=="; }; }; - "@lerna/list-6.1.0" = { + "@lerna/list-6.4.1" = { name = "_at_lerna_slash_list"; packageName = "@lerna/list"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/list/-/list-6.1.0.tgz"; - sha512 = "7/g2hjizkvVnBGpVm+qC7lUFGhZ/0GIMUbGQwnE6yXDGm8yP9aEcNVkU4JGrDWW+uIklf9oodnMHaLXd/FJe6Q=="; + url = "https://registry.npmjs.org/@lerna/list/-/list-6.4.1.tgz"; + sha512 = "7a6AKgXgC4X7nK6twVPNrKCiDhrCiAhL/FE4u9HYhHqw9yFwyq8Qe/r1RVOkAOASNZzZ8GuBvob042bpunupCw=="; }; }; - "@lerna/listable-6.1.0" = { + "@lerna/listable-6.4.1" = { name = "_at_lerna_slash_listable"; packageName = "@lerna/listable"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/listable/-/listable-6.1.0.tgz"; - sha512 = "3KZ9lQ9AtNfGNH/mYJYaMKCiF2EQvLLBGYkWHeIzIs6foegcZNXe0Cyv3LNXuo5WslMNr5RT4wIgy3BOoAxdtg=="; + url = "https://registry.npmjs.org/@lerna/listable/-/listable-6.4.1.tgz"; + sha512 = "L8ANeidM10aoF8aL3L/771Bb9r/TRkbEPzAiC8Iy2IBTYftS87E3rT/4k5KBEGYzMieSKJaskSFBV0OQGYV1Cw=="; }; }; - "@lerna/log-packed-6.1.0" = { + "@lerna/log-packed-6.4.1" = { name = "_at_lerna_slash_log-packed"; packageName = "@lerna/log-packed"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/log-packed/-/log-packed-6.1.0.tgz"; - sha512 = "Sq2HZJAcPuoNeEHeIutcPYQCyWBxLyVGvEhgsP3xTe6XkBGQCG8piCp9wX+sc2zT+idPdpI6qLqdh85yYIMMhA=="; + url = "https://registry.npmjs.org/@lerna/log-packed/-/log-packed-6.4.1.tgz"; + sha512 = "Pwv7LnIgWqZH4vkM1rWTVF+pmWJu7d0ZhVwyhCaBJUsYbo+SyB2ZETGygo3Z/A+vZ/S7ImhEEKfIxU9bg5lScQ=="; }; }; - "@lerna/npm-conf-6.1.0" = { + "@lerna/npm-conf-6.4.1" = { name = "_at_lerna_slash_npm-conf"; packageName = "@lerna/npm-conf"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-conf/-/npm-conf-6.1.0.tgz"; - sha512 = "+RD3mmJe9XSQj7Diibs0+UafAHPcrFCd29ODpDI+tzYl4MmYZblfrlL6mbSCiVYCZQneQ8Uku3P0r+DlbYBaFw=="; + url = "https://registry.npmjs.org/@lerna/npm-conf/-/npm-conf-6.4.1.tgz"; + sha512 = "Q+83uySGXYk3n1pYhvxtzyGwBGijYgYecgpiwRG1YNyaeGy+Mkrj19cyTWubT+rU/kM5c6If28+y9kdudvc7zQ=="; }; }; - "@lerna/npm-dist-tag-6.1.0" = { + "@lerna/npm-dist-tag-6.4.1" = { name = "_at_lerna_slash_npm-dist-tag"; packageName = "@lerna/npm-dist-tag"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-dist-tag/-/npm-dist-tag-6.1.0.tgz"; - sha512 = "1zo+Yww/lvWJWZnEXpke9dZSb5poDzhUM/pQNqAQYSlbZ96o18SuCR6TEi5isMPiw63Aq1MMzbUqttQfJ11EOA=="; + url = "https://registry.npmjs.org/@lerna/npm-dist-tag/-/npm-dist-tag-6.4.1.tgz"; + sha512 = "If1Hn4q9fn0JWuBm455iIZDWE6Fsn4Nv8Tpqb+dYf0CtoT5Hn+iT64xSiU5XJw9Vc23IR7dIujkEXm2MVbnvZw=="; }; }; - "@lerna/npm-install-6.1.0" = { + "@lerna/npm-install-6.4.1" = { name = "_at_lerna_slash_npm-install"; packageName = "@lerna/npm-install"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-install/-/npm-install-6.1.0.tgz"; - sha512 = "1SHmOHZA1YJuUctLQBRjA2+yMp+UNYdOBsFb3xUVT7MjWnd1Zl0toT3jxGu96RNErD9JKkk/cGo/Aq+DU3s9pg=="; + url = "https://registry.npmjs.org/@lerna/npm-install/-/npm-install-6.4.1.tgz"; + sha512 = "7gI1txMA9qTaT3iiuk/8/vL78wIhtbbOLhMf8m5yQ2G+3t47RUA8MNgUMsq4Zszw9C83drayqesyTf0u8BzVRg=="; }; }; - "@lerna/npm-publish-6.1.0" = { + "@lerna/npm-publish-6.4.1" = { name = "_at_lerna_slash_npm-publish"; packageName = "@lerna/npm-publish"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-6.1.0.tgz"; - sha512 = "N0LdR1ImZQw1r4cYaKtVbBhBPtj4Zu9NbvygzizEP5HuTfxZmE1Ans3w93Kks9VTXZXob8twNbXnzBwzTyEpEA=="; + url = "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-6.4.1.tgz"; + sha512 = "lbNEg+pThPAD8lIgNArm63agtIuCBCF3umxvgTQeLzyqUX6EtGaKJFyz/6c2ANcAuf8UfU7WQxFFbOiolibXTQ=="; }; }; - "@lerna/npm-run-script-6.1.0" = { + "@lerna/npm-run-script-6.4.1" = { name = "_at_lerna_slash_npm-run-script"; packageName = "@lerna/npm-run-script"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-run-script/-/npm-run-script-6.1.0.tgz"; - sha512 = "7p13mvdxdY5+VqWvvtMsMDeyCRs0PrrTmSHRO+FKuLQuGhBvUo05vevcMEOQNDvEvl/tXPrOVbeGCiGubYTCLg=="; + url = "https://registry.npmjs.org/@lerna/npm-run-script/-/npm-run-script-6.4.1.tgz"; + sha512 = "HyvwuyhrGqDa1UbI+pPbI6v+wT6I34R0PW3WCADn6l59+AyqLOCUQQr+dMW7jdYNwjO6c/Ttbvj4W58EWsaGtQ=="; }; }; - "@lerna/otplease-6.1.0" = { + "@lerna/otplease-6.4.1" = { name = "_at_lerna_slash_otplease"; packageName = "@lerna/otplease"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/otplease/-/otplease-6.1.0.tgz"; - sha512 = "gqSE6IbaD4IeNJePkaDLaFLoGp0Ceu35sn7z0AHAOoHiQGGorOmvM+h1Md3xZZRSXQmY9LyJVhG5eRa38SoG4g=="; + url = "https://registry.npmjs.org/@lerna/otplease/-/otplease-6.4.1.tgz"; + sha512 = "ePUciFfFdythHNMp8FP5K15R/CoGzSLVniJdD50qm76c4ATXZHnGCW2PGwoeAZCy4QTzhlhdBq78uN0wAs75GA=="; }; }; - "@lerna/output-6.1.0" = { + "@lerna/output-6.4.1" = { name = "_at_lerna_slash_output"; packageName = "@lerna/output"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/output/-/output-6.1.0.tgz"; - sha512 = "mgCIzLKIuroytXuxjTB689ERtpfgyNXW0rMv9WHOa6ufQc+QJPjh3L4jVsOA0l+/OxZyi97PUXotduNj+0cbnA=="; + url = "https://registry.npmjs.org/@lerna/output/-/output-6.4.1.tgz"; + sha512 = "A1yRLF0bO+lhbIkrryRd6hGSD0wnyS1rTPOWJhScO/Zyv8vIPWhd2fZCLR1gI2d/Kt05qmK3T/zETTwloK7Fww=="; }; }; - "@lerna/pack-directory-6.1.0" = { + "@lerna/pack-directory-6.4.1" = { name = "_at_lerna_slash_pack-directory"; packageName = "@lerna/pack-directory"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/pack-directory/-/pack-directory-6.1.0.tgz"; - sha512 = "Xsixqm2nkGXs9hvq08ClbGpRlCYnlBV4TwSrLttIDL712RlyXoPe2maJzTUqo9OXBbOumFSahUEInCMT2OS05g=="; + url = "https://registry.npmjs.org/@lerna/pack-directory/-/pack-directory-6.4.1.tgz"; + sha512 = "kBtDL9bPP72/Nl7Gqa2CA3Odb8CYY1EF2jt801f+B37TqRLf57UXQom7yF3PbWPCPmhoU+8Fc4RMpUwSbFC46Q=="; }; }; - "@lerna/package-6.1.0" = { + "@lerna/package-6.4.1" = { name = "_at_lerna_slash_package"; packageName = "@lerna/package"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/package/-/package-6.1.0.tgz"; - sha512 = "PyNFtdH2IcLasp/nyMDshmeXotriOSlhbeFIxhdl1XuGj5v1so3utMSOrJMO5kzZJQg5zyx8qQoxL+WH/hkrVQ=="; + url = "https://registry.npmjs.org/@lerna/package/-/package-6.4.1.tgz"; + sha512 = "TrOah58RnwS9R8d3+WgFFTu5lqgZs7M+e1dvcRga7oSJeKscqpEK57G0xspvF3ycjfXQwRMmEtwPmpkeEVLMzA=="; }; }; - "@lerna/package-graph-6.1.0" = { + "@lerna/package-graph-6.4.1" = { name = "_at_lerna_slash_package-graph"; packageName = "@lerna/package-graph"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/package-graph/-/package-graph-6.1.0.tgz"; - sha512 = "yGyxd/eHTDjkpnBbDhTV0hwKF+i01qZc+6/ko65wOsh8xtgqpQeE6mtdgbvsLKcuMcIQ7PDy1ntyIv9phg14gQ=="; + url = "https://registry.npmjs.org/@lerna/package-graph/-/package-graph-6.4.1.tgz"; + sha512 = "fQvc59stRYOqxT3Mn7g/yI9/Kw5XetJoKcW5l8XeqKqcTNDURqKnN0qaNBY6lTTLOe4cR7gfXF2l1u3HOz0qEg=="; }; }; - "@lerna/prerelease-id-from-version-6.1.0" = { + "@lerna/prerelease-id-from-version-6.4.1" = { name = "_at_lerna_slash_prerelease-id-from-version"; packageName = "@lerna/prerelease-id-from-version"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-6.1.0.tgz"; - sha512 = "ngC4I6evvZztB6aOaSDEnhUgRTlqX3TyBXwWwLGTOXCPaCQBTPaLNokhmRdJ+ZVdZ4iHFbzEDSL07ubZrYUcmQ=="; + url = "https://registry.npmjs.org/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-6.4.1.tgz"; + sha512 = "uGicdMFrmfHXeC0FTosnUKRgUjrBJdZwrmw7ZWMb5DAJGOuTzrvJIcz5f0/eL3XqypC/7g+9DoTgKjX3hlxPZA=="; }; }; - "@lerna/profiler-6.1.0" = { + "@lerna/profiler-6.4.1" = { name = "_at_lerna_slash_profiler"; packageName = "@lerna/profiler"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/profiler/-/profiler-6.1.0.tgz"; - sha512 = "WFDQNpuqPqMJLg8llvrBHF8Ib5Asgp23lMeNUe89T62NUX6gkjVBTYdjsduxM0tZH6Pa0GAGaQcha97P6fxfdQ=="; + url = "https://registry.npmjs.org/@lerna/profiler/-/profiler-6.4.1.tgz"; + sha512 = "dq2uQxcu0aq6eSoN+JwnvHoAnjtZAVngMvywz5bTAfzz/sSvIad1v8RCpJUMBQHxaPtbfiNvOIQgDZOmCBIM4g=="; }; }; - "@lerna/project-6.1.0" = { + "@lerna/project-6.4.1" = { name = "_at_lerna_slash_project"; packageName = "@lerna/project"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/project/-/project-6.1.0.tgz"; - sha512 = "EOkfjjrTM16c3GUxGqcfYD2stV35p9mBEmkF41NPmyjfbzjol/irDF1r6Q7BsQSRsdClMJRCeZ168xdSxC2X0A=="; + url = "https://registry.npmjs.org/@lerna/project/-/project-6.4.1.tgz"; + sha512 = "BPFYr4A0mNZ2jZymlcwwh7PfIC+I6r52xgGtJ4KIrIOB6mVKo9u30dgYJbUQxmSuMRTOnX7PJZttQQzSda4gEg=="; }; }; - "@lerna/prompt-6.1.0" = { + "@lerna/prompt-6.4.1" = { name = "_at_lerna_slash_prompt"; packageName = "@lerna/prompt"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/prompt/-/prompt-6.1.0.tgz"; - sha512 = "981J/C53TZ2l2mFVlWJN7zynSzf5GEHKvKQa12Td9iknhASZOuwTAWb6eq46246Ant6W5tWwb0NSPu3I5qtcrA=="; + url = "https://registry.npmjs.org/@lerna/prompt/-/prompt-6.4.1.tgz"; + sha512 = "vMxCIgF9Vpe80PnargBGAdS/Ib58iYEcfkcXwo7mYBCxEVcaUJFKZ72FEW8rw+H5LkxBlzrBJyfKRoOe0ks9gQ=="; }; }; - "@lerna/publish-6.1.0" = { + "@lerna/publish-6.4.1" = { name = "_at_lerna_slash_publish"; packageName = "@lerna/publish"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/publish/-/publish-6.1.0.tgz"; - sha512 = "XtvuydtU0IptbAapLRgoN1AZj/WJR+e3UKnx9BQ1Dwc+Fpg2oqPxR/vi+6hxAsr95pdQ5CnWBdgS+dg2wEUJ7Q=="; + url = "https://registry.npmjs.org/@lerna/publish/-/publish-6.4.1.tgz"; + sha512 = "/D/AECpw2VNMa1Nh4g29ddYKRIqygEV1ftV8PYXVlHpqWN7VaKrcbRU6pn0ldgpFlMyPtESfv1zS32F5CQ944w=="; }; }; - "@lerna/pulse-till-done-6.1.0" = { + "@lerna/pulse-till-done-6.4.1" = { name = "_at_lerna_slash_pulse-till-done"; packageName = "@lerna/pulse-till-done"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/pulse-till-done/-/pulse-till-done-6.1.0.tgz"; - sha512 = "a2RVT82E4R9nVXtehzp2TQL6iXp0QfEM3bu8tBAR/SfI1A9ggZWQhuuUqtRyhhVCajdQDOo7rS0UG7R5JzK58w=="; + url = "https://registry.npmjs.org/@lerna/pulse-till-done/-/pulse-till-done-6.4.1.tgz"; + sha512 = "efAkOC1UuiyqYBfrmhDBL6ufYtnpSqAG+lT4d/yk3CzJEJKkoCwh2Hb692kqHHQ5F74Uusc8tcRB7GBcfNZRWA=="; }; }; - "@lerna/query-graph-6.1.0" = { + "@lerna/query-graph-6.4.1" = { name = "_at_lerna_slash_query-graph"; packageName = "@lerna/query-graph"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/query-graph/-/query-graph-6.1.0.tgz"; - sha512 = "YkyCc+6aR7GlCOcZXEKPcl5o5L2v+0YUNs59JrfAS0mctFosZ/2tP7pkdu2SI4qXIi5D0PMNsh/0fRni56znsQ=="; + url = "https://registry.npmjs.org/@lerna/query-graph/-/query-graph-6.4.1.tgz"; + sha512 = "gBGZLgu2x6L4d4ZYDn4+d5rxT9RNBC+biOxi0QrbaIq83I+JpHVmFSmExXK3rcTritrQ3JT9NCqb+Yu9tL9adQ=="; }; }; - "@lerna/resolve-symlink-6.1.0" = { + "@lerna/resolve-symlink-6.4.1" = { name = "_at_lerna_slash_resolve-symlink"; packageName = "@lerna/resolve-symlink"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/resolve-symlink/-/resolve-symlink-6.1.0.tgz"; - sha512 = "8ILO+h5fsE0q8MSLfdL+MT1GEsNhAB1fDyMkSsYgLRCsssN/cViZbffpclZyT/EfAhpyKfBCHZ0CmT1ZGofU1A=="; + url = "https://registry.npmjs.org/@lerna/resolve-symlink/-/resolve-symlink-6.4.1.tgz"; + sha512 = "gnqltcwhWVLUxCuwXWe/ch9WWTxXRI7F0ZvCtIgdfOpbosm3f1g27VO1LjXeJN2i6ks03qqMowqy4xB4uMR9IA=="; }; }; - "@lerna/rimraf-dir-6.1.0" = { + "@lerna/rimraf-dir-6.4.1" = { name = "_at_lerna_slash_rimraf-dir"; packageName = "@lerna/rimraf-dir"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/rimraf-dir/-/rimraf-dir-6.1.0.tgz"; - sha512 = "J9YeGHkCCeAIzsnKURYeGECBexiIii6HA+Bbd+rAgoKPsNCOj6ql4+qJE8Jbd7fQEFNDPQeBCYvM7JcdMc0WSA=="; + url = "https://registry.npmjs.org/@lerna/rimraf-dir/-/rimraf-dir-6.4.1.tgz"; + sha512 = "5sDOmZmVj0iXIiEgdhCm0Prjg5q2SQQKtMd7ImimPtWKkV0IyJWxrepJFbeQoFj5xBQF7QB5jlVNEfQfKhD6pQ=="; }; }; - "@lerna/run-6.1.0" = { + "@lerna/run-6.4.1" = { name = "_at_lerna_slash_run"; packageName = "@lerna/run"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/run/-/run-6.1.0.tgz"; - sha512 = "vlEEKPcTloiob6EK7gxrjEdB6fQQ/LNfWhSJCGxJlvNVbrMpoWIu0Kpp20b0nE+lzX7rRJ4seWr7Wdo/Fjub4Q=="; + url = "https://registry.npmjs.org/@lerna/run/-/run-6.4.1.tgz"; + sha512 = "HRw7kS6KNqTxqntFiFXPEeBEct08NjnL6xKbbOV6pXXf+lXUQbJlF8S7t6UYqeWgTZ4iU9caIxtZIY+EpW93mQ=="; }; }; - "@lerna/run-lifecycle-6.1.0" = { + "@lerna/run-lifecycle-6.4.1" = { name = "_at_lerna_slash_run-lifecycle"; packageName = "@lerna/run-lifecycle"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-6.1.0.tgz"; - sha512 = "GbTdKxL+hWHEPgyBEKtqY9Nf+jFlt6YLtP5VjEVc5SdLkm+FeRquar9/YcZVUbzr3c+NJwWNgVjHuePfowdpUA=="; + url = "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-6.4.1.tgz"; + sha512 = "42VopI8NC8uVCZ3YPwbTycGVBSgukJltW5Saein0m7TIqFjwSfrcP0n7QJOr+WAu9uQkk+2kBstF5WmvKiqgEA=="; }; }; - "@lerna/run-topologically-6.1.0" = { + "@lerna/run-topologically-6.4.1" = { name = "_at_lerna_slash_run-topologically"; packageName = "@lerna/run-topologically"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/run-topologically/-/run-topologically-6.1.0.tgz"; - sha512 = "kpTaSBKdKjtf61be8Z1e7TIaMt/aksfxswQtpFxEuKDsPsdHfR8htSkADO4d/3SZFtmcAHIHNCQj9CaNj4O4Xw=="; + url = "https://registry.npmjs.org/@lerna/run-topologically/-/run-topologically-6.4.1.tgz"; + sha512 = "gXlnAsYrjs6KIUGDnHM8M8nt30Amxq3r0lSCNAt+vEu2sMMEOh9lffGGaJobJZ4bdwoXnKay3uER/TU8E9owMw=="; }; }; - "@lerna/symlink-binary-6.1.0" = { + "@lerna/symlink-binary-6.4.1" = { name = "_at_lerna_slash_symlink-binary"; packageName = "@lerna/symlink-binary"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-6.1.0.tgz"; - sha512 = "DaiRNZk/dvomNxgEaTW145PyL7vIGP7rvnfXV2FO+rjX8UUSNUOjmVmHlYfs64gV9Eqx/dLfQClIbKcwYMD83A=="; + url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-6.4.1.tgz"; + sha512 = "poZX90VmXRjL/JTvxaUQPeMDxFUIQvhBkHnH+dwW0RjsHB/2Tu4QUAsE0OlFnlWQGsAtXF4FTtW8Xs57E/19Kw=="; }; }; - "@lerna/symlink-dependencies-6.1.0" = { + "@lerna/symlink-dependencies-6.4.1" = { name = "_at_lerna_slash_symlink-dependencies"; packageName = "@lerna/symlink-dependencies"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-6.1.0.tgz"; - sha512 = "hrTvtY1Ek+fLA4JjXsKsvwPjuJD0rwB/+K4WY57t00owj//BpCsJ37w3kkkS7f/PcW/5uRjCuHcY67LOEwsRxw=="; + url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-6.4.1.tgz"; + sha512 = "43W2uLlpn3TTYuHVeO/2A6uiTZg6TOk/OSKi21ujD7IfVIYcRYCwCV+8LPP12R3rzyab0JWkWnhp80Z8A2Uykw=="; }; }; - "@lerna/temp-write-6.1.0" = { + "@lerna/temp-write-6.4.1" = { name = "_at_lerna_slash_temp-write"; packageName = "@lerna/temp-write"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/temp-write/-/temp-write-6.1.0.tgz"; - sha512 = "ZcQl88H9HbQ/TeWUOVt+vDYwptm7kwprGvj9KkZXr9S5Bn6SiKRQOeydCCfCrQT+9Q3dm7QZXV6rWzLsACcAlQ=="; + url = "https://registry.npmjs.org/@lerna/temp-write/-/temp-write-6.4.1.tgz"; + sha512 = "7uiGFVoTyos5xXbVQg4bG18qVEn9dFmboXCcHbMj5mc/+/QmU9QeNz/Cq36O5TY6gBbLnyj3lfL5PhzERWKMFg=="; }; }; - "@lerna/timer-6.1.0" = { + "@lerna/timer-6.4.1" = { name = "_at_lerna_slash_timer"; packageName = "@lerna/timer"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/timer/-/timer-6.1.0.tgz"; - sha512 = "du+NQ9q7uO4d2nVU4AD2DSPuAZqUapA/bZKuVpFVxvY9Qhzb8dQKLsFISe4A9TjyoNAk8ZeWK0aBc/6N+Qer9A=="; + url = "https://registry.npmjs.org/@lerna/timer/-/timer-6.4.1.tgz"; + sha512 = "ogmjFTWwRvevZr76a2sAbhmu3Ut2x73nDIn0bcwZwZ3Qc3pHD8eITdjs/wIKkHse3J7l3TO5BFJPnrvDS7HLnw=="; }; }; - "@lerna/validation-error-6.1.0" = { + "@lerna/validation-error-6.4.1" = { name = "_at_lerna_slash_validation-error"; packageName = "@lerna/validation-error"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/validation-error/-/validation-error-6.1.0.tgz"; - sha512 = "q0c3XCi5OpyTr8AcfbisS6e3svZaJF/riCvBDqRMaQUT4A8QOPzB4fVF3/+J2u54nidBuTlIk0JZu9aOdWTUkQ=="; + url = "https://registry.npmjs.org/@lerna/validation-error/-/validation-error-6.4.1.tgz"; + sha512 = "fxfJvl3VgFd7eBfVMRX6Yal9omDLs2mcGKkNYeCEyt4Uwlz1B5tPAXyk/sNMfkKV2Aat/mlK5tnY13vUrMKkyA=="; }; }; - "@lerna/version-6.1.0" = { + "@lerna/version-6.4.1" = { name = "_at_lerna_slash_version"; packageName = "@lerna/version"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/version/-/version-6.1.0.tgz"; - sha512 = "RUxVFdzHt0739lRNMrAbo6HWcFrcyG7atM1pn+Eo61fUoA5R/9N4bCk4m9xUGkJ/mOcROjuwAGe+wT1uOs58Bg=="; + url = "https://registry.npmjs.org/@lerna/version/-/version-6.4.1.tgz"; + sha512 = "1/krPq0PtEqDXtaaZsVuKev9pXJCkNC1vOo2qCcn6PBkODw/QTAvGcUi0I+BM2c//pdxge9/gfmbDo1lC8RtAQ=="; }; }; - "@lerna/write-log-file-6.1.0" = { + "@lerna/write-log-file-6.4.1" = { name = "_at_lerna_slash_write-log-file"; packageName = "@lerna/write-log-file"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/write-log-file/-/write-log-file-6.1.0.tgz"; - sha512 = "09omu2w4NCt8mJH/X9ZMuToQQ3xu/KpC7EU4yDl2Qy8nxKf8HiG8Oe+YYNprngmkdsq60F5eUZvoiFDZ5JeGIg=="; + url = "https://registry.npmjs.org/@lerna/write-log-file/-/write-log-file-6.4.1.tgz"; + sha512 = "LE4fueQSDrQo76F4/gFXL0wnGhqdG7WHVH8D8TrKouF2Afl4NHltObCm4WsSMPjcfciVnZQFfx1ruxU4r/enHQ=="; }; }; "@lezer/common-0.15.12" = { @@ -7411,33 +7177,6 @@ let sha512 = "1DpKU0Z5ThltBwjNySMC14g0CkbyhCaz9FkhxqNsZI6uAPJXFS8cMXlBKo26FJ8ZuW6S9GCMcR9IO5k2X5/9Fg=="; }; }; - "@mapbox/geojson-rewind-0.5.2" = { - name = "_at_mapbox_slash_geojson-rewind"; - packageName = "@mapbox/geojson-rewind"; - version = "0.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@mapbox/geojson-rewind/-/geojson-rewind-0.5.2.tgz"; - sha512 = "tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA=="; - }; - }; - "@mapbox/jsonlint-lines-primitives-2.0.2" = { - name = "_at_mapbox_slash_jsonlint-lines-primitives"; - packageName = "@mapbox/jsonlint-lines-primitives"; - version = "2.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz"; - sha512 = "rY0o9A5ECsTQRVhv7tL/OyDpGAoUB4tTvLiW1DSzQGq4bvTPhNw1VpSNjDJc5GFZ2XuyOtSWSVN05qOtcD71qQ=="; - }; - }; - "@mapbox/mapbox-gl-supported-2.0.1" = { - name = "_at_mapbox_slash_mapbox-gl-supported"; - packageName = "@mapbox/mapbox-gl-supported"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-2.0.1.tgz"; - sha512 = "HP6XvfNIzfoMVfyGjBckjiAOQK9WfX0ywdLubuPMPv+Vqf5fj0uCbgBQYpiqcWZT6cbyyRnTSXDheT1ugvF6UQ=="; - }; - }; "@mapbox/node-pre-gyp-1.0.10" = { name = "_at_mapbox_slash_node-pre-gyp"; packageName = "@mapbox/node-pre-gyp"; @@ -7447,67 +7186,13 @@ let sha512 = "4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA=="; }; }; - "@mapbox/point-geometry-0.1.0" = { - name = "_at_mapbox_slash_point-geometry"; - packageName = "@mapbox/point-geometry"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@mapbox/point-geometry/-/point-geometry-0.1.0.tgz"; - sha512 = "6j56HdLTwWGO0fJPlrZtdU/B13q8Uwmo18Ck2GnGgN9PCFyKTZ3UbXeEdRFh18i9XQ92eH2VdtpJHpBD3aripQ=="; - }; - }; - "@mapbox/tiny-sdf-2.0.5" = { - name = "_at_mapbox_slash_tiny-sdf"; - packageName = "@mapbox/tiny-sdf"; - version = "2.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@mapbox/tiny-sdf/-/tiny-sdf-2.0.5.tgz"; - sha512 = "OhXt2lS//WpLdkqrzo/KwB7SRD8AiNTFFzuo9n14IBupzIMa67yGItcK7I2W9D8Ghpa4T04Sw9FWsKCJG50Bxw=="; - }; - }; - "@mapbox/unitbezier-0.0.1" = { - name = "_at_mapbox_slash_unitbezier"; - packageName = "@mapbox/unitbezier"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@mapbox/unitbezier/-/unitbezier-0.0.1.tgz"; - sha512 = "nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw=="; - }; - }; - "@mapbox/vector-tile-1.3.1" = { - name = "_at_mapbox_slash_vector-tile"; - packageName = "@mapbox/vector-tile"; - version = "1.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@mapbox/vector-tile/-/vector-tile-1.3.1.tgz"; - sha512 = "MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw=="; - }; - }; - "@mapbox/whoots-js-3.1.0" = { - name = "_at_mapbox_slash_whoots-js"; - packageName = "@mapbox/whoots-js"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz"; - sha512 = "Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q=="; - }; - }; - "@mark.probst/typescript-json-schema-0.32.0" = { + "@mark.probst/typescript-json-schema-0.55.0" = { name = "_at_mark.probst_slash_typescript-json-schema"; packageName = "@mark.probst/typescript-json-schema"; - version = "0.32.0"; + version = "0.55.0"; src = fetchurl { - url = "https://registry.npmjs.org/@mark.probst/typescript-json-schema/-/typescript-json-schema-0.32.0.tgz"; - sha512 = "OoD+5D7Mka80FIcmvPyuAKV7g5Of5S04R74S4DTAG8pr9REDWySUh9pOloro7SNFwWt/+2f90wyP+DtGHykVfg=="; - }; - }; - "@mark.probst/unicode-properties-1.1.0" = { - name = "_at_mark.probst_slash_unicode-properties"; - packageName = "@mark.probst/unicode-properties"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@mark.probst/unicode-properties/-/unicode-properties-1.1.0.tgz"; - sha512 = "7AQsO0hMmpqDledV7AhBuSYqYPFsKP9PaltMecX9nlnsyFxqtsqUg9/pvB2L/jxvskrDrNkdKYz2KTbQznCtng=="; + url = "https://registry.npmjs.org/@mark.probst/typescript-json-schema/-/typescript-json-schema-0.55.0.tgz"; + sha512 = "jI48mSnRgFQxXiE/UTUCVCpX8lK3wCFKLF1Ss2aEreboKNuLQGt3e0/YFqWVHe/WENxOaqiJvwOz+L/SrN2+qQ=="; }; }; "@mdi/font-6.5.95" = { @@ -7681,6 +7366,15 @@ let sha512 = "/NdX1Ql8hKNM0vHFJnEr/bcw6BG0ULHD3HhInpniZw5ixpl+n/QIRfMEEmLCn7acedbM1zGdZvU5ZMbn9kcF5Q=="; }; }; + "@microsoft/applicationinsights-web-snippet-1.0.1" = { + name = "_at_microsoft_slash_applicationinsights-web-snippet"; + packageName = "@microsoft/applicationinsights-web-snippet"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@microsoft/applicationinsights-web-snippet/-/applicationinsights-web-snippet-1.0.1.tgz"; + sha512 = "2IHAOaLauc8qaAitvWS+U931T+ze+7MNWrDHY47IENP5y2UA0vqJDu67kWZDdpCN1fFC77sfgfB+HV7SrKshnQ=="; + }; + }; "@microsoft/fetch-event-source-2.0.1" = { name = "_at_microsoft_slash_fetch-event-source"; packageName = "@microsoft/fetch-event-source"; @@ -7708,175 +7402,175 @@ let sha512 = "YgZPnp/hAD43jclvGMMy6B84JR0pB1odK+Cfe2Ag7s4omwe/+u6gJjGfHme6vzB4Hs7jpEkmRe76R3nyVKcFoA=="; }; }; - "@miniflare/cache-2.10.0" = { + "@miniflare/cache-2.11.0" = { name = "_at_miniflare_slash_cache"; packageName = "@miniflare/cache"; - version = "2.10.0"; + version = "2.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/cache/-/cache-2.10.0.tgz"; - sha512 = "nzEqFVPnD7Yf0HMDv7gCPpf4NSXfjhc+zg3gSwUS4Dad5bWV10B1ujTZW6HxQulW3CBHIg616mTjXIiaimVuEQ=="; + url = "https://registry.npmjs.org/@miniflare/cache/-/cache-2.11.0.tgz"; + sha512 = "L/kc9AzidPwFuk2fwHpAEePi0kNBk6FWUq3ln+9beRCDrPEpfVrDRFpNleF1NFZz5//oeVMuo8F0IVUQGzR7+Q=="; }; }; - "@miniflare/cli-parser-2.10.0" = { + "@miniflare/cli-parser-2.11.0" = { name = "_at_miniflare_slash_cli-parser"; packageName = "@miniflare/cli-parser"; - version = "2.10.0"; + version = "2.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/cli-parser/-/cli-parser-2.10.0.tgz"; - sha512 = "NAiCtqlHTUKCmV+Jl9af+ixGmMhiGhIyIfr/vCdbismNEBxEsrQGg3sQYTNfvCkdHtODurQqayQreFq21OuEow=="; + url = "https://registry.npmjs.org/@miniflare/cli-parser/-/cli-parser-2.11.0.tgz"; + sha512 = "JUmyRzEGAS6CouvXJwBh8p44onfw3KRpfq5JGXEuHModOGjTp6li7PQyCTNPV2Hv/7StAXWnTFGXeAqyDHuTig=="; }; }; - "@miniflare/core-2.10.0" = { + "@miniflare/core-2.11.0" = { name = "_at_miniflare_slash_core"; packageName = "@miniflare/core"; - version = "2.10.0"; + version = "2.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/core/-/core-2.10.0.tgz"; - sha512 = "Jx1M5oXQua0jzsJVdZSq07baVRmGC/6JkglrPQGAlZ7gQ1sunVZzq9fjxFqj0bqfEuYS0Wy6+lvK4rOAHISIjw=="; + url = "https://registry.npmjs.org/@miniflare/core/-/core-2.11.0.tgz"; + sha512 = "UFMFiCG0co36VpZkgFrSBnrxo71uf1x+cjlzzJi3khmMyDlnLu4RuIQsAqvKbYom6fi3G9Q8lTgM7JuOXFyjhw=="; }; }; - "@miniflare/d1-2.10.0" = { + "@miniflare/d1-2.11.0" = { name = "_at_miniflare_slash_d1"; packageName = "@miniflare/d1"; - version = "2.10.0"; + version = "2.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/d1/-/d1-2.10.0.tgz"; - sha512 = "mOYZSmpTthH0tmFTQ+O9G0Q+iDAd7oiUtoIBianlKa9QiqYAoO7EBUPy6kUgDHXapOcN5Ri1u3J5UTpxXvw3qg=="; + url = "https://registry.npmjs.org/@miniflare/d1/-/d1-2.11.0.tgz"; + sha512 = "aDdBVQZ2C0Zs3+Y9ZbRctmuQxozPfpumwJ/6NG6fBadANvune/hW7ddEoxyteIEU9W3IgzVj8s4by4VvasX90A=="; }; }; - "@miniflare/durable-objects-2.10.0" = { + "@miniflare/durable-objects-2.11.0" = { name = "_at_miniflare_slash_durable-objects"; packageName = "@miniflare/durable-objects"; - version = "2.10.0"; + version = "2.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/durable-objects/-/durable-objects-2.10.0.tgz"; - sha512 = "gU45f52gveFtCasm0ixYnt0mHI1lHrPomtmF+89oZGKBzOqUfO5diDs6wmoRSnovOWZCwtmwQGRoorAQN7AmoA=="; + url = "https://registry.npmjs.org/@miniflare/durable-objects/-/durable-objects-2.11.0.tgz"; + sha512 = "0cKJaMgraTEU1b4kqK8cjD2oTeOjA6QU3Y+lWiZT/k1PMHZULovrSFnjii7qZ8npf4VHSIN6XYPxhyxRyEM65Q=="; }; }; - "@miniflare/html-rewriter-2.10.0" = { + "@miniflare/html-rewriter-2.11.0" = { name = "_at_miniflare_slash_html-rewriter"; packageName = "@miniflare/html-rewriter"; - version = "2.10.0"; + version = "2.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/html-rewriter/-/html-rewriter-2.10.0.tgz"; - sha512 = "hCdG99L8+Ros4dn3B5H37PlQPBH0859EoRslzNTd4jzGIkwdiawpJvrvesL8056GjbUjeJN1zh7OPBRuMgyGLw=="; + url = "https://registry.npmjs.org/@miniflare/html-rewriter/-/html-rewriter-2.11.0.tgz"; + sha512 = "olTqmuYTHnoTNtiA0vjQ/ixRfbwgPzDrAUbtXDCYW45VFbHfDVJrJGZX3Jg0HpSlxy86Zclle1SUxGbVDzxsBg=="; }; }; - "@miniflare/http-server-2.10.0" = { + "@miniflare/http-server-2.11.0" = { name = "_at_miniflare_slash_http-server"; packageName = "@miniflare/http-server"; - version = "2.10.0"; + version = "2.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/http-server/-/http-server-2.10.0.tgz"; - sha512 = "cm6hwkONucll93yoY8dteMp//Knvmb7n6zAgeHrtuNYKn//lAL6bRY//VLTttrMmfWxZFi1C7WpOeCv8Mn6/ug=="; + url = "https://registry.npmjs.org/@miniflare/http-server/-/http-server-2.11.0.tgz"; + sha512 = "sMLcrDFzqqAvnQmAUH0hRTo8sBjW79VZYfnIH5FAGSGcKX6kdAGs9RStdYZ4CftQCBAEQScX0KBsMx5FwJRe9Q=="; }; }; - "@miniflare/kv-2.10.0" = { + "@miniflare/kv-2.11.0" = { name = "_at_miniflare_slash_kv"; packageName = "@miniflare/kv"; - version = "2.10.0"; + version = "2.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/kv/-/kv-2.10.0.tgz"; - sha512 = "3+u1lO77FnlS0lQ6b1VgM1E/ZgQ/zy/FU+SdBG5LUOIiv3x522VYHOApeJLnSEo0KtZUB22Ni0fWQM6DgpaREg=="; + url = "https://registry.npmjs.org/@miniflare/kv/-/kv-2.11.0.tgz"; + sha512 = "3m9dL2HBBN170V1JvwjjucR5zl4G3mlcsV6C1E7A2wLl2Z2TWvIx/tSY9hrhkD96dFnejwJ9qmPMbXMMuynhjg=="; }; }; - "@miniflare/queues-2.10.0" = { + "@miniflare/queues-2.11.0" = { name = "_at_miniflare_slash_queues"; packageName = "@miniflare/queues"; - version = "2.10.0"; + version = "2.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/queues/-/queues-2.10.0.tgz"; - sha512 = "WKdO6qI9rfS96KlCjazzPFf+qj6DPov4vONyf18+jzbRjRJh/xwWSk1/1h5A+gDPwVNG8TsNRPh9DW5OKBGNjw=="; + url = "https://registry.npmjs.org/@miniflare/queues/-/queues-2.11.0.tgz"; + sha512 = "fLHjdrNLKhn0LZM/aii/9GsAttFd+lWlGzK8HOg1R0vhfKBwEub4zntjMmOfFbDm1ntc21tdMK7n3ldUphwh5w=="; }; }; - "@miniflare/r2-2.10.0" = { + "@miniflare/r2-2.11.0" = { name = "_at_miniflare_slash_r2"; packageName = "@miniflare/r2"; - version = "2.10.0"; + version = "2.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/r2/-/r2-2.10.0.tgz"; - sha512 = "uC1CCWbwM1t8DdpZgrveg6+CkZLfTq+wUMqs20BC5rCT8u8UyRv6ZVRQ7pTPiswLyt1oYDTXsZJK7tjV0U0zew=="; + url = "https://registry.npmjs.org/@miniflare/r2/-/r2-2.11.0.tgz"; + sha512 = "MKuyJ/gGNsK3eWbGdygvozqcyaZhM3C6NGHvoaZwH503dwN569j5DpatTWiHGFeDeSu64VqcIsGehz05GDUaag=="; }; }; - "@miniflare/runner-vm-2.10.0" = { + "@miniflare/runner-vm-2.11.0" = { name = "_at_miniflare_slash_runner-vm"; packageName = "@miniflare/runner-vm"; - version = "2.10.0"; + version = "2.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/runner-vm/-/runner-vm-2.10.0.tgz"; - sha512 = "oTsHitQdQ1B1kT3G/6n9AEXsMd/sT1D8tLGzc7Xr79ZrxYxwRO0ATF3cdkxk4dUjUqg/RUqvOJV4YjJGyqvctg=="; + url = "https://registry.npmjs.org/@miniflare/runner-vm/-/runner-vm-2.11.0.tgz"; + sha512 = "bkVSuvCf5+VylqN8lTiLxIYqYcKFbl+BywZGwGQndPC/3wh42J00mM0jw4hRbvXgwuBhlUyCVpEXtYlftFFT/g=="; }; }; - "@miniflare/scheduler-2.10.0" = { + "@miniflare/scheduler-2.11.0" = { name = "_at_miniflare_slash_scheduler"; packageName = "@miniflare/scheduler"; - version = "2.10.0"; + version = "2.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/scheduler/-/scheduler-2.10.0.tgz"; - sha512 = "eGt2cZFE/yo585nT8xINQwdbTotZfeRIh6FUWmZkbva1i5SW0zTiOojr5a95vAGBF3TzwWGsUuzJpLhBB69a/g=="; + url = "https://registry.npmjs.org/@miniflare/scheduler/-/scheduler-2.11.0.tgz"; + sha512 = "DPdzINhdWeS99eIicGoluMsD4pLTTAWNQbgCv3CTwgdKA3dxdvMSCkNqZzQLiALzvk9+rSfj46FlH++HE7o7/w=="; }; }; - "@miniflare/shared-2.10.0" = { + "@miniflare/shared-2.11.0" = { name = "_at_miniflare_slash_shared"; packageName = "@miniflare/shared"; - version = "2.10.0"; + version = "2.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/shared/-/shared-2.10.0.tgz"; - sha512 = "GDSweEhJ3nNtStGm6taZGUNytM0QTQ/sjZSedAKyF1/aHRaZUcD9cuKAMgIbSpKfvgGdLMNS7Bhd8jb249TO7g=="; + url = "https://registry.npmjs.org/@miniflare/shared/-/shared-2.11.0.tgz"; + sha512 = "fWMqq3ZkWAg+k7CnyzMV/rZHugwn+/JxvVzCxrtvxzwotTN547THlOxgZe8JAP23U9BiTxOfpTfnLvFEjAmegw=="; }; }; - "@miniflare/sites-2.10.0" = { + "@miniflare/sites-2.11.0" = { name = "_at_miniflare_slash_sites"; packageName = "@miniflare/sites"; - version = "2.10.0"; + version = "2.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/sites/-/sites-2.10.0.tgz"; - sha512 = "1NVAT6+JS2OubL+pOOR5E/6MMddxQHWMi/yIDSumyyfXmj7Sm7n5dE1FvNPetggMP4f8+AjoyT9AYvdd1wkspQ=="; + url = "https://registry.npmjs.org/@miniflare/sites/-/sites-2.11.0.tgz"; + sha512 = "qbefKdWZUJgsdLf+kCw03sn3h/92LZgJAbkOpP6bCrfWkXlJ37EQXO4KWdhn4Ghc7A6GwU1s1I/mdB64B3AewQ=="; }; }; - "@miniflare/storage-file-2.10.0" = { + "@miniflare/storage-file-2.11.0" = { name = "_at_miniflare_slash_storage-file"; packageName = "@miniflare/storage-file"; - version = "2.10.0"; + version = "2.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/storage-file/-/storage-file-2.10.0.tgz"; - sha512 = "K/cRIWiTl4+Z+VO6tl4VfuYXA3NLJgvGPV+BCRYD7uTKuPYHqDMErtD1BI1I7nc3WJhwIXfzJrAR3XXhSKKWQQ=="; + url = "https://registry.npmjs.org/@miniflare/storage-file/-/storage-file-2.11.0.tgz"; + sha512 = "beWF/lTX74x7AiaSB+xQxywPSNdhtEKvqDkRui8eOJ5kqN2o4UaleLKQGgqmCw3WyHRIsckV7If1qpbNiLtWMw=="; }; }; - "@miniflare/storage-memory-2.10.0" = { + "@miniflare/storage-memory-2.11.0" = { name = "_at_miniflare_slash_storage-memory"; packageName = "@miniflare/storage-memory"; - version = "2.10.0"; + version = "2.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/storage-memory/-/storage-memory-2.10.0.tgz"; - sha512 = "ZATU+qZtJ9yG0umgTrOEUi9SU//YyDb8nYXMgqT4JHODYA3RTz1SyyiQSOOz589upJPdu1LN+0j8W24WGRwwxQ=="; + url = "https://registry.npmjs.org/@miniflare/storage-memory/-/storage-memory-2.11.0.tgz"; + sha512 = "s0AhPww7fq/Jz80NbPb+ffhcVRKnfPi7H1dHTRTre2Ud23EVJjAWl2gat42x8NOT/Fu3/o/7A72DWQQJqfO98A=="; }; }; - "@miniflare/storage-redis-2.10.0" = { + "@miniflare/storage-redis-2.11.0" = { name = "_at_miniflare_slash_storage-redis"; packageName = "@miniflare/storage-redis"; - version = "2.10.0"; + version = "2.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/storage-redis/-/storage-redis-2.10.0.tgz"; - sha512 = "Fayi8gf6eFujSO+HpB+PDfZDG2OCksqfgxbQaKo39Q7ltVNY7awY9yZO/gnSUvfByGm/JzKhjKvYc2yXnjn62w=="; + url = "https://registry.npmjs.org/@miniflare/storage-redis/-/storage-redis-2.11.0.tgz"; + sha512 = "cY/ZehxwuhGON0jjlkyKzNcSxffSJ6fJw0EkXalmrwcL3PJCpTLuBogqeZkrSOu2xSr2wk4nC45bt2loka2HoA=="; }; }; - "@miniflare/watcher-2.10.0" = { + "@miniflare/watcher-2.11.0" = { name = "_at_miniflare_slash_watcher"; packageName = "@miniflare/watcher"; - version = "2.10.0"; + version = "2.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/watcher/-/watcher-2.10.0.tgz"; - sha512 = "X9CFYYyszfSYDzs07KhbWC2i08Dpyh3D60fPonYZcoZAfa5h9eATHUdRGvNCdax7awYp4b8bvU8upAI//OPlMg=="; + url = "https://registry.npmjs.org/@miniflare/watcher/-/watcher-2.11.0.tgz"; + sha512 = "RUfjz2iYcsQXLcGySemJl98CJ2iierbWsPGWZhIVZI+NNhROkEy77g/Q+lvP2ATwexG3/dUSfdJ3P8aH+sI4Ig=="; }; }; - "@miniflare/web-sockets-2.10.0" = { + "@miniflare/web-sockets-2.11.0" = { name = "_at_miniflare_slash_web-sockets"; packageName = "@miniflare/web-sockets"; - version = "2.10.0"; + version = "2.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/@miniflare/web-sockets/-/web-sockets-2.10.0.tgz"; - sha512 = "W+PrapdQqNEEFeD+amENgPQWcETGDp7OEh6JAoSzCRhHA0OoMe8DG0xb5a5+2FjGW/J7FFKsv84wkURpmFT4dQ=="; + url = "https://registry.npmjs.org/@miniflare/web-sockets/-/web-sockets-2.11.0.tgz"; + sha512 = "NC8RKrmxrO0hZmwpzn5g4hPGA2VblnFTIBobmWoxuK95eW49zfs7dtE/PyFs+blsGv3CjTIjHVSQ782K+C6HFA=="; }; }; "@mischnic/json-sourcemap-0.1.0" = { @@ -7987,13 +7681,13 @@ let sha512 = "XrC0JzsqQSvOyM3t04FMLO6z5gCuhPE6k4FXuLK5xf52ZbdvcFe1yBmo7meCew9B8G2f0T9iu9t3kfTYRYROgA=="; }; }; - "@nestjs/schematics-9.0.3" = { + "@nestjs/schematics-9.0.4" = { name = "_at_nestjs_slash_schematics"; packageName = "@nestjs/schematics"; - version = "9.0.3"; + version = "9.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@nestjs/schematics/-/schematics-9.0.3.tgz"; - sha512 = "kZrU/lrpVd2cnK8I3ibDb3Wi1ppl3wX3U3lVWoL+DzRRoezWKkh8upEL4q0koKmuXnsmLiu3UPxFeMOrJV7TSA=="; + url = "https://registry.npmjs.org/@nestjs/schematics/-/schematics-9.0.4.tgz"; + sha512 = "egurCfAc4e5i1r2TmeAF0UrOKejFmT5oTdv4b7HcOVPupc3QGU7CbEfGleL3mkM5AjrixTQeMxU9bJ00ttAbGg=="; }; }; "@netflix/nerror-1.1.3" = { @@ -8005,15 +7699,6 @@ let sha512 = "b+MGNyP9/LXkapreJzNUzcvuzZslj/RGgdVVJ16P2wSlYatfLycPObImqVJSmNAdyeShvNeM/pl3sVZsObFueg=="; }; }; - "@nicolo-ribaudo/eslint-scope-5-internals-5.1.1-v1" = { - name = "_at_nicolo-ribaudo_slash_eslint-scope-5-internals"; - packageName = "@nicolo-ribaudo/eslint-scope-5-internals"; - version = "5.1.1-v1"; - src = fetchurl { - url = "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz"; - sha512 = "54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg=="; - }; - }; "@node-ipc/js-queue-2.0.3" = { name = "_at_node-ipc_slash_js-queue"; packageName = "@node-ipc/js-queue"; @@ -8077,130 +7762,130 @@ let sha512 = "zhxmFk48QEC4coBN0G0JDHt727+BlZS2QZarWs9hLeNDBdhjlU58RY0lhDgqODu/Z3JvBmIdPhCtDcvHpe4zmw=="; }; }; - "@node-rs/crc32-1.5.1" = { + "@node-rs/crc32-1.6.0" = { name = "_at_node-rs_slash_crc32"; packageName = "@node-rs/crc32"; - version = "1.5.1"; + version = "1.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32/-/crc32-1.5.1.tgz"; - sha512 = "hq+gKqI4nmPwTVumCoknw3JyWzYCcwjIVOVAtdQlhueqqkvLLxXueBfA4e/6hAZwZhrGbvlccuKCil+q8yeLEw=="; + url = "https://registry.npmjs.org/@node-rs/crc32/-/crc32-1.6.0.tgz"; + sha512 = "B21ivhDp8IKhEaxOZ/H3gdtDVyFHmnHudfGMeTysLj2arRpntCIoxyL0pMXz7g4kf6FupzvNESHb8557LvCWHA=="; }; }; - "@node-rs/crc32-android-arm-eabi-1.5.1" = { + "@node-rs/crc32-android-arm-eabi-1.6.0" = { name = "_at_node-rs_slash_crc32-android-arm-eabi"; packageName = "@node-rs/crc32-android-arm-eabi"; - version = "1.5.1"; + version = "1.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-android-arm-eabi/-/crc32-android-arm-eabi-1.5.1.tgz"; - sha512 = "F1yUl/6arGr+zG0bxvAaJ39M15E8X7PkWBeVZzYctEvs67txCUddLY10tyuG7OQky2cVCHC7wGZZvgrnWIIqeg=="; + url = "https://registry.npmjs.org/@node-rs/crc32-android-arm-eabi/-/crc32-android-arm-eabi-1.6.0.tgz"; + sha512 = "ZxWoWfEaKJ4k9x9IRSzZwPff1xTbeTbTTWOXFgnW0myVqFRF4toGiRK3uJnj7of47SsVwjZn1XrO2snLbo77Bg=="; }; }; - "@node-rs/crc32-android-arm64-1.5.1" = { + "@node-rs/crc32-android-arm64-1.6.0" = { name = "_at_node-rs_slash_crc32-android-arm64"; packageName = "@node-rs/crc32-android-arm64"; - version = "1.5.1"; + version = "1.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-android-arm64/-/crc32-android-arm64-1.5.1.tgz"; - sha512 = "pdSaFLNl9qGVk/5Q6CMp89V7+W+CxHNDrN/fNVZq9VilgNrLhJW7HeQIhKa8Sa+wZ3vENP8mc79B/WbujyfA3Q=="; + url = "https://registry.npmjs.org/@node-rs/crc32-android-arm64/-/crc32-android-arm64-1.6.0.tgz"; + sha512 = "DyeB3uzMD3Ctfr3dZzLwfy6zDK5GFdaqgCElILwx7S5tMeqlEpLxeAqMFoiovq98+0G+QHhNlAikfDJWDYTmFA=="; }; }; - "@node-rs/crc32-darwin-arm64-1.5.1" = { + "@node-rs/crc32-darwin-arm64-1.6.0" = { name = "_at_node-rs_slash_crc32-darwin-arm64"; packageName = "@node-rs/crc32-darwin-arm64"; - version = "1.5.1"; + version = "1.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-darwin-arm64/-/crc32-darwin-arm64-1.5.1.tgz"; - sha512 = "jplUknfG4/LGr7XdcsLdM14w0yHq7zzu+80MKJFZwWzdeQBhtbXYrkY8fzp7Ih+l1Uru72R+Tx2AMNxgjBiUew=="; + url = "https://registry.npmjs.org/@node-rs/crc32-darwin-arm64/-/crc32-darwin-arm64-1.6.0.tgz"; + sha512 = "Mb4fx1EtEc163ZuuU1kOYJpgQDiKllnjX5WW0k5JFL17MwOwC2AiZfiIVxqjqDUZ6kim8Fvg3205zxNpYcy5Xw=="; }; }; - "@node-rs/crc32-darwin-x64-1.5.1" = { + "@node-rs/crc32-darwin-x64-1.6.0" = { name = "_at_node-rs_slash_crc32-darwin-x64"; packageName = "@node-rs/crc32-darwin-x64"; - version = "1.5.1"; + version = "1.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-darwin-x64/-/crc32-darwin-x64-1.5.1.tgz"; - sha512 = "shonLEeViiUBdl0yZ2LU3rZxmdmNGDa+nnlcO3n3fvQdk4DwQigXIBhJbV+6w1Xvjnrof4iuO9wYZoMCQDCoBw=="; + url = "https://registry.npmjs.org/@node-rs/crc32-darwin-x64/-/crc32-darwin-x64-1.6.0.tgz"; + sha512 = "lizIV4mxI5jw3vviHBLRM6Q8u0iizeIKHx2QKTEiD4b2KMZrce1kv0QAnz/RNxZ47ajRe3cp5B8KceSm8/qcng=="; }; }; - "@node-rs/crc32-freebsd-x64-1.5.1" = { + "@node-rs/crc32-freebsd-x64-1.6.0" = { name = "_at_node-rs_slash_crc32-freebsd-x64"; packageName = "@node-rs/crc32-freebsd-x64"; - version = "1.5.1"; + version = "1.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-freebsd-x64/-/crc32-freebsd-x64-1.5.1.tgz"; - sha512 = "adCp3Sl/b96GmCcqONCYnkgymwr1R2lFEOSIKXpwdmB0QbygqyHyt9WQTrWqESgtvMJxxFF973wFnUbSzTz6Ow=="; + url = "https://registry.npmjs.org/@node-rs/crc32-freebsd-x64/-/crc32-freebsd-x64-1.6.0.tgz"; + sha512 = "mdl9K0JixpprjfJQ3gEfyvwH4kzklqROmoDoDRX2DiF86c6KVaVVN2w33PgHXfsJo36taime2+pMaHexae+lNQ=="; }; }; - "@node-rs/crc32-linux-arm-gnueabihf-1.5.1" = { + "@node-rs/crc32-linux-arm-gnueabihf-1.6.0" = { name = "_at_node-rs_slash_crc32-linux-arm-gnueabihf"; packageName = "@node-rs/crc32-linux-arm-gnueabihf"; - version = "1.5.1"; + version = "1.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-linux-arm-gnueabihf/-/crc32-linux-arm-gnueabihf-1.5.1.tgz"; - sha512 = "gWNtzBPBDrMBuz+nRtbp6ziJSkUo2RopwAZ1Yg6sKRjyZx4aa0DNXOxVJkr5ZQNuvopBaFet42XYqS9SuoTMrQ=="; + url = "https://registry.npmjs.org/@node-rs/crc32-linux-arm-gnueabihf/-/crc32-linux-arm-gnueabihf-1.6.0.tgz"; + sha512 = "fyyQi2qiGLqy5bMdzG+Y4p+/nRvjOG92t6qZBFmdWrcQnj0jxfPqORPNUYvSGfvDW7PgUI/+IAo8bpgNt6GbzA=="; }; }; - "@node-rs/crc32-linux-arm64-gnu-1.5.1" = { + "@node-rs/crc32-linux-arm64-gnu-1.6.0" = { name = "_at_node-rs_slash_crc32-linux-arm64-gnu"; packageName = "@node-rs/crc32-linux-arm64-gnu"; - version = "1.5.1"; + version = "1.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-linux-arm64-gnu/-/crc32-linux-arm64-gnu-1.5.1.tgz"; - sha512 = "8DmoVY0acSlSz1A3aWQmvVPOHNfWCGvfocV9QTF9xdhzrJDZFCLcSFggsYAYmaFL6RDU8o8uY9DOfA+DSKdUsQ=="; + url = "https://registry.npmjs.org/@node-rs/crc32-linux-arm64-gnu/-/crc32-linux-arm64-gnu-1.6.0.tgz"; + sha512 = "NhFPUDz/A8C/su/kNrtG0FgtQJuxW1KwIUJySAinGVDDqSWUcKr+jeFMsYKWU331AIJW6uCMIaJowE2tQ0lnBQ=="; }; }; - "@node-rs/crc32-linux-arm64-musl-1.5.1" = { + "@node-rs/crc32-linux-arm64-musl-1.6.0" = { name = "_at_node-rs_slash_crc32-linux-arm64-musl"; packageName = "@node-rs/crc32-linux-arm64-musl"; - version = "1.5.1"; + version = "1.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-linux-arm64-musl/-/crc32-linux-arm64-musl-1.5.1.tgz"; - sha512 = "bgHXkt5TMUXcD52FOtwvQh5AjSgCIXPgUclm1WuDN1MbXZXdih3fO8H1wvBerHv1L4dYfzQJxHxkDmGytDjHTw=="; + url = "https://registry.npmjs.org/@node-rs/crc32-linux-arm64-musl/-/crc32-linux-arm64-musl-1.6.0.tgz"; + sha512 = "N35CF21n07JkKAAEp+6E+ARrOUsk6Z5In/h16wDArTagMb+u6VxByc97G01htnb+G0ZpZ0q8MLWuH29gbypOGg=="; }; }; - "@node-rs/crc32-linux-x64-gnu-1.5.1" = { + "@node-rs/crc32-linux-x64-gnu-1.6.0" = { name = "_at_node-rs_slash_crc32-linux-x64-gnu"; packageName = "@node-rs/crc32-linux-x64-gnu"; - version = "1.5.1"; + version = "1.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-linux-x64-gnu/-/crc32-linux-x64-gnu-1.5.1.tgz"; - sha512 = "7A5b6xh8jdDzd1xVlS9mrzyvbrnWL5z9VgJy6lcm222Ae1va/uxWdQpPxhl9aqIQbvi++6nS+FfewKZUYbaZQg=="; + url = "https://registry.npmjs.org/@node-rs/crc32-linux-x64-gnu/-/crc32-linux-x64-gnu-1.6.0.tgz"; + sha512 = "6cZIh4un/IlKHJKWQS1KPbMIEkfK47cHd4m7YkwNjwXiT62hzkyfWA+D/io0L8glqUyGAcStQGv8fpRngIkdkw=="; }; }; - "@node-rs/crc32-linux-x64-musl-1.5.1" = { + "@node-rs/crc32-linux-x64-musl-1.6.0" = { name = "_at_node-rs_slash_crc32-linux-x64-musl"; packageName = "@node-rs/crc32-linux-x64-musl"; - version = "1.5.1"; + version = "1.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-linux-x64-musl/-/crc32-linux-x64-musl-1.5.1.tgz"; - sha512 = "XcW/gBkq7NiARM9XqNDK9P/ukzlRCmsD2Yp0U7eIl3lh6kYEpFynySTU5KbTu6zwAKy4ni/OdOkZFcKDkvTS1w=="; + url = "https://registry.npmjs.org/@node-rs/crc32-linux-x64-musl/-/crc32-linux-x64-musl-1.6.0.tgz"; + sha512 = "DKd2SwAsf5RJW9BHZqLW0NAKxCRFL3GDEzuUm43wn53XEcL6hmezCUtmNHOmdehIiwNyGEruBh1kekH3JPSYYw=="; }; }; - "@node-rs/crc32-win32-arm64-msvc-1.5.1" = { + "@node-rs/crc32-win32-arm64-msvc-1.6.0" = { name = "_at_node-rs_slash_crc32-win32-arm64-msvc"; packageName = "@node-rs/crc32-win32-arm64-msvc"; - version = "1.5.1"; + version = "1.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-win32-arm64-msvc/-/crc32-win32-arm64-msvc-1.5.1.tgz"; - sha512 = "MB1zZChv7LUvgQAW0m7RloFIIWGfzmgj63nuDkzm3ImTkL/VmJuQ3hAD4jWctWd0edX+WoZdqI9YDvggnXbUmg=="; + url = "https://registry.npmjs.org/@node-rs/crc32-win32-arm64-msvc/-/crc32-win32-arm64-msvc-1.6.0.tgz"; + sha512 = "OzO+4V426M1qIJWGkIJwbhJ38MdIA/AJvsoW3O5t/zkabtbZVNROJi2aWObxQvUmb+kowItzNj4OqcWz0ZEqMQ=="; }; }; - "@node-rs/crc32-win32-ia32-msvc-1.5.1" = { + "@node-rs/crc32-win32-ia32-msvc-1.6.0" = { name = "_at_node-rs_slash_crc32-win32-ia32-msvc"; packageName = "@node-rs/crc32-win32-ia32-msvc"; - version = "1.5.1"; + version = "1.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-win32-ia32-msvc/-/crc32-win32-ia32-msvc-1.5.1.tgz"; - sha512 = "OByR728WARMiPJQHnGnveQum2cXEqZqB4AsQwuaaonkFWQFVyr6HKEF9+icCtX4rnRw5GHWOGXojEGUO5FR/Iw=="; + url = "https://registry.npmjs.org/@node-rs/crc32-win32-ia32-msvc/-/crc32-win32-ia32-msvc-1.6.0.tgz"; + sha512 = "uONkPIn9Lxdq34CSJFeYvy1npzgEXMbfukoyTLikXi3TlTb+tTqRKLZtUx3/ypuRg+t3ka9iVeywFqhWfBYIFg=="; }; }; - "@node-rs/crc32-win32-x64-msvc-1.5.1" = { + "@node-rs/crc32-win32-x64-msvc-1.6.0" = { name = "_at_node-rs_slash_crc32-win32-x64-msvc"; packageName = "@node-rs/crc32-win32-x64-msvc"; - version = "1.5.1"; + version = "1.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/@node-rs/crc32-win32-x64-msvc/-/crc32-win32-x64-msvc-1.5.1.tgz"; - sha512 = "Jl3gosWZLo/VyLMWj87eqUT6nBqLsl9+7PPSF5bc7QCCayOrYEcA70zD47u3UnwK9Qae8E7318H0FhGh+W87Bw=="; + url = "https://registry.npmjs.org/@node-rs/crc32-win32-x64-msvc/-/crc32-win32-x64-msvc-1.6.0.tgz"; + sha512 = "raJJVGbP/KbffTAbIW5hl9/N4VMj9zIonskJy2xVEmo/B6TZtkjhRcaXZvgWqjVqh2SzO94HCphygD1qxT4EYw=="; }; }; "@nodelib/fs.scandir-2.1.5" = { @@ -8266,13 +7951,13 @@ let sha512 = "3BGrt6FLjqM6br5AhWRKTr3u5GIVkjRYeAFrMp3HjnfICrg4xOrVRwFavKT6tsp++bq5dluL5t8ME/Nha/6c1Q=="; }; }; - "@npmcli/config-6.1.0" = { + "@npmcli/config-6.1.1" = { name = "_at_npmcli_slash_config"; packageName = "@npmcli/config"; - version = "6.1.0"; + version = "6.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/@npmcli/config/-/config-6.1.0.tgz"; - sha512 = "fPVlvy6MmSN0zgJU1TOD0fimnKVmcFpK3WuPyIQfNtCE+HMkFDN1mIKBKhUNow5QYHmCzMvGbu7pAgwdlSoaQA=="; + url = "https://registry.npmjs.org/@npmcli/config/-/config-6.1.1.tgz"; + sha512 = "R09ig+5UGrA1lxTWMyfyUwwzR9OAtJwMHGF4opu0/ysM3nMujzVvp0DVD/BnbmcQ0w6jM4IrsCSsq6ZdcvLW/Q=="; }; }; "@npmcli/fs-1.1.1" = { @@ -8527,31 +8212,31 @@ let sha512 = "ql+AbRur1TeOdl1FY+RAwGW9fcr4ZwiVKabdvm93mujGREVuVLbdkXRJDrkTXSdCjaxYydr1wlA2v67jxWG5BQ=="; }; }; - "@nrwl/cli-15.4.0" = { + "@nrwl/cli-15.5.2" = { name = "_at_nrwl_slash_cli"; packageName = "@nrwl/cli"; - version = "15.4.0"; + version = "15.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/@nrwl/cli/-/cli-15.4.0.tgz"; - sha512 = "19rP6GqlbLTLFJakhKcfHI8/TXTswnT4D6G4QgjbzKpSj4KRXTnOrv644bOouEsZJ7JIm+NaaJQCfEYpJ+7r1Q=="; + url = "https://registry.npmjs.org/@nrwl/cli/-/cli-15.5.2.tgz"; + sha512 = "T0nN2hYDtkY9SsbtZqFwRSYC8Td2zPqQ7dj6FrwvjFGbHLAxN6rknVPPKN4S7Dt6feXX1Woe8XYwWouk9Cg6nw=="; }; }; - "@nrwl/devkit-15.4.0" = { + "@nrwl/devkit-15.5.2" = { name = "_at_nrwl_slash_devkit"; packageName = "@nrwl/devkit"; - version = "15.4.0"; + version = "15.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/@nrwl/devkit/-/devkit-15.4.0.tgz"; - sha512 = "aLMg4DBfstmJRFavH1SFBMdso1IVDewLsZi9xq3R+ISWP+AK9sf0JvhYqam9jRf8DSW8GLbp2ziPbnnv+d+uHw=="; + url = "https://registry.npmjs.org/@nrwl/devkit/-/devkit-15.5.2.tgz"; + sha512 = "rvxuiYVpGDB9RzjOAWTNm7IBPwuYG6kL24LkJMUS8gCNqLBNNlYUsdkpa0PLRt5eNeGLKqpSDB8BpA+e1ty/zA=="; }; }; - "@nrwl/tao-15.4.0" = { + "@nrwl/tao-15.5.2" = { name = "_at_nrwl_slash_tao"; packageName = "@nrwl/tao"; - version = "15.4.0"; + version = "15.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/@nrwl/tao/-/tao-15.4.0.tgz"; - sha512 = "mwMmBYOCHe0yl8UrI8VRSplNxTPxrgOZA5OWRoRHLPLoHeyng2ZZxPnfxp3ZVLPFKCxwETHcBwNKKTlx+qUgFA=="; + url = "https://registry.npmjs.org/@nrwl/tao/-/tao-15.5.2.tgz"; + sha512 = "1thpCNcdpHfTf+o3p+VB6v8TEj6to3YVhA9d+3VhDKN9mq/RVcoMQQRIAgNOKbYWYNo8eC8MvuNqxgRPz2ESyg=="; }; }; "@oclif/command-1.8.0" = { @@ -8563,13 +8248,13 @@ let sha512 = "5vwpq6kbvwkQwKqAoOU3L72GZ3Ta8RRrewKj9OJRolx28KLJJ8Dg9Rf7obRwt5jQA9bkYd8gqzMTrI7H3xLfaw=="; }; }; - "@oclif/command-1.8.20" = { + "@oclif/command-1.8.21" = { name = "_at_oclif_slash_command"; packageName = "@oclif/command"; - version = "1.8.20"; + version = "1.8.21"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/command/-/command-1.8.20.tgz"; - sha512 = "BHM9byujY0kf0PiRorIyp99K50cA3i6Hyro0+TPpFFx+4QM+PyQ5vMHO/TG5wkEP8tIivNRs24bF8QVyJru25g=="; + url = "https://registry.npmjs.org/@oclif/command/-/command-1.8.21.tgz"; + sha512 = "kIDrRIbAcicVl+CWMzXeZkg5dRNuF1VI7koyFTAQMNYwRNZpeya5x7XDPr+fh7rDiBL7psnxc3B1+zoOWj96lQ=="; }; }; "@oclif/config-1.17.0" = { @@ -8599,13 +8284,13 @@ let sha512 = "OWhCpdu4QqggOPX1YPZ4XVmLLRX+lhGjXV6RNA7sogOwLqlEmSslnN/lhR5dkhcWZbKWBQH29YCrB3LDPRu/IA=="; }; }; - "@oclif/core-1.19.2" = { + "@oclif/core-1.23.2" = { name = "_at_oclif_slash_core"; packageName = "@oclif/core"; - version = "1.19.2"; + version = "1.23.2"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/core/-/core-1.19.2.tgz"; - sha512 = "n5ni/NNR6+I0IQXVGoLKdrdw6IS3WH/R/hw6WX8ERfLMZACrNSuJFD9EmBZkztyRkmiQ2L06ULazW5bJn5Shog=="; + url = "https://registry.npmjs.org/@oclif/core/-/core-1.23.2.tgz"; + sha512 = "NdaOaUDTRc6g1yTkOAKiEVOiQhc5CNcWNXa0QF4IS4yTjNqp4DOzgtF9Dwe585nPEKzSbTBiz1wyLOa4qIHSRQ=="; }; }; "@oclif/errors-1.3.4" = { @@ -8635,13 +8320,13 @@ let sha512 = "fYaU4aDceETd89KXP+3cLyg9EHZsLD3RxF2IU9yxahhBpspWjkWi3Dy3bTgcwZ3V47BgxQaGapzJWDM33XIVDQ=="; }; }; - "@oclif/help-1.0.4" = { + "@oclif/help-1.0.5" = { name = "_at_oclif_slash_help"; packageName = "@oclif/help"; - version = "1.0.4"; + version = "1.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/help/-/help-1.0.4.tgz"; - sha512 = "w3xsdZj1af/dFN7oCmvAHbHRj6L0SOO5uGXEve0LLroAJSM3DeEpzgNMjxS5RTV2gVC4RmJ/rTqmp0SRaXGiTA=="; + url = "https://registry.npmjs.org/@oclif/help/-/help-1.0.5.tgz"; + sha512 = "77ZXqVXcd+bQ6EafN56KbL4PbNtZM/Lq4GQElekNav+CPIgPNKT3AtMTQrc0fWke6bb/BTLB+1Fu1gWgx643jQ=="; }; }; "@oclif/linewrap-1.0.0" = { @@ -8671,13 +8356,13 @@ let sha512 = "Afchpdd8FNfx9GaU/1D9IzyfiXvjfGybgzQ6G4GTFvPO0/hLdkXX3YyYq+SnxE6/bCrhg4pleiB+GuJACmmkEA=="; }; }; - "@oclif/plugin-autocomplete-1.3.4" = { + "@oclif/plugin-autocomplete-1.3.10" = { name = "_at_oclif_slash_plugin-autocomplete"; packageName = "@oclif/plugin-autocomplete"; - version = "1.3.4"; + version = "1.3.10"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-1.3.4.tgz"; - sha512 = "qlD1jlx/5PCGTpF7snKYDEQlLF2pcqr3P2Gw+JWyFnkrjWCLMGDnwaDL4ulruDp3sBxtKNY73sywmKJxQ8F76Q=="; + url = "https://registry.npmjs.org/@oclif/plugin-autocomplete/-/plugin-autocomplete-1.3.10.tgz"; + sha512 = "oQl7ZqXhXJUOH26mDPcqcMGmcdIoK/uQPSpUBrfLa1iaQ30slTs0T7KOzg+vwKuPqIIF1nTCPuH67lE8GvUPTw=="; }; }; "@oclif/plugin-help-1.2.11" = { @@ -8716,13 +8401,13 @@ let sha512 = "60CHpq+eqnTxLZQ4PGHYNwUX572hgpMHGPtTWMjdTMsAvlm69lZV/4ly6O3sAYkomo4NggGcomrDpBe34rxUqw=="; }; }; - "@oclif/screen-3.0.3" = { + "@oclif/screen-3.0.4" = { name = "_at_oclif_slash_screen"; packageName = "@oclif/screen"; - version = "3.0.3"; + version = "3.0.4"; src = fetchurl { - url = "https://registry.npmjs.org/@oclif/screen/-/screen-3.0.3.tgz"; - sha512 = "KX8gMYA9ujBPOd1HFsV9e0iEx7Uoj8AG/3YsW4TtWQTg4lJvr82qNm7o/cFQfYRIt+jw7Ew/4oL4A22zOT+IRA=="; + url = "https://registry.npmjs.org/@oclif/screen/-/screen-3.0.4.tgz"; + sha512 = "IMsTN1dXEXaOSre27j/ywGbBjrzx0FNd1XmuhCWCB9NTPrhWI1Ifbz+YLSEcstfQfocYsrbrIessxXb2oon4lA=="; }; }; "@octokit/auth-token-2.5.0" = { @@ -8950,13 +8635,13 @@ let sha512 = "eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg=="; }; }; - "@octokit/types-8.0.0" = { + "@octokit/types-8.1.1" = { name = "_at_octokit_slash_types"; packageName = "@octokit/types"; - version = "8.0.0"; + version = "8.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/types/-/types-8.0.0.tgz"; - sha512 = "65/TPpOJP1i3K4lBJMnWqPUJ6zuOtzhtagDvydAWbEXpbFYA0oMKKyLb95NFZZP0lSh/4b6K+DQlzvYQJQQePg=="; + url = "https://registry.npmjs.org/@octokit/types/-/types-8.1.1.tgz"; + sha512 = "7tjk+6DyhYAmei8FOEwPfGKc0VE1x56CKPJ+eE44zhDbOyMT+9yan8apfQFxo8oEFsy+0O7PiBtH8w0Yo0Y9Kw=="; }; }; "@opencensus/core-0.0.8" = { @@ -9004,13 +8689,40 @@ let sha512 = "qe+uWtCJetuG78KhfiQyEA+ZciC/qeECXRj+LCm4m0s98qR2wPwYHRI1u8aFbtkN6G4ZMyKN+opY++fJS5l3vg=="; }; }; - "@opentelemetry/api-1.3.0" = { + "@opentelemetry/api-1.4.0" = { name = "_at_opentelemetry_slash_api"; packageName = "@opentelemetry/api"; - version = "1.3.0"; + version = "1.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@opentelemetry/api/-/api-1.3.0.tgz"; - sha512 = "YveTnGNsFFixTKJz09Oi4zYkiLT5af3WpZDu4aIUM7xX+2bHAkOJayFTVQd6zB8kkWPpbua4Ha6Ql00grdLlJQ=="; + url = "https://registry.npmjs.org/@opentelemetry/api/-/api-1.4.0.tgz"; + sha512 = "IgMK9i3sFGNUqPMbjABm0G26g0QCKCUBfglhQ7rQq6WcxbKfEHRcmwsoER4hZcuYqJgkYn2OeuoJIv7Jsftp7g=="; + }; + }; + "@opentelemetry/core-1.9.0" = { + name = "_at_opentelemetry_slash_core"; + packageName = "@opentelemetry/core"; + version = "1.9.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@opentelemetry/core/-/core-1.9.0.tgz"; + sha512 = "Koy1ApRUp5DB5KpOqhDk0JjO9x6QeEkmcePl8qQDsXZGF4MuHUBShXibd+J2tRNckTsvgEHi1uEuUckDgN+c/A=="; + }; + }; + "@opentelemetry/resources-1.9.0" = { + name = "_at_opentelemetry_slash_resources"; + packageName = "@opentelemetry/resources"; + version = "1.9.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.9.0.tgz"; + sha512 = "zCyien0p3XWarU6zv72c/JZ6QlG5QW/hc61Nh5TSR1K9ndnljzAGrH55x4nfyQdubfoh9QxLNh9FXH0fWK6vcg=="; + }; + }; + "@opentelemetry/sdk-trace-base-1.9.0" = { + name = "_at_opentelemetry_slash_sdk-trace-base"; + packageName = "@opentelemetry/sdk-trace-base"; + version = "1.9.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.9.0.tgz"; + sha512 = "glNgtJjxAIrDku8DG5Xu3nBK25rT+hkyg7yuXh8RUurp/4BcsXjMyVqpyJvb2kg+lxAX73VJBhncRKGHn9t8QQ=="; }; }; "@opentelemetry/semantic-conventions-1.3.1" = { @@ -9022,6 +8734,69 @@ let sha512 = "wU5J8rUoo32oSef/rFpOT1HIjLjAv3qIDHkw1QIhODV3OpAVHi5oVzlouozg9obUmZKtbZ0qUe/m7FP0y0yBzA=="; }; }; + "@opentelemetry/semantic-conventions-1.9.0" = { + name = "_at_opentelemetry_slash_semantic-conventions"; + packageName = "@opentelemetry/semantic-conventions"; + version = "1.9.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.9.0.tgz"; + sha512 = "po7penSfQ/Z8352lRVDpaBrd9znwA5mHGqXR7nDEiVnxkDFkBIhVf/tKeAJDIq/erFpcRowKFeCsr5eqqcSyFQ=="; + }; + }; + "@orval/angular-6.11.0" = { + name = "_at_orval_slash_angular"; + packageName = "@orval/angular"; + version = "6.11.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@orval/angular/-/angular-6.11.0.tgz"; + sha512 = "4mYJ1KIloPn8W+ZWRszNJBxiV2AE2mCQ3KfQnUa/jh4YllOOjWto03GA3sr3IRGdJXwlN3/Esp6dQNQjto5Z+w=="; + }; + }; + "@orval/axios-6.11.0" = { + name = "_at_orval_slash_axios"; + packageName = "@orval/axios"; + version = "6.11.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@orval/axios/-/axios-6.11.0.tgz"; + sha512 = "SSuWbS68v/nfcvxDdXntyPxRY0lCAbgMwnZ+V0cnq00G9Lgljiql2gPKOO3cnQhmpAiYIf8Zs6skSeIzrXxfiA=="; + }; + }; + "@orval/core-6.11.0" = { + name = "_at_orval_slash_core"; + packageName = "@orval/core"; + version = "6.11.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@orval/core/-/core-6.11.0.tgz"; + sha512 = "PbH2PbpHbnLXrQWvLHUAm0lZHiD+Np7IGcVTLyXdDE9lGDpMY7jVxMLAB2aYhTZiSiyI6tIhSeaXPOykgVL8+g=="; + }; + }; + "@orval/msw-6.11.0" = { + name = "_at_orval_slash_msw"; + packageName = "@orval/msw"; + version = "6.11.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@orval/msw/-/msw-6.11.0.tgz"; + sha512 = "g9oHX6IgqEQIJS6J0SJa3dUkDeZe/Iv6dgZ5Y0LorOgYfduAcfVjRepG/vnNu6mxmHbh5d2ZrxrSDZmxmuWU6Q=="; + }; + }; + "@orval/query-6.11.0" = { + name = "_at_orval_slash_query"; + packageName = "@orval/query"; + version = "6.11.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@orval/query/-/query-6.11.0.tgz"; + sha512 = "nYgHVpEc3reHGryWhyap74+NoZlCAqZh0aULKcJD5jYCIXn8+SNt3kEeB1tjIzTbiESc5DGa3pUzEP8hJ7FN9Q=="; + }; + }; + "@orval/swr-6.11.0" = { + name = "_at_orval_slash_swr"; + packageName = "@orval/swr"; + version = "6.11.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@orval/swr/-/swr-6.11.0.tgz"; + sha512 = "ONwjmk6Hxt+ozVVZast4pvc/hnhBzC+KkWPmpdFdoyrpgvIkAsulkuWQV12Sgo3KwSDH5abIOvexgeha7UaZxA=="; + }; + }; "@ot-builder/bin-composite-types-1.5.5" = { name = "_at_ot-builder_slash_bin-composite-types"; packageName = "@ot-builder/bin-composite-types"; @@ -9832,13 +9607,13 @@ let sha512 = "cTDi+FUDBIUOBKEtj+nhiJ71AZVlkAsQFuGQTun5tV9mwQBQgZvhCzG+URPQc8myeN32yRVZEfVAPCs1RW+Jvg=="; }; }; - "@parcel/watcher-2.0.7" = { + "@parcel/watcher-2.1.0" = { name = "_at_parcel_slash_watcher"; packageName = "@parcel/watcher"; - version = "2.0.7"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.0.7.tgz"; - sha512 = "gc3hoS6e+2XdIQ4HHljDB1l0Yx2EWh/sBBtCEFNKGSMlwASWeAQsOY/fPbxOBcZ/pg0jBh4Ga+4xHlZc4faAEQ=="; + url = "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.1.0.tgz"; + sha512 = "8s8yYjd19pDSsBpbkOHnT6Z2+UJSuLQx61pCFM0s5wSRvKCEMDjd/cHY3/GI1szHIWbpXpsJdg3V6ISGGx9xDw=="; }; }; "@parcel/workers-1.11.0" = { @@ -10057,22 +9832,22 @@ let sha512 = "2OyvErMeqsJ/K1ZbQ902QowrwqXq+BMmGiL+PGqFzUQ85wmaWj+CobOwWPxBLs/xVGzacJJPt4fWcx4EMoRMkg=="; }; }; - "@prisma/engines-4.8.0" = { + "@prisma/engines-4.9.0" = { name = "_at_prisma_slash_engines"; packageName = "@prisma/engines"; - version = "4.8.0"; + version = "4.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/engines/-/engines-4.8.0.tgz"; - sha512 = "A1Asn2rxZMlLAj1HTyfaCv0VQrLUv034jVay05QlqZg1qiHPeA3/pGTfNMijbsMYCsGVxfWEJuaZZuNxXGMCrA=="; + url = "https://registry.npmjs.org/@prisma/engines/-/engines-4.9.0.tgz"; + sha512 = "t1pt0Gsp+HcgPJrHFc+d/ZSAaKKWar2G/iakrE07yeKPNavDP3iVKPpfXP22OTCHZUWf7OelwKJxQgKAm5hkgw=="; }; }; - "@prisma/prisma-fmt-wasm-4.8.0-61.d6e67a83f971b175a593ccc12e15c4a757f93ffe" = { + "@prisma/prisma-fmt-wasm-4.9.0-42.ceb5c99003b99c9ee2c1d2e618e359c14aef2ea5" = { name = "_at_prisma_slash_prisma-fmt-wasm"; packageName = "@prisma/prisma-fmt-wasm"; - version = "4.8.0-61.d6e67a83f971b175a593ccc12e15c4a757f93ffe"; + version = "4.9.0-42.ceb5c99003b99c9ee2c1d2e618e359c14aef2ea5"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/prisma-fmt-wasm/-/prisma-fmt-wasm-4.8.0-61.d6e67a83f971b175a593ccc12e15c4a757f93ffe.tgz"; - sha512 = "0/X9/6R4HudrfYjKmQXMMckXJ61eZnWLpc8K3rdCWCJPki+9Jzjw7dTM7A2LG3lx/UMiSnLvM4o+/mBVqeBPGg=="; + url = "https://registry.npmjs.org/@prisma/prisma-fmt-wasm/-/prisma-fmt-wasm-4.9.0-42.ceb5c99003b99c9ee2c1d2e618e359c14aef2ea5.tgz"; + sha512 = "G754IrVEiv0OuhD47d16Jzu3yjFzoQobP97N0nqzFnOAsJehn9KiSNiJ/DM4kp3uL+MqcJzb+YW4l8OqrBoV5A=="; }; }; "@protobufjs/aspromise-1.1.2" = { @@ -10165,13 +9940,13 @@ let sha512 = "Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw=="; }; }; - "@putdotio/api-client-8.32.0" = { + "@putdotio/api-client-8.33.0" = { name = "_at_putdotio_slash_api-client"; packageName = "@putdotio/api-client"; - version = "8.32.0"; + version = "8.33.0"; src = fetchurl { - url = "https://registry.npmjs.org/@putdotio/api-client/-/api-client-8.32.0.tgz"; - sha512 = "eo4KiXIvDKpU76VK1pQitIJ6neDd81HUCoUGcH+lAtcfN+amQVp8e9cHfYeEvYMj16sr/8wONqG1GayJP2Fr4g=="; + url = "https://registry.npmjs.org/@putdotio/api-client/-/api-client-8.33.0.tgz"; + sha512 = "8GdqRQGfquU8WX1XNOuHnKqG4PJb2fgfS+7OH2g5wHRPKXdeStVbVYIVFxttwIeIcNPNtvjYHKyWhhWkFImEnQ=="; }; }; "@reach/router-1.3.4" = { @@ -10309,13 +10084,13 @@ let sha512 = "9GWx27t7xWhDIR02PA18nzBdLcKQRgc46xNQvjFkrYk4UOmvKhJ/dawwiX0cCOeetN5LcaaiqQbVOWYK62SGHw=="; }; }; - "@redocly/openapi-core-1.0.0-beta.117" = { + "@redocly/openapi-core-1.0.0-beta.120" = { name = "_at_redocly_slash_openapi-core"; packageName = "@redocly/openapi-core"; - version = "1.0.0-beta.117"; + version = "1.0.0-beta.120"; src = fetchurl { - url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.117.tgz"; - sha512 = "miueGmnDYQuyyHoW5EFAlpR1xcjH3vA9NPf5wXZX5QS647sLeyUq4Ym2ArP96mwvFnyzB3SH07a90OuzR4d8CQ=="; + url = "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.0.0-beta.120.tgz"; + sha512 = "BvasunpVWm5O9F/mW6JmxUqat4XFU5zNnKJkMY6GJ9UYH2UxgKnGaMLWXKtbJEOBnMT12S/p9yeqrQHnk8rGhQ=="; }; }; "@repeaterjs/repeater-3.0.4" = { @@ -10345,6 +10120,15 @@ let sha512 = "GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg=="; }; }; + "@rollup/pluginutils-4.2.1" = { + name = "_at_rollup_slash_pluginutils"; + packageName = "@rollup/pluginutils"; + version = "4.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz"; + sha512 = "iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ=="; + }; + }; "@rushstack/heft-config-file-0.11.4" = { name = "_at_rushstack_slash_heft-config-file"; packageName = "@rushstack/heft-config-file"; @@ -10462,31 +10246,31 @@ let sha512 = "c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ=="; }; }; - "@sap/hana-client-2.15.17" = { + "@sap/hana-client-2.15.19" = { name = "_at_sap_slash_hana-client"; packageName = "@sap/hana-client"; - version = "2.15.17"; + version = "2.15.19"; src = fetchurl { - url = "https://registry.npmjs.org/@sap/hana-client/-/hana-client-2.15.17.tgz"; - sha512 = "uJV+noUGsr0ag8p9nDxIExpIcwHiQDUCPG4mSQWMgo56vxSAdcwKmie1z2OVdqRPO//AysNYhFAHzDiyNf5yqg=="; + url = "https://registry.npmjs.org/@sap/hana-client/-/hana-client-2.15.19.tgz"; + sha512 = "DJKkAvJf8ZpkTIZlxi29d/jRvraweA2I2KIqa7eSNhXuDnau8bIQBkOhSpnhVUckR8i/W8SNYdqwiHlUm5t9Lw=="; }; }; - "@schematics/angular-15.0.4" = { + "@schematics/angular-15.1.1" = { name = "_at_schematics_slash_angular"; packageName = "@schematics/angular"; - version = "15.0.4"; + version = "15.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/@schematics/angular/-/angular-15.0.4.tgz"; - sha512 = "4l4WZlr9MnhXo2B7eLczttgkeq8Agm3zfiX0trYkOdYqLtzOKxPiI+RrZSsfIDmmLSE1EillZ3PtDImMzAgQPg=="; + url = "https://registry.npmjs.org/@schematics/angular/-/angular-15.1.1.tgz"; + sha512 = "Ujo4vt/r3WzIhGn2I2Lt3eOTWSsVxoXfcXxFRuxl3cil/9mH1X66hDTQ2DVYiXPFGcQMjcNaDwlQxyor4yGbqA=="; }; }; - "@segment/ajv-human-errors-2.1.2" = { + "@segment/ajv-human-errors-2.2.0" = { name = "_at_segment_slash_ajv-human-errors"; packageName = "@segment/ajv-human-errors"; - version = "2.1.2"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/@segment/ajv-human-errors/-/ajv-human-errors-2.1.2.tgz"; - sha512 = "d1uQndRFLRO01+xW1y5m+joxDgHf5SLJ70YCY2ArLoo2FJ50o6AoX2mEbuGvnKz/IdwnvDugm9Ti3mZQkW1OoA=="; + url = "https://registry.npmjs.org/@segment/ajv-human-errors/-/ajv-human-errors-2.2.0.tgz"; + sha512 = "nSSEprJK5HPnu/MFPTaFUX1WAmiBhMd0aa0MMykkVx6xAjie2pHudYYv+ZEhCtKSKy1DcdfCica4BpL/Bp/XSA=="; }; }; "@segment/loosely-validate-event-2.0.0" = { @@ -10498,13 +10282,13 @@ let sha512 = "ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw=="; }; }; - "@selderee/plugin-htmlparser2-0.6.0" = { + "@selderee/plugin-htmlparser2-0.10.0" = { name = "_at_selderee_slash_plugin-htmlparser2"; packageName = "@selderee/plugin-htmlparser2"; - version = "0.6.0"; + version = "0.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@selderee/plugin-htmlparser2/-/plugin-htmlparser2-0.6.0.tgz"; - sha512 = "J3jpy002TyBjd4N/p6s+s90eX42H2eRhK3SbsZuvTDv977/E8p2U3zikdiehyJja66do7FlxLomZLPlvl2/xaA=="; + url = "https://registry.npmjs.org/@selderee/plugin-htmlparser2/-/plugin-htmlparser2-0.10.0.tgz"; + sha512 = "gW69MEamZ4wk1OsOq1nG1jcyhXIQcnrsX5JwixVw/9xaiav8TCyjESAruu1Rz9yyInhgBXxkNwMeygKnN2uxNA=="; }; }; "@sentry/core-6.19.7" = { @@ -10516,13 +10300,13 @@ let sha512 = "tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw=="; }; }; - "@sentry/core-7.28.1" = { + "@sentry/core-7.31.1" = { name = "_at_sentry_slash_core"; packageName = "@sentry/core"; - version = "7.28.1"; + version = "7.31.1"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/core/-/core-7.28.1.tgz"; - sha512 = "7wvnuvn/mrAfcugWoCG/3pqDIrUgH5t+HisMJMGw0h9Tc33KqrmqMDCQVvjlrr2pWrw/vuUCFdm8CbUHJ832oQ=="; + url = "https://registry.npmjs.org/@sentry/core/-/core-7.31.1.tgz"; + sha512 = "quaNU6z8jabmatBTDi28Wpff2yzfWIp/IU4bbi2QOtEiCNT+TQJXqlRTRMu9xLrX7YzyKCL5X2gbit/85lyWUg=="; }; }; "@sentry/hub-6.19.7" = { @@ -10534,13 +10318,13 @@ let sha512 = "y3OtbYFAqKHCWezF0EGGr5lcyI2KbaXW2Ik7Xp8Mu9TxbSTuwTe4rTntwg8ngPjUQU3SUHzgjqVB8qjiGqFXCA=="; }; }; - "@sentry/integrations-7.28.1" = { + "@sentry/integrations-7.31.1" = { name = "_at_sentry_slash_integrations"; packageName = "@sentry/integrations"; - version = "7.28.1"; + version = "7.31.1"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.28.1.tgz"; - sha512 = "opeXVR1L9mZmZcpAs9kX+4JPY7pXhVupy17Sbz+43zd5CshYTveIcttGNPp+EPT3j7mMU+1TMAYZspKqJXtEBQ=="; + url = "https://registry.npmjs.org/@sentry/integrations/-/integrations-7.31.1.tgz"; + sha512 = "El+qzwbiXHPDWg8ZmX+W/kCheoaYoaAJuaG2+l3D5Y4ny8JNYfSMCum9qXVEb8oB98fFHfSEoFzB+z54pH+p3w=="; }; }; "@sentry/minimal-6.19.7" = { @@ -10561,13 +10345,13 @@ let sha512 = "gtmRC4dAXKODMpHXKfrkfvyBL3cI8y64vEi3fDD046uqYcrWdgoQsffuBbxMAizc6Ez1ia+f0Flue6p15Qaltg=="; }; }; - "@sentry/node-7.28.1" = { + "@sentry/node-7.31.1" = { name = "_at_sentry_slash_node"; packageName = "@sentry/node"; - version = "7.28.1"; + version = "7.31.1"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/node/-/node-7.28.1.tgz"; - sha512 = "n7AbpJqZJjWPpKNGc55mP7AdQ+XSomS9MZJuZ+Xt2AU52aVwGPI4z9aHUJFSDGaMHHiu/toyPnoUES+XZf6/hw=="; + url = "https://registry.npmjs.org/@sentry/node/-/node-7.31.1.tgz"; + sha512 = "4VzfOU1YHeoGkBQmkVXlXoXITf+1NkZEREKhdzgpVAkVjb2Tk3sMoFov4wOKWnNTTj4ka50xyaw/ZmqApgQ4Pw=="; }; }; "@sentry/types-6.19.7" = { @@ -10579,13 +10363,13 @@ let sha512 = "jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg=="; }; }; - "@sentry/types-7.28.1" = { + "@sentry/types-7.31.1" = { name = "_at_sentry_slash_types"; packageName = "@sentry/types"; - version = "7.28.1"; + version = "7.31.1"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/types/-/types-7.28.1.tgz"; - sha512 = "DvSplMVrVEmOzR2M161V5+B8Up3vR71xMqJOpWTzE9TqtFJRGPtqT/5OBsNJJw1+/j2ssMcnKwbEo9Q2EGeS6g=="; + url = "https://registry.npmjs.org/@sentry/types/-/types-7.31.1.tgz"; + sha512 = "1uzr2l0AxEnxUX/S0EdmXUQ15/kDsam8Nbdw4Gai8SU764XwQgA/TTjoewVP597CDI/AHKan67Y630/Ylmkx9w=="; }; }; "@sentry/utils-6.19.7" = { @@ -10597,13 +10381,13 @@ let sha512 = "z95ECmE3i9pbWoXQrD/7PgkBAzJYR+iXtPuTkpBjDKs86O3mT+PXOT3BAn79w2wkn7/i3vOGD2xVr1uiMl26dA=="; }; }; - "@sentry/utils-7.28.1" = { + "@sentry/utils-7.31.1" = { name = "_at_sentry_slash_utils"; packageName = "@sentry/utils"; - version = "7.28.1"; + version = "7.31.1"; src = fetchurl { - url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.28.1.tgz"; - sha512 = "75/jzLUO9HH09iC9TslNimGbxOP3jgn89P+q7uR+rp2fJfRExHVeKJZQdK0Ij4/SmE7TJ3Uh2r154N0INZEx1g=="; + url = "https://registry.npmjs.org/@sentry/utils/-/utils-7.31.1.tgz"; + sha512 = "ZsIPq29aNdP9q3R7qIzJhZ9WW+4DzE9g5SfGwx3UjTIxoRRBfdUJUbf7S+LKEdvCkKbyoDt6FLt5MiSJV43xBA=="; }; }; "@serialport/binding-mock-10.2.2" = { @@ -11272,130 +11056,130 @@ let sha512 = "2kGbqUVJUGE8dM+bMzXG/PYUWKkjLIkRLWNh39OaADkiabDRdw8ATFCgbMz5xdIcvwspPAluSL7uY+ZiTWdWmQ=="; }; }; - "@swc-node/core-1.9.1" = { + "@swc-node/core-1.9.2" = { name = "_at_swc-node_slash_core"; packageName = "@swc-node/core"; - version = "1.9.1"; + version = "1.9.2"; src = fetchurl { - url = "https://registry.npmjs.org/@swc-node/core/-/core-1.9.1.tgz"; - sha512 = "Mh4T/PmQOpPtqw1BNvU38uWzsXbd5RJji17YBXnj7JDDE5KlTR9sSo2RKxWKDVtHbdcD1S+CtyZXA93aEWlfGQ=="; + url = "https://registry.npmjs.org/@swc-node/core/-/core-1.9.2.tgz"; + sha512 = "tInCla6NO1HEQwhIc/K7PCOu4X3ppqw5xYNEMD7i41SyRuH7yp3u8x7x2cqeAD+6IAhJ5jKDPv2QRLPz7Xt3EA=="; }; }; - "@swc-node/register-1.5.4" = { + "@swc-node/register-1.5.5" = { name = "_at_swc-node_slash_register"; packageName = "@swc-node/register"; - version = "1.5.4"; + version = "1.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@swc-node/register/-/register-1.5.4.tgz"; - sha512 = "cM5/A63bO6qLUFC4gcBnOlQO5yd8ObSdFUIp7sXf11Oq5mPVAnJy2DqjbWMUsqUaHuNk+lOIt76ie4DEseUIyA=="; + url = "https://registry.npmjs.org/@swc-node/register/-/register-1.5.5.tgz"; + sha512 = "SNpbRG8EOXShk3YAnC4suAVovYQ7oFOFdCVBA3J8hkO5qy0WHPVnlnMojTYI+8UT1CrfQ1QSUySaAARRvEdwjg=="; }; }; - "@swc-node/sourcemap-support-0.2.2" = { + "@swc-node/sourcemap-support-0.2.3" = { name = "_at_swc-node_slash_sourcemap-support"; packageName = "@swc-node/sourcemap-support"; - version = "0.2.2"; + version = "0.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/@swc-node/sourcemap-support/-/sourcemap-support-0.2.2.tgz"; - sha512 = "PA4p7nC5LwPdEVcQXFxMTpfvizYPeMoB55nIIx+yC3FiLnyPgC2hcpUitPy5h8RRGdCZ/Mvb2ryEcVYS8nI6YA=="; + url = "https://registry.npmjs.org/@swc-node/sourcemap-support/-/sourcemap-support-0.2.3.tgz"; + sha512 = "LOC/z9HDUmTqSAF08YIRLThGGNZLdRrjcEdoQu/EANxPSVRedYgh4AiZlOX8sY8Rp1p7S/StOmZogJLuvR4mcA=="; }; }; - "@swc/core-1.3.24" = { + "@swc/core-1.3.27" = { name = "_at_swc_slash_core"; packageName = "@swc/core"; - version = "1.3.24"; + version = "1.3.27"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core/-/core-1.3.24.tgz"; - sha512 = "QMOTd0AgiUT3K1crxLRqd3gw0f3FC8hhH1vvlIlryvYqU4c+FJ/T2G4ZhMKLxQlZ/jX6Rhk0gKINZRBxy2GFyQ=="; + url = "https://registry.npmjs.org/@swc/core/-/core-1.3.27.tgz"; + sha512 = "praRNgpeYGvwDIm/Cl6JU+yHMvwVraL0U6ejMgGyzvpcm1FVsZd1/EYXGqzbBJ0ALv7Gx4eK56h4GnwV6d4L0w=="; }; }; - "@swc/core-darwin-arm64-1.3.24" = { + "@swc/core-darwin-arm64-1.3.27" = { name = "_at_swc_slash_core-darwin-arm64"; packageName = "@swc/core-darwin-arm64"; - version = "1.3.24"; + version = "1.3.27"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.24.tgz"; - sha512 = "rR+9UpWm+fGXcipsjCst2hIL1GYIbo0YTLhJZWdIpQD6KRHHJMFXiydMgQQkDj2Ml7HpqUVgxj6m4ZWYL8b0OA=="; + url = "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.27.tgz"; + sha512 = "IKlxkhEy99CnP9nduaf5IJWIFcr6D5cZCjYmCs7nWkjMV+aAieyDO9AX4LT8AcHy6CF7ByOX7SKoqk+gVMAaKw=="; }; }; - "@swc/core-darwin-x64-1.3.24" = { + "@swc/core-darwin-x64-1.3.27" = { name = "_at_swc_slash_core-darwin-x64"; packageName = "@swc/core-darwin-x64"; - version = "1.3.24"; + version = "1.3.27"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.24.tgz"; - sha512 = "px+5vkGtgPH0m3FkkTBHynlRdS5rRz+lK+wiXIuBZFJSySWFl6RkKbvwkD+sf0MpazQlqwlv/rTOGJBw6oDffg=="; + url = "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.27.tgz"; + sha512 = "MtabZIhFf/dL3vs6UMbd+vJsjIkm2NaFqulGV0Jofy2bfVZPTj/b5pXeOlUsTWy7JcH1uixjdx4RvJRyvqJxQA=="; }; }; - "@swc/core-linux-arm-gnueabihf-1.3.24" = { + "@swc/core-linux-arm-gnueabihf-1.3.27" = { name = "_at_swc_slash_core-linux-arm-gnueabihf"; packageName = "@swc/core-linux-arm-gnueabihf"; - version = "1.3.24"; + version = "1.3.27"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.24.tgz"; - sha512 = "jLs8ZOdTV4UW4J12E143QJ4mOMONQtqgAnuhBbRuWFzQ3ny1dfoC3P1jNWAJ2Xi59XdxAIXn0PggPNH4Kh34kw=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.27.tgz"; + sha512 = "XELMoGcUTAkk+G4buwIIhu6AIr1U418Odt22HUW8+ZvV+Wty2ICgR/myOIhM3xMb6U2L8ay+evMqoVNMQ0RRTg=="; }; }; - "@swc/core-linux-arm64-gnu-1.3.24" = { + "@swc/core-linux-arm64-gnu-1.3.27" = { name = "_at_swc_slash_core-linux-arm64-gnu"; packageName = "@swc/core-linux-arm64-gnu"; - version = "1.3.24"; + version = "1.3.27"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.24.tgz"; - sha512 = "A/v0h70BekrwGpp1DlzIFGcHQ3QQ2PexXcnnuIBZeMc9gNmHlcZmg3EcwAnaUDiokhNuSUFA/wV94yk1OqmSkw=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.27.tgz"; + sha512 = "O6vtT6bnrVR9PzEIuA5U7tIfYo7bv97H9K9Vqy2oyHNeGN0H36DKwS4UqPreHtziXNF5+7ubdUYUkrG/j8UnUQ=="; }; }; - "@swc/core-linux-arm64-musl-1.3.24" = { + "@swc/core-linux-arm64-musl-1.3.27" = { name = "_at_swc_slash_core-linux-arm64-musl"; packageName = "@swc/core-linux-arm64-musl"; - version = "1.3.24"; + version = "1.3.27"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.24.tgz"; - sha512 = "pbc9eArWPTiMrbpS/pJo0IiQNAKAQBcBIDjWBGP1tcw2iDXYLw4bruwz9kI/VjakbshWb8MoE4T5ClkeuULvSw=="; + url = "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.27.tgz"; + sha512 = "Oa0E1i7dOTWpaEZumKoNbTE/Ap+da6nlhqKVUdYrFDrOBi25tz76SdxZIyvAszzmgY89b5yd1naourKmkPXpww=="; }; }; - "@swc/core-linux-x64-gnu-1.3.24" = { + "@swc/core-linux-x64-gnu-1.3.27" = { name = "_at_swc_slash_core-linux-x64-gnu"; packageName = "@swc/core-linux-x64-gnu"; - version = "1.3.24"; + version = "1.3.27"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.24.tgz"; - sha512 = "pP5pOLlY1xd352qo7rTlpVPUI9/9VhOd4b3Lk+LzfZDq9bTL2NDlGfyrPiwa5DGHMSzrugH56K2J68eutkxYVA=="; + url = "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.27.tgz"; + sha512 = "S3v9H8oL2a8Ur6AjQyhkC6HfBVPOxKMdBhcZmdNuVgEUHbHdbf/Lka85F9IOYXEarMn0FtQw3ywowS22O9L5Uw=="; }; }; - "@swc/core-linux-x64-musl-1.3.24" = { + "@swc/core-linux-x64-musl-1.3.27" = { name = "_at_swc_slash_core-linux-x64-musl"; packageName = "@swc/core-linux-x64-musl"; - version = "1.3.24"; + version = "1.3.27"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.24.tgz"; - sha512 = "phNbP7zGp+Wcyxq1Qxlpe5KkxO7WLT2kVQUC7aDFGlVdCr+xdXsfH1MzheHtnr0kqTVQX1aiM8XXXHfFxR0oNA=="; + url = "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.27.tgz"; + sha512 = "6DDkdXlOADpwICFZTRphCR+cIeS8aEYh4NlyzBito0mOWwIIdfCgALzhkTQOzTOkcD42bP97CIoZ97hqV/puOg=="; }; }; - "@swc/core-win32-arm64-msvc-1.3.24" = { + "@swc/core-win32-arm64-msvc-1.3.27" = { name = "_at_swc_slash_core-win32-arm64-msvc"; packageName = "@swc/core-win32-arm64-msvc"; - version = "1.3.24"; + version = "1.3.27"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.24.tgz"; - sha512 = "qhbiJTWAOqyR+K9xnGmCkOWSz2EmWpDBstEJCEOTc6FZiEdbiTscDmqTcMbCKaTHGu8t+6erVA4t65/Eg6uWPA=="; + url = "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.27.tgz"; + sha512 = "baxfH4AbEcaTNo08wxV0W6hiMXwVCxPS4qc0amHpXPti92unvSqeDR1W3C9GjHqzXlWtmCRsq8Ww1pal6ZVLrw=="; }; }; - "@swc/core-win32-ia32-msvc-1.3.24" = { + "@swc/core-win32-ia32-msvc-1.3.27" = { name = "_at_swc_slash_core-win32-ia32-msvc"; packageName = "@swc/core-win32-ia32-msvc"; - version = "1.3.24"; + version = "1.3.27"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.24.tgz"; - sha512 = "JfghIlscE4Rz+Lc08lSoDh+R0cWxrISed5biogFfE6vZqhaDnw3E5Qshqw7O3pIaiq8L2u1nmzuyP581ZmpbRA=="; + url = "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.27.tgz"; + sha512 = "7iLJnH71k5qCwxv9NcM/P7nIEzTsC7r1sIiQW6bu+CpC8qZvwl0PS+XvQRlLly2gCZM+Le98tksYG14MEh+Hrw=="; }; }; - "@swc/core-win32-x64-msvc-1.3.24" = { + "@swc/core-win32-x64-msvc-1.3.27" = { name = "_at_swc_slash_core-win32-x64-msvc"; packageName = "@swc/core-win32-x64-msvc"; - version = "1.3.24"; + version = "1.3.27"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.24.tgz"; - sha512 = "3AmJRr0hwciwDBbzUNqaftvppzS8v9X/iv/Wl7YaVLBVpPfQvaZzfqLycvNMGLZb5vIKXR/u58txg3dRBGsJtw=="; + url = "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.27.tgz"; + sha512 = "mFM907PDw/jrQ44+TRjIVGEOy2Mu06mMMz0HPMFuRsBzl5t0Kajp3vmn8FkkpS9wH5982VPi6hPYVTb7QJo5Qg=="; }; }; "@swc/helpers-0.4.14" = { @@ -11407,13 +11191,13 @@ let sha512 = "4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw=="; }; }; - "@swc/wasm-1.3.24" = { + "@swc/wasm-1.3.27" = { name = "_at_swc_slash_wasm"; packageName = "@swc/wasm"; - version = "1.3.24"; + version = "1.3.27"; src = fetchurl { - url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.3.24.tgz"; - sha512 = "vw9pS+uAsMpLnE7FSGfs+aHfwPhWukElh8Ogev4XAG3fM55q3QgYDsRjx8REo4kkm7jHam8YLIJgXWtmsGyOJQ=="; + url = "https://registry.npmjs.org/@swc/wasm/-/wasm-1.3.27.tgz"; + sha512 = "bSFeKxGU2zY/xC3K7Y4sjdtHMgbv6gM2Z01PTMGoC8b2PVubPKeW+BYmprZFSf2eCOsNLZaVzVufdVTQB/ORfg=="; }; }; "@szmarczak/http-timer-1.1.2" = { @@ -11461,13 +11245,13 @@ let sha512 = "gr1mFN7KMOn+VviQKcrt+z1/7ttn7s9NSMFFyg5GrJylNH6JGrDDNRm7C5vE4PNwhW6hYT67QRUO44Ns2LQijg=="; }; }; - "@textlint/ast-node-types-12.2.2" = { + "@textlint/ast-node-types-12.3.0" = { name = "_at_textlint_slash_ast-node-types"; packageName = "@textlint/ast-node-types"; - version = "12.2.2"; + version = "12.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-12.2.2.tgz"; - sha512 = "VQAXUSGdmEajHXrMxeM9ZTS8UBJSVB0ghJFHpFfqYKlcDsjIqClSmTprY6521HoCoSLoUIGBxTC3jQyUMJFIWw=="; + url = "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-12.3.0.tgz"; + sha512 = "ke5hlKy/xZ/vQt6j+h4k9GradJPDsV3FKsUqWpCpF/X8qWCU2zM4e1SMUAFjoUcLuF9in+eXIQ71Qm/AdjjkZQ=="; }; }; "@textlint/ast-node-types-4.4.3" = { @@ -11479,130 +11263,139 @@ let sha512 = "qi2jjgO6Tn3KNPGnm6B7p6QTEPvY95NFsIAaJuwbulur8iJUEenp1OnoUfiDaC/g2WPPEFkcfXpmnu8XEMFo2A=="; }; }; - "@textlint/ast-tester-12.2.3" = { + "@textlint/ast-tester-12.5.0" = { name = "_at_textlint_slash_ast-tester"; packageName = "@textlint/ast-tester"; - version = "12.2.3"; + version = "12.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/ast-tester/-/ast-tester-12.2.3.tgz"; - sha512 = "+yLj38mgrluEFXD8rmwmMo+2lQbrx3v5aQBkHUZdddAq/1LJu4qqctikUzAeVRJZPWKsdLrN3vaLT2rp4h8KYg=="; + url = "https://registry.npmjs.org/@textlint/ast-tester/-/ast-tester-12.5.0.tgz"; + sha512 = "osHf1OFLC3RnjGyoSBynn2u5pgj7qkik8TNaxgPekVwlLWtJTcyh22PHo+mXPF47XWM5gJQmy/72nUrqtbDMPg=="; }; }; - "@textlint/ast-traverse-12.2.3" = { + "@textlint/ast-traverse-12.5.0" = { name = "_at_textlint_slash_ast-traverse"; packageName = "@textlint/ast-traverse"; - version = "12.2.3"; + version = "12.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-12.2.3.tgz"; - sha512 = "sv06SITci07P1LQQxH1hSv04xoHz2OC+WlppTuMoOFR20kRBMyOs7Ssvor0NdNmspDXG8qvdCBxh9rFmdNSJyQ=="; + url = "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-12.5.0.tgz"; + sha512 = "TAbfxz8x8Q/sn7D/h7OikzYp5NqPDrRExm3N+3v9yj+gq++fxHtskas48tm1TYcChTMq6BbPU+EGbdlMo3rWWA=="; }; }; - "@textlint/feature-flag-12.2.3" = { + "@textlint/config-loader-12.5.0" = { + name = "_at_textlint_slash_config-loader"; + packageName = "@textlint/config-loader"; + version = "12.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@textlint/config-loader/-/config-loader-12.5.0.tgz"; + sha512 = "g706+XwdsUGpVXzqW7OFcBO8XdxH1AqbD0D3UYEjlfUONXD0c4Bymctdjk49hzOwTVDGqj+CCyvL+cB/X2bG+Q=="; + }; + }; + "@textlint/feature-flag-12.5.0" = { name = "_at_textlint_slash_feature-flag"; packageName = "@textlint/feature-flag"; - version = "12.2.3"; + version = "12.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/feature-flag/-/feature-flag-12.2.3.tgz"; - sha512 = "KrKc8dY3iept6Hv/dSKwaYAkjFdYbaithXAnRpp0O4fkXPdv6HYu7iGtM2kA4nkVLdjrzAnPNKA9tmP3EE0qNg=="; + url = "https://registry.npmjs.org/@textlint/feature-flag/-/feature-flag-12.5.0.tgz"; + sha512 = "GdyRbbIsWRuZieWKvRxQA8j5wX5hzq+QqEmuputBrU/KKapNfkg6uNY2GOY6SWvC8QcwD0dYh3Dy1x2txT8p8Q=="; }; }; - "@textlint/fixer-formatter-12.2.3" = { + "@textlint/fixer-formatter-12.5.1" = { name = "_at_textlint_slash_fixer-formatter"; packageName = "@textlint/fixer-formatter"; - version = "12.2.3"; + version = "12.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/fixer-formatter/-/fixer-formatter-12.2.3.tgz"; - sha512 = "O3O1B1Xihlk5bXnMqjTgwMegnDTzE3rAQRvcJ2zTZQNhjSLpUDsRRcZW4FteGsQkWT9rOFrFQbHNbJdkiyu4cA=="; + url = "https://registry.npmjs.org/@textlint/fixer-formatter/-/fixer-formatter-12.5.1.tgz"; + sha512 = "dzOsgpkl5lIB25BHgW0saAohRW4ZF0s/SyK/FbweYtkDGd190USLGpCibx2M8/mAEFDs5YsnTqZlkbp1FLLuyQ=="; }; }; - "@textlint/kernel-12.2.3" = { + "@textlint/kernel-12.5.0" = { name = "_at_textlint_slash_kernel"; packageName = "@textlint/kernel"; - version = "12.2.3"; + version = "12.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/kernel/-/kernel-12.2.3.tgz"; - sha512 = "O0oifeiotA7ZEpWGssGPHCpIDUcsUfkmNTypk6j0l5m+VL+X3Zz0z/F+i02O9eMcizzLFcnC8oMoLxeYNhJCKg=="; + url = "https://registry.npmjs.org/@textlint/kernel/-/kernel-12.5.0.tgz"; + sha512 = "9UspUHtS2FShTO9pWnrZjadjIvJzFIdIZDKIYCdZuUdU8dEhJqwOdYosqM4N5Wy40aMKnv4Voxp80Ssaq7zZaA=="; }; }; - "@textlint/linter-formatter-12.2.4" = { + "@textlint/linter-formatter-12.5.0" = { name = "_at_textlint_slash_linter-formatter"; packageName = "@textlint/linter-formatter"; - version = "12.2.4"; + version = "12.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/linter-formatter/-/linter-formatter-12.2.4.tgz"; - sha512 = "vF/qPrDYLH9jGB/HU8euVLv7BBATYmviBl9fGcx5vO8Lq/D2vHS9MUdk1JddgW/cDqnrI0nNVlLFUphJsXtp6w=="; + url = "https://registry.npmjs.org/@textlint/linter-formatter/-/linter-formatter-12.5.0.tgz"; + sha512 = "cJ87VGmyqDyjxT2aL3492g/YyGh6AU7/3QqxKN9q8rxJtzaY2e1uJrUKdpj0oOj1xZzYYv8zPeIpFaiFtNW02Q=="; }; }; - "@textlint/markdown-to-ast-12.2.3" = { + "@textlint/markdown-to-ast-12.5.0" = { name = "_at_textlint_slash_markdown-to-ast"; packageName = "@textlint/markdown-to-ast"; - version = "12.2.3"; + version = "12.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/markdown-to-ast/-/markdown-to-ast-12.2.3.tgz"; - sha512 = "omZqcZV1Q8t9K0IKvlHNIdTV3SKNaS2P5qkbTjzDj7PuTuvG20JFqL9Naiwwi9ty3NzTzq+W8lLG3H2HgX0WvA=="; + url = "https://registry.npmjs.org/@textlint/markdown-to-ast/-/markdown-to-ast-12.5.0.tgz"; + sha512 = "+fUslPm0+ukMnRVMPUQwKv1DEwmDP/rXFuzc5+k5tCMhighZ/Fv/e3Y9MUe7SgNDte7ilajTa3/uP0Iurr60WA=="; }; }; - "@textlint/module-interop-12.2.3" = { + "@textlint/module-interop-12.5.0" = { name = "_at_textlint_slash_module-interop"; packageName = "@textlint/module-interop"; - version = "12.2.3"; + version = "12.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/module-interop/-/module-interop-12.2.3.tgz"; - sha512 = "tBtjf+hcOV8bTGae48bBj05Z8PmC6AQ+wCLl4PWE1zqUZIo9hxJL5nRpBn8l6HT6HCdtACE0UU85op9QmjmPXw=="; + url = "https://registry.npmjs.org/@textlint/module-interop/-/module-interop-12.5.0.tgz"; + sha512 = "NmkHL5tt+HEqLm00JSW1f03KTbEqOzupliboSZ2HeNhOqZxSX4wR3lBlGqVeVi5dImMWrt40oa+AbkqkD78b9Q=="; }; }; - "@textlint/source-code-fixer-12.2.3" = { + "@textlint/source-code-fixer-12.5.0" = { name = "_at_textlint_slash_source-code-fixer"; packageName = "@textlint/source-code-fixer"; - version = "12.2.3"; + version = "12.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/source-code-fixer/-/source-code-fixer-12.2.3.tgz"; - sha512 = "uXGpD3hcqGNVL8yUpZci0+DDXUi81/MlMOzK6OWLDYBXdIZvJ0ADXQ/oUkljWIdmzMcME1AXkHvC5EGL0td2Sg=="; + url = "https://registry.npmjs.org/@textlint/source-code-fixer/-/source-code-fixer-12.5.0.tgz"; + sha512 = "7LebJ6Y64Rb4fVYyokpU8FnjNLdx+TehcHQJ9L/fi8PYVjpS/08klYtYfRtKWmi/vrWED7U0aGhb8Xr26NuWFw=="; }; }; - "@textlint/text-to-ast-12.2.3" = { + "@textlint/text-to-ast-12.5.0" = { name = "_at_textlint_slash_text-to-ast"; packageName = "@textlint/text-to-ast"; - version = "12.2.3"; + version = "12.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/text-to-ast/-/text-to-ast-12.2.3.tgz"; - sha512 = "nsBI5TFe38ZzzbCyshZqLkG2DD4G8fJ0mC3imiTAGamGnUV8mDANmdvE7nmUtZTLlU319s/U0oXC0E7btgN+cQ=="; + url = "https://registry.npmjs.org/@textlint/text-to-ast/-/text-to-ast-12.5.0.tgz"; + sha512 = "wOWYX+d821ThwNYNk5hfxOBxvkqKUpNOBKkDaic4V+dkuBoAS0D9lE9fA9Ps62kL/I1uQwhU5d4qsAHWnFmQkw=="; }; }; - "@textlint/textlint-plugin-markdown-12.2.3" = { + "@textlint/textlint-plugin-markdown-12.5.0" = { name = "_at_textlint_slash_textlint-plugin-markdown"; packageName = "@textlint/textlint-plugin-markdown"; - version = "12.2.3"; + version = "12.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-12.2.3.tgz"; - sha512 = "phmA5e1JQaJt0IFHm0WkNpX66ieYXShoIzg6J3wcrAHS12kQcL0HxBgjdUjOeulOemKst2JqFNqsvhGXdTAUFw=="; + url = "https://registry.npmjs.org/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-12.5.0.tgz"; + sha512 = "1B4mTmA1NOvK2kAk4Rl/TW3QFB80iwhsOKSJ16nCH/yvF82xgH+Gu4gQB/prNpACb4TivmzwvBRYp7rzhOTTyA=="; }; }; - "@textlint/textlint-plugin-text-12.2.3" = { + "@textlint/textlint-plugin-text-12.5.0" = { name = "_at_textlint_slash_textlint-plugin-text"; packageName = "@textlint/textlint-plugin-text"; - version = "12.2.3"; + version = "12.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/textlint-plugin-text/-/textlint-plugin-text-12.2.3.tgz"; - sha512 = "CMK9h3EwyQFayYBGafQairg2MbVtGkw1roazOjXLSTicYr7xT/rqhN26Ix6C7OvBbugyRO+DhqJjPY8Xyv0BQA=="; + url = "https://registry.npmjs.org/@textlint/textlint-plugin-text/-/textlint-plugin-text-12.5.0.tgz"; + sha512 = "ec3rZaJYytoscwpAtuxD4UM3bUPqNAeWKia+LMaVMWREULwKfntlSAqSNmudujEkxdsKr028CkzYuP78q8Xmuw=="; }; }; - "@textlint/types-12.2.3" = { + "@textlint/types-12.5.0" = { name = "_at_textlint_slash_types"; packageName = "@textlint/types"; - version = "12.2.3"; + version = "12.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/types/-/types-12.2.3.tgz"; - sha512 = "7948CPxVsZu99zlIWDyxwT6MI33WpwKwVSD9jk0e5M8VcdxMUnecVq6D40h8LAtfsT5V8NTJqFxKFT6+LpiBvg=="; + url = "https://registry.npmjs.org/@textlint/types/-/types-12.5.0.tgz"; + sha512 = "Po5qOubilL/g3dx+ZUgaQzNXbROADBF4Z5xy7qqgV6pBQIEE/06INZDmmLE1Eesm2zoDpygoG/1f/0/Cy5Yupw=="; }; }; - "@textlint/utils-12.2.3" = { + "@textlint/utils-12.5.0" = { name = "_at_textlint_slash_utils"; packageName = "@textlint/utils"; - version = "12.2.3"; + version = "12.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/utils/-/utils-12.2.3.tgz"; - sha512 = "1dEihBt9A+DcQ/4IZC3c3TFktb/6p61m6WItyqEYU4h9UjUOH4l1sEKqorEOkJ/DIlA9VQcJT/LF5CCFYOKkcw=="; + url = "https://registry.npmjs.org/@textlint/utils/-/utils-12.5.0.tgz"; + sha512 = "bQWrQ7Xaru1DRLQhAQQJgNnfGQIwgTgWUigdS5wSwpbmfLDnaMzHu3AG0lk5hEnELMKTCIej5uCR0+YscyUckg=="; }; }; "@tokenizer/token-0.1.1" = { @@ -11983,15 +11776,6 @@ let sha512 = "RQul5wEfY7BjWm0sYY86cmUN/pcXWGyVxWX93DFFJvcrxax5zKlieLwA3T77xJGwNcZW0YW6CYG70p1m8xPFmA=="; }; }; - "@types/error-stack-parser-2.0.0" = { - name = "_at_types_slash_error-stack-parser"; - packageName = "@types/error-stack-parser"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/error-stack-parser/-/error-stack-parser-2.0.0.tgz"; - sha512 = "O2ZQvaCuvqgpSOFzHST/VELij9sm5P84bouCz6z8DysloeY47JpeUyvv00TE0LrZPsG2qleUK00anUaLsvUMHQ=="; - }; - }; "@types/es-aggregate-error-1.0.2" = { name = "_at_types_slash_es-aggregate-error"; packageName = "@types/es-aggregate-error"; @@ -12118,6 +11902,15 @@ let sha512 = "DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q=="; }; }; + "@types/express-serve-static-core-4.17.32" = { + name = "_at_types_slash_express-serve-static-core"; + packageName = "@types/express-serve-static-core"; + version = "4.17.32"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.32.tgz"; + sha512 = "aI5h/VOkxOF2Z1saPy0Zsxs5avets/iaiAJYznQFm5By/pamU31xWKL//epiF4OfUA2qTOc9PV6tCUjhO8wlZA=="; + }; + }; "@types/file-type-10.9.1" = { name = "_at_types_slash_file-type"; packageName = "@types/file-type"; @@ -12136,15 +11929,6 @@ let sha512 = "nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA=="; }; }; - "@types/geojson-7946.0.10" = { - name = "_at_types_slash_geojson"; - packageName = "@types/geojson"; - version = "7946.0.10"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.10.tgz"; - sha512 = "Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA=="; - }; - }; "@types/get-stdin-5.0.1" = { name = "_at_types_slash_get-stdin"; packageName = "@types/get-stdin"; @@ -12271,13 +12055,13 @@ let sha512 = "c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw=="; }; }; - "@types/jquery-3.5.14" = { + "@types/jquery-3.5.16" = { name = "_at_types_slash_jquery"; packageName = "@types/jquery"; - version = "3.5.14"; + version = "3.5.16"; src = fetchurl { - url = "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.14.tgz"; - sha512 = "X1gtMRMbziVQkErhTQmSe2jFwwENA/Zr+PprCkF63vFq+Yt5PZ4AlKqgmeNlwgn7dhsXEK888eIW2520EpC+xg=="; + url = "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.16.tgz"; + sha512 = "bsI7y4ZgeMkmpG9OM710RRzDFp+w4P1RGiIt30C1mSBT+ExCleeh4HObwgArnDFELmRrOpXgSYN9VF1hj+f1lw=="; }; }; "@types/js-levenshtein-1.1.1" = { @@ -12415,24 +12199,6 @@ let sha512 = "ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw=="; }; }; - "@types/mapbox__point-geometry-0.1.2" = { - name = "_at_types_slash_mapbox__point-geometry"; - packageName = "@types/mapbox__point-geometry"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/mapbox__point-geometry/-/mapbox__point-geometry-0.1.2.tgz"; - sha512 = "D0lgCq+3VWV85ey1MZVkE8ZveyuvW5VAfuahVTQRpXFQTxw03SuIf1/K4UQ87MMIXVKzpFjXFiFMZzLj2kU+iA=="; - }; - }; - "@types/mapbox__vector-tile-1.3.0" = { - name = "_at_types_slash_mapbox__vector-tile"; - packageName = "@types/mapbox__vector-tile"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/mapbox__vector-tile/-/mapbox__vector-tile-1.3.0.tgz"; - sha512 = "kDwVreQO5V4c8yAxzZVQLE5tyWF+IPToAanloQaSnwfXmIcJ7cyOrv8z4Ft4y7PsLYmhWXmON8MBV8RX0Rgr8g=="; - }; - }; "@types/markdown-it-12.2.3" = { name = "_at_types_slash_markdown-it"; packageName = "@types/markdown-it"; @@ -12586,15 +12352,6 @@ let sha512 = "yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ=="; }; }; - "@types/node-13.13.52" = { - name = "_at_types_slash_node"; - packageName = "@types/node"; - version = "13.13.52"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-13.13.52.tgz"; - sha512 = "s3nugnZumCC//n4moGGe6tkNMyYEdaDBitVjwPxXmR5lnMG5dHePinH2EdxkG3Rh1ghFHHixAG4NJhpJW1rthQ=="; - }; - }; "@types/node-14.17.34" = { name = "_at_types_slash_node"; packageName = "@types/node"; @@ -12613,13 +12370,13 @@ let sha512 = "qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg=="; }; }; - "@types/node-14.18.35" = { + "@types/node-14.18.36" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "14.18.35"; + version = "14.18.36"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-14.18.35.tgz"; - sha512 = "2ATO8pfhG1kDvw4Lc4C0GXIMSQFFJBCo/R1fSgTwmUlq5oy95LXyjDQinsRVgQY6gp6ghh3H91wk9ES5/5C+Tw=="; + url = "https://registry.npmjs.org/@types/node/-/node-14.18.36.tgz"; + sha512 = "FXKWbsJ6a1hIrRxv+FoukuHnGTgEzKYGi7kilfMae96AL9UNkPFNWJEEYWzdRI9ooIkbr4AKldyuSTLql06vLQ=="; }; }; "@types/node-15.14.9" = { @@ -12640,58 +12397,31 @@ let sha512 = "ua7PgUoeQFjmWPcoo9khiPum3Pd60k4/2ZGXt18sm2Slk0W0xZTqt5Y0Ny1NyBiN1EVQ/+FaF9NcY4Qe6rwk5w=="; }; }; - "@types/node-16.18.10" = { + "@types/node-16.18.11" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "16.18.10"; + version = "16.18.11"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-16.18.10.tgz"; - sha512 = "XU1+v7h81p7145ddPfjv7jtWvkSilpcnON3mQ+bDi9Yuf7OI56efOglXRyXWgQ57xH3fEQgh7WOJMncRHVew5w=="; + url = "https://registry.npmjs.org/@types/node/-/node-16.18.11.tgz"; + sha512 = "3oJbGBUWuS6ahSnEq1eN2XrCyf4YsWI8OyCvo7c64zQJNplk3mO84t53o8lfTk+2ji59g5ycfc6qQ3fdHliHuA=="; }; }; - "@types/node-18.11.15" = { + "@types/node-18.11.16" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "18.11.15"; + version = "18.11.16"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-18.11.15.tgz"; - sha512 = "VkhBbVo2+2oozlkdHXLrb3zjsRkpdnaU2bXmX8Wgle3PUi569eLRaHGlgETQHR7lLL1w7GiG3h9SnePhxNDecw=="; + url = "https://registry.npmjs.org/@types/node/-/node-18.11.16.tgz"; + sha512 = "6T7P5bDkRhqRxrQtwj7vru+bWTpelgtcETAZEUSdq0YISKz8WKdoBukQLYQQ6DFHvU9JRsbFq0JH5C51X2ZdnA=="; }; }; - "@types/node-18.11.17" = { + "@types/node-18.11.18" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "18.11.17"; + version = "18.11.18"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-18.11.17.tgz"; - sha512 = "HJSUJmni4BeDHhfzn6nF0sVmd1SMezP7/4F0Lq+aXzmp2xm9O7WXrUtHW/CHlYVtZUbByEvWidHqRtcJXGF2Ng=="; - }; - }; - "@types/node-18.11.7" = { - name = "_at_types_slash_node"; - packageName = "@types/node"; - version = "18.11.7"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-18.11.7.tgz"; - sha512 = "LhFTglglr63mNXUSRYD8A+ZAIu5sFqNJ4Y2fPuY7UlrySJH87rRRlhtVmMHplmfk5WkoJGmDjE9oiTfyX94CpQ=="; - }; - }; - "@types/node-18.11.9" = { - name = "_at_types_slash_node"; - packageName = "@types/node"; - version = "18.11.9"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-18.11.9.tgz"; - sha512 = "CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg=="; - }; - }; - "@types/node-18.7.14" = { - name = "_at_types_slash_node"; - packageName = "@types/node"; - version = "18.7.14"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-18.7.14.tgz"; - sha512 = "6bbDaETVi8oyIARulOE9qF1/Qdi/23z6emrUh0fNJRUmjznqrixD4MpGDdgOFk5Xb0m2H6Xu42JGdvAxaJR/wA=="; + url = "https://registry.npmjs.org/@types/node/-/node-18.11.18.tgz"; + sha512 = "DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA=="; }; }; "@types/node-6.14.13" = { @@ -12748,24 +12478,6 @@ let sha512 = "kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw=="; }; }; - "@types/parse5-6.0.3" = { - name = "_at_types_slash_parse5"; - packageName = "@types/parse5"; - version = "6.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/parse5/-/parse5-6.0.3.tgz"; - sha512 = "SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g=="; - }; - }; - "@types/pbf-3.0.2" = { - name = "_at_types_slash_pbf"; - packageName = "@types/pbf"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/pbf/-/pbf-3.0.2.tgz"; - sha512 = "EDrLIPaPXOZqDjrkzxxbX7UlJSeQVgah3i0aA4pOSzmK9zq3BIh7/MZIQxED7slJByvKM4Gc6Hypyu2lJzh3SQ=="; - }; - }; "@types/pbkdf2-3.1.0" = { name = "_at_types_slash_pbkdf2"; packageName = "@types/pbkdf2"; @@ -12856,13 +12568,13 @@ let sha512 = "hCR3PJQsAIXyxhTNSiDFY//LhnMZWpNNr5etoCqx/iUfGc5gXWtQR2Phl908jVR6uPXacojQWTg4qRpkxTuGug=="; }; }; - "@types/react-dom-18.0.9" = { + "@types/react-dom-18.0.10" = { name = "_at_types_slash_react-dom"; packageName = "@types/react-dom"; - version = "18.0.9"; + version = "18.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.9.tgz"; - sha512 = "qnVvHxASt/H7i+XG1U1xMiY5t+IHcPGUK7TDMDzom08xa7e86eCeKOiLZezwCKVxJn6NEiiy2ekgX8aQssjIKg=="; + url = "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.10.tgz"; + sha512 = "E42GW/JA4Qv15wQdqJq8DL4JhNpB3prJgjgapN3qJT9K2zO5IIAQh4VXvCEDupoqAwnz0cY4RlXeC/ajX5SFHg=="; }; }; "@types/request-2.48.8" = { @@ -13279,22 +12991,31 @@ let sha512 = "6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w=="; }; }; - "@types/yargs-15.0.14" = { - name = "_at_types_slash_yargs"; - packageName = "@types/yargs"; - version = "15.0.14"; + "@types/ws-8.5.4" = { + name = "_at_types_slash_ws"; + packageName = "@types/ws"; + version = "8.5.4"; src = fetchurl { - url = "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.14.tgz"; - sha512 = "yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ=="; + url = "https://registry.npmjs.org/@types/ws/-/ws-8.5.4.tgz"; + sha512 = "zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg=="; }; }; - "@types/yargs-16.0.4" = { + "@types/yargs-15.0.15" = { name = "_at_types_slash_yargs"; packageName = "@types/yargs"; - version = "16.0.4"; + version = "15.0.15"; src = fetchurl { - url = "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz"; - sha512 = "T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw=="; + url = "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.15.tgz"; + sha512 = "IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg=="; + }; + }; + "@types/yargs-16.0.5" = { + name = "_at_types_slash_yargs"; + packageName = "@types/yargs"; + version = "16.0.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.5.tgz"; + sha512 = "AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ=="; }; }; "@types/yargs-parser-21.0.0" = { @@ -13333,13 +13054,13 @@ let sha512 = "aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg=="; }; }; - "@typescript-eslint/eslint-plugin-5.47.0" = { + "@typescript-eslint/eslint-plugin-5.48.2" = { name = "_at_typescript-eslint_slash_eslint-plugin"; packageName = "@typescript-eslint/eslint-plugin"; - version = "5.47.0"; + version = "5.48.2"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.47.0.tgz"; - sha512 = "AHZtlXAMGkDmyLuLZsRpH3p4G/1iARIwc/T0vIem2YB+xW6pZaXYXzCBnZSF/5fdM97R9QqZWZ+h3iW10XgevQ=="; + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.48.2.tgz"; + sha512 = "sR0Gja9Ky1teIq4qJOl0nC+Tk64/uYdX+mi+5iB//MH8gwyx8e3SOyhEzeLZEFEEfCaLf8KJq+Bd/6je1t+CAg=="; }; }; "@typescript-eslint/experimental-utils-4.33.0" = { @@ -13360,13 +13081,13 @@ let sha512 = "ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA=="; }; }; - "@typescript-eslint/parser-5.47.0" = { + "@typescript-eslint/parser-5.48.2" = { name = "_at_typescript-eslint_slash_parser"; packageName = "@typescript-eslint/parser"; - version = "5.47.0"; + version = "5.48.2"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.47.0.tgz"; - sha512 = "udPU4ckK+R1JWCGdQC4Qa27NtBg7w020ffHqGyAK8pAgOVuNw7YaKXGChk+udh+iiGIJf6/E/0xhVXyPAbsczw=="; + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.48.2.tgz"; + sha512 = "38zMsKsG2sIuM5Oi/olurGwYJXzmtdsHhn5mI/pQogP+BjYVkK5iRazCQ8RGS0V+YLk282uWElN70zAAUmaYHw=="; }; }; "@typescript-eslint/scope-manager-4.33.0" = { @@ -13378,22 +13099,22 @@ let sha512 = "5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ=="; }; }; - "@typescript-eslint/scope-manager-5.47.0" = { + "@typescript-eslint/scope-manager-5.48.2" = { name = "_at_typescript-eslint_slash_scope-manager"; packageName = "@typescript-eslint/scope-manager"; - version = "5.47.0"; + version = "5.48.2"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.47.0.tgz"; - sha512 = "dvJab4bFf7JVvjPuh3sfBUWsiD73aiftKBpWSfi3sUkysDQ4W8x+ZcFpNp7Kgv0weldhpmMOZBjx1wKN8uWvAw=="; + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.48.2.tgz"; + sha512 = "zEUFfonQid5KRDKoI3O+uP1GnrFd4tIHlvs+sTJXiWuypUWMuDaottkJuR612wQfOkjYbsaskSIURV9xo4f+Fw=="; }; }; - "@typescript-eslint/type-utils-5.47.0" = { + "@typescript-eslint/type-utils-5.48.2" = { name = "_at_typescript-eslint_slash_type-utils"; packageName = "@typescript-eslint/type-utils"; - version = "5.47.0"; + version = "5.48.2"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.47.0.tgz"; - sha512 = "1J+DFFrYoDUXQE1b7QjrNGARZE6uVhBqIvdaXTe5IN+NmEyD68qXR1qX1g2u4voA+nCaelQyG8w30SAOihhEYg=="; + url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.48.2.tgz"; + sha512 = "QVWx7J5sPMRiOMJp5dYshPxABRoZV1xbRirqSk8yuIIsu0nvMTZesKErEA3Oix1k+uvsk8Cs8TGJ6kQ0ndAcew=="; }; }; "@typescript-eslint/types-4.33.0" = { @@ -13405,13 +13126,13 @@ let sha512 = "zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ=="; }; }; - "@typescript-eslint/types-5.47.0" = { + "@typescript-eslint/types-5.48.2" = { name = "_at_typescript-eslint_slash_types"; packageName = "@typescript-eslint/types"; - version = "5.47.0"; + version = "5.48.2"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.47.0.tgz"; - sha512 = "eslFG0Qy8wpGzDdYKu58CEr3WLkjwC5Usa6XbuV89ce/yN5RITLe1O8e+WFEuxnfftHiJImkkOBADj58ahRxSg=="; + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.48.2.tgz"; + sha512 = "hE7dA77xxu7ByBc6KCzikgfRyBCTst6dZQpwaTy25iMYOnbNljDT4hjhrGEJJ0QoMjrfqrx+j1l1B9/LtKeuqA=="; }; }; "@typescript-eslint/typescript-estree-4.33.0" = { @@ -13423,22 +13144,22 @@ let sha512 = "rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA=="; }; }; - "@typescript-eslint/typescript-estree-5.47.0" = { + "@typescript-eslint/typescript-estree-5.48.2" = { name = "_at_typescript-eslint_slash_typescript-estree"; packageName = "@typescript-eslint/typescript-estree"; - version = "5.47.0"; + version = "5.48.2"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.47.0.tgz"; - sha512 = "LxfKCG4bsRGq60Sqqu+34QT5qT2TEAHvSCCJ321uBWywgE2dS0LKcu5u+3sMGo+Vy9UmLOhdTw5JHzePV/1y4Q=="; + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.48.2.tgz"; + sha512 = "bibvD3z6ilnoVxUBFEgkO0k0aFvUc4Cttt0dAreEr+nrAHhWzkO83PEVVuieK3DqcgL6VAK5dkzK8XUVja5Zcg=="; }; }; - "@typescript-eslint/utils-5.47.0" = { + "@typescript-eslint/utils-5.48.2" = { name = "_at_typescript-eslint_slash_utils"; packageName = "@typescript-eslint/utils"; - version = "5.47.0"; + version = "5.48.2"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.47.0.tgz"; - sha512 = "U9xcc0N7xINrCdGVPwABjbAKqx4GK67xuMV87toI+HUqgXj26m6RBp9UshEXcTrgCkdGYFzgKLt8kxu49RilDw=="; + url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.48.2.tgz"; + sha512 = "2h18c0d7jgkw6tdKTlNaM7wyopbLRBiit8oAxoP89YnuBOzCZ8g8aBCaCqq7h208qUTroL7Whgzam7UY3HVLow=="; }; }; "@typescript-eslint/visitor-keys-4.33.0" = { @@ -13450,13 +13171,13 @@ let sha512 = "uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg=="; }; }; - "@typescript-eslint/visitor-keys-5.47.0" = { + "@typescript-eslint/visitor-keys-5.48.2" = { name = "_at_typescript-eslint_slash_visitor-keys"; packageName = "@typescript-eslint/visitor-keys"; - version = "5.47.0"; + version = "5.48.2"; src = fetchurl { - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.47.0.tgz"; - sha512 = "ByPi5iMa6QqDXe/GmT/hR6MZtVPi0SqMQPDx15FczCBXJo/7M8T88xReOALAfpBLm+zxpPfmhuEvPb577JRAEg=="; + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.48.2.tgz"; + sha512 = "z9njZLSkwmjFWUelGEwEbdf4NwKvfHxvGC0OcGN1Hp/XNDIcJ7D5DpPNPv6x6/mFvc1tQHsaWmpD/a4gOvvCJQ=="; }; }; "@uphold/request-logger-2.0.0" = { @@ -13477,13 +13198,13 @@ let sha512 = "PUxhtBh7/8167HJK6WqBv6Z0piuiaZHQGYbhwpNL9aIQmLROPEdaUYkY4wh45wPQXcTpnd11l0q3Pw+TI11pdw=="; }; }; - "@urql/core-3.0.5" = { + "@urql/core-3.1.1" = { name = "_at_urql_slash_core"; packageName = "@urql/core"; - version = "3.0.5"; + version = "3.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/@urql/core/-/core-3.0.5.tgz"; - sha512 = "6/1HG+WEAcPs+hXSFnxWBTWkNUwa8dj2cHysWokMaFIbAioGtUaSdxp2q9FDMtWAIGdc640NFSt2B8itGLdoAA=="; + url = "https://registry.npmjs.org/@urql/core/-/core-3.1.1.tgz"; + sha512 = "Mnxtq4I4QeFJsgs7Iytw+HyhiGxISR6qtyk66c9tipozLZ6QVxrCiUPF2HY4BxNIabaxcp+rivadvm8NAnXj4Q=="; }; }; "@urql/exchange-retry-0.3.0" = { @@ -13504,139 +13225,139 @@ let sha512 = "UGyyGAMXzop9C/fIoe7Ij63DkPSy1uMw2jipB5dnB8R3kl80za7LYzVnA1HvBEt2ZPWfMuwez/VGLOQ7XX4bTA=="; }; }; - "@vercel/build-utils-5.7.1" = { + "@vercel/build-utils-5.9.0" = { name = "_at_vercel_slash_build-utils"; packageName = "@vercel/build-utils"; - version = "5.7.1"; + version = "5.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-5.7.1.tgz"; - sha512 = "JilBlPlqwH/d4dbRLyxbhr4y3Yb41cfyypGyCFOpdgXo1ie3v2wkNZWNyWpDHSocSS4PpdIGJ1OdnzULd2fdBQ=="; + url = "https://registry.npmjs.org/@vercel/build-utils/-/build-utils-5.9.0.tgz"; + sha512 = "LJRhd/ritLGHH+YvZ+DC7AW3Jr87UZHFHz2h2ENULDZ8qAo5LJH+y+Cg11uxfXkhQKK2f/AZQJXyKVyu1BBwdQ=="; }; }; - "@vercel/go-2.2.20" = { + "@vercel/go-2.2.30" = { name = "_at_vercel_slash_go"; packageName = "@vercel/go"; - version = "2.2.20"; + version = "2.2.30"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/go/-/go-2.2.20.tgz"; - sha512 = "VORq8/5iVK1NS55jgiNUqutcW4W7+bYhBIfSfvcBvsLbjaOLuQXlv3j/eDRTI4gGBdrBjXOjuGABlphw/J+olA=="; + url = "https://registry.npmjs.org/@vercel/go/-/go-2.2.30.tgz"; + sha512 = "ODz5UrlBzYIpPVjfMZVofQGfsqHSn2WjLdHGw58UAgQH+rUYSWBwqsXvIcYT3QXy2hKCZGguahqeT0qXSqBpTw=="; }; }; - "@vercel/hydrogen-0.0.34" = { + "@vercel/hydrogen-0.0.44" = { name = "_at_vercel_slash_hydrogen"; packageName = "@vercel/hydrogen"; - version = "0.0.34"; + version = "0.0.44"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-0.0.34.tgz"; - sha512 = "MpwvmdWIJoetTMtpkaZROTdh7L8MfV6ZTUR7Bu5OpMe51dm1N9aKz7x8ekn4dUMHDm0GCR7QbauNQ+41Cse6Ag=="; + url = "https://registry.npmjs.org/@vercel/hydrogen/-/hydrogen-0.0.44.tgz"; + sha512 = "7RnSk10nE0tNLHcTCUTWCpO5rfcMQ7N6ECTaeozWcYWs2/Fol7tLjc9Uowo1ZqnV7wTm5mE/ooCD2FNlaKmiaA=="; }; }; - "@vercel/next-3.3.4" = { + "@vercel/next-3.3.15" = { name = "_at_vercel_slash_next"; packageName = "@vercel/next"; - version = "3.3.4"; + version = "3.3.15"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/next/-/next-3.3.4.tgz"; - sha512 = "vbq1Z4fayKdjdGQ4rFuuMuin27xnrmRpWnKfoU4luY16zUJeRGUICiZIUccePckZydc7SH/9ax3gTFGWJacoIw=="; + url = "https://registry.npmjs.org/@vercel/next/-/next-3.3.15.tgz"; + sha512 = "zfJ54JkalkMvxE4e0/OAL0sPEm9AplUCBR2Bq6JhGrOEaxBGdCyv2RPBAyZOV1JL+m9y06hJpWyFQGsOtI5RgA=="; }; }; - "@vercel/nft-0.22.1" = { + "@vercel/nft-0.22.5" = { name = "_at_vercel_slash_nft"; packageName = "@vercel/nft"; - version = "0.22.1"; + version = "0.22.5"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/nft/-/nft-0.22.1.tgz"; - sha512 = "lYYZIoxRurqDOSoVIdBicGnpUIpfyaS5qVjdPq+EfI285WqtZK3NK/dyCkiyBul+X2U2OEhRyeMdXPCHGJbohw=="; + url = "https://registry.npmjs.org/@vercel/nft/-/nft-0.22.5.tgz"; + sha512 = "mug57Wd1BL7GMj9gXMgMeKUjdqO0e4u+0QLPYMFE1rwdJ+55oPy6lp3nIBCS8gOvigT62UI4QKUL2sGqcoW4Hw=="; }; }; - "@vercel/node-2.8.1" = { + "@vercel/node-2.8.13" = { name = "_at_vercel_slash_node"; packageName = "@vercel/node"; - version = "2.8.1"; + version = "2.8.13"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/node/-/node-2.8.1.tgz"; - sha512 = "hLp/Q9MBkYeLqVz1KPiWWae9bTfI/ouEFGhsKQSurUZRBK+FaAJC9k4T59cIfvxgdXHEr801ga3IPfhe7tpQ5A=="; + url = "https://registry.npmjs.org/@vercel/node/-/node-2.8.13.tgz"; + sha512 = "RI0Ig2v7MK4N3EVPHKNEj3IK+D0/GtIbMFZB0WcUgE77UvdD++tf5JWTlqrwxPOYOxO/J0/0L8WZXTAzpPgdGA=="; }; }; - "@vercel/node-bridge-3.1.2" = { + "@vercel/node-bridge-3.1.9" = { name = "_at_vercel_slash_node-bridge"; packageName = "@vercel/node-bridge"; - version = "3.1.2"; + version = "3.1.9"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/node-bridge/-/node-bridge-3.1.2.tgz"; - sha512 = "dgcLXug0IqUeRsywf0G8IrhUFcgw+GYj+EZB4JneglKSofFBh3Xy/t7KfBUxLlKnoq6kyGYJvTmAVB1YBt11qw=="; + url = "https://registry.npmjs.org/@vercel/node-bridge/-/node-bridge-3.1.9.tgz"; + sha512 = "07Bgb6jm8OMTlxGRC4kOY0ewi4xLtMcK3z45T+GKRO7oKeA4vhRGFbT5BsJKF3V5/nj6TYAsWsErBf4RGVSBcw=="; }; }; - "@vercel/python-3.1.30" = { + "@vercel/python-3.1.40" = { name = "_at_vercel_slash_python"; packageName = "@vercel/python"; - version = "3.1.30"; + version = "3.1.40"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/python/-/python-3.1.30.tgz"; - sha512 = "Glrl5NIYnUDFr+vuP6Nu78gONH82l8U2bYfaYvE1AlUWcZIPfa15PPq7o9FX9KYZq5LZppc60cL+B9l1lxI5BA=="; + url = "https://registry.npmjs.org/@vercel/python/-/python-3.1.40.tgz"; + sha512 = "Cns+KTVBloQXtls72KaaXQ2gHgsH5/Mm7lwv80ysTZvp5x6loh+Faf6QJq93LxYh9lz2wqWjO+nq3XJ77N5twg=="; }; }; - "@vercel/redwood-1.0.40" = { + "@vercel/redwood-1.0.51" = { name = "_at_vercel_slash_redwood"; packageName = "@vercel/redwood"; - version = "1.0.40"; + version = "1.0.51"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/redwood/-/redwood-1.0.40.tgz"; - sha512 = "xAa9Xjy/MDohBM7fT+6QJ9SZ2xe0nhPtXtCj8c8k6zIMai38r1XKbPMynLnWNYm6qzMFTeCs5WQb6MDcKUwG4A=="; + url = "https://registry.npmjs.org/@vercel/redwood/-/redwood-1.0.51.tgz"; + sha512 = "0i9+qe4branWzMfeLbIazvomxCX7scASJ9bqm2oMCdMxZrXeB3/hwRCUUdGJGXmRsrGp7ATsXjxynd+D1wZymw=="; }; }; - "@vercel/remix-1.1.2" = { + "@vercel/remix-1.2.5" = { name = "_at_vercel_slash_remix"; packageName = "@vercel/remix"; - version = "1.1.2"; + version = "1.2.5"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/remix/-/remix-1.1.2.tgz"; - sha512 = "STX8aLqwDFgGx8CinP5s7hnOBoykXu/28q97au7+quPE1t6dMCinRMeq0CxsO2e2zNJZxjErPfWfCyZU4DebwA=="; + url = "https://registry.npmjs.org/@vercel/remix/-/remix-1.2.5.tgz"; + sha512 = "jbTDy+Ar+DRbk2UJqazOcGs1lgWhTSf5yvO27ZyN+mM4diTKg834McjJ9IUhpEyBGejS3+dPaz7U9dn+Bfbztw=="; }; }; - "@vercel/routing-utils-2.1.3" = { + "@vercel/routing-utils-2.1.8" = { name = "_at_vercel_slash_routing-utils"; packageName = "@vercel/routing-utils"; - version = "2.1.3"; + version = "2.1.8"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/routing-utils/-/routing-utils-2.1.3.tgz"; - sha512 = "MkZq6YgmzpjkN/LxIxgnw81kEN+j7PYNjQQasOjCVvq5o/dFTVRgud7eUuyl8LMCnh0vZ1odRneMtPBnFKbwJQ=="; + url = "https://registry.npmjs.org/@vercel/routing-utils/-/routing-utils-2.1.8.tgz"; + sha512 = "rng+qyQ0VpnBjO2R7GQlpAdEx+yyvrcEp6XNe+4q6e+oW0n2H6dm6SLFEBA6B1QmHX4OTTCkq1GIiKsK6ENw4Q=="; }; }; - "@vercel/ruby-1.3.46" = { + "@vercel/ruby-1.3.56" = { name = "_at_vercel_slash_ruby"; packageName = "@vercel/ruby"; - version = "1.3.46"; + version = "1.3.56"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.46.tgz"; - sha512 = "OMRgFPCvPm8lnV3InJWXzwtjQlXreHTRElFki0D+cRqDdJ2nCqlt0jAAH1EZklhsBr65kPH3MOrUh+pryAKyfg=="; + url = "https://registry.npmjs.org/@vercel/ruby/-/ruby-1.3.56.tgz"; + sha512 = "fYjyU8ZhsouRC5WWZBuN8FQG+eHGTFzl8sCwCGdeaykJOpVa0FW9Xl/fDjBpAQoicbrdZhDH2HaEfnjBkLVIeA=="; }; }; - "@vercel/static-build-1.0.43" = { + "@vercel/static-build-1.1.7" = { name = "_at_vercel_slash_static-build"; packageName = "@vercel/static-build"; - version = "1.0.43"; + version = "1.1.7"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.0.43.tgz"; - sha512 = "U72q0SJZT0ma4KvW7v+ICiDNsWFgQ11J7q5aHUMUD1XsFKF5CBLTIKmOx8hOMjEq/v5jLLCESRcmVMrCe8fZ2w=="; + url = "https://registry.npmjs.org/@vercel/static-build/-/static-build-1.1.7.tgz"; + sha512 = "l0QBOuRD6NjewHyPTSMxk96MVJbeem46cjqKb9AB9Ochf2nb20JGZaON0VSqeJRtrQR19gWiqgTT+glz1G098A=="; }; }; - "@vercel/static-config-2.0.6" = { + "@vercel/static-config-2.0.11" = { name = "_at_vercel_slash_static-config"; packageName = "@vercel/static-config"; - version = "2.0.6"; + version = "2.0.11"; src = fetchurl { - url = "https://registry.npmjs.org/@vercel/static-config/-/static-config-2.0.6.tgz"; - sha512 = "P0kh9ZBA9RrP4u0pDENxsuU/PAOw/ph+CoGgS5ZfDNa7P0qYhi9TfgVAtjFnGxi0dImq/S49uTVW5NPYWwc+ww=="; + url = "https://registry.npmjs.org/@vercel/static-config/-/static-config-2.0.11.tgz"; + sha512 = "dw6CAJ7U2AcQpjZV9YfOyz2wTseSFdkT3qivBg2GjHtVyd5wdY7vkQ9seLKEckYhFx3CjQ29IhzhDND9F5oINw=="; }; }; - "@vscode/emmet-helper-2.8.4" = { + "@vscode/emmet-helper-2.8.6" = { name = "_at_vscode_slash_emmet-helper"; packageName = "@vscode/emmet-helper"; - version = "2.8.4"; + version = "2.8.6"; src = fetchurl { - url = "https://registry.npmjs.org/@vscode/emmet-helper/-/emmet-helper-2.8.4.tgz"; - sha512 = "lUki5QLS47bz/U8IlG9VQ+1lfxMtxMZENmU5nu4Z71eOD5j9FK0SmYGL5NiVJg9WBWeAU0VxRADMY2Qpq7BfVg=="; + url = "https://registry.npmjs.org/@vscode/emmet-helper/-/emmet-helper-2.8.6.tgz"; + sha512 = "IIB8jbiKy37zN8bAIHx59YmnIelY78CGHtThnibD/d3tQOKRY83bYVi9blwmZVUZh6l9nfkYH3tvReaiNxY9EQ=="; }; }; "@vscode/l10n-0.0.10" = { @@ -13648,13 +13369,13 @@ let sha512 = "E1OCmDcDWa0Ya7vtSjp/XfHFGqYJfh+YPC1RkATU71fTac+j1JjCcB3qwSzmlKAighx2WxhLlfhS0RwAN++PFQ=="; }; }; - "@vscode/test-electron-2.2.1" = { + "@vscode/test-electron-2.2.2" = { name = "_at_vscode_slash_test-electron"; packageName = "@vscode/test-electron"; - version = "2.2.1"; + version = "2.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/@vscode/test-electron/-/test-electron-2.2.1.tgz"; - sha512 = "DUdwSYVc9p/PbGveaq20dbAAXHfvdq4zQ24ILp6PKizOBxrOfMsOq8Vts5nMzeIo0CxtA/RxZLFyDv001PiUSg=="; + url = "https://registry.npmjs.org/@vscode/test-electron/-/test-electron-2.2.2.tgz"; + sha512 = "s5d2VtMySvff0UgqkJ0BMCr1es+qREE194EAodGIefq518W53ifvv69e80l9e2MrYJEqUUKwukE/w3H9o15YEw=="; }; }; "@vue/cli-overlay-4.5.19" = { @@ -13864,15 +13585,6 @@ let sha512 = "Iu8Tbg3f+emIIMmI2ycSI8QcEuAUgPTgHwesDU1eKMLE4YC/c/sFbGc70QgMq31ijRftV0R7vCm9co6rldCeOA=="; }; }; - "@vvo/tzdb-6.84.0" = { - name = "_at_vvo_slash_tzdb"; - packageName = "@vvo/tzdb"; - version = "6.84.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@vvo/tzdb/-/tzdb-6.84.0.tgz"; - sha512 = "dyTVGsrf8u0iFZ6FUxQd67th1LHOcpQGgdrWUC1tdgCNY8AGNHJNdzgo48axHJz6dlRavM/ArxS/SIPT+1fiUA=="; - }; - }; "@webassemblyjs/ast-1.11.1" = { name = "_at_webassemblyjs_slash_ast"; packageName = "@webassemblyjs/ast"; @@ -14593,13 +14305,13 @@ let sha512 = "GWZQKroPES4z91Ijx6zsOsb7+USOxjy66s8AoTWg0HiBBdfnbtf9aeh3Uav0MgYn4BL8Q7tVSUpd0gGpngKGEQ=="; }; }; - "@whatwg-node/fetch-0.5.3" = { + "@whatwg-node/fetch-0.6.2" = { name = "_at_whatwg-node_slash_fetch"; packageName = "@whatwg-node/fetch"; - version = "0.5.3"; + version = "0.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.5.3.tgz"; - sha512 = "cuAKL3Z7lrJJuUrfF1wxkQTb24Qd1QO/lsjJpM5ZSZZzUMms5TPnbGeGUKWA3hVKNHh30lVfr2MyRCT5Jfkucw=="; + url = "https://registry.npmjs.org/@whatwg-node/fetch/-/fetch-0.6.2.tgz"; + sha512 = "fCUycF1W+bI6XzwJFnbdDuxIldfKM3w8+AzVCLGlucm0D+AQ8ZMm2j84hdcIhfV6ZdE4Y1HFVrHosAxdDZ+nPw=="; }; }; "@withgraphite/graphite-cli-routes-0.23.0" = { @@ -14944,13 +14656,13 @@ let sha512 = "GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ=="; }; }; - "@yarnpkg/parsers-3.0.0-rc.34" = { + "@yarnpkg/parsers-3.0.0-rc.35" = { name = "_at_yarnpkg_slash_parsers"; packageName = "@yarnpkg/parsers"; - version = "3.0.0-rc.34"; + version = "3.0.0-rc.35"; src = fetchurl { - url = "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.34.tgz"; - sha512 = "NhEA0BusInyk7EiJ7i7qF1Mkrb6gGjZcQQ/W1xxGazxapubEmGO7v5WSll6hWxFXE2ngtLj8lflq1Ff5VtqEww=="; + url = "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.35.tgz"; + sha512 = "J6ySgEdQUqAmlttvZOoXOEsrDTAnHyR/MtEvuAG5a+gwKY/2Cc7xn4CWcpgfuwkp+0a4vXmt2BDwzacDoGDN1g=="; }; }; "@zeit/schemas-2.21.0" = { @@ -14989,76 +14701,76 @@ let sha512 = "nzvgl3VfhcELQ8LyVrYOru+UtAy1nrygk2+AGbTm8a5YcO6o8lSjAT+pfg3vJWxIoZKOUhrK6UU7xW/+00kQrg=="; }; }; - "@zwave-js/cc-10.3.1" = { + "@zwave-js/cc-10.4.0" = { name = "_at_zwave-js_slash_cc"; packageName = "@zwave-js/cc"; - version = "10.3.1"; + version = "10.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/cc/-/cc-10.3.1.tgz"; - sha512 = "AnTeQrg0Hb3Kc59zg+OxOwSUI9K607Paf+RjumlCtG9PqNv0rP8UYi9h0MwYWLu2ETGcca7Hes+FRDGQ8JP8BQ=="; + url = "https://registry.npmjs.org/@zwave-js/cc/-/cc-10.4.0.tgz"; + sha512 = "qKisjEz2fOCCNp8LREYyRZu0pib38lqO+pnJwZs5Gjni0EnEC3A1FW470AXPUVJw2cbGtFDaYnGfTW72xeJSpg=="; }; }; - "@zwave-js/config-10.3.1" = { + "@zwave-js/config-10.4.0" = { name = "_at_zwave-js_slash_config"; packageName = "@zwave-js/config"; - version = "10.3.1"; + version = "10.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/config/-/config-10.3.1.tgz"; - sha512 = "KdmU3VnKGX6zJn8Y6SnC6E+ywfp+b0OcrPMiqMJNVVeDfwCaE73hnUzqji0wKHhd3xDeNNeBYqZ+aHEx22dMnQ=="; + url = "https://registry.npmjs.org/@zwave-js/config/-/config-10.4.0.tgz"; + sha512 = "Z3Gc8gmgUJUwP/on/EDgobksfazOxOxfxUGHDH/jfqxsF0adFSdhSeatF9cCfh5YM+UWFYEZLgVykbKtIW9XoA=="; }; }; - "@zwave-js/core-10.3.0" = { + "@zwave-js/core-10.4.0" = { name = "_at_zwave-js_slash_core"; packageName = "@zwave-js/core"; - version = "10.3.0"; + version = "10.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/core/-/core-10.3.0.tgz"; - sha512 = "TP8fzgCq6Nh92tMgN4s2tObMO74vp5NtoX6w3u+WmmtJVyxBf40QeWVJlvbuvpKUZt01uZ2jsnI399SibJgxYg=="; + url = "https://registry.npmjs.org/@zwave-js/core/-/core-10.4.0.tgz"; + sha512 = "/3gKj8dzxn1T3ymiMjNPN/ficAEti9cnCVxQvjjRyqNsBe6onsN+n4Te+Ed7LuSybGH+v9G8iH29YkjjgzU66g=="; }; }; - "@zwave-js/host-10.3.1" = { + "@zwave-js/host-10.4.0" = { name = "_at_zwave-js_slash_host"; packageName = "@zwave-js/host"; - version = "10.3.1"; + version = "10.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/host/-/host-10.3.1.tgz"; - sha512 = "OlBvGDrf5T8xStH8ZuFpnUlA0Q/PltwNY6PJ8LjDNuHmrsI6Si8WHvjp/fPgWovddXn8RgA/WDx/3y1lXVgZqQ=="; + url = "https://registry.npmjs.org/@zwave-js/host/-/host-10.4.0.tgz"; + sha512 = "NLL18cmaXZcbT/rQ/vdVCvRo9GQF5xYWGDxgja6zjuAR5xrsYyfyvI1lJuiOD9i9iPmTiu1XFv1PfJl54Ird3A=="; }; }; - "@zwave-js/nvmedit-10.3.0" = { + "@zwave-js/nvmedit-10.4.0" = { name = "_at_zwave-js_slash_nvmedit"; packageName = "@zwave-js/nvmedit"; - version = "10.3.0"; + version = "10.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/nvmedit/-/nvmedit-10.3.0.tgz"; - sha512 = "0WwTxkPErfuZCKDfJyXAmpzkaNkCnYVw2GmWquavF8QRCv/N40aX7hYoVt8F3JoiPL4/V/gSNUCx6VxvlO3QRA=="; + url = "https://registry.npmjs.org/@zwave-js/nvmedit/-/nvmedit-10.4.0.tgz"; + sha512 = "fxhIxRHBcDESafhdE6Qnil+IbQig+XncUMcVXm1m77/fT8Ee3QXLPbqte0O1+10KcnHdult3t9cB0hlBIk2OhA=="; }; }; - "@zwave-js/serial-10.3.1" = { + "@zwave-js/serial-10.4.0" = { name = "_at_zwave-js_slash_serial"; packageName = "@zwave-js/serial"; - version = "10.3.1"; + version = "10.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/serial/-/serial-10.3.1.tgz"; - sha512 = "eCYUdZ9bqDaoeAWOEl966YV0/LKATNIFzPDMzBTebYgHKTOxo0n527B+8BG9pGAkOJnWJoItCS3/e88zU9U8fw=="; + url = "https://registry.npmjs.org/@zwave-js/serial/-/serial-10.4.0.tgz"; + sha512 = "8NPH7MqjSpd8HeGTJYfw+bmCPpadMebpSlJsf2n/vAbMU6E8Sp1Gi3X347MzdMxDAQOzF3YaV9UBmGcRcxvfBQ=="; }; }; - "@zwave-js/shared-10.3.0" = { + "@zwave-js/shared-10.4.0" = { name = "_at_zwave-js_slash_shared"; packageName = "@zwave-js/shared"; - version = "10.3.0"; + version = "10.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/shared/-/shared-10.3.0.tgz"; - sha512 = "3U9S8lJZQxf6aVoH7Hir4KsGnHiinJkzqaEUeOzHyxNeYoZlniIlN9QYtkc21GXFxCcEIrkhoiXbHat7R0LOKg=="; + url = "https://registry.npmjs.org/@zwave-js/shared/-/shared-10.4.0.tgz"; + sha512 = "uuLYDDNqIkagJ40piNMhljVG9OepI31/labLnivJByxGdELJnIXGRKLQ8ZKvm/5Ba8qXpEw/t7UrV2plfP/QCg=="; }; }; - "@zwave-js/testing-10.3.1" = { + "@zwave-js/testing-10.4.0" = { name = "_at_zwave-js_slash_testing"; packageName = "@zwave-js/testing"; - version = "10.3.1"; + version = "10.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@zwave-js/testing/-/testing-10.3.1.tgz"; - sha512 = "+EPDhy4lPlgneUNHREA8PCYEngS9J/S5iQys4QwFZRCu1uSc1VDCEYyveTxZZIdcjJp+uf05gsu+ZAXdIOWuVA=="; + url = "https://registry.npmjs.org/@zwave-js/testing/-/testing-10.4.0.tgz"; + sha512 = "5rCxp7EJXK6B8td4SdVyqmZL+4WL3p7blVLKjT3LpZXcMolOTeEEptggJ9yhmFm2pUhkOHSoE12FwroJbRObXw=="; }; }; "CSSselect-0.4.1" = { @@ -15331,15 +15043,6 @@ let sha512 = "7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA=="; }; }; - "acorn-class-fields-0.3.7" = { - name = "acorn-class-fields"; - packageName = "acorn-class-fields"; - version = "0.3.7"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn-class-fields/-/acorn-class-fields-0.3.7.tgz"; - sha512 = "jdUWSFce0fuADUljmExz4TWpPkxmRW/ZCPRqeeUzbGf0vFUcpQYbyq52l75qGd0oSwwtAepeL6hgb/naRgvcKQ=="; - }; - }; "acorn-dynamic-import-3.0.0" = { name = "acorn-dynamic-import"; packageName = "acorn-dynamic-import"; @@ -15430,42 +15133,6 @@ let sha512 = "8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A=="; }; }; - "acorn-private-class-elements-0.2.7" = { - name = "acorn-private-class-elements"; - packageName = "acorn-private-class-elements"; - version = "0.2.7"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn-private-class-elements/-/acorn-private-class-elements-0.2.7.tgz"; - sha512 = "+GZH2wOKNZOBI4OOPmzpo4cs6mW297sn6fgIk1dUI08jGjhAaEwvC39mN2gJAg2lmAQJ1rBkFqKWonL3Zz6PVA=="; - }; - }; - "acorn-private-methods-0.3.3" = { - name = "acorn-private-methods"; - packageName = "acorn-private-methods"; - version = "0.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn-private-methods/-/acorn-private-methods-0.3.3.tgz"; - sha512 = "46oeEol3YFvLSah5m9hGMlNpxDBCEkdceJgf01AjqKYTK9r6HexKs2rgSbLK81pYjZZMonhftuUReGMlbbv05w=="; - }; - }; - "acorn-stage3-4.0.0" = { - name = "acorn-stage3"; - packageName = "acorn-stage3"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn-stage3/-/acorn-stage3-4.0.0.tgz"; - sha512 = "BR+LaADtA6GTB5prkNqWmlmCLYmkyW0whvSxdHhbupTaro2qBJ95fJDEiRLPUmiACGHPaYyeH9xmNJWdGfXRQw=="; - }; - }; - "acorn-static-class-features-0.2.4" = { - name = "acorn-static-class-features"; - packageName = "acorn-static-class-features"; - version = "0.2.4"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn-static-class-features/-/acorn-static-class-features-0.2.4.tgz"; - sha512 = "5X4mpYq5J3pdndLmIB0+WtFd/mKWnNYpuTlTzj32wUu/PMmEGOiayQ5UrqgwdBNiaZBtDDh5kddpP7Yg2QaQYA=="; - }; - }; "acorn-walk-6.2.0" = { name = "acorn-walk"; packageName = "acorn-walk"; @@ -15592,15 +15259,6 @@ let sha512 = "4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA=="; }; }; - "adjust-sourcemap-loader-4.0.0" = { - name = "adjust-sourcemap-loader"; - packageName = "adjust-sourcemap-loader"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-4.0.0.tgz"; - sha512 = "OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A=="; - }; - }; "adm-zip-0.5.10" = { name = "adm-zip"; packageName = "adm-zip"; @@ -15790,6 +15448,15 @@ let sha512 = "E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg=="; }; }; + "ajv-8.12.0" = { + name = "ajv"; + packageName = "ajv"; + version = "8.12.0"; + src = fetchurl { + url = "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz"; + sha512 = "sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA=="; + }; + }; "ajv-8.6.3" = { name = "ajv"; packageName = "ajv"; @@ -16483,15 +16150,6 @@ let sha512 = "aE9RDVplmkaOj/OduNmGa+0a1B5RIWI0o3zC1zLvBTVWMKTpo0ifVf11TyMkLCY+T7cnZqVqwyShziOyC3FyUw=="; }; }; - "app-module-path-2.2.0" = { - name = "app-module-path"; - packageName = "app-module-path"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/app-module-path/-/app-module-path-2.2.0.tgz"; - sha512 = "gkco+qxENJV+8vFcDiiFhuoSvRXb2a/QPqpSoWhVz829VNJfOTnELbBmPmNKFxf3xdNnw4DWCkzkDaavcX/1YQ=="; - }; - }; "app-path-2.2.0" = { name = "app-path"; packageName = "app-path"; @@ -16600,13 +16258,22 @@ let sha512 = "zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw=="; }; }; - "applicationinsights-1.8.10" = { + "applicationinsights-2.3.6" = { name = "applicationinsights"; packageName = "applicationinsights"; - version = "1.8.10"; + version = "2.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/applicationinsights/-/applicationinsights-1.8.10.tgz"; - sha512 = "ZLDA7mShh4mP2Z/HlFolmvhBPX1LfnbIWXrselyYVA7EKjHhri1fZzpu2EiWAmfbRxNBY6fRjoPJWbx5giKy4A=="; + url = "https://registry.npmjs.org/applicationinsights/-/applicationinsights-2.3.6.tgz"; + sha512 = "ZzXXpZpDRGcy6Pp5V319nDF9/+Ey7jNknEXZyaBajtC5onN0dcBem6ng5jcb3MPH2AjYWRI8XgyNEuzP/6Y5/A=="; + }; + }; + "applicationinsights-native-metrics-0.0.8" = { + name = "applicationinsights-native-metrics"; + packageName = "applicationinsights-native-metrics"; + version = "0.0.8"; + src = fetchurl { + url = "https://registry.npmjs.org/applicationinsights-native-metrics/-/applicationinsights-native-metrics-0.0.8.tgz"; + sha512 = "3areRz2+Q1EPWbQYokfOgYXLkZyBzeReI9716nw97p697gFUfGqYgwJ5fCopftvHycW2zuRWTFJWmA70S5605A=="; }; }; "aproba-1.2.0" = { @@ -16789,13 +16456,13 @@ let sha512 = "u96dg2GcAKtpTrBdDoFIM7PjcBA+6rSP0OR94MOReNRyUECL6MtQt5XXmRr4qrftYaef9+l5hcpO5te7sML1Cg=="; }; }; - "aria-query-4.2.2" = { + "aria-query-5.1.3" = { name = "aria-query"; packageName = "aria-query"; - version = "4.2.2"; + version = "5.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz"; - sha512 = "o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA=="; + url = "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz"; + sha512 = "R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ=="; }; }; "arib-mpeg2ts-parser-3.0.15" = { @@ -16915,15 +16582,6 @@ let sha512 = "sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q=="; }; }; - "array-back-1.0.4" = { - name = "array-back"; - packageName = "array-back"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz"; - sha512 = "1WxbZvrmyhkNoeYcizokbmh5oiOCIfyvGtcqbK3Ls1v1fKcquzxnQSceOx6tzq7jmai2kFLWIpGND2cLhH6TPw=="; - }; - }; "array-back-2.0.0" = { name = "array-back"; packageName = "array-back"; @@ -16942,6 +16600,15 @@ let sha512 = "TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q=="; }; }; + "array-back-4.0.2" = { + name = "array-back"; + packageName = "array-back"; + version = "4.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz"; + sha512 = "NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg=="; + }; + }; "array-differ-1.0.0" = { name = "array-differ"; packageName = "array-differ"; @@ -17869,6 +17536,15 @@ let sha512 = "p4U6HQUw4k/xZKrwEQO7ZuF+8/OkzAQS4iAMhFUBGtSD8p3KkKBaTBuUTEH8TWKB3ArNbrP0401TGE2vIiU7uQ=="; }; }; + "asyncjs-util-1.2.11" = { + name = "asyncjs-util"; + packageName = "asyncjs-util"; + version = "1.2.11"; + src = fetchurl { + url = "https://registry.npmjs.org/asyncjs-util/-/asyncjs-util-1.2.11.tgz"; + sha512 = "XPPs2Fwsj07cQ/NB8qAqYv6uqaJU9k1i2cwzHyF62PYuJynNv9Rp+ySm9mh5nQfLq/yOzlmDewFoLJIao21zNw=="; + }; + }; "asynckit-0.4.0" = { name = "asynckit"; packageName = "asynckit"; @@ -18013,15 +17689,6 @@ let sha512 = "JLrV3ErBNKVkmhi0celM6PJkgYEtztFnXwsNBApjinpVHtIP3g/m2ZZSOvsAe7FoByfJzDhpOXBKFbH3k2UNjw=="; }; }; - "autoprefixer-10.4.13" = { - name = "autoprefixer"; - packageName = "autoprefixer"; - version = "10.4.13"; - src = fetchurl { - url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz"; - sha512 = "49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg=="; - }; - }; "autoprefixer-9.8.8" = { name = "autoprefixer"; packageName = "autoprefixer"; @@ -18049,13 +17716,13 @@ let sha512 = "d1W2aNSYcz/sxYO4pMGX9vq65qOTu0P800epMud+6cYYX0QcT7zyqcxec3VWzpgvdXo57UWmVbZpLMjX2m1I7Q=="; }; }; - "aws-crt-1.15.5" = { + "aws-crt-1.15.7" = { name = "aws-crt"; packageName = "aws-crt"; - version = "1.15.5"; + version = "1.15.7"; src = fetchurl { - url = "https://registry.npmjs.org/aws-crt/-/aws-crt-1.15.5.tgz"; - sha512 = "Psa29hJBps7MUwhKHzOU78fv5QeX40bKyrKs6w04Hm1M3LxFdM+uK4ZFjU3TlopTG2ytjCoEP/5Rbd6loU3Y3w=="; + url = "https://registry.npmjs.org/aws-crt/-/aws-crt-1.15.7.tgz"; + sha512 = "wq26kPlK6PYfJ1A4ckW5HDaf+mgkKqjDf3GoYdvQhGR97riO7mLltRRtbe1sPJ0CRUolA1ypt49HRvf1N/yp2g=="; }; }; "aws-sdk-1.18.0" = { @@ -18076,13 +17743,13 @@ let sha512 = "545VawhsCQ7yEx9jZKV0hTTW3FS/waycISWMvnNwqRfpU9o4FQ4DSu3je7ekn5yFKM+91dxJC+IfJgtIV8WaUw=="; }; }; - "aws-sdk-2.1281.0" = { + "aws-sdk-2.1296.0" = { name = "aws-sdk"; packageName = "aws-sdk"; - version = "2.1281.0"; + version = "2.1296.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1281.0.tgz"; - sha512 = "nrDezd78ebYSI58iGTxNR5j6l/beYAGO0pAPMITg/Ili6SUCIGL3359fv2gxhVOI2NIwOsKs5/Mjr83+6G+zCQ=="; + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1296.0.tgz"; + sha512 = "6Nm6zQexyne8lVy+BW8jklGpS36mXJjq67zlsn5XuyB3+qAMlolzar9nxgtuabvb/tSQTP4RSwlhkVzOct+MvA=="; }; }; "aws-sign2-0.6.0" = { @@ -18103,22 +17770,22 @@ let sha512 = "08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA=="; }; }; - "aws4-1.11.0" = { + "aws4-1.12.0" = { name = "aws4"; packageName = "aws4"; - version = "1.11.0"; + version = "1.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz"; - sha512 = "xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA=="; + url = "https://registry.npmjs.org/aws4/-/aws4-1.12.0.tgz"; + sha512 = "NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg=="; }; }; - "axe-core-4.6.1" = { + "axe-core-4.6.2" = { name = "axe-core"; packageName = "axe-core"; - version = "4.6.1"; + version = "4.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/axe-core/-/axe-core-4.6.1.tgz"; - sha512 = "lCZN5XRuOnpG4bpMq8v0khrWtUOn+i8lZSb6wHZH56ZfbIEv6XwJV84AAueh9/zi7qPVJ/E4yz6fmsiyOmXR4w=="; + url = "https://registry.npmjs.org/axe-core/-/axe-core-4.6.2.tgz"; + sha512 = "b1WlTV8+XKLj9gZy2DZXgQiyDp9xkkoe2a6U6UbYccScq2wgH/YwCeI2/Jq2mgo0HzQxqJOjWZBLeA/mqsk5Mg=="; }; }; "axios-0.19.2" = { @@ -18184,13 +17851,13 @@ let sha512 = "t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ=="; }; }; - "axios-1.2.1" = { + "axios-1.2.3" = { name = "axios"; packageName = "axios"; - version = "1.2.1"; + version = "1.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/axios/-/axios-1.2.1.tgz"; - sha512 = "I88cFiGu9ryt/tfVEi4kX2SITsvDddTajXTOFmt2uK1ZVA8LytjtdeyefdQWEf5PU8w+4SSJDoYnggflB5tW4A=="; + url = "https://registry.npmjs.org/axios/-/axios-1.2.3.tgz"; + sha512 = "pdDkMYJeuXLZ6Xj/Q5J3Phpe+jbGdsSzlQaFVkMQzRUL05+6+tetX8TV3p4HrU4kzuO9bt+io/yGQxuyxA/xcw=="; }; }; "axios-cookiejar-support-0.5.1" = { @@ -18211,15 +17878,6 @@ let sha512 = "zl7zThkh+YLSDUYwDqY1hVPndpDn4ghbB59JVhLIj19X5GJBaIts9+SI82O6D0P2wxz9uXLz+Mwnh1WkNDuXgQ=="; }; }; - "axios-mock-adapter-1.21.2" = { - name = "axios-mock-adapter"; - packageName = "axios-mock-adapter"; - version = "1.21.2"; - src = fetchurl { - url = "https://registry.npmjs.org/axios-mock-adapter/-/axios-mock-adapter-1.21.2.tgz"; - sha512 = "jzyNxU3JzB2XVhplZboUcF0YDs7xuExzoRSHXPHr+UQajaGmcTqvkkUADgkVI2WkGlpZ1zZlMVdcTMU0ejV8zQ=="; - }; - }; "axios-retry-3.2.0" = { name = "axios-retry"; packageName = "axios-retry"; @@ -18229,13 +17887,13 @@ let sha512 = "RK2cLMgIsAQBDhlIsJR5dOhODPigvel18XUv1dDXW+4k1FzebyfRk+C+orot6WPZOYFKSfhLwHPwVmTVOODQ5w=="; }; }; - "axobject-query-2.2.0" = { + "axobject-query-3.1.1" = { name = "axobject-query"; packageName = "axobject-query"; - version = "2.2.0"; + version = "3.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz"; - sha512 = "Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA=="; + url = "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz"; + sha512 = "goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg=="; }; }; "azure-devops-node-api-11.2.0" = { @@ -18301,15 +17959,6 @@ let sha512 = "H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q=="; }; }; - "babel-plugin-istanbul-6.1.1" = { - name = "babel-plugin-istanbul"; - packageName = "babel-plugin-istanbul"; - version = "6.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz"; - sha512 = "Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA=="; - }; - }; "babel-plugin-jsx-pragmatic-1.0.2" = { name = "babel-plugin-jsx-pragmatic"; packageName = "babel-plugin-jsx-pragmatic"; @@ -19309,13 +18958,13 @@ let sha512 = "B/d8IADy5Y4v/CTMRWxLD8ONd2qRkF+2DbZLeIUql7PukfAiBhlGlw5qJcIU03l21qMEyvbi4PdntatH+j40vA=="; }; }; - "bit-field-1.6.0" = { + "bit-field-1.7.0" = { name = "bit-field"; packageName = "bit-field"; - version = "1.6.0"; + version = "1.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/bit-field/-/bit-field-1.6.0.tgz"; - sha512 = "d87uTEj4FBG4VK47iwegFKEUs5WuJjYJdrZbMio1jM7TiXfuWrAcX/B/72+UZDtVdYJgpTVFCVW482qB+siQ0g=="; + url = "https://registry.npmjs.org/bit-field/-/bit-field-1.7.0.tgz"; + sha512 = "JydkgvuMioH3Oe3mnnHFVHGBzGZJIph98d1IpotpJ7svjGmkQf8uR9k0LAY/mPEphaq+nSIrgzMs/rK9WYdzzQ=="; }; }; "bitcoin-ops-1.4.1" = { @@ -19336,15 +18985,6 @@ let sha512 = "5DcLxGUDejgNBYcieMIUfjORtUeNWl828VWLHJGVKZCb4zIS1oOySTUr0LGmcqJBQgTBz3bGbRQla4FgrdQEIQ=="; }; }; - "bitcoinjs-lib-6.0.1" = { - name = "bitcoinjs-lib"; - packageName = "bitcoinjs-lib"; - version = "6.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/bitcoinjs-lib/-/bitcoinjs-lib-6.0.1.tgz"; - sha512 = "x/7D4jDj/MMkmO6t3p2CSDXTqpwZ/jRsRiJDmaiXabrR9XRo7jwby8HRn7EyK1h24rKFFI7vI0ay4czl6bDOZQ=="; - }; - }; "bitcoinjs-lib-6.0.2" = { name = "bitcoinjs-lib"; packageName = "bitcoinjs-lib"; @@ -19867,22 +19507,22 @@ let sha512 = "jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw=="; }; }; - "bolt01-1.2.5" = { + "bolt01-1.2.6" = { name = "bolt01"; packageName = "bolt01"; - version = "1.2.5"; + version = "1.2.6"; src = fetchurl { - url = "https://registry.npmjs.org/bolt01/-/bolt01-1.2.5.tgz"; - sha512 = "QTBVMRuFfQif5Lnkq+ETuY0bRARVroa+RoeqdpKnDXTBEQf7ZABxXmEsCPA8vP0KLdX7hJByMbCTiQ+p1Vrgrg=="; + url = "https://registry.npmjs.org/bolt01/-/bolt01-1.2.6.tgz"; + sha512 = "6aFEefm/kAqMQoTJnqUvm8GtVli2D5Jri53Tcht6v9KwYy7f8uWlDDluaU3/bxynscmTSZBN5uHArn+2SwdkMQ=="; }; }; - "bolt03-1.2.14" = { + "bolt03-1.2.15" = { name = "bolt03"; packageName = "bolt03"; - version = "1.2.14"; + version = "1.2.15"; src = fetchurl { - url = "https://registry.npmjs.org/bolt03/-/bolt03-1.2.14.tgz"; - sha512 = "LhBa/3hqtSY7fBgE4FzoJXNPtE1tzxEfuWc32LQXNAwvgeWJP3tlQtNqhfPwfDFflSIysSe5N/yK/ybgd/oniA=="; + url = "https://registry.npmjs.org/bolt03/-/bolt03-1.2.15.tgz"; + sha512 = "7KQAp+lrtogthZ5UCkqhT3SBfVanGKmBnI4hYdQfcvNcGor4zZdyegUcovf7NmAXhx0c7pc0QiTjkPHFMvQ3mw=="; }; }; "bolt07-1.8.2" = { @@ -19894,13 +19534,13 @@ let sha512 = "jq1b/ZdMambhh+yi+pm+1PJBAnlYvQYljaBgSajvVAINHrHg32ovCBra8d0ADE3BAoj6G/tK7OSV4t/yT9A+/g=="; }; }; - "bolt09-0.2.3" = { - name = "bolt09"; - packageName = "bolt09"; - version = "0.2.3"; + "bolt07-1.8.3" = { + name = "bolt07"; + packageName = "bolt07"; + version = "1.8.3"; src = fetchurl { - url = "https://registry.npmjs.org/bolt09/-/bolt09-0.2.3.tgz"; - sha512 = "xEt5GE6pXB8wMIWHAoyF28k0Yt2rFqIou1LCyIeNadAOQhu/F7GTjZwreFwLl07YYkhOH23avewRt5PD8JnKKg=="; + url = "https://registry.npmjs.org/bolt07/-/bolt07-1.8.3.tgz"; + sha512 = "NXML2vzFmxRrdWt+wNqphU6f8FmS7tkebqDLIhfc8xKoOcGFv4Kf7WuJbKBqcfFDQVXpCpKAF7FQAgTIN2/30A=="; }; }; "bolt09-0.2.4" = { @@ -19912,6 +19552,15 @@ let sha512 = "ulNUekEfVhJredkXxP970MrVcrbPbDYyybfagqKFa8J3/4MtkhrX1pR5DjHWeyIujEkFNLbZpo6QF/Og2gXxug=="; }; }; + "bolt09-0.2.5" = { + name = "bolt09"; + packageName = "bolt09"; + version = "0.2.5"; + src = fetchurl { + url = "https://registry.npmjs.org/bolt09/-/bolt09-0.2.5.tgz"; + sha512 = "LH8wb3KbVP62SUpnwqUWqoyTUhda3JFQh4TSe6urt2mEAC0w53PSwqB4wqnHdG7QpE209Q2WQl/QH1XtVIsD3g=="; + }; + }; "bonjour-3.5.0" = { name = "bonjour"; packageName = "bonjour"; @@ -19921,13 +19570,13 @@ let sha512 = "RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg=="; }; }; - "bonjour-service-1.0.14" = { + "bonjour-service-1.1.0" = { name = "bonjour-service"; packageName = "bonjour-service"; - version = "1.0.14"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.14.tgz"; - sha512 = "HIMbgLnk1Vqvs6B4Wq5ep7mxvj9sGz5d1JJyDNSGNIdA/w2MCz6GTjWTdjqOJV1bEPj+6IkxDvWNFKEBxNt4kQ=="; + url = "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.0.tgz"; + sha512 = "LVRinRB3k1/K0XzZ2p58COnWvkQknIY6sf0zF2rpErvcJXpMBttEPQSxK+HEXSS9VmpZlDoDnQWv8ftJT20B0Q=="; }; }; "boolbase-1.0.0" = { @@ -20011,6 +19660,15 @@ let sha512 = "AaLhxHwYVh55iOTJncV3DE5o7RakEUSSj64XXEWRTiIhlp7aDI8qR0vY/k8Uw0Z234VjZi/iG/WxfrvqYPUCww=="; }; }; + "boundary-2.0.0" = { + name = "boundary"; + packageName = "boundary"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/boundary/-/boundary-2.0.0.tgz"; + sha512 = "rJKn5ooC9u8q13IMCrW0RSp31pxBCHE3y9V/tp3TdWSLf8Em3p6Di4NBpfzbJge9YjjFEsD0RtFEjtvHL5VyEA=="; + }; + }; "bower-1.8.14" = { name = "bower"; packageName = "bower"; @@ -20281,6 +19939,15 @@ let sha512 = "0F2z/VSnLbmEeBcUrSuDH5l0HxTXdQQzLjkmBR4cYfvg1zJrKSlmIZFqyFR8oX0NrwPhy3c3HQ6i3OxMbew4Tg=="; }; }; + "browser-or-node-2.1.1" = { + name = "browser-or-node"; + packageName = "browser-or-node"; + version = "2.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/browser-or-node/-/browser-or-node-2.1.1.tgz"; + sha512 = "8CVjaLJGuSKMVTxJ2DpBl5XnlNDiT4cQFeuCJJrvJmts9YrTZDizTX7PjC2s6W4x+MBGZeEY6dGMrF04/6Hgqg=="; + }; + }; "browser-pack-6.1.0" = { name = "browser-pack"; packageName = "browser-pack"; @@ -20696,15 +20363,6 @@ let sha512 = "TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg=="; }; }; - "buffer-builder-0.2.0" = { - name = "buffer-builder"; - packageName = "buffer-builder"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/buffer-builder/-/buffer-builder-0.2.0.tgz"; - sha512 = "7VPMEPuYznPSoR21NE1zvd2Xna6c/CloiZCfcMXR1Jny6PjX0N4Nsa38zcBFo/FMK+BlA+FLKbJCQ0i2yxp+Xg=="; - }; - }; "buffer-crc32-0.2.1" = { name = "buffer-crc32"; packageName = "buffer-crc32"; @@ -21002,15 +20660,6 @@ let sha512 = "GtKwd/4etuk1hNeprXoESBO1RSeRYJMXKf+O0qHmWdUomLT8ysNEfX/4bZFXr3BK6eukpHiEnhY2uMtEHDM2ng=="; }; }; - "buntis-0.2.1" = { - name = "buntis"; - packageName = "buntis"; - version = "0.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/buntis/-/buntis-0.2.1.tgz"; - sha512 = "5wszfQlsqJmZrfxpPkO5yQcEoBAmfUYlXxXU/IM6PhPZ8DMnMMJQ9rvAHfe5WZmnB6E1IoJYylFfTaf1e2FJbQ=="; - }; - }; "bunyan-1.5.1" = { name = "bunyan"; packageName = "bunyan"; @@ -21092,13 +20741,13 @@ let sha512 = "jxNH9gSx7g749hQtS+nTxXYz/bLxwr4We1RHFkCYalNYcj12RfbW6qYWsKu0RYiKAdFcbNoZRHmWrIuXIyhiQQ=="; }; }; - "bweb-0.1.11" = { + "bweb-0.1.12" = { name = "bweb"; packageName = "bweb"; - version = "0.1.11"; + version = "0.1.12"; src = fetchurl { - url = "https://registry.npmjs.org/bweb/-/bweb-0.1.11.tgz"; - sha512 = "zi9FtNpPD+Mv9UAZFRzV3jnUcEDPJTeUS8JDvsR9Nlq4fwc93SBJUui0PrC1U1GO8zzopoXtoOZ5Do9L46Rv2Q=="; + url = "https://registry.npmjs.org/bweb/-/bweb-0.1.12.tgz"; + sha512 = "ctj1FnoTF+7/dRiRYVVwY/6lV/NYQ5Gz8HS0LsyUxae7fMJGKx2geHHIcIXeZ5DolS49Xq9e4rh29aG/vAJrWw=="; }; }; "byte-size-7.0.1" = { @@ -21317,13 +20966,13 @@ let sha512 = "+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w=="; }; }; - "cacheable-request-10.2.3" = { + "cacheable-request-10.2.5" = { name = "cacheable-request"; packageName = "cacheable-request"; - version = "10.2.3"; + version = "10.2.5"; src = fetchurl { - url = "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.3.tgz"; - sha512 = "6BehRBOs7iurNjAYN9iPazTwFDaMQavJO8W1MEm3s2pH8q/tkPTtLDRUZaweWK87WFGf2Y5wLAlaCJlR5kOz3w=="; + url = "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.5.tgz"; + sha512 = "5RwYYCfzjNPsyJxb/QpaM0bfzx+kw5/YpDhZPm9oMIDntHFQ9YXeyV47ZvzlTE0XrrrbyO2UITJH4GF9eRLdXQ=="; }; }; "cacheable-request-2.1.4" = { @@ -21470,13 +21119,13 @@ let sha512 = "0vdNRFXn5q+dtOqjfFtmtlI9N2eVZ7LMyEV2iKC5mEEFvSg/69Ml6b/WU2qF8W1nLRa0wiSrDT3Y5jOHZCwKPQ=="; }; }; - "callsite-record-4.1.4" = { + "callsite-record-4.1.5" = { name = "callsite-record"; packageName = "callsite-record"; - version = "4.1.4"; + version = "4.1.5"; src = fetchurl { - url = "https://registry.npmjs.org/callsite-record/-/callsite-record-4.1.4.tgz"; - sha512 = "dJDrDR/pDvsf7GaDAQB+ZVmM0zEHU7I3km5EtwxmTVBwaJuOy+dmTN63/u3Lbm0gDdQN4skEtKa67Oety2dGIA=="; + url = "https://registry.npmjs.org/callsite-record/-/callsite-record-4.1.5.tgz"; + sha512 = "OqeheDucGKifjQRx524URgV4z4NaKjocGhygTptDea+DLROre4ZEecA4KXDq+P7qlGCohYVNOh3qr+y5XH5Ftg=="; }; }; "callsites-0.2.0" = { @@ -21677,13 +21326,13 @@ let sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; }; }; - "caniuse-lite-1.0.30001441" = { + "caniuse-lite-1.0.30001445" = { name = "caniuse-lite"; packageName = "caniuse-lite"; - version = "1.0.30001441"; + version = "1.0.30001445"; src = fetchurl { - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001441.tgz"; - sha512 = "OyxRR4Vof59I3yGWXws6i908EtGbMzVUi3ganaZQHmydk1iwDhRnvaPG2WaR0KcqrDFKrxVZHULT396LEPhXfg=="; + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001445.tgz"; + sha512 = "8sdQIdMztYmzfTMO6KfLny878Ln9c2M0fc7EH60IjlP4Dc4PiCy7K2Vl3ITmWgOyPgVQKa5x+UP/KqFsxj4mBg=="; }; }; "canvas-2.11.0" = { @@ -21848,31 +21497,31 @@ let sha512 = "eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg=="; }; }; - "cdk8s-2.5.82" = { + "cdk8s-2.6.22" = { name = "cdk8s"; packageName = "cdk8s"; - version = "2.5.82"; + version = "2.6.22"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.5.82.tgz"; - sha512 = "MvpWgp2/xzgP6KGi6gxJE0P/lqKpFmCCvWhQdqJT7rmQ+rLcO2EN85gHkguMJB79yBGuGR4jErShLaqQyXdETA=="; + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-2.6.22.tgz"; + sha512 = "mVeo+zJMJIwbQP/5p8grhxcIpl6Ff59IkOkUyF9JV89zTXD3D5HwoG4VYfhZxjDhgCzftXi31cqmQ8u+8XhgHQ=="; }; }; - "cdk8s-plus-25-2.3.2" = { + "cdk8s-plus-25-2.3.27" = { name = "cdk8s-plus-25"; packageName = "cdk8s-plus-25"; - version = "2.3.2"; + version = "2.3.27"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.3.2.tgz"; - sha512 = "/Clm8BKPFg2DNwlb2OwsTOm9DC1eojZAecZ7bxxlTgDro+La0WYIHeNlgbO4gjEB3d+mEGCCPIUS7R71LrKrWQ=="; + url = "https://registry.npmjs.org/cdk8s-plus-25/-/cdk8s-plus-25-2.3.27.tgz"; + sha512 = "GKBcvio3iYVYXHTZkH0IaR08omt2M2IdnUpcGnkTrlnxdbkZICRDLVqr1hTw+uq+DgyUSi+ThPy5FgokU00MHQ=="; }; }; - "cdktf-0.14.3" = { + "cdktf-0.15.0" = { name = "cdktf"; packageName = "cdktf"; - version = "0.14.3"; + version = "0.15.0"; src = fetchurl { - url = "https://registry.npmjs.org/cdktf/-/cdktf-0.14.3.tgz"; - sha512 = "sVxp6xfzEoOCejixLgeaQo9mQPEImFa7JSWoOMIyxlA0NFVPrEWMvPcfM5iONCd1m8tU6w++RZG0Q9bLPn3Lgw=="; + url = "https://registry.npmjs.org/cdktf/-/cdktf-0.15.0.tgz"; + sha512 = "Dzv/pfJWTFzxMxjcgI3cttK7hPLy69bUPzcZgUK0sI+k3kY4I67pmxKuXDh1XVK9AX+pCaiZT7wzQbCznTrQkQ=="; }; }; "center-align-0.1.3" = { @@ -22136,13 +21785,13 @@ let sha512 = "mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA=="; }; }; - "chardet-1.5.0" = { + "chardet-1.5.1" = { name = "chardet"; packageName = "chardet"; - version = "1.5.0"; + version = "1.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/chardet/-/chardet-1.5.0.tgz"; - sha512 = "Nj3VehbbFs/1ZnJJJaL3ztEf3Nu5Fs6YV/NBs6lyz/iDDHUU+X9QNk5QgPy1/5Rjtb/cGVf+NyazP7kVEJqKRg=="; + url = "https://registry.npmjs.org/chardet/-/chardet-1.5.1.tgz"; + sha512 = "0XMOtA52igKDOIfvJZJ6v0+J9yMF3IuYyEa5oFUxBXA01G6mwCNKpul3bgbFf7lmZuqwN/oyg/zQ1cGS7NyJkQ=="; }; }; "charenc-0.0.2" = { @@ -22217,13 +21866,13 @@ let sha512 = "RcdumNsM6fJZ5HHbYunqj2bpurVRGsXour3OR+SlLEHFhG6ALm54i6Osnh+OvO7kEoSBzwExpblYFH8zKQiEPw=="; }; }; - "check-ends-with-period-2.0.1" = { + "check-ends-with-period-3.0.2" = { name = "check-ends-with-period"; packageName = "check-ends-with-period"; - version = "2.0.1"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/check-ends-with-period/-/check-ends-with-period-2.0.1.tgz"; - sha512 = "ZXEB+OLEAnRu9JCt/aMHNU9Q/BNYDCJrhcQli+JN95K08rGGEMVZc+W75/op8JyKrCKk/WV8Whuo8qjLIDcPeA=="; + url = "https://registry.npmjs.org/check-ends-with-period/-/check-ends-with-period-3.0.2.tgz"; + sha512 = "/Bw+avucqqZ7PjKCVDod1QDGyZjo7Ht2701pdgcpTXzK5jI73/OUh3VR+m18jNUoJx5DSOUv0AxELZF7FYtcDA=="; }; }; "check-error-1.0.2" = { @@ -22460,15 +22109,6 @@ let sha512 = "HqsYJgIc8ljJJOqOzLphjAs79EUuWSX3nzZi2LNkzlw3GIzAeZbaSektC8iT/tKvLqZq8yl1GJu5o6doA4TRbg=="; }; }; - "chrome-finder-1.0.7" = { - name = "chrome-finder"; - packageName = "chrome-finder"; - version = "1.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/chrome-finder/-/chrome-finder-1.0.7.tgz"; - sha512 = "Cxdl9ns86sXKMU5jIWy7rb0jX0SlWBNVV30/eBvtYCSx+GfLOM+MyODWd6gv72QONFWPbEmere8VL/xVIrTzmA=="; - }; - }; "chrome-launcher-0.15.1" = { name = "chrome-launcher"; packageName = "chrome-launcher"; @@ -22568,13 +22208,13 @@ let sha512 = "5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ=="; }; }; - "ci-info-3.7.0" = { + "ci-info-3.7.1" = { name = "ci-info"; packageName = "ci-info"; - version = "3.7.0"; + version = "3.7.1"; src = fetchurl { - url = "https://registry.npmjs.org/ci-info/-/ci-info-3.7.0.tgz"; - sha512 = "2CpRNYmImPx+RXKLq6jko/L07phmS9I02TyqkcNU20GCF/GgaWvc58hPtjxDX8lPpkdwc9sNh72V9k00S7ezog=="; + url = "https://registry.npmjs.org/ci-info/-/ci-info-3.7.1.tgz"; + sha512 = "4jYS4MOAaCIStSRwiuxc4B8MYhIe676yO1sYGzARnjXkWpmzZMMYxY6zu8WYWDhSuth5zhrQ1rhNSibyyvv4/w=="; }; }; "cipher-base-1.0.4" = { @@ -22919,15 +22559,6 @@ let sha512 = "7Qg2Jrep1S/+Q3EceiZtQcDPWxhAvBw+ERf1162v4sikJrvojMHFqXt8QIVha8UlH9rgU0BeWPytZ9/TzYqlUw=="; }; }; - "cli-table3-0.6.2" = { - name = "cli-table3"; - packageName = "cli-table3"; - version = "0.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.2.tgz"; - sha512 = "QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw=="; - }; - }; "cli-table3-0.6.3" = { name = "cli-table3"; packageName = "cli-table3"; @@ -23531,13 +23162,13 @@ let sha512 = "+xi2ENsvchtUNa8oBUU58gHgmyN6BEEeZ8NIEgeQ0XnC+AoyihivgZYe+OOiNi+fLy/NUowugwV5gP8XWYDm0Q=="; }; }; - "codemaker-1.72.0" = { + "codemaker-1.73.0" = { name = "codemaker"; packageName = "codemaker"; - version = "1.72.0"; + version = "1.73.0"; src = fetchurl { - url = "https://registry.npmjs.org/codemaker/-/codemaker-1.72.0.tgz"; - sha512 = "U4TM++FGA+vnWHTSMA8juU+C9iXn1TDauMFmn44gz9pKrbLtjGUiMjfC4vX5HachkNQgitRj6bc/g7PA4j0C3Q=="; + url = "https://registry.npmjs.org/codemaker/-/codemaker-1.73.0.tgz"; + sha512 = "pgVFCAbR0Yw/qTrV/W8R7cXWJouhONMRf8sNCjmAGJyV3MFaLN4sUPdUkzYUu7LCkuHPh0nvYRlExWzrkhm7vw=="; }; }; "codepage-1.4.0" = { @@ -23846,13 +23477,13 @@ let sha512 = "LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w=="; }; }; - "command-line-args-4.0.7" = { + "command-line-args-5.2.1" = { name = "command-line-args"; packageName = "command-line-args"; - version = "4.0.7"; + version = "5.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/command-line-args/-/command-line-args-4.0.7.tgz"; - sha512 = "aUdPvQRAyBvQd2n7jXcsMDz68ckBJELXNzBybCHOibUWEg0mWTnaYCSRU8h9R+aNRSvDihJtssSRCiDRpLaezA=="; + url = "https://registry.npmjs.org/command-line-args/-/command-line-args-5.2.1.tgz"; + sha512 = "H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg=="; }; }; "command-line-usage-4.1.0" = { @@ -23864,13 +23495,13 @@ let sha512 = "MxS8Ad995KpdAC0Jopo/ovGIroV/m0KHwzKfXxKag6FHOkGsH8/lv5yjgablcRxCJJC0oJeUMuO/gmaq+Wq46g=="; }; }; - "command-line-usage-5.0.5" = { + "command-line-usage-6.1.3" = { name = "command-line-usage"; packageName = "command-line-usage"; - version = "5.0.5"; + version = "6.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/command-line-usage/-/command-line-usage-5.0.5.tgz"; - sha512 = "d8NrGylA5oCXSbGoKz05FkehDAzSmIm4K03S5VDh4d5lZAtTWfc3D1RuETtuQCn8129nYfJfDdF7P/lwcz1BlA=="; + url = "https://registry.npmjs.org/command-line-usage/-/command-line-usage-6.1.3.tgz"; + sha512 = "sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw=="; }; }; "commander-0.6.1" = { @@ -23891,6 +23522,15 @@ let sha512 = "uoVVA5dchmxZeTMv2Qsd0vhn/RebJYsWo4all1qtrUL3BBhQFn4AQDF4PL+ZvOeK7gczXKEZaSCyMDMwFBlpBg=="; }; }; + "commander-10.0.0" = { + name = "commander"; + packageName = "commander"; + version = "10.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/commander/-/commander-10.0.0.tgz"; + sha512 = "zS5PnTI22FIRM6ylNW8G4Ap0IEOyk62fhLSD0+uHRT9McRCLGpkVNvao4bjimpK/GShynyQkFFxHhwMcETmduA=="; + }; + }; "commander-2.0.0" = { name = "commander"; packageName = "commander"; @@ -24080,6 +23720,15 @@ let sha512 = "5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw=="; }; }; + "commander-9.5.0" = { + name = "commander"; + packageName = "commander"; + version = "9.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz"; + sha512 = "KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ=="; + }; + }; "commandpost-1.4.0" = { name = "commandpost"; packageName = "commandpost"; @@ -24188,15 +23837,6 @@ let sha512 = "zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA=="; }; }; - "compare-semver-1.1.0" = { - name = "compare-semver"; - packageName = "compare-semver"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/compare-semver/-/compare-semver-1.1.0.tgz"; - sha512 = "AENcdfhxsMCzzl+QRdOwMQeA8tZBEEacAmA4pGPoyco27G9sIaM98WNYkcToC9O0wIx1vE+1ErmaM4t0/fXhMw=="; - }; - }; "compare-version-0.1.2" = { name = "compare-version"; packageName = "compare-version"; @@ -24629,13 +24269,13 @@ let sha512 = "xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ=="; }; }; - "constructs-10.1.197" = { + "constructs-10.1.223" = { name = "constructs"; packageName = "constructs"; - version = "10.1.197"; + version = "10.1.223"; src = fetchurl { - url = "https://registry.npmjs.org/constructs/-/constructs-10.1.197.tgz"; - sha512 = "YAuSMYDXPQvNqmCrnVBGHXGL1+8WICDDJLH91BUIWfL6PpMEm+LXBXchgGETyREf96nIIGuXC/0lkUURsLSrHA=="; + url = "https://registry.npmjs.org/constructs/-/constructs-10.1.223.tgz"; + sha512 = "m/+jkHuVZiHmGpEaNwoB3toYdKu/EOd9xVlZ0uYivnWm7uertOPSTXl/Z1f35DXY518ir8X0VBOREAjtIT4F/g=="; }; }; "consume-http-header-1.0.0" = { @@ -24990,13 +24630,13 @@ let sha512 = "cj09EBuObp9gZNQCzc7hByQyrs6jVGE+o9kSJmeUoj+GiPiJvi5LYqEH/Hmme4+MTLHM+Ejtq+FChpjjEnsPdQ=="; }; }; - "convict-6.2.3" = { + "convict-6.2.4" = { name = "convict"; packageName = "convict"; - version = "6.2.3"; + version = "6.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/convict/-/convict-6.2.3.tgz"; - sha512 = "mTY04Qr7WrqiXifdeUYXr4/+Te4hPFWDvz6J2FVIKCLc2XBhq63VOSSYAKJ+unhZAYOAjmEdNswTOeHt7s++pQ=="; + url = "https://registry.npmjs.org/convict/-/convict-6.2.4.tgz"; + sha512 = "qN60BAwdMVdofckX7AlohVJ2x9UvjTNoKVXCL2LxFk1l7757EJqf1nySdMkPQer0bt8kQ5lQiyZ9/2NvrFBuwQ=="; }; }; "cookie-0.0.4" = { @@ -25107,13 +24747,13 @@ let sha512 = "X9IsySmsr1heROBZCpyEYhqJyU7CXNJoVxIlQ5bBb7DskYUx0mQ+g2f7yPYajceZeGJWHQbIfGB6j0hywV/ARQ=="; }; }; - "cookiejar-2.1.3" = { + "cookiejar-2.1.4" = { name = "cookiejar"; packageName = "cookiejar"; - version = "2.1.3"; + version = "2.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.3.tgz"; - sha512 = "JxbCBUdrfr6AQjOXrxoTvAMJO4HBTUIlBzslcJPAz+/KT8yk53fXun51u+RenNYvad/+Vc2DIz5o9UxlCDymFQ=="; + url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.4.tgz"; + sha512 = "LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw=="; }; }; "cookies-0.8.0" = { @@ -25206,13 +24846,13 @@ let sha512 = "sYfOSfpYGQOmUDlsARUbpT/EvVKT/E+GI3zwTXt+C6DjZ7xs6ZQVHs3umHKSidjf9yVM2LLmvGFpGrGX7aGxug=="; }; }; - "cordova-create-4.0.0" = { + "cordova-create-4.1.0" = { name = "cordova-create"; packageName = "cordova-create"; - version = "4.0.0"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/cordova-create/-/cordova-create-4.0.0.tgz"; - sha512 = "t/4zaDZ4ZsFpC7j6x7s9hR9OeEo8nD2m7rSrzV2PUEfA4BPQujkmk0AIC+5iBvjfR7+ReHOHKsY/NfB1LnMQxQ=="; + url = "https://registry.npmjs.org/cordova-create/-/cordova-create-4.1.0.tgz"; + sha512 = "8VQohB5w5WwuxurQJ+2L+lAFVhBr//kFvlxLOmF0P3SzTdfIU02pNalbOeLalC0DXD7rfBXJZOxJ+KSM5TOq+Q=="; }; }; "cordova-fetch-3.1.0" = { @@ -25224,13 +24864,13 @@ let sha512 = "qOT3HlNzVWbsCZVvbkZ6PdvAG1byiK8vWG+/Z+7s+8ZB76rOYKdzMvrmmMwrTTX6nglDnz5uJ/4XjQHJB770GQ=="; }; }; - "cordova-lib-11.0.0" = { + "cordova-lib-11.1.0" = { name = "cordova-lib"; packageName = "cordova-lib"; - version = "11.0.0"; + version = "11.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/cordova-lib/-/cordova-lib-11.0.0.tgz"; - sha512 = "3XSCIAlS060/hzxWKDrF+sMfv3PVU8bglCaL31HMCyj3YrZn1CZhqrRRrW5lwRxtz7Sh4XCxv97rNxF38uj9hg=="; + url = "https://registry.npmjs.org/cordova-lib/-/cordova-lib-11.1.0.tgz"; + sha512 = "/XM+/wFag72bD4SNSxwX8b3OWatHNNlnmJpgb5pepp2Pobb957nWyR0GPwIkKyOyszdZesWM3Vv8uH9e2Z1k2w=="; }; }; "cordova-serve-4.0.0" = { @@ -25260,31 +24900,31 @@ let sha512 = "y1hvKXmPHvm5B7w4ln1S4uc9eV/O5+iFExSRUimnvIph11uaizFR8LFMdONN8hG3P2pipUfX4Y/fR8rAEtcHcQ=="; }; }; - "core-js-3.26.1" = { + "core-js-3.27.1" = { name = "core-js"; packageName = "core-js"; - version = "3.26.1"; + version = "3.27.1"; src = fetchurl { - url = "https://registry.npmjs.org/core-js/-/core-js-3.26.1.tgz"; - sha512 = "21491RRQVzUn0GGM9Z1Jrpr6PNPxPi+Za8OM9q4tksTSnlbXXGKK1nXNg/QvwFYettXvSX6zWKCtHHfjN4puyA=="; + url = "https://registry.npmjs.org/core-js/-/core-js-3.27.1.tgz"; + sha512 = "GutwJLBChfGCpwwhbYoqfv03LAfmiz7e7D/BNxzeMxwQf10GRSzqiOjx7AmtEk+heiD/JWmBuyBPgFtx0Sg1ww=="; }; }; - "core-js-compat-3.26.1" = { + "core-js-compat-3.27.1" = { name = "core-js-compat"; packageName = "core-js-compat"; - version = "3.26.1"; + version = "3.27.1"; src = fetchurl { - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.26.1.tgz"; - sha512 = "622/KzTudvXCDLRw70iHW4KKs1aGpcRcowGWyYJr2DEBfRrd6hNJybxSWJFuZYD4ma86xhrwDDHxmDaIq4EA8A=="; + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.27.1.tgz"; + sha512 = "Dg91JFeCDA17FKnneN7oCMz4BkQ4TcffkgHP4OWwp9yx3pi7ubqMDXXSacfNak1PQqjc95skyt+YBLHQJnkJwA=="; }; }; - "core-js-pure-3.26.1" = { + "core-js-pure-3.27.1" = { name = "core-js-pure"; packageName = "core-js-pure"; - version = "3.26.1"; + version = "3.27.1"; src = fetchurl { - url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.26.1.tgz"; - sha512 = "VVXcDpp/xJ21KdULRq/lXdLzQAtX7+37LzpyfFM973il0tWSsDEoyzG38G14AjTpK9VTfiNM9jnFauq/CpaWGQ=="; + url = "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.27.1.tgz"; + sha512 = "BS2NHgwwUppfeoqOXqi08mUqS5FiZpuRuJJpKsaME7kJz0xxuk0xkhDdfMIlP/zLa80krBqss1LtD7f889heAw=="; }; }; "core-util-is-1.0.2" = { @@ -25539,13 +25179,13 @@ let sha512 = "gYTKKexFO3kh200H1Nit76sRwRtOY32vQd3jpAQKpLtZqyNsSQNfI4N7o3eP2wUjV35pTWKRYqFUDBvUha/Pkw=="; }; }; - "create-gatsby-3.3.1" = { + "create-gatsby-3.4.0" = { name = "create-gatsby"; packageName = "create-gatsby"; - version = "3.3.1"; + version = "3.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.3.1.tgz"; - sha512 = "Ap9vVVBnYLB7JCTUnSiUWEZOvTUJg8ckC9XypVcshV/wVAudJpymBlbfhCpXvvZzhLxoOmcdp84rinJvwA0vCg=="; + url = "https://registry.npmjs.org/create-gatsby/-/create-gatsby-3.4.0.tgz"; + sha512 = "WD9WtsXzqa+5vMBF56iiq8IGdJQT7TlWGYLv1qeM5jgK7tCCFxHnzHZ/MnvTnwspeKGRQuFgWpbrnSgD4YyQdA=="; }; }; "create-graphback-1.0.1" = { @@ -25827,22 +25467,22 @@ let sha512 = "pP2W2BvLrRKggS1fUk8qQw2FG8PhyV969dlwF3M0jAg/HH83n76H+KGdzGsmEut6VJFlJYQkd1ZZskjaeVWnrA=="; }; }; - "cspell-dictionary-6.18.0" = { + "cspell-dictionary-6.19.2" = { name = "cspell-dictionary"; packageName = "cspell-dictionary"; - version = "6.18.0"; + version = "6.19.2"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-6.18.0.tgz"; - sha512 = "HzEt/g+m2OUuK+2nrNQLFzLi7nGXFhaekz4/Ut8y3p4jITHF62mD2k9KxV7ins/MaCnl9k7CxKtqPadL8SYeFg=="; + url = "https://registry.npmjs.org/cspell-dictionary/-/cspell-dictionary-6.19.2.tgz"; + sha512 = "XLVIsoiy97VAtC4V3tNJkYU7CqWuSejrXIyLdzIaN4yBsC1kOrV1fwJ3vaAuSIqQauDYeST2gBIsHcDuGYEcew=="; }; }; - "cspell-gitignore-6.18.0" = { + "cspell-gitignore-6.19.2" = { name = "cspell-gitignore"; packageName = "cspell-gitignore"; - version = "6.18.0"; + version = "6.19.2"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.18.0.tgz"; - sha512 = "Ou2tGfHjMq3w2+fGrLPTVy6OgeLUn9ERDj3daLpB2nXJeRI6knDxyB0138aptdbQLQJkEGRyWW9tMNwU6ZbSSg=="; + url = "https://registry.npmjs.org/cspell-gitignore/-/cspell-gitignore-6.19.2.tgz"; + sha512 = "dPxGxakkBs5dmD+nCom6t74ejWsd6RJJkgs0sccPDFKULXAInjeKMeTraskYTg4wXqybbiuXCB2sOIdeQmNq6w=="; }; }; "cspell-glob-0.1.25" = { @@ -25854,22 +25494,22 @@ let sha512 = "/XaSHrGBpMJa+duFz3GKOWfrijrfdHT7a/XGgIcq3cymCSpOH+DPho42sl0jLI/hjM+8yv2m8aEoxRT8yVSnlg=="; }; }; - "cspell-glob-6.18.0" = { + "cspell-glob-6.19.2" = { name = "cspell-glob"; packageName = "cspell-glob"; - version = "6.18.0"; + version = "6.19.2"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.18.0.tgz"; - sha512 = "eRD8i3pDxiJnC8eaDOrJaMNMdqrkZUvkD6+tvjv5QzajT1Bnw7o5PkPo+lJFPB50x18zWnvemyPR3orpBbATDw=="; + url = "https://registry.npmjs.org/cspell-glob/-/cspell-glob-6.19.2.tgz"; + sha512 = "raco5vbd3Exb1uQaD5Bn6aS0KpRbNM7etmn/Q2T2KSwhvH+DRSEMTAkSG3rb0+y0ixkA/Qspjt68QnYxsbFPmw=="; }; }; - "cspell-grammar-6.18.0" = { + "cspell-grammar-6.19.2" = { name = "cspell-grammar"; packageName = "cspell-grammar"; - version = "6.18.0"; + version = "6.19.2"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-6.18.0.tgz"; - sha512 = "MfXDe9Pmp4wW26HUNKgPizUh/YzXRL9EWO18/ZCx5qloOPwFcoKfpLKV1ohbzWHk9WkIa5EljjVgaxn8L6XGOg=="; + url = "https://registry.npmjs.org/cspell-grammar/-/cspell-grammar-6.19.2.tgz"; + sha512 = "f1IswIPxHX0uQaFzmDWJtgWVd3KkFElTnxj0cgvSZs8ehEaC+/jT30q4K36oVA7jgLtdLuDXafQf9Lp2FHf9bA=="; }; }; "cspell-io-4.1.7" = { @@ -25881,13 +25521,13 @@ let sha512 = "V0/tUu9FnIS3v+vAvDT6NNa14Nc/zUNX8+YUUOfFAiDJJTdqefmvcWjOJBIMYBf3wIk9iWLmLbMM+bNHqr7DSQ=="; }; }; - "cspell-io-6.18.0" = { + "cspell-io-6.19.2" = { name = "cspell-io"; packageName = "cspell-io"; - version = "6.18.0"; + version = "6.19.2"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-io/-/cspell-io-6.18.0.tgz"; - sha512 = "r/C2JScNjl+YWmbb0tUaw/JwuGUl35IRyGNma/wXAiHiAczHcw6aHzglCLhHcmcPahuf4adElfhroaQ10a9nSA=="; + url = "https://registry.npmjs.org/cspell-io/-/cspell-io-6.19.2.tgz"; + sha512 = "ZVyygx4N8cTF2HeNUXV7IpX/LXSOSCNE+W3gY4/fju1PJWh+roTf7pVDURGtMxpSV7cq44ewYA3/qCgnF8QnkA=="; }; }; "cspell-lib-4.3.12" = { @@ -25899,13 +25539,13 @@ let sha512 = "yCCb6MoW1K8Tsr/WVEQoO4dfYhH9bCsjQayccb8MlyDaNNuWJHuX+gUGHsZSXSuChSh8PrTWKXJzs13/uM977g=="; }; }; - "cspell-lib-6.18.0" = { + "cspell-lib-6.19.2" = { name = "cspell-lib"; packageName = "cspell-lib"; - version = "6.18.0"; + version = "6.19.2"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.18.0.tgz"; - sha512 = "puao4n/XqAtIJSlL36v1zTu9Vpzyva+4MLXxYhZB2rxor0v7G5O23FHLso9qmZF+aZpaDpXwOEuHtzEag7z4IA=="; + url = "https://registry.npmjs.org/cspell-lib/-/cspell-lib-6.19.2.tgz"; + sha512 = "phPyt68bKeTUZKdmnjke2ffnIJPaXLdiUFAeU0kMNk15ljkczjMR4J6WkgYCKc+SCNQjYJSS+z4nLbtQivqDxg=="; }; }; "cspell-trie-lib-4.2.8" = { @@ -25917,13 +25557,13 @@ let sha512 = "Nt3c0gxOYXIc3/yhALDukpje1BgR6guvlUKWQO2zb0r7qRWpwUw2j2YM4dWbHQeH/3Hx5ei4Braa6cMaiJ5YBw=="; }; }; - "cspell-trie-lib-6.18.0" = { + "cspell-trie-lib-6.19.2" = { name = "cspell-trie-lib"; packageName = "cspell-trie-lib"; - version = "6.18.0"; + version = "6.19.2"; src = fetchurl { - url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.18.0.tgz"; - sha512 = "8K5FcNWpUh3Ldxpryyo1Gct90De8GcORYS0sKRBbNy/ADX7Jm0kEjKQURItgVpV00/2W9A3U+7/zDNvLDVeNbw=="; + url = "https://registry.npmjs.org/cspell-trie-lib/-/cspell-trie-lib-6.19.2.tgz"; + sha512 = "4rfiq0FeSlLG1hBQv5DpOgsbOzNs5hGz/V6Kmv0gbqaxRZyw+8sYECqdTNDx+0OXMgSRhUrwMoCpCMyWiq7tBA=="; }; }; "cspell-util-bundle-4.1.11" = { @@ -25962,15 +25602,6 @@ let sha512 = "DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ=="; }; }; - "css-blank-pseudo-3.0.3" = { - name = "css-blank-pseudo"; - packageName = "css-blank-pseudo"; - version = "3.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-3.0.3.tgz"; - sha512 = "VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ=="; - }; - }; "css-color-keywords-1.0.0" = { name = "css-color-keywords"; packageName = "css-color-keywords"; @@ -26025,15 +25656,6 @@ let sha512 = "/9lCvYZaUbBGvYUgYGFJ4dcYiyqdhSjG7IPVluoV8A1ILjkF7ilmhp1OGUz8n+nmBcu0RNrQAzgD8B6FJbrt2w=="; }; }; - "css-has-pseudo-3.0.4" = { - name = "css-has-pseudo"; - packageName = "css-has-pseudo"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-3.0.4.tgz"; - sha512 = "Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw=="; - }; - }; "css-loader-2.1.1" = { name = "css-loader"; packageName = "css-loader"; @@ -26052,15 +25674,6 @@ let sha512 = "M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ=="; }; }; - "css-loader-6.7.3" = { - name = "css-loader"; - packageName = "css-loader"; - version = "6.7.3"; - src = fetchurl { - url = "https://registry.npmjs.org/css-loader/-/css-loader-6.7.3.tgz"; - sha512 = "qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ=="; - }; - }; "css-modules-loader-core-1.1.0" = { name = "css-modules-loader-core"; packageName = "css-modules-loader-core"; @@ -26079,15 +25692,6 @@ let sha512 = "UNIFik2RgSbiTwIW1IsFwXWn6vs+bYdq83LKTSOsx7NJR7WII9dxewkHLltfTLVppoUApHV0118a4RZRI9FLwA=="; }; }; - "css-prefers-color-scheme-6.0.3" = { - name = "css-prefers-color-scheme"; - packageName = "css-prefers-color-scheme"; - version = "6.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-6.0.3.tgz"; - sha512 = "4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA=="; - }; - }; "css-select-1.0.0" = { name = "css-select"; packageName = "css-select"; @@ -26151,13 +25755,13 @@ let sha512 = "jWQv3oCEL5kMErj4wRnK/OPoBi0D+P1FR2cDCKYPaMeD2eW3/mttav8HT4hT1CKopiJI/psEULjkClhvJo4Lvg=="; }; }; - "css-to-react-native-3.0.0" = { + "css-to-react-native-3.1.0" = { name = "css-to-react-native"; packageName = "css-to-react-native"; - version = "3.0.0"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.0.0.tgz"; - sha512 = "Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ=="; + url = "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.1.0.tgz"; + sha512 = "AryfkFA29b4I3vG7N4kxFboq15DxwSXzhXM37XNEjwJMgjYIc8BcqfiprpAqX0zadI5PMByEIwAMzXxk5Vcc4g=="; }; }; "css-tree-1.0.0-alpha.37" = { @@ -26241,24 +25845,6 @@ let sha512 = "Ht70DcFBh+/ekjVrYS2PlDMdSQEl3OFNmjK6lcn49HptBgilXf/Zwg4uFh9Xn0pX3Q8YOkSjIFOfK2osvdqpBw=="; }; }; - "csscolorparser-1.0.3" = { - name = "csscolorparser"; - packageName = "csscolorparser"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/csscolorparser/-/csscolorparser-1.0.3.tgz"; - sha512 = "umPSgYwZkdFoUrH5hIq5kf0wPSXiro51nPw0j2K/c83KflkPSTBGMz6NJvMB+07VlL0y7VPo6QJcDjcgKTTm3w=="; - }; - }; - "cssdb-7.2.0" = { - name = "cssdb"; - packageName = "cssdb"; - version = "7.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cssdb/-/cssdb-7.2.0.tgz"; - sha512 = "JYlIsE7eKHSi0UNuCyo96YuIDFqvhGgHw4Ck6lsN+DP0Tp8M64UTDT2trGbkMDqnCoEjks7CkS0XcjU0rkvBdg=="; - }; - }; "cssesc-3.0.0" = { name = "cssesc"; packageName = "cssesc"; @@ -26529,15 +26115,6 @@ let sha512 = "xiEMER6E7TlTPnDxrM4eRiC6TRgjNX9xzEZ5U/Se2YJKr7Mq4pJn/2XEHjl3STcSh96GmkHPcBXLES8M29wyyg=="; }; }; - "cuint-0.2.2" = { - name = "cuint"; - packageName = "cuint"; - version = "0.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz"; - sha512 = "d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw=="; - }; - }; "culvert-0.1.2" = { name = "culvert"; packageName = "culvert"; @@ -26646,13 +26223,13 @@ let sha512 = "m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA=="; }; }; - "d3-7.8.0" = { + "d3-7.8.1" = { name = "d3"; packageName = "d3"; - version = "7.8.0"; + version = "7.8.1"; src = fetchurl { - url = "https://registry.npmjs.org/d3/-/d3-7.8.0.tgz"; - sha512 = "a5rNemRadWkEfqnY5NsD4RdCP9vn8EIJ4I5Rl14U0uKH1SXqcNmk/h9aGaAF1O98lz6L9M0IeUcuPa9GUYbI5A=="; + url = "https://registry.npmjs.org/d3/-/d3-7.8.1.tgz"; + sha512 = "fdipulGWUYTZTxxU9gDJ2P4mpZL2u7Oqe6n2FI95Q8UY0AjbKNYjPHvhLOsvR+HcSao4vo3YYy4Bk9CWOrt1Vw=="; }; }; "d3-array-3.1.1" = { @@ -26718,13 +26295,13 @@ let sha512 = "zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA=="; }; }; - "d3-contour-4.0.0" = { + "d3-contour-4.0.2" = { name = "d3-contour"; packageName = "d3-contour"; - version = "4.0.0"; + version = "4.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.0.tgz"; - sha512 = "7aQo0QHUTu/Ko3cP9YK9yUTxtoDEiDGwnBHyLxG5M4vqlBkO/uixMRele3nfsfj6UXOcuReVpVXzAboGraYIJw=="; + url = "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz"; + sha512 = "4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA=="; }; }; "d3-delaunay-6.0.2" = { @@ -27240,13 +26817,13 @@ let sha512 = "WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og=="; }; }; - "data-uri-to-buffer-4.0.0" = { + "data-uri-to-buffer-4.0.1" = { name = "data-uri-to-buffer"; packageName = "data-uri-to-buffer"; - version = "4.0.0"; + version = "4.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz"; - sha512 = "Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA=="; + url = "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz"; + sha512 = "0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A=="; }; }; "data-urls-1.1.0" = { @@ -27672,15 +27249,6 @@ let sha512 = "VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA=="; }; }; - "decimal.js-7.5.1" = { - name = "decimal.js"; - packageName = "decimal.js"; - version = "7.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/decimal.js/-/decimal.js-7.5.1.tgz"; - sha512 = "1K5Y6MykxQYfHBcFfAj2uBaLmwreq4MsjsvrlgcEOvg+X82IeeXlIVIVkBMiypksu+yo9vcYP6lfU3qTedofSQ=="; - }; - }; "decko-1.2.0" = { name = "decko"; packageName = "decko"; @@ -27843,13 +27411,13 @@ let sha512 = "yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g=="; }; }; - "deep-equal-2.1.0" = { + "deep-equal-2.2.0" = { name = "deep-equal"; packageName = "deep-equal"; - version = "2.1.0"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/deep-equal/-/deep-equal-2.1.0.tgz"; - sha512 = "2pxgvWu3Alv1PoWEyVg7HS8YhGlUFUV7N5oOvfL6d+7xAmLSemMwv/c8Zv/i9KFzxV5Kt5CAvQc70fLwVuf4UA=="; + url = "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz"; + sha512 = "RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw=="; }; }; "deep-extend-0.2.11" = { @@ -28554,22 +28122,22 @@ let sha512 = "uJaamHkagcZtHPqCIHZxnFrXlunQXgBOsZSUOWwFw31QJCAbyTBoHMW75YOTur5ZNx8pIeAKgf6GWIgaqqiLhA=="; }; }; - "diagnostic-channel-0.3.1" = { + "diagnostic-channel-1.1.0" = { name = "diagnostic-channel"; packageName = "diagnostic-channel"; - version = "0.3.1"; + version = "1.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/diagnostic-channel/-/diagnostic-channel-0.3.1.tgz"; - sha512 = "6eb9YRrimz8oTr5+JDzGmSYnXy5V7YnK5y/hd8AUDK1MssHjQKm9LlD6NSrHx4vMDF3+e/spI2hmWTviElgWZA=="; + url = "https://registry.npmjs.org/diagnostic-channel/-/diagnostic-channel-1.1.0.tgz"; + sha512 = "fwujyMe1gj6rk6dYi9hMZm0c8Mz8NDMVl2LB4iaYh3+LIAThZC8RKFGXWG0IML2OxAit/ZFRgZhMkhQ3d/bobQ=="; }; }; - "diagnostic-channel-publishers-0.4.4" = { + "diagnostic-channel-publishers-1.0.5" = { name = "diagnostic-channel-publishers"; packageName = "diagnostic-channel-publishers"; - version = "0.4.4"; + version = "1.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/diagnostic-channel-publishers/-/diagnostic-channel-publishers-0.4.4.tgz"; - sha512 = "l126t01d2ZS9EreskvEtZPrcgstuvH3rbKy82oUhUrVmBaGx4hO9wECdl3cvZbKDYjMF3QJDB5z5dL9yWAjvZQ=="; + url = "https://registry.npmjs.org/diagnostic-channel-publishers/-/diagnostic-channel-publishers-1.0.5.tgz"; + sha512 = "dJwUS0915pkjjimPJVDnS/QQHsH0aOYhnZsLJdnZIMOrB+csj8RnZhWTuwnm8R5v3Z7OZs+ksv5luC14DGB7eg=="; }; }; "dicer-0.2.5" = { @@ -28662,13 +28230,13 @@ let sha512 = "IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw=="; }; }; - "diff2html-3.4.22" = { + "diff2html-3.4.29" = { name = "diff2html"; packageName = "diff2html"; - version = "3.4.22"; + version = "3.4.29"; src = fetchurl { - url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.22.tgz"; - sha512 = "n7b0cfjqG+NLAmxdlSRMXIGoeoK+OhCNxd/6InjjMxy3v5Gk1L5Ms5r4jziFiRBoNaB6L8lLyZ8KQ8Kv+DOgnw=="; + url = "https://registry.npmjs.org/diff2html/-/diff2html-3.4.29.tgz"; + sha512 = "xS7LQgUEd5ALH9X5TTPP8nnSmaa7mm+cAt5pZE5hSnEEvXSdoYBTStTkLBHOHJu9rZmGXs4jdFRsU8q90VfWkg=="; }; }; "diff3-0.0.3" = { @@ -29211,6 +28779,15 @@ let sha512 = "ewwFzHzrrneRjxzmK6oVz/rZn9VWspGFRDb4/rRtIsM1n36t9AKma/ye8syCpcw+XJ25kOK/hOG7t1j2I2yBqA=="; }; }; + "dompurify-2.4.3" = { + name = "dompurify"; + packageName = "dompurify"; + version = "2.4.3"; + src = fetchurl { + url = "https://registry.npmjs.org/dompurify/-/dompurify-2.4.3.tgz"; + sha512 = "q6QaLcakcRjebxjg8/+NP+h0rPfatOgOzc46Fst9VAA3jF2ApfKBNKMzdP4DYTqtUMXSCd5pRS/8Po/OmoCHZQ=="; + }; + }; "domutils-1.4.3" = { name = "domutils"; packageName = "domutils"; @@ -29607,15 +29184,6 @@ let sha512 = "vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA=="; }; }; - "earcut-2.2.4" = { - name = "earcut"; - packageName = "earcut"; - version = "2.2.4"; - src = fetchurl { - url = "https://registry.npmjs.org/earcut/-/earcut-2.2.4.tgz"; - sha512 = "/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ=="; - }; - }; "eastasianwidth-0.2.0" = { name = "eastasianwidth"; packageName = "eastasianwidth"; @@ -29643,15 +29211,6 @@ let sha512 = "wK2sCs4feiiJeFXn3zvY0p41mdU5VUgbgs1rNsc/y5ngFUijdWd+iIN8eoyuZHKB8xN6BL4PdWmzqFmxNg6V2w=="; }; }; - "easygettext-2.17.0" = { - name = "easygettext"; - packageName = "easygettext"; - version = "2.17.0"; - src = fetchurl { - url = "https://registry.npmjs.org/easygettext/-/easygettext-2.17.0.tgz"; - sha512 = "QmMWIu6l83SW2QuEFd4GIDrTey0qOn0haTOMt4NdPKPHEBihAqdo9HHYRDHiPg/msZSKaye7qDOLAcqHlmfo+g=="; - }; - }; "eazy-logger-3.1.0" = { name = "eazy-logger"; packageName = "eazy-logger"; @@ -29679,15 +29238,6 @@ let sha512 = "nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ=="; }; }; - "ecpair-2.0.1" = { - name = "ecpair"; - packageName = "ecpair"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ecpair/-/ecpair-2.0.1.tgz"; - sha512 = "iT3wztQMeE/nDTlfnAg8dAFUfBS7Tq2BXzq3ae6L+pWgFU0fQ3l0woTzdTBrJV3OxBjxbzjq8EQhAbEmJNWFSw=="; - }; - }; "ecpair-2.1.0" = { name = "ecpair"; packageName = "ecpair"; @@ -30212,13 +29762,13 @@ let sha512 = "x+dN/fBH8Ro8TFwJ+rkB2AmuVw9Yu2mockR/p3W8f8YtExwFgDvBDi0GWyb4ZLkpahtDGZgtr3zLovanJghPqg=="; }; }; - "engine.io-parser-5.0.4" = { + "engine.io-parser-5.0.6" = { name = "engine.io-parser"; packageName = "engine.io-parser"; - version = "5.0.4"; + version = "5.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.4.tgz"; - sha512 = "+nVFp+5z1E3HcToEnO7ZIj3g+3k9389DvWtvJZz0T6/eOCPIyyxehFcedoYrZQrp0LgQbD9pPXhpMBKMd5QURg=="; + url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.6.tgz"; + sha512 = "tjuoZDMAdEhVnSFleYPCtdL2GXwVTGtNjoeJd9IhIG3C1xs9uwxqRNEu5WpnDZCaozwVlK/nuQhpodhXSIMaxw=="; }; }; "enhanced-resolve-2.3.0" = { @@ -30483,15 +30033,6 @@ let sha512 = "Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ=="; }; }; - "error-stack-parser-3.0.0" = { - name = "error-stack-parser"; - packageName = "error-stack-parser"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-3.0.0.tgz"; - sha512 = "jz/qTUa24F2QDCVPeilr3IFgOQhbZtlUkOpQ8vpkPExAnjfyx1MRPSgTZObUnBscQwgboq0+gBeRYN4o4HriSA=="; - }; - }; "errorhandler-1.5.1" = { name = "errorhandler"; packageName = "errorhandler"; @@ -30501,13 +30042,13 @@ let sha512 = "rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A=="; }; }; - "es-abstract-1.20.5" = { + "es-abstract-1.21.1" = { name = "es-abstract"; packageName = "es-abstract"; - version = "1.20.5"; + version = "1.21.1"; src = fetchurl { - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.5.tgz"; - sha512 = "7h8MM2EQhsCA7pU/Nv78qOXFpD8Rhqd12gYiSJVkrH9+e8VuA8JlPJK/hQjjlLv6pJvx/z1iRFKzYb0XT/RuAQ=="; + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.1.tgz"; + sha512 = "QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg=="; }; }; "es-aggregate-error-1.0.9" = { @@ -30528,13 +30069,13 @@ let sha512 = "wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA=="; }; }; - "es-get-iterator-1.1.2" = { + "es-get-iterator-1.1.3" = { name = "es-get-iterator"; packageName = "es-get-iterator"; - version = "1.1.2"; + version = "1.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.2.tgz"; - sha512 = "+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ=="; + url = "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz"; + sha512 = "sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw=="; }; }; "es-module-lexer-0.9.3" = { @@ -30546,6 +30087,15 @@ let sha512 = "1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ=="; }; }; + "es-set-tostringtag-2.0.1" = { + name = "es-set-tostringtag"; + packageName = "es-set-tostringtag"; + version = "2.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz"; + sha512 = "g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg=="; + }; + }; "es-shim-unscopables-1.0.0" = { name = "es-shim-unscopables"; packageName = "es-shim-unscopables"; @@ -31455,13 +31005,13 @@ let sha512 = "S27Di+EVyMxcHiwDrFzk8dJYAaD+/5SoWKxL1ri/71CRHsnJnRDPNt2Kzj24+MT9FDupf4aqqyqPrvI8MvQ4VQ=="; }; }; - "eslint-8.30.0" = { + "eslint-8.32.0" = { name = "eslint"; packageName = "eslint"; - version = "8.30.0"; + version = "8.32.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint/-/eslint-8.30.0.tgz"; - sha512 = "MGADB39QqYuzEGov+F/qb18r4i7DohCDOfatHaxI2iGlPuC65bwG2gxgO+7DkyL38dRFaRH7RaRAgU6JKL9rMQ=="; + url = "https://registry.npmjs.org/eslint/-/eslint-8.32.0.tgz"; + sha512 = "nETVXpnthqKPFyuY2FNjz/bEd6nbosRgKbkgS/y1C7LJop96gYHWpiguLecMHQ2XCPxn77DS0P+68WzG6vkZSQ=="; }; }; "eslint-config-prettier-6.15.0" = { @@ -31482,24 +31032,6 @@ let sha512 = "BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew=="; }; }; - "eslint-config-prettier-8.5.0" = { - name = "eslint-config-prettier"; - packageName = "eslint-config-prettier"; - version = "8.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz"; - sha512 = "obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q=="; - }; - }; - "eslint-config-standard-17.0.0" = { - name = "eslint-config-standard"; - packageName = "eslint-config-standard"; - version = "17.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.0.0.tgz"; - sha512 = "/2ks1GKyqSOkH7JFvXJicu0iMpoojkwB+f5Du/1SC0PtBL+s8v30k9njRZ21pm2drKYm2342jFnGWzttxPmZVg=="; - }; - }; "eslint-formatter-pretty-4.1.0" = { name = "eslint-formatter-pretty"; packageName = "eslint-formatter-pretty"; @@ -31509,13 +31041,13 @@ let sha512 = "IsUTtGxF1hrH6lMWiSl1WbGaiP01eT6kzywdY1U+zLc0MP+nwEnUiS9UI8IaOTUhTeQJLlCEWIbXINBH4YJbBQ=="; }; }; - "eslint-import-resolver-node-0.3.6" = { + "eslint-import-resolver-node-0.3.7" = { name = "eslint-import-resolver-node"; packageName = "eslint-import-resolver-node"; - version = "0.3.6"; + version = "0.3.7"; src = fetchurl { - url = "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz"; - sha512 = "0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw=="; + url = "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz"; + sha512 = "gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA=="; }; }; "eslint-loader-2.2.1" = { @@ -31536,58 +31068,22 @@ let sha512 = "j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA=="; }; }; - "eslint-plugin-es-3.0.1" = { - name = "eslint-plugin-es"; - packageName = "eslint-plugin-es"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz"; - sha512 = "GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ=="; - }; - }; - "eslint-plugin-es-4.1.0" = { - name = "eslint-plugin-es"; - packageName = "eslint-plugin-es"; - version = "4.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz"; - sha512 = "GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ=="; - }; - }; - "eslint-plugin-html-7.1.0" = { - name = "eslint-plugin-html"; - packageName = "eslint-plugin-html"; - version = "7.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-html/-/eslint-plugin-html-7.1.0.tgz"; - sha512 = "fNLRraV/e6j8e3XYOC9xgND4j+U7b1Rq+OygMlLcMg+wI/IpVbF+ubQa3R78EjKB9njT6TQOlcK5rFKBVVtdfg=="; - }; - }; - "eslint-plugin-import-2.26.0" = { + "eslint-plugin-import-2.27.5" = { name = "eslint-plugin-import"; packageName = "eslint-plugin-import"; - version = "2.26.0"; + version = "2.27.5"; src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz"; - sha512 = "hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA=="; + url = "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz"; + sha512 = "LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow=="; }; }; - "eslint-plugin-jsx-a11y-6.6.1" = { + "eslint-plugin-jsx-a11y-6.7.1" = { name = "eslint-plugin-jsx-a11y"; packageName = "eslint-plugin-jsx-a11y"; - version = "6.6.1"; + version = "6.7.1"; src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz"; - sha512 = "sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q=="; - }; - }; - "eslint-plugin-n-15.6.0" = { - name = "eslint-plugin-n"; - packageName = "eslint-plugin-n"; - version = "15.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.6.0.tgz"; - sha512 = "Hd/F7wz4Mj44Jp0H6Jtty13NcE69GNTY0rVlgTIj1XBnGGVI6UTdDrpE6vqu3AHo07bygq/N+7OH/lgz1emUJw=="; + url = "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz"; + sha512 = "63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA=="; }; }; "eslint-plugin-no-unsanitized-4.0.1" = { @@ -31599,15 +31095,6 @@ let sha512 = "y/lAMWnPPC7RYuUdxlEL/XiCL8FehN9h9s3Kjqbp/Kv0i9NZs+IXSC2kS546Fa4Bumwy31HlVS/OdWX0Kxb5Xg=="; }; }; - "eslint-plugin-node-11.1.0" = { - name = "eslint-plugin-node"; - packageName = "eslint-plugin-node"; - version = "11.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz"; - sha512 = "oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g=="; - }; - }; "eslint-plugin-prettier-3.4.1" = { name = "eslint-plugin-prettier"; packageName = "eslint-plugin-prettier"; @@ -31617,31 +31104,13 @@ let sha512 = "htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g=="; }; }; - "eslint-plugin-prettier-vue-4.2.0" = { - name = "eslint-plugin-prettier-vue"; - packageName = "eslint-plugin-prettier-vue"; - version = "4.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-prettier-vue/-/eslint-plugin-prettier-vue-4.2.0.tgz"; - sha512 = "DA2oNRx+pZ6RM/EIHIPME4FQZifnkEROa55OWtTTUFGHpj53tcHomuxVP/kS/2MM+ul46GEK+jymK69STWDWoA=="; - }; - }; - "eslint-plugin-promise-6.1.1" = { - name = "eslint-plugin-promise"; - packageName = "eslint-plugin-promise"; - version = "6.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz"; - sha512 = "tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig=="; - }; - }; - "eslint-plugin-react-7.31.11" = { + "eslint-plugin-react-7.32.1" = { name = "eslint-plugin-react"; packageName = "eslint-plugin-react"; - version = "7.31.11"; + version = "7.32.1"; src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.11.tgz"; - sha512 = "TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw=="; + url = "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.1.tgz"; + sha512 = "vOjdgyd0ZHBXNsmvU+785xY8Bfe57EFbTYYk8XrROzWpr9QBvpjITvAXt9xqcE6+8cjR/g1+mfumPToxsl1www=="; }; }; "eslint-plugin-react-hooks-4.6.0" = { @@ -31671,15 +31140,6 @@ let sha512 = "oVNDqzBC9h3GO+NTgWeLMhhGigy6/bQaQbHS+0z7C4YEu/qK/yxHvca/2PTZtGNPsCrHwOTgKMrwu02A9iPBmw=="; }; }; - "eslint-plugin-vue-9.8.0" = { - name = "eslint-plugin-vue"; - packageName = "eslint-plugin-vue"; - version = "9.8.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.8.0.tgz"; - sha512 = "E/AXwcTzunyzM83C2QqDHxepMzvI2y6x+mmeYHbVDQlKFqmKYvRrhaVixEeeG27uI44p9oKDFiyCRw4XxgtfHA=="; - }; - }; "eslint-rule-docs-1.1.235" = { name = "eslint-rule-docs"; packageName = "eslint-rule-docs"; @@ -31779,15 +31239,6 @@ let sha512 = "mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA=="; }; }; - "eslint-webpack-plugin-3.2.0" = { - name = "eslint-webpack-plugin"; - packageName = "eslint-webpack-plugin"; - version = "3.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-3.2.0.tgz"; - sha512 = "avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w=="; - }; - }; "esmangle-evaluator-1.0.1" = { name = "esmangle-evaluator"; packageName = "esmangle-evaluator"; @@ -32310,15 +31761,6 @@ let sha512 = "IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA=="; }; }; - "eventsource-polyfill-0.9.6" = { - name = "eventsource-polyfill"; - packageName = "eventsource-polyfill"; - version = "0.9.6"; - src = fetchurl { - url = "https://registry.npmjs.org/eventsource-polyfill/-/eventsource-polyfill-0.9.6.tgz"; - sha512 = "LyMFp2oPDGhum2lMvkjqKZEwWd2/AoXyt8aoyftTBMWwPHNgU+2tdxhTHPluDxoz+z4gNj0uHAPR9nqevATMbg=="; - }; - }; "everyauth-0.4.5" = { name = "everyauth"; packageName = "everyauth"; @@ -32580,13 +32022,13 @@ let sha512 = "/wSgNMxFusiYRy1rd19LT2SQlIXDppHpumpWo06wxjflD1OYxDLbl6rMVw+U3bxD5Nuhex4TKqv9Aem4D0lVzQ=="; }; }; - "expo-47.0.9" = { + "expo-47.0.13" = { name = "expo"; packageName = "expo"; - version = "47.0.9"; + version = "47.0.13"; src = fetchurl { - url = "https://registry.npmjs.org/expo/-/expo-47.0.9.tgz"; - sha512 = "NZtwk2Q+8DYlEpY/vBWDOVeN20AdlsVlZlhLOHAqvXpUSlNhG5XYBJD3wW+GQ1BQetq/8Hxe5NaZu0N5YkYsvA=="; + url = "https://registry.npmjs.org/expo/-/expo-47.0.13.tgz"; + sha512 = "9VjjGdViCJ9NfWbUE7brkwFBDvKuA35V345vMtHFYNKoGJjXib36yitmawreMDQFv0kMTqTnzc7T2191Pod7Ng=="; }; }; "expo-application-5.0.1" = { @@ -32661,22 +32103,22 @@ let sha512 = "S8qfaXCv//7tQWV9M+JKx3CF7ypYhDdSUbkUQdaVO/r8D76/aRTArY/aRw1yEfaAOzyK8C8diDToV1itl51DfQ=="; }; }; - "expo-modules-autolinking-1.0.0" = { + "expo-modules-autolinking-1.0.2" = { name = "expo-modules-autolinking"; packageName = "expo-modules-autolinking"; - version = "1.0.0"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-1.0.0.tgz"; - sha512 = "MoRRkOVMoGUH/Lr8XS6UmBIZT/qrwbRt2IzUBALcM6MWZKtDn9Uct9XgMRxue82FJhRCfy9p1xZJVKHBRo4zEA=="; + url = "https://registry.npmjs.org/expo-modules-autolinking/-/expo-modules-autolinking-1.0.2.tgz"; + sha512 = "skAUXERKw1gtSw8xsvft9DE0KVhBvw4dujAtgCZoG2l513fN7ds+B5+30ZVgZATMC+EjtlmjKXzhp5QS44DCFA=="; }; }; - "expo-modules-core-1.0.4" = { + "expo-modules-core-1.1.1" = { name = "expo-modules-core"; packageName = "expo-modules-core"; - version = "1.0.4"; + version = "1.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/expo-modules-core/-/expo-modules-core-1.0.4.tgz"; - sha512 = "Cf2G8f2h3TGASKNDYXlOwe5CBMmRt32wZzBAmau6qComw0e13Y9sDYORSfgk+NJWvLnHJrInN4qGytxHfal/aA=="; + url = "https://registry.npmjs.org/expo-modules-core/-/expo-modules-core-1.1.1.tgz"; + sha512 = "+AcaYmaWphIfkBcccu65dyOhWnpOJ3+SQpoI4lI/Plg1nNjOLuBjmrdVvpiJOvkN+CqbNGsJ5Yll8LLk+C107Q=="; }; }; "expo-pwa-0.0.124" = { @@ -33498,13 +32940,13 @@ let sha512 = "5DtIKh6vtOmEGkYdEPNNb+mxeYCnBiKbK3s4gq52l6cX8I5QaTDWWw0Wx/iYo80fVOblSycHu1/iJeqeNxG8Jw=="; }; }; - "fastq-1.14.0" = { + "fastq-1.15.0" = { name = "fastq"; packageName = "fastq"; - version = "1.14.0"; + version = "1.15.0"; src = fetchurl { - url = "https://registry.npmjs.org/fastq/-/fastq-1.14.0.tgz"; - sha512 = "eR2D+V9/ExcbF9ls441yIuN6TI2ED1Y2ZcA5BmMtJsOkWOFRJQ0Jt0g1UwqXJJVAb+V+umH5Dfr8oh4EVP7VVg=="; + url = "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz"; + sha512 = "wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw=="; }; }; "fault-1.0.4" = { @@ -33867,15 +33309,6 @@ let sha512 = "WhYlIPdaYeE6/Pow1Js4QwRQBVXRoRWCZxPLL/YrzUwsZHT8fZuBxP8zZHawLQ8HxwORumP+CoRVuUxkAJD0dw=="; }; }; - "file-saver-2.0.5" = { - name = "file-saver"; - packageName = "file-saver"; - version = "2.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/file-saver/-/file-saver-2.0.5.tgz"; - sha512 = "P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA=="; - }; - }; "file-stream-rotator-0.6.1" = { name = "file-stream-rotator"; packageName = "file-stream-rotator"; @@ -34227,13 +33660,13 @@ let sha512 = "wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig=="; }; }; - "find-replace-1.0.3" = { + "find-replace-3.0.0" = { name = "find-replace"; packageName = "find-replace"; - version = "1.0.3"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/find-replace/-/find-replace-1.0.3.tgz"; - sha512 = "KrUnjzDCD9426YnCP56zGYy/eieTnhtK6Vn++j+JJzmlsWWwEkDnsyVF575spT6HJ6Ow9tlbT3TQTDsa+O4UWA=="; + url = "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz"; + sha512 = "6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ=="; }; }; "find-requires-1.0.0" = { @@ -34524,22 +33957,13 @@ let sha512 = "d+9na7t9FyH8gBJoNDSi28mE4NgQVGGvxQ4aHtFRetjyh5SXjuus+V5EZaxFmFdXVemSOrx0lsgEl/ZMjnOWJA=="; }; }; - "flow-parser-0.196.3" = { + "flow-parser-0.197.0" = { name = "flow-parser"; packageName = "flow-parser"; - version = "0.196.3"; + version = "0.197.0"; src = fetchurl { - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.196.3.tgz"; - sha512 = "R8wj12eHW6og+IBWeRS6aihkdac1Prh4zw1bfxtt/aeu8r5OFmQEZjnmINcjO/5Q+OKvI4Eg367ygz2SHvtH+w=="; - }; - }; - "flow-remove-types-2.196.3" = { - name = "flow-remove-types"; - packageName = "flow-remove-types"; - version = "2.196.3"; - src = fetchurl { - url = "https://registry.npmjs.org/flow-remove-types/-/flow-remove-types-2.196.3.tgz"; - sha512 = "tunXyUd/jttmYafqPNV0S6+wAIhGbqNhDQHX4UFoJ7Wbwqq6utFQUcAgbn5aHz9RxA5pPI2L3f4R2I6OE8wy2A=="; + url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.197.0.tgz"; + sha512 = "yhwkJPxH1JBg0aJunk/jVRy5p3UhVZBGkzL1hq/GK+GaBh6bKr2YKkv6gDuiufaw+i3pKWQgOLtD++1cvrgXLA=="; }; }; "fluent-ffmpeg-2.1.2" = { @@ -34839,13 +34263,13 @@ let sha512 = "DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw=="; }; }; - "fork-ts-checker-webpack-plugin-7.2.13" = { + "fork-ts-checker-webpack-plugin-7.2.14" = { name = "fork-ts-checker-webpack-plugin"; packageName = "fork-ts-checker-webpack-plugin"; - version = "7.2.13"; + version = "7.2.14"; src = fetchurl { - url = "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.2.13.tgz"; - sha512 = "fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg=="; + url = "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.2.14.tgz"; + sha512 = "Tg2feh/n8k486KX0EbXVUfJj3j0xnnbKYTJw0fnIb2QdV0+lblOYZSal5ed9hARoWVwKeOC7sYE2EakSRLo5ZA=="; }; }; "fork-ts-checker-webpack-plugin-v5-5.2.1" = { @@ -35586,22 +35010,22 @@ let sha512 = "w4n9cPWyP7aHxKxYHFQMegj7WIAsL/YX/C4Bs5Rr8s1H9M1rNtRWRsw+ovYMkXDQ5S4ZbYHsHAPmevPjPgw44w=="; }; }; - "gatsby-core-utils-4.3.1" = { + "gatsby-core-utils-4.4.0" = { name = "gatsby-core-utils"; packageName = "gatsby-core-utils"; - version = "4.3.1"; + version = "4.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.3.1.tgz"; - sha512 = "KKNWjnqOPTsRJRHFUcyUGE7NW058tL54SiUJUqZiaeEuXDhglFR0kclXQdN50j1a+RCLa05X2x6XSeWYlzCung=="; + url = "https://registry.npmjs.org/gatsby-core-utils/-/gatsby-core-utils-4.4.0.tgz"; + sha512 = "/ibilcGENKH6qqkcT17SIZgc2kjZn3HiGpD+ixbXYkMGqHiM5pj9XIHjy3DfvZvDt2ujkYV5EinmUdqx7CI81w=="; }; }; - "gatsby-telemetry-4.3.1" = { + "gatsby-telemetry-4.4.0" = { name = "gatsby-telemetry"; packageName = "gatsby-telemetry"; - version = "4.3.1"; + version = "4.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.3.1.tgz"; - sha512 = "yiFd1J26UWC+rVLi+zZ4Q4RBJhJ3UxB3Deq47zWrWlwJomVmOOWWa8oPNoGFV3l+DAlnRcY2LtAyeKCb603tvg=="; + url = "https://registry.npmjs.org/gatsby-telemetry/-/gatsby-telemetry-4.4.0.tgz"; + sha512 = "rcGMNa4fWIQSDqaUYjMXccrtVr71YQNzw01BfDZ6jxnSc7j29tZ8YXZZh+caS9Fc9cdLpQ2UabFcIp5vAtKQqA=="; }; }; "gauge-1.2.7" = { @@ -35694,13 +35118,13 @@ let sha512 = "x850LS5N7V1F3UcV7PoupzGsyD6iVwTVvsh3tbXfkctZnBnjW5yu5z1/3k3SehF7TyoTIe78rJs02GMMy+LF+A=="; }; }; - "gcp-metadata-5.1.0" = { + "gcp-metadata-5.2.0" = { name = "gcp-metadata"; packageName = "gcp-metadata"; - version = "5.1.0"; + version = "5.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-5.1.0.tgz"; - sha512 = "QVjouEXvNVG/nde6VZDXXFTB02xQdztaumkWCHUff58qsdCS05/8OPh68fQ2QnArfAzZTwfEc979FHSHsU8EWg=="; + url = "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-5.2.0.tgz"; + sha512 = "aFhhvvNycky2QyhG+dcfEdHBF0FRbYcf39s6WNHUDysKSrbJ5vuFbjydxBcmewtXeV248GP8dWT3ByPNxsyHCw=="; }; }; "gelf-stream-1.1.1" = { @@ -35793,15 +35217,6 @@ let sha512 = "3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg=="; }; }; - "geojson-vt-3.2.1" = { - name = "geojson-vt"; - packageName = "geojson-vt"; - version = "3.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/geojson-vt/-/geojson-vt-3.2.1.tgz"; - sha512 = "EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg=="; - }; - }; "get-assigned-identifiers-1.2.0" = { name = "get-assigned-identifiers"; packageName = "get-assigned-identifiers"; @@ -36333,15 +35748,6 @@ let sha512 = "0YCjVpE3pS5XWlN3J4X7AiAx65+nqAI54LndtVFnQZB6G/FVLkZH8y8V6R3cIoOQR4pUdfwQGd1iwyoXHJ4Qfw=="; }; }; - "gl-matrix-3.4.3" = { - name = "gl-matrix"; - packageName = "gl-matrix"; - version = "3.4.3"; - src = fetchurl { - url = "https://registry.npmjs.org/gl-matrix/-/gl-matrix-3.4.3.tgz"; - sha512 = "wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA=="; - }; - }; "glob-3.2.11" = { name = "glob"; packageName = "glob"; @@ -36459,6 +35865,15 @@ let sha512 = "ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ=="; }; }; + "glob-8.1.0" = { + name = "glob"; + packageName = "glob"; + version = "8.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz"; + sha512 = "r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ=="; + }; + }; "glob-base-0.3.0" = { name = "glob-base"; packageName = "glob-base"; @@ -36802,15 +36217,6 @@ let sha512 = "jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g=="; }; }; - "globby-13.1.2" = { - name = "globby"; - packageName = "globby"; - version = "13.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/globby/-/globby-13.1.2.tgz"; - sha512 = "LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ=="; - }; - }; "globby-13.1.3" = { name = "globby"; packageName = "globby"; @@ -36928,13 +36334,22 @@ let sha512 = "YSwLaGMOgSBx9roJlNLL12c+FRiw7VECphinc6mGucphc/ZxTHgdEz6gmJqH6NOzYEd/yr64hwjom5pZ+tJVpg=="; }; }; - "goldengate-11.4.0" = { + "goldengate-12.0.1" = { name = "goldengate"; packageName = "goldengate"; - version = "11.4.0"; + version = "12.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/goldengate/-/goldengate-11.4.0.tgz"; - sha512 = "52jwM8k5xzv7DhdXQDSfhoHbQsY+jY5Rwsj4fd3V7z2bSefpdxPE0SqQRcATaY7+FJpfng+tGMdG/X2IsnnUPA=="; + url = "https://registry.npmjs.org/goldengate/-/goldengate-12.0.1.tgz"; + sha512 = "Ku6nujmXs0JWj1/Z6ZLN7Mtq3S4inAW8JSv6EtsNRORCofJ8r8BlwxDDV3EDYfZvOmttc2JbnfGFtcKoXKz/BA=="; + }; + }; + "goldengate-12.0.2" = { + name = "goldengate"; + packageName = "goldengate"; + version = "12.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/goldengate/-/goldengate-12.0.2.tgz"; + sha512 = "FrGuJWxYqWfptGEHkXQkR4CvLOOvbJL9cgPyiGGwtRMJCuUgJHyEdhkTVjQYbOl6pdXFTR9EHd9wkXHeA6zmGw=="; }; }; "gonzales-pe-4.3.0" = { @@ -36991,15 +36406,6 @@ let sha512 = "WPkN4yGtz05WZ5EhtlxNDWPhC4JIic6G8ePitwUWy4l+XPVYec+a0j0Ts47PDtW59y3RwAhUd9/h9ZZ63px6RQ=="; }; }; - "google-protobuf-3.21.2" = { - name = "google-protobuf"; - packageName = "google-protobuf"; - version = "3.21.2"; - src = fetchurl { - url = "https://registry.npmjs.org/google-protobuf/-/google-protobuf-3.21.2.tgz"; - sha512 = "3MSOYFO5U9mPGikIYCzK0SaThypfGgS6bHqrUGXG3DPHCrb+txNqeEcns1W0lkGfk0rCyNXm7xB9rMxnCiZOoA=="; - }; - }; "googleapis-84.0.0" = { name = "googleapis"; packageName = "googleapis"; @@ -37207,13 +36613,22 @@ let sha512 = "vH2bsdjoJLQ33sZCquG1GyiFyK+Qk8n04NzqHLWTnY9l8lg08AGUyA8ZgeZHdi3I81nrdcGO13V9qYyP6sdshw=="; }; }; - "grammy-1.12.0" = { + "grammy-1.13.0" = { name = "grammy"; packageName = "grammy"; - version = "1.12.0"; + version = "1.13.0"; src = fetchurl { - url = "https://registry.npmjs.org/grammy/-/grammy-1.12.0.tgz"; - sha512 = "/2Mi4MyVPeFXjTd4v3pRK8gb/YdWFbZrj/8HTp5daQyTOx4/U95XFL0Ao+e9hf4XbL7RCOpanXaTL8+UXXcNqw=="; + url = "https://registry.npmjs.org/grammy/-/grammy-1.13.0.tgz"; + sha512 = "3C9ClsH05NogyZ68MXGDjS3rsieIWsEfx904CR48cfwG1m8fAgSLRi2HLuZOF6HPMEHsyYFwjtvOU312QcADdw=="; + }; + }; + "grammy-1.13.1" = { + name = "grammy"; + packageName = "grammy"; + version = "1.13.1"; + src = fetchurl { + url = "https://registry.npmjs.org/grammy/-/grammy-1.13.1.tgz"; + sha512 = "kAxja6QDjw5oTJOFtrqhaQlLfCco3AwO4Mb4YRdP8A+v59roJA8mgEd0S5dOgFPyn74bPp8VWaKCI+of8wnPow=="; }; }; "grant-4.7.0" = { @@ -37270,13 +36685,13 @@ let sha512 = "KNdgwG0dbVjhJqRUw0OivJ5pkUHunbk4vDatwdfITfNvPugX0xR327ZKsaOcr3snbiBJfyGu7lCrXeYp4KF8YA=="; }; }; - "graphology-types-0.24.5" = { + "graphology-types-0.24.7" = { name = "graphology-types"; packageName = "graphology-types"; - version = "0.24.5"; + version = "0.24.7"; src = fetchurl { - url = "https://registry.npmjs.org/graphology-types/-/graphology-types-0.24.5.tgz"; - sha512 = "m8FVoj9b6MwIaTN+/AvoxXhcK5n0uSe7ZnhbQNTcjh94vzN6m5hU501LihtCfRjF35QEMVrXYOrTNO0wAR1Gxw=="; + url = "https://registry.npmjs.org/graphology-types/-/graphology-types-0.24.7.tgz"; + sha512 = "tdcqOOpwArNjEr0gNQKCXwaNCWnQJrog14nJNQPeemcLnXQUUGrsCWpWkVKt46zLjcS6/KGoayeJfHHyPDlvwA=="; }; }; "graphql-0.11.7" = { @@ -37351,13 +36766,13 @@ let sha512 = "Uiu3X7+s5c056WyrvdZVz2vG1fhAipMlYmtiCU/4Z2mX79OXDr1SqIon2MprC/pExIWJfAQZCcjYDY76fPBUQg=="; }; }; - "graphql-config-4.3.6" = { + "graphql-config-4.4.0" = { name = "graphql-config"; packageName = "graphql-config"; - version = "4.3.6"; + version = "4.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/graphql-config/-/graphql-config-4.3.6.tgz"; - sha512 = "i7mAPwc0LAZPnYu2bI8B6yXU5820Wy/ArvmOseDLZIu0OU1UTULEuexHo6ZcHXeT9NvGGaUPQZm8NV3z79YydA=="; + url = "https://registry.npmjs.org/graphql-config/-/graphql-config-4.4.0.tgz"; + sha512 = "QUrX7R4htnTBTi83a0IlIilWVfiLEG8ANFlHRcxoZiTvOXTbgan67SUdGe1OlopbDuyNgtcy4ladl3Gvk4C36A=="; }; }; "graphql-language-service-5.1.0" = { @@ -37918,6 +37333,15 @@ let sha512 = "62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ=="; }; }; + "has-proto-1.0.1" = { + name = "has-proto"; + packageName = "has-proto"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz"; + sha512 = "7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg=="; + }; + }; "has-symbol-support-x-1.4.2" = { name = "has-symbol-support-x"; packageName = "has-symbol-support-x"; @@ -38107,13 +37531,13 @@ let sha512 = "JQMW+TJe0UAIXZMjCJ4Wf6ayDV9Yv3PBDPsHD4ExBpAspJ6MOcCX+nzVF+UJVv7OqPcg852WEMSHQPoRA+FVSw=="; }; }; - "hast-util-embedded-2.0.0" = { + "hast-util-embedded-2.0.1" = { name = "hast-util-embedded"; packageName = "hast-util-embedded"; - version = "2.0.0"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/hast-util-embedded/-/hast-util-embedded-2.0.0.tgz"; - sha512 = "vEr54rDu2CheBM4nLkWbW8Rycf8HhkA/KsrDnlyKnvBTyhyO+vAG6twHnfUbiRGo56YeUBNCI4HFfHg3Wu+tig=="; + url = "https://registry.npmjs.org/hast-util-embedded/-/hast-util-embedded-2.0.1.tgz"; + sha512 = "QUdSOP1/o+/TxXtpPFXR2mUg2P+ySrmlX7QjwHZCXqMFyYk7YmcGSvqRW+4XgXAoHifdE1t2PwFaQK33TqVjSw=="; }; }; "hast-util-from-parse5-5.0.3" = { @@ -38134,13 +37558,13 @@ let sha512 = "jeJUWiN5pSxW12Rh01smtVkZgZr33wBokLzKLwinYOUfSzm1Nl/c3GUGebDyOKjdsRgMvoVbV0VpAcpjF4NrJA=="; }; }; - "hast-util-from-parse5-7.1.0" = { + "hast-util-from-parse5-7.1.1" = { name = "hast-util-from-parse5"; packageName = "hast-util-from-parse5"; - version = "7.1.0"; + version = "7.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-7.1.0.tgz"; - sha512 = "m8yhANIAccpU4K6+121KpPP55sSl9/samzQSQGpb0mTExcNh2WlvjtMwSWFhg6uqD4Rr6Nfa8N6TMypQM51rzQ=="; + url = "https://registry.npmjs.org/hast-util-from-parse5/-/hast-util-from-parse5-7.1.1.tgz"; + sha512 = "R6PoNcUs89ZxLJmMWsVbwSWuz95/9OriyQZ3e2ybwqGsRXzhA6gv49rgGmQvLbZuSNDv9fCg7vV7gXUsvtUFaA=="; }; }; "hast-util-has-property-1.0.4" = { @@ -38152,13 +37576,13 @@ let sha512 = "ghHup2voGfgFoHMGnaLHOjbYFACKrRh9KFttdCzMCbFoBMJXiNi2+XTrPP8+q6cDJM/RSqlCfVWrjp1H201rZg=="; }; }; - "hast-util-has-property-2.0.0" = { + "hast-util-has-property-2.0.1" = { name = "hast-util-has-property"; packageName = "hast-util-has-property"; - version = "2.0.0"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/hast-util-has-property/-/hast-util-has-property-2.0.0.tgz"; - sha512 = "4Qf++8o5v14us4Muv3HRj+Er6wTNGA/N9uCaZMty4JWvyFKLdhULrv4KE1b65AthsSO9TXSZnjuxS8ecIyhb0w=="; + url = "https://registry.npmjs.org/hast-util-has-property/-/hast-util-has-property-2.0.1.tgz"; + sha512 = "X2+RwZIMTMKpXUzlotatPzWj8bspCymtXH3cfG3iQKV+wPF53Vgaqxi/eLqGck0wKq1kS9nvoB1wchbCPEL8sg=="; }; }; "hast-util-is-body-ok-link-1.0.4" = { @@ -38188,13 +37612,13 @@ let sha512 = "oUmNua0bFbdrD/ELDSSEadRVtWZOf3iF6Lbv81naqsIV99RnSCieTbWuWCY8BAeEfKJTKl0gRdokv+dELutHGQ=="; }; }; - "hast-util-is-element-2.1.2" = { + "hast-util-is-element-2.1.3" = { name = "hast-util-is-element"; packageName = "hast-util-is-element"; - version = "2.1.2"; + version = "2.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-2.1.2.tgz"; - sha512 = "thjnlGAnwP8ef/GSO1Q8BfVk2gundnc2peGQqEg2kUt/IqesiGg/5mSwN2fE7nLzy61pg88NG6xV+UrGOrx9EA=="; + url = "https://registry.npmjs.org/hast-util-is-element/-/hast-util-is-element-2.1.3.tgz"; + sha512 = "O1bKah6mhgEq2WtVMk+Ta5K7pPMqsBBlmzysLdcwKVrqzZQ0CHqUPiIVspNhAG1rvxpvJjtGee17XfauZYKqVA=="; }; }; "hast-util-parse-selector-2.2.5" = { @@ -38206,13 +37630,13 @@ let sha512 = "7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ=="; }; }; - "hast-util-parse-selector-3.1.0" = { + "hast-util-parse-selector-3.1.1" = { name = "hast-util-parse-selector"; packageName = "hast-util-parse-selector"; - version = "3.1.0"; + version = "3.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-3.1.0.tgz"; - sha512 = "AyjlI2pTAZEOeu7GeBPZhROx0RHBnydkQIXlhnFzDi0qfXTmGUWoCYZtomHbrdrheV4VFUlPcfJ6LMF5T6sQzg=="; + url = "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-3.1.1.tgz"; + sha512 = "jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA=="; }; }; "hast-util-phrasing-1.0.5" = { @@ -38224,13 +37648,13 @@ let sha512 = "P3uxm+8bnwcfAS/XpGie9wMmQXAQqsYhgQQKRwmWH/V6chiq0lmTy8KjQRJmYjusdMtNKGCUksdILSZy1suSpQ=="; }; }; - "hast-util-phrasing-2.0.1" = { + "hast-util-phrasing-2.0.2" = { name = "hast-util-phrasing"; packageName = "hast-util-phrasing"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/hast-util-phrasing/-/hast-util-phrasing-2.0.1.tgz"; - sha512 = "Lw+gVihgE0Ye1TsToZqui0puQnHbZ0dFQe0c/Z2QJWGYRIc72DpH3UHLV8zU48sjIPord88MTSeYEbLQMp5A9g=="; + url = "https://registry.npmjs.org/hast-util-phrasing/-/hast-util-phrasing-2.0.2.tgz"; + sha512 = "yGkCfPkkfCyiLfK6KEl/orMDr/zgCnq/NaO9HfULx6/Zga5fso5eqQA5Ov/JZVqACygvw9shRYWgXNcG2ilo7w=="; }; }; "hast-util-to-nlcst-1.2.8" = { @@ -38278,13 +37702,13 @@ let sha512 = "I5GTdSfhYfAPNztx2xJRQpG8cuDSNt599/7YUn7Gx/WxNMsG+a835k97TDkFgk123cwjfwINaZknkKkphx/f2A=="; }; }; - "hast-util-whitespace-2.0.0" = { + "hast-util-whitespace-2.0.1" = { name = "hast-util-whitespace"; packageName = "hast-util-whitespace"; - version = "2.0.0"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.0.tgz"; - sha512 = "Pkw+xBHuV6xFeJprJe2BBEoDV+AvQySaz3pPDRUs5PNZEMQjpXJJueqrpcHIXxnWTcAGi/UOCgVShlkY6kLoqg=="; + url = "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz"; + sha512 = "nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng=="; }; }; "hastscript-5.1.2" = { @@ -38305,13 +37729,13 @@ let sha512 = "nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w=="; }; }; - "hastscript-7.1.0" = { + "hastscript-7.2.0" = { name = "hastscript"; packageName = "hastscript"; - version = "7.1.0"; + version = "7.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/hastscript/-/hastscript-7.1.0.tgz"; - sha512 = "uBjaTTLN0MkCZxY/R2fWUOcu7FRtUVzKRO5P/RAfgsu3yFiMB1JWCO4AjeVkgHxAira1f2UecHK5WfS9QurlWA=="; + url = "https://registry.npmjs.org/hastscript/-/hastscript-7.2.0.tgz"; + sha512 = "TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw=="; }; }; "hasurl-1.0.0" = { @@ -38341,15 +37765,6 @@ let sha512 = "X8xbmTc1cbPXcQV4WkLcRMALuyoxhfpFATmyuCxJPOAvrDS4DNnsTAOmKUxMTOWU6TzrTOkxPKwIx5ZOpJVSrg=="; }; }; - "hbs-4.2.0" = { - name = "hbs"; - packageName = "hbs"; - version = "4.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/hbs/-/hbs-4.2.0.tgz"; - sha512 = "dQwHnrfWlTk5PvG9+a45GYpg0VpX47ryKF8dULVd6DtwOE6TEcYQXQ5QM6nyOx/h7v3bvEQbdn19EDAcfUAgZg=="; - }; - }; "hdb-pool-0.1.6" = { name = "hdb-pool"; packageName = "hdb-pool"; @@ -38422,15 +37837,6 @@ let sha512 = "HVqALKZlR95ROkrnesdhbbZJFi/rIVSoNq6f3jA/9u6MIbTsPh3xZwihjeI5+DO/2sOV6HMHooXcEOuwskHpTg=="; }; }; - "helmet-6.0.1" = { - name = "helmet"; - packageName = "helmet"; - version = "6.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/helmet/-/helmet-6.0.1.tgz"; - sha512 = "8wo+VdQhTMVBMCITYZaGTbE4lvlthelPYSvoyNvk4RECTmrVjMerp9RfUOQXZWLvCcAn1pKj7ZRxK4lI9Alrcw=="; - }; - }; "help-me-3.0.0" = { name = "help-me"; packageName = "help-me"; @@ -38584,15 +37990,6 @@ let sha512 = "Xcx8VTw5P5+5drkXJ35YMPK7E+BO1mttZat6dgC8vnwTHKSRGhOeW4TNvWCaFM63D2XU7jWyAOPimYZHr6Oaqg=="; }; }; - "historic-readline-1.0.8" = { - name = "historic-readline"; - packageName = "historic-readline"; - version = "1.0.8"; - src = fetchurl { - url = "https://registry.npmjs.org/historic-readline/-/historic-readline-1.0.8.tgz"; - sha512 = "+ADn1uO85HwKnhziJlTm4cvrwFv60TlFqyos75ikfE9kq4RNrLcf+uVmEePT/4d/gh9TxKmwTfpVN9fpKyJKJA=="; - }; - }; "hls.js-1.1.2" = { name = "hls.js"; packageName = "hls.js"; @@ -38602,15 +37999,6 @@ let sha512 = "ujditC4vvBmZd00RRNfNPLgFVlqEeUX4sAFv5lGhBHuql8iAZodOdlZTD3em/1zo7vyjQp12up/lCVqQk8dvxA=="; }; }; - "hls.js-1.2.9" = { - name = "hls.js"; - packageName = "hls.js"; - version = "1.2.9"; - src = fetchurl { - url = "https://registry.npmjs.org/hls.js/-/hls.js-1.2.9.tgz"; - sha512 = "SPjm8ix0xe6cYzwDvdVGh2QvQPDkCYrGWpZu6bRaKNNVyEGWM9uF0pooh/Lqj/g8QBQgPFEx1vHzW8SyMY9rqg=="; - }; - }; "hmac-drbg-1.0.1" = { name = "hmac-drbg"; packageName = "hmac-drbg"; @@ -38791,13 +38179,13 @@ let sha512 = "A91dYTeIB6NoXG+PxTQpCCDDnfHsW9kc06Lvpu1TEe9gnd6ZFeiBoRO9JvzEv6xK7EX97/dUE8g/vBMTqTS3CA=="; }; }; - "hs-client-0.0.11" = { + "hs-client-0.0.13" = { name = "hs-client"; packageName = "hs-client"; - version = "0.0.11"; + version = "0.0.13"; src = fetchurl { - url = "https://registry.npmjs.org/hs-client/-/hs-client-0.0.11.tgz"; - sha512 = "DunENysXNxADDs6YvTjIgFG38U+mGnlDpfEhUzHOAOnkHyYwAIm0PwYJEmJqsbLnpY31xg0lPfRV8t+Ugz+Dew=="; + url = "https://registry.npmjs.org/hs-client/-/hs-client-0.0.13.tgz"; + sha512 = "3Vm/4S0TDstbOW+OfdTeP2EQ4dolPNqMulTSr31RihwX8cX1DyT4il1Fc9STXXToXTsZuFro2WD/+1m0MWi5Ag=="; }; }; "hsl-regex-1.0.0" = { @@ -38953,13 +38341,13 @@ let sha512 = "vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg=="; }; }; - "html-to-text-8.1.1" = { + "html-to-text-9.0.3" = { name = "html-to-text"; packageName = "html-to-text"; - version = "8.1.1"; + version = "9.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/html-to-text/-/html-to-text-8.1.1.tgz"; - sha512 = "uHdOmIGMy0Z1tJdcJzhbUQm3+V+6Q8YmFYCr1+SxjjwlO2Ha9S/D2eq1P8NLjH5fTzJCLQTL9xCXZNuIwraipw=="; + url = "https://registry.npmjs.org/html-to-text/-/html-to-text-9.0.3.tgz"; + sha512 = "hxDF1kVCF2uw4VUJ3vr2doc91pXf2D5ngKcNviSitNkhP9OMOaJkDrFIFL6RMvko7NisWTEiqGpQ9LAxcVok1w=="; }; }; "html-void-elements-1.0.5" = { @@ -39367,6 +38755,15 @@ let sha512 = "jCClqdnnwigYslmtfb28vPplOgoiZ0siP2Z8C5Ua+3UKbx410v+c+jT+jh1bbI4TvcEySuX0vd/CfFZFbDkJeQ=="; }; }; + "http-status-1.6.2" = { + name = "http-status"; + packageName = "http-status"; + version = "1.6.2"; + src = fetchurl { + url = "https://registry.npmjs.org/http-status/-/http-status-1.6.2.tgz"; + sha512 = "oUExvfNckrpTpDazph7kNG8sQi5au3BeTo0idaZFXEhTaJKu7GNJCLHI0rYY2wljm548MSTM+Ljj/c6anqu2zQ=="; + }; + }; "http2-client-1.3.5" = { name = "http2-client"; packageName = "http2-client"; @@ -39709,15 +39106,6 @@ let sha512 = "4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA=="; }; }; - "icss-utils-5.1.0" = { - name = "icss-utils"; - packageName = "icss-utils"; - version = "5.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz"; - sha512 = "soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA=="; - }; - }; "idb-keyval-6.2.0" = { name = "idb-keyval"; packageName = "idb-keyval"; @@ -39790,15 +39178,6 @@ let sha512 = "2zeMQpbKz5dhZ9IwL0gbxSW5w0NK/MSAMtNuhgIHEPmaU3vPdKPL0UdvUCXs5SS4JAwsBxysK5sFMW8ocFiVjQ=="; }; }; - "ignore-5.2.0" = { - name = "ignore"; - packageName = "ignore"; - version = "5.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz"; - sha512 = "CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ=="; - }; - }; "ignore-5.2.4" = { name = "ignore"; packageName = "ignore"; @@ -39970,13 +39349,13 @@ let sha512 = "aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA=="; }; }; - "immer-9.0.16" = { + "immer-9.0.18" = { name = "immer"; packageName = "immer"; - version = "9.0.16"; + version = "9.0.18"; src = fetchurl { - url = "https://registry.npmjs.org/immer/-/immer-9.0.16.tgz"; - sha512 = "qenGE7CstVm1NrHQbMh8YaSzTZTFNP3zPqr3YU0S0UY441j4bJTg4A2Hh5KAhwgaiU6ZZ1Ar6y/2f4TblnMReQ=="; + url = "https://registry.npmjs.org/immer/-/immer-9.0.18.tgz"; + sha512 = "eAPNpsj7Ax1q6Y/3lm2PmlwRcFzpON7HSNQ3ru5WQH1/PSpnyed/HpNOELl2CxLKoj4r+bAHgdyKqW5gc2Se1A=="; }; }; "immutable-3.8.2" = { @@ -39988,13 +39367,13 @@ let sha512 = "15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg=="; }; }; - "immutable-4.2.0" = { + "immutable-4.2.2" = { name = "immutable"; packageName = "immutable"; - version = "4.2.0"; + version = "4.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/immutable/-/immutable-4.2.0.tgz"; - sha512 = "h4ujZ0OZ3kpvdFcwJAHXEdvawH7J8TYTB62e8xI03OSZhuGpuPY9DPXnonMN8s+uQ56gMUqMK71mXU8ob20xfA=="; + url = "https://registry.npmjs.org/immutable/-/immutable-4.2.2.tgz"; + sha512 = "fTMKDwtbvO5tldky9QZ2fMX7slR0mYpY5nbnFWYp0fOzDhHqhgIw9KoYgxLWsoNTS9ZHGauHj18DTyEw6BK3Og=="; }; }; "import-cwd-2.1.0" = { @@ -40105,13 +39484,13 @@ let sha512 = "ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg=="; }; }; - "import-meta-resolve-2.2.0" = { + "import-meta-resolve-2.2.1" = { name = "import-meta-resolve"; packageName = "import-meta-resolve"; - version = "2.2.0"; + version = "2.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-2.2.0.tgz"; - sha512 = "CpPOtiCHxP9HdtDM5F45tNiAe66Cqlv3f5uHoJjt+KlaLrUh9/Wz9vepADZ78SlqEo62aDWZtj9ydMGXV+CPnw=="; + url = "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-2.2.1.tgz"; + sha512 = "C6lLL7EJPY44kBvA80gq4uMsVFw5x3oSKfuMl1cuZ2RkI5+UJqQXgn+6hlUew0y4ig7Ypt4CObAAIzU53Nfpuw=="; }; }; "imurmurhash-0.1.4" = { @@ -40375,6 +39754,15 @@ let sha512 = "uJ4nbH00MM9fjTJ5xdw0zzvtXMkeGb0WV6dzSWvFv2/+ks6FIhpkt+Ge/eLdh0Ah6Vjw5pLMyNfoHQpRDRVFbQ=="; }; }; + "ink-table-3.0.0" = { + name = "ink-table"; + packageName = "ink-table"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/ink-table/-/ink-table-3.0.0.tgz"; + sha512 = "RtcYjenHKZWjnwVNQ6zSYWMOLKwkWscDAJsqUQXftyjkYho1gGrluGss87NOoIzss0IKr74lKasd6MtlQYALiA=="; + }; + }; "ink-text-input-4.0.3" = { name = "ink-text-input"; packageName = "ink-text-input"; @@ -40843,24 +40231,6 @@ let sha512 = "CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw=="; }; }; - "invoices-2.2.0" = { - name = "invoices"; - packageName = "invoices"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/invoices/-/invoices-2.2.0.tgz"; - sha512 = "uVe0WdHGdhkKubfrH1rSC/RpFREC7D0dh1IHxEgmUhV1lhn2+1UFVUxhri4dGyklBgIi+DNzE8q3665PF8z5Vw=="; - }; - }; - "invoices-2.2.1" = { - name = "invoices"; - packageName = "invoices"; - version = "2.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/invoices/-/invoices-2.2.1.tgz"; - sha512 = "VSyzBmdKuTIMjeKAPvdCN9+w7RI1AprZVuPe6L5zmPxnYfU56EMhXa6qFybS1K9SxwBCp8QuilJywnAT3NAOIg=="; - }; - }; "invoices-2.2.2" = { name = "invoices"; packageName = "invoices"; @@ -40870,6 +40240,15 @@ let sha512 = "flSBneW7IYRS2K7eVoL6Uemo5LkXkv++6wul8ZBbDz48j3GSGb1pVLdHUo1nvU9+WGNU3/Pqq27r99okyCnHdQ=="; }; }; + "invoices-2.2.3" = { + name = "invoices"; + packageName = "invoices"; + version = "2.2.3"; + src = fetchurl { + url = "https://registry.npmjs.org/invoices/-/invoices-2.2.3.tgz"; + sha512 = "tYOmXKPsz8/jxtPDmy7HS7Z4VqQ9VK2Y3J37hhHEhU337AoL1CUlEqccTEb4nZQ36HHnFhlcKLoDz7C8W5lNdg=="; + }; + }; "io-ts-2.2.20" = { name = "io-ts"; packageName = "io-ts"; @@ -40888,13 +40267,13 @@ let sha512 = "3GYo0GJtLqgNXj4YhrisLaNNvWSNwSS2wS4OELGfGxH8I69+XfNdnmV1AyN+ZqMh0i7eX+SWjrwFKDBDgfBC1A=="; }; }; - "ioredis-5.2.4" = { + "ioredis-5.2.5" = { name = "ioredis"; packageName = "ioredis"; - version = "5.2.4"; + version = "5.2.5"; src = fetchurl { - url = "https://registry.npmjs.org/ioredis/-/ioredis-5.2.4.tgz"; - sha512 = "qIpuAEt32lZJQ0XyrloCRdlEdUUNGG9i0UOk6zgzK6igyudNWqEBxfH6OlbnOOoBBvr1WB02mm8fR55CnikRng=="; + url = "https://registry.npmjs.org/ioredis/-/ioredis-5.2.5.tgz"; + sha512 = "7HKo/ClM2DGLRXdFq8ruS3Uuadensz4A76wPOU0adqlOqd1qkhoLPDaBhmVhUhNGpB+J65/bhLmNB8DDY99HJQ=="; }; }; "iota-array-1.0.0" = { @@ -41230,6 +40609,15 @@ let sha512 = "8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA=="; }; }; + "is-array-buffer-3.0.1" = { + name = "is-array-buffer"; + packageName = "is-array-buffer"; + version = "3.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.1.tgz"; + sha512 = "ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ=="; + }; + }; "is-arrayish-0.2.1" = { name = "is-arrayish"; packageName = "is-arrayish"; @@ -42868,15 +42256,6 @@ let sha512 = "S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA=="; }; }; - "isomorphic-fetch-2.2.1" = { - name = "isomorphic-fetch"; - packageName = "isomorphic-fetch"; - version = "2.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz"; - sha512 = "9c4TNAKYXM5PRyVcwUZrF3W09nQ+sO7+jydgs4ZGW9dhsLG2VOlISJABombdQqQRXCwuYG3sYV/puGf5rp0qmA=="; - }; - }; "isomorphic-fetch-3.0.0" = { name = "isomorphic-fetch"; packageName = "isomorphic-fetch"; @@ -42940,15 +42319,6 @@ let sha512 = "0RHjbtw9QXeSYnIEY5Yrp2QZrdtz21xBDV9C/GIlY2POmgoS6a7qjkYS5siRKXScnuAj5/SPv1C3YForNCHTJA=="; }; }; - "istanbul-lib-coverage-2.0.5" = { - name = "istanbul-lib-coverage"; - packageName = "istanbul-lib-coverage"; - version = "2.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz"; - sha512 = "8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA=="; - }; - }; "istanbul-lib-coverage-3.2.0" = { name = "istanbul-lib-coverage"; packageName = "istanbul-lib-coverage"; @@ -42976,15 +42346,6 @@ let sha512 = "BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ=="; }; }; - "istanbul-lib-instrument-5.2.1" = { - name = "istanbul-lib-instrument"; - packageName = "istanbul-lib-instrument"; - version = "5.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz"; - sha512 = "pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg=="; - }; - }; "istanbul-lib-processinfo-2.0.3" = { name = "istanbul-lib-processinfo"; packageName = "istanbul-lib-processinfo"; @@ -43003,15 +42364,6 @@ let sha512 = "wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw=="; }; }; - "istanbul-lib-source-maps-3.0.6" = { - name = "istanbul-lib-source-maps"; - packageName = "istanbul-lib-source-maps"; - version = "3.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz"; - sha512 = "R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw=="; - }; - }; "istanbul-lib-source-maps-4.0.1" = { name = "istanbul-lib-source-maps"; packageName = "istanbul-lib-source-maps"; @@ -43210,15 +42562,6 @@ let sha512 = "7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg=="; }; }; - "jest-worker-28.1.3" = { - name = "jest-worker"; - packageName = "jest-worker"; - version = "28.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz"; - sha512 = "CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g=="; - }; - }; "jimp-compact-0.16.1" = { name = "jimp-compact"; packageName = "jimp-compact"; @@ -43282,15 +42625,6 @@ let sha512 = "b2Zna/wGIyTzi0Gemg27JYUaRyTyBETw5GnqyVQMr71uojOYMrgkD2+Px3bG2ZFi7/zTUXJSDoGoBOhMixq7tg=="; }; }; - "joi-17.6.4" = { - name = "joi"; - packageName = "joi"; - version = "17.6.4"; - src = fetchurl { - url = "https://registry.npmjs.org/joi/-/joi-17.6.4.tgz"; - sha512 = "tPzkTJHZQjSFCc842QpdVpOZ9LI2txApboNUbW70qgnRB14Lzl+oWQOPdF2N4yqyiY14wBGe8lc7f/2hZxbGmw=="; - }; - }; "joi-17.7.0" = { name = "joi"; packageName = "joi"; @@ -43409,13 +42743,13 @@ let sha512 = "wBZPnqWs5GaYJmo1Jj0k/mrSkzdQzKDwhXNtHKcBdAcKVxMM3KNYFq+iJ2i1rwiG53Z8M4mTn3Qxrm17uH1D4Q=="; }; }; - "jquery.terminal-2.35.0" = { + "jquery.terminal-2.35.2" = { name = "jquery.terminal"; packageName = "jquery.terminal"; - version = "2.35.0"; + version = "2.35.2"; src = fetchurl { - url = "https://registry.npmjs.org/jquery.terminal/-/jquery.terminal-2.35.0.tgz"; - sha512 = "CvyAkK/bsy6fW4omA+iA60OaAVTv9sCfXnjAvghockwNMoUQsA3d0sj1H+PVWf2piRltgJqG0+KoXJisjv0x7g=="; + url = "https://registry.npmjs.org/jquery.terminal/-/jquery.terminal-2.35.2.tgz"; + sha512 = "ZPZ1JDpDskfZVqiA2xwltTzNLXqpc6GCO0NZcZ784u0Rt/zk1cliTS9sjOMklmqvI0Z2v0xLjfIJnZDSJEKrYA=="; }; }; "js-base64-2.6.3" = { @@ -43436,13 +42770,13 @@ let sha512 = "pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ=="; }; }; - "js-base64-3.7.3" = { + "js-base64-3.7.4" = { name = "js-base64"; packageName = "js-base64"; - version = "3.7.3"; + version = "3.7.4"; src = fetchurl { - url = "https://registry.npmjs.org/js-base64/-/js-base64-3.7.3.tgz"; - sha512 = "PAr6Xg2jvd7MCR6Ld9Jg3BmTcjYsHEBx1VlwEwULb/qowPf5VD9kEMagj23Gm7JRnSvE/Da/57nChZjnvL8v6A=="; + url = "https://registry.npmjs.org/js-base64/-/js-base64-3.7.4.tgz"; + sha512 = "wpM/wi20Tl+3ifTyi0RdDckS4YTD4Lf953mBRrpG8547T7hInHNPEj8+ck4gB8VDcGyeAWFK++Wb/fU1BeavKQ=="; }; }; "js-beautify-1.14.7" = { @@ -43787,49 +43121,49 @@ let sha512 = "xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="; }; }; - "jsii-1.72.0" = { + "jsii-1.73.0" = { name = "jsii"; packageName = "jsii"; - version = "1.72.0"; + version = "1.73.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsii/-/jsii-1.72.0.tgz"; - sha512 = "dwMHlO5SXuwAhchGg8emAuKjQRKGEiuR+GV5SxdhzhylxbPUexSBnsxGYqVIHaXwmXBIH3cOfoiqilQ5Xm2pMg=="; + url = "https://registry.npmjs.org/jsii/-/jsii-1.73.0.tgz"; + sha512 = "6GLXJv+XDPNPw4JRAMr6NicWgLorFcKmAZB6x+gqCnrkA6FqZlgDPohFdcqAkxE5Px9K3oAFIsnEH/xV3HuGrg=="; }; }; - "jsii-pacmak-1.72.0" = { + "jsii-pacmak-1.73.0" = { name = "jsii-pacmak"; packageName = "jsii-pacmak"; - version = "1.72.0"; + version = "1.73.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.72.0.tgz"; - sha512 = "yOrWXmtDA0CVZ21396pN0J9i9/Vh2F6EhKP9ZE/6N0G50gpTaoXDsAF4tIGe1XUMgtUcOLZUuOnMrpFk5l690A=="; + url = "https://registry.npmjs.org/jsii-pacmak/-/jsii-pacmak-1.73.0.tgz"; + sha512 = "zz3z+AoKXciKxBcmFt4PHPQPhbkjRUgN0hkrC6XhqugbpGprICtLNimU4qAQywHA+T0024TX8fnCCuymQ1sJPg=="; }; }; - "jsii-reflect-1.72.0" = { + "jsii-reflect-1.73.0" = { name = "jsii-reflect"; packageName = "jsii-reflect"; - version = "1.72.0"; + version = "1.73.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.72.0.tgz"; - sha512 = "gEsL1QO8EY3OAjCkVt7Vnm0LeflTTXJkEYRCHdATjdXLMP3laSUWHcNuE+6KNBsVUMJr2zJgVQyi7moqRSonzw=="; + url = "https://registry.npmjs.org/jsii-reflect/-/jsii-reflect-1.73.0.tgz"; + sha512 = "RNnejItM5DUvTpMNBhL095Yt87a6mLWTse9rYZmR+XglJ8WdyNW8mmDftz8gq58TKr5mDVUtq5vpRApCEm0Viw=="; }; }; - "jsii-rosetta-1.72.0" = { + "jsii-rosetta-1.73.0" = { name = "jsii-rosetta"; packageName = "jsii-rosetta"; - version = "1.72.0"; + version = "1.73.0"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.72.0.tgz"; - sha512 = "4B9jCfWTPU9s1FsDv7aq7C1kw/eS4WaC7uHujPr+UmALpkfRNu82paylZ5zG1vaUqcBLoQHLydvMRlUzc9xeZw=="; + url = "https://registry.npmjs.org/jsii-rosetta/-/jsii-rosetta-1.73.0.tgz"; + sha512 = "UrXBaM/7jJldrlDN2aV/vaIurIZJM4ikJtcE/ugSoAuJUW42Hpi0Qd5k9MiSaE/k+KNxRpihS+skRa2TETT3Cg=="; }; }; - "jsii-srcmak-0.1.770" = { + "jsii-srcmak-0.1.797" = { name = "jsii-srcmak"; packageName = "jsii-srcmak"; - version = "0.1.770"; + version = "0.1.797"; src = fetchurl { - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.770.tgz"; - sha512 = "hp3W0wcbtcfU8756Ptnc7QfJvmZMtxHkMPl5OoPrJmgNeZJtMBb2C68FY3gCjOoMe+dOYhU3MORAsOf8FtMw5w=="; + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.797.tgz"; + sha512 = "SF41dMMOlMYWHDrvJ0PgTPzHR+RGxoyUBk+kUaAazE2WaWINLqwFxeT5rbrrXqcYNQ/JiprlrES69TllyWVAVA=="; }; }; "json-bigint-1.0.0" = { @@ -44201,13 +43535,13 @@ let sha512 = "YRZbUnyaJZLZUJSRi2G/MqahCyRv9n/ds+4oIetjDF3jWQA7AG7iSeKTiZiCNqtMZM7HDyt0e/W6lEnoGEmMGA=="; }; }; - "json2jsii-0.3.220" = { + "json2jsii-0.3.247" = { name = "json2jsii"; packageName = "json2jsii"; - version = "0.3.220"; + version = "0.3.247"; src = fetchurl { - url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.3.220.tgz"; - sha512 = "ez1FOryWRtLmbU92GwE8B6UAcd96kLiq8ENH3dhZjH3CnSrPfxaliLo5SSqnuuqcpazNwnXSEmA9laz0E4EyrQ=="; + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.3.247.tgz"; + sha512 = "0TJVNcWTd3dRYT1Zz9thhceNAEYnK/k7TIhwfmyWP1KaqdZq1tvxLOWkBrzQX6rIEXFU7l8EX6u+Y7bWXP/oFA=="; }; }; "json3-3.2.6" = { @@ -44237,22 +43571,22 @@ let sha512 = "4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw=="; }; }; - "json5-1.0.1" = { + "json5-1.0.2" = { name = "json5"; packageName = "json5"; - version = "1.0.1"; + version = "1.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz"; - sha512 = "aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow=="; + url = "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz"; + sha512 = "g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA=="; }; }; - "json5-2.2.2" = { + "json5-2.2.3" = { name = "json5"; packageName = "json5"; - version = "2.2.2"; + version = "2.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/json5/-/json5-2.2.2.tgz"; - sha512 = "46Tk9JiOL2z7ytNQWFLpj99RZkVgeHf87yGQKsIkaPz1qSH9UczKH1rO7K3wgRselo0tYMUNfecYpm/p1vC7tQ=="; + url = "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz"; + sha512 = "XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg=="; }; }; "json5-relaxed-0.5.4" = { @@ -44300,15 +43634,6 @@ let sha512 = "H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg=="; }; }; - "jsonc-parser-3.1.0" = { - name = "jsonc-parser"; - packageName = "jsonc-parser"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.1.0.tgz"; - sha512 = "DRf0QjnNeCUds3xTjKlQQ3DpJD51GvDjJfnxUVWg6PZTo2otSm+slzNAxU/35hF8/oJIKoG9slq30JYOsF2azg=="; - }; - }; "jsonc-parser-3.2.0" = { name = "jsonc-parser"; packageName = "jsonc-parser"; @@ -44489,6 +43814,15 @@ let sha512 = "XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w=="; }; }; + "jsonwebtoken-9.0.0" = { + name = "jsonwebtoken"; + packageName = "jsonwebtoken"; + version = "9.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.0.tgz"; + sha512 = "tuGfYXxkQGDPnLJ7SibiQgVgeDgfbPq2k2ICcbgqW8WxWLBAxKQM/ZCu/IT8SOSwmaYl4dpTFCW5xZv7YbbWUw=="; + }; + }; "jspath-0.3.4" = { name = "jspath"; packageName = "jspath"; @@ -44804,69 +44138,6 @@ let sha512 = "fwGvRXWjaSzMed8iQHkZH41wvaoq+3tIhuIbkqBBYFuuJtWoDWqgCYTADGPqLyaLX4Ct8aP5NtAxCaxk4cfcCg=="; }; }; - "karma-6.4.1" = { - name = "karma"; - packageName = "karma"; - version = "6.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/karma/-/karma-6.4.1.tgz"; - sha512 = "Cj57NKOskK7wtFWSlMvZf459iX+kpYIPXmkNUzP2WAFcA7nhr/ALn5R7sw3w+1udFDcpMx/tuB8d5amgm3ijaA=="; - }; - }; - "karma-chrome-launcher-3.1.1" = { - name = "karma-chrome-launcher"; - packageName = "karma-chrome-launcher"; - version = "3.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/karma-chrome-launcher/-/karma-chrome-launcher-3.1.1.tgz"; - sha512 = "hsIglcq1vtboGPAN+DGCISCFOxW+ZVnIqhDQcCMqqCp+4dmJ0Qpq5QAjkbA0X2L9Mi6OBkHi2Srrbmm7pUKkzQ=="; - }; - }; - "karma-coverage-istanbul-reporter-3.0.3" = { - name = "karma-coverage-istanbul-reporter"; - packageName = "karma-coverage-istanbul-reporter"; - version = "3.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/karma-coverage-istanbul-reporter/-/karma-coverage-istanbul-reporter-3.0.3.tgz"; - sha512 = "wE4VFhG/QZv2Y4CdAYWDbMmcAHeS926ZIji4z+FkB2aF/EposRb6DP6G5ncT/wXhqUfAb/d7kZrNKPonbvsATw=="; - }; - }; - "karma-htmlfile-reporter-0.3.8" = { - name = "karma-htmlfile-reporter"; - packageName = "karma-htmlfile-reporter"; - version = "0.3.8"; - src = fetchurl { - url = "https://registry.npmjs.org/karma-htmlfile-reporter/-/karma-htmlfile-reporter-0.3.8.tgz"; - sha512 = "Hd4c/vqPXYjdNYXeDJRMMq2DMMxPxqOR+TPeiLz2qbqO0qCCQMeXwFGhNDFr+GsvYhcOyn7maTbWusUFchS/4A=="; - }; - }; - "karma-mocha-2.0.1" = { - name = "karma-mocha"; - packageName = "karma-mocha"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/karma-mocha/-/karma-mocha-2.0.1.tgz"; - sha512 = "Tzd5HBjm8his2OA4bouAsATYEpZrp9vC7z5E5j4C5Of5Rrs1jY67RAwXNcVmd/Bnk1wgvQRou0zGVLey44G4tQ=="; - }; - }; - "karma-verbose-reporter-0.0.8" = { - name = "karma-verbose-reporter"; - packageName = "karma-verbose-reporter"; - version = "0.0.8"; - src = fetchurl { - url = "https://registry.npmjs.org/karma-verbose-reporter/-/karma-verbose-reporter-0.0.8.tgz"; - sha512 = "wHgevIcEpfgKwR3CnWd8t1ErzWeVlctO7ZtXkKFR1inb006ogz+7ZKg95eIVOnHCYWL3Gdy1dRMOGjVP0n4MlA=="; - }; - }; - "karma-webpack-5.0.0" = { - name = "karma-webpack"; - packageName = "karma-webpack"; - version = "5.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/karma-webpack/-/karma-webpack-5.0.0.tgz"; - sha512 = "+54i/cd3/piZuP3dr54+NcFeKOPnys5QeM1IY+0SPASwrtHsliXUiCL50iW+K9WWA7RvamC4macvvQ86l3KtaA=="; - }; - }; "katex-0.13.24" = { name = "katex"; packageName = "katex"; @@ -44876,22 +44147,13 @@ let sha512 = "jZxYuKCma3VS5UuxOx/rFV1QyGSl3Uy/i0kTJF3HgQ5xMinCQVF8Zd4bMY/9aI9b9A2pjIBOsjSSm68ykTAr8w=="; }; }; - "kdbush-3.0.0" = { - name = "kdbush"; - packageName = "kdbush"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/kdbush/-/kdbush-3.0.0.tgz"; - sha512 = "hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew=="; - }; - }; - "keccak-3.0.2" = { + "keccak-3.0.3" = { name = "keccak"; packageName = "keccak"; - version = "3.0.2"; + version = "3.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/keccak/-/keccak-3.0.2.tgz"; - sha512 = "PyKKjkH53wDMLGrvmRGSNWgmSxZOUqbnXwKL9tmgbFYA1iAYqW21kfR7mZXV0MlESiefxQQE9X9fTa3X+2MPDQ=="; + url = "https://registry.npmjs.org/keccak/-/keccak-3.0.3.tgz"; + sha512 = "JZrLIAJWuZxKbCilMpNz5Vj7Vtb4scDG3dMXLOsbzBmQGyjwE61BbW7bJkfKKCShXiQZt3T6sBgALRtmd+nZaQ=="; }; }; "keep-alive-agent-0.0.1" = { @@ -45101,13 +44363,13 @@ let sha512 = "o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ=="; }; }; - "klona-2.0.5" = { + "klona-2.0.6" = { name = "klona"; packageName = "klona"; - version = "2.0.5"; + version = "2.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz"; - sha512 = "pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ=="; + url = "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz"; + sha512 = "dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA=="; }; }; "knockout-3.5.1" = { @@ -45290,13 +44552,13 @@ let sha512 = "tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w=="; }; }; - "language-tags-1.0.7" = { + "language-tags-1.0.5" = { name = "language-tags"; packageName = "language-tags"; - version = "1.0.7"; + version = "1.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/language-tags/-/language-tags-1.0.7.tgz"; - sha512 = "bSytju1/657hFjgUzPAPqszxH62ouE8nQFoFaVlIQfne4wO/wXC9A4+m8jYve7YBBvi59eq0SUpcshvG8h5Usw=="; + url = "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz"; + sha512 = "qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ=="; }; }; "last-call-webpack-plugin-3.0.0" = { @@ -45569,6 +44831,15 @@ let sha512 = "kf0tHHLrpwKaBAQOhYHXgdeh2PkFuCCxWgLb1MRn67ZQVo787D2pij3mmHVZx193GIdM8xcfi8HF6AIYYnj0fQ=="; }; }; + "leac-0.6.0" = { + name = "leac"; + packageName = "leac"; + version = "0.6.0"; + src = fetchurl { + url = "https://registry.npmjs.org/leac/-/leac-0.6.0.tgz"; + sha512 = "y+SqErxb8h7nE/fiEX07jsbuhrpO9lL8eca7/Y1nuWV2moNlXhyd59iDGcRf6moVyDMbmTNzL40SUyrFU/yDpg=="; + }; + }; "lead-1.0.0" = { name = "lead"; packageName = "lead"; @@ -45929,148 +45200,103 @@ let sha512 = "BbqAKApLb9ywUli+0a+PcV04SyJ/N1q/8qgCNe6U97KbPCS1BTksEuHFLYdvc8DltuhfxIUBqDZsC0bBGtl3lA=="; }; }; - "lightning-5.20.2" = { + "lightning-6.8.0" = { name = "lightning"; packageName = "lightning"; - version = "5.20.2"; + version = "6.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/lightning/-/lightning-5.20.2.tgz"; - sha512 = "qvrdAKbqaZhwJBRcJeVsHduZDgCZxBrTK5XLvgANXSSu4Jmnc46II+5qd4UTngUzXd65HheINPRU5zi/frkBRg=="; + url = "https://registry.npmjs.org/lightning/-/lightning-6.8.0.tgz"; + sha512 = "HzcRq5n4zkGIXuGefFCoCjKIG/4IbpGESUyKA/+3UvfiGhtrKymRM8zoSFjWRFoaLaosR2P2SuKlrTyMfDmPHg=="; }; }; - "lightning-5.21.0" = { + "lightning-7.0.3" = { name = "lightning"; packageName = "lightning"; - version = "5.21.0"; + version = "7.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/lightning/-/lightning-5.21.0.tgz"; - sha512 = "Rha4U1yZS/SHwW/GJ+IeEaxI6vqJ1bx/upQkY5RIZNCn4YoMvqd4inQUt9GNtuLy/pXus8Bms4DL2B9DkujBKQ=="; + url = "https://registry.npmjs.org/lightning/-/lightning-7.0.3.tgz"; + sha512 = "oGnfMICKd0cmGxHdXG6VW5Ha/TLVgHJxCCYxHHyOO0PKAAweK8yUV8d0CUfgHaV/rUybTxbQ+oRhMQ6M7yPtyg=="; }; }; - "lightning-6.2.5" = { - name = "lightning"; - packageName = "lightning"; - version = "6.2.5"; - src = fetchurl { - url = "https://registry.npmjs.org/lightning/-/lightning-6.2.5.tgz"; - sha512 = "vyG+wBnoDGiL9xMmUBuKJBKrtcnQFi/fv3GK1PBpZQes5LM8IKNwxyxyNn7liILr/dXHhnlT7fCE+N+jvl/4yg=="; - }; - }; - "lightning-6.2.7" = { - name = "lightning"; - packageName = "lightning"; - version = "6.2.7"; - src = fetchurl { - url = "https://registry.npmjs.org/lightning/-/lightning-6.2.7.tgz"; - sha512 = "2O68CU67XWqbahWRG4Ut5OsdqzxWh3Pg2bboiGcSSBA1boRECQLvw3cpnsFZK7Sef5s4NhgslDu7bZxyrDa8pw=="; - }; - }; - "lightning-6.3.0" = { - name = "lightning"; - packageName = "lightning"; - version = "6.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lightning/-/lightning-6.3.0.tgz"; - sha512 = "d42srlAbG/XPw24GjJGLcHx2/zQUfBMB3tIpUiXrBqOWlcCaab+wHChkunMl0N8G6FMyiT3wNjI9MRHgclSL4g=="; - }; - }; - "lightning-6.3.1" = { - name = "lightning"; - packageName = "lightning"; - version = "6.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/lightning/-/lightning-6.3.1.tgz"; - sha512 = "ItcPt/FbMXZcCY65P0alYwMQCmhX4HEDlNaM54qjYsVmrDRGML5PN+zBlBvosvIoo47/0rQsdKpFnBSbo4oPEQ=="; - }; - }; - "lightning-6.6.0" = { - name = "lightning"; - packageName = "lightning"; - version = "6.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lightning/-/lightning-6.6.0.tgz"; - sha512 = "S+lUitqP/fbQWNYffor/74jKoyjbT/hZuzgHlCH/WH5bmoognl6BpcK7qAJ6Qw9hDQPnDXUB5CyfjJmmOCtOlw=="; - }; - }; - "lightningcss-1.17.1" = { + "lightningcss-1.18.0" = { name = "lightningcss"; packageName = "lightningcss"; - version = "1.17.1"; + version = "1.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss/-/lightningcss-1.17.1.tgz"; - sha512 = "DwwM/YYqGwLLP3he41wzDXT/m+8jdEZ80i9ViQNLRgyhey3Vm6N7XHn+4o3PY6wSnVT23WLuaROIpbpIVTNOjg=="; + url = "https://registry.npmjs.org/lightningcss/-/lightningcss-1.18.0.tgz"; + sha512 = "uk10tNxi5fhZqU93vtYiQgx/8a9f0Kvtj5AXIm+VlOXY+t/DWDmCZWJEkZJmmALgvbS6aAW8or+Kq85eJ6TDTw=="; }; }; - "lightningcss-darwin-arm64-1.17.1" = { + "lightningcss-darwin-arm64-1.18.0" = { name = "lightningcss-darwin-arm64"; packageName = "lightningcss-darwin-arm64"; - version = "1.17.1"; + version = "1.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.17.1.tgz"; - sha512 = "YTAHEy4XlzI3sMbUVjbPi9P7+N7lGcgl2JhCZhiQdRAEKnZLQch8kb5601sgESxdGXjgei7JZFqi/vVEk81wYg=="; + url = "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.18.0.tgz"; + sha512 = "OqjydwtiNPgdH1ByIjA1YzqvDG/OMR6L3LPN6wRl1729LB0y4Mik7L06kmZaTb+pvUHr+NmDd2KCwnlrQ4zO3w=="; }; }; - "lightningcss-darwin-x64-1.17.1" = { + "lightningcss-darwin-x64-1.18.0" = { name = "lightningcss-darwin-x64"; packageName = "lightningcss-darwin-x64"; - version = "1.17.1"; + version = "1.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.17.1.tgz"; - sha512 = "UhXPUS2+yTTf5sXwUV0+8QY2x0bPGLgC/uhcknWSQMqWn1zGty4fFvH04D7f7ij0ujwSuN+Q0HtU7lgmMrPz0A=="; + url = "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.18.0.tgz"; + sha512 = "mNiuPHj89/JHZmJMp+5H8EZSt6EL5DZRWJ31O6k3DrLLnRIQjXuXdDdN8kP7LoIkeWI5xvyD60CsReJm+YWYAw=="; }; }; - "lightningcss-linux-arm-gnueabihf-1.17.1" = { + "lightningcss-linux-arm-gnueabihf-1.18.0" = { name = "lightningcss-linux-arm-gnueabihf"; packageName = "lightningcss-linux-arm-gnueabihf"; - version = "1.17.1"; + version = "1.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.17.1.tgz"; - sha512 = "alUZumuznB6K/9yZ0zuZkODXUm8uRnvs9t0CL46CXN16Y2h4gOx5ahUCMlelUb7inZEsgJIoepgLsJzBUrSsBw=="; + url = "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.18.0.tgz"; + sha512 = "S+25JjI6601HiAVoTDXW6SqH+E94a+FHA7WQqseyNHunOgVWKcAkNEc2LJvVxgwTq6z41sDIb9/M3Z9wa9lk4A=="; }; }; - "lightningcss-linux-arm64-gnu-1.17.1" = { + "lightningcss-linux-arm64-gnu-1.18.0" = { name = "lightningcss-linux-arm64-gnu"; packageName = "lightningcss-linux-arm64-gnu"; - version = "1.17.1"; + version = "1.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.17.1.tgz"; - sha512 = "/1XaH2cOjDt+ivmgfmVFUYCA0MtfNWwtC4P8qVi53zEQ7P8euyyZ1ynykZOyKXW9Q0DzrwcLTh6+hxVLcbtGBg=="; + url = "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.18.0.tgz"; + sha512 = "JSqh4+21dCgBecIQUet35dtE4PhhSEMyqe3y0ZNQrAJQ5kyUPSQHiw81WXnPJcOSTTpG0TyMLiC8K//+BsFGQA=="; }; }; - "lightningcss-linux-arm64-musl-1.17.1" = { + "lightningcss-linux-arm64-musl-1.18.0" = { name = "lightningcss-linux-arm64-musl"; packageName = "lightningcss-linux-arm64-musl"; - version = "1.17.1"; + version = "1.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.17.1.tgz"; - sha512 = "/IgE7lYWFHCCQFTMIwtt+fXLcVOha8rcrNze1JYGPWNorO6NBc6MJo5u5cwn5qMMSz9fZCCDIlBBU4mGwjQszQ=="; + url = "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.18.0.tgz"; + sha512 = "2FWHa8iUhShnZnqhn2wfIcK5adJat9hAAaX7etNsoXJymlliDIOFuBQEsba2KBAZSM4QqfQtvRdR7m8i0I7ybQ=="; }; }; - "lightningcss-linux-x64-gnu-1.17.1" = { + "lightningcss-linux-x64-gnu-1.18.0" = { name = "lightningcss-linux-x64-gnu"; packageName = "lightningcss-linux-x64-gnu"; - version = "1.17.1"; + version = "1.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.17.1.tgz"; - sha512 = "OyE802IAp4DB9vZrHlOyWunbHLM9dN08tJIKN/HhzzLKIHizubOWX6NMzUXMZLsaUrYwVAHHdyEA+712p8mMzA=="; + url = "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.18.0.tgz"; + sha512 = "plCPGQJtDZHcLVKVRLnQVF2XRsIC32WvuJhQ7fJ7F6BV98b/VZX0OlX05qUaOESD9dCDHjYSfxsgcvOKgCWh7A=="; }; }; - "lightningcss-linux-x64-musl-1.17.1" = { + "lightningcss-linux-x64-musl-1.18.0" = { name = "lightningcss-linux-x64-musl"; packageName = "lightningcss-linux-x64-musl"; - version = "1.17.1"; + version = "1.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.17.1.tgz"; - sha512 = "ydwGgV3Usba5P53RAOqCA9MsRsbb8jFIEVhf7/BXFjpKNoIQyijVTXhwIgQr/oGwUNOHfgQ3F8ruiUjX/p2YKw=="; + url = "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.18.0.tgz"; + sha512 = "na+BGtVU6fpZvOHKhnlA0XHeibkT3/46nj6vLluG3kzdJYoBKU6dIl7DSOk++8jv4ybZyFJ0aOFMMSc8g2h58A=="; }; }; - "lightningcss-win32-x64-msvc-1.17.1" = { + "lightningcss-win32-x64-msvc-1.18.0" = { name = "lightningcss-win32-x64-msvc"; packageName = "lightningcss-win32-x64-msvc"; - version = "1.17.1"; + version = "1.18.0"; src = fetchurl { - url = "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.17.1.tgz"; - sha512 = "Ngqtx9NazaiAOk71XWwSsqgAuwYF+8PO6UYsoU7hAukdrSS98kwaBMEDw1igeIiZy1XD/4kh5KVnkjNf7ZOxVQ=="; + url = "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.18.0.tgz"; + sha512 = "5qeAH4RMNy2yMNEl7e5TI6upt/7xD2ZpHWH4RkT8iJ7/6POS5mjHbXWUO9Q1hhDhqkdzGa76uAdMzEouIeCyNw=="; }; }; "lilconfig-2.0.6" = { @@ -46289,103 +45515,67 @@ let sha512 = "iBA0cb13CobBSoGJLfZgnrykLlfJipDAnvtf+YwIqqzBEsTeQYsXrHaSBkaHd5wCWeabwrNvhjZoFMUrlo+eLw=="; }; }; - "ln-accounting-6.1.1" = { + "ln-accounting-6.1.2" = { name = "ln-accounting"; packageName = "ln-accounting"; - version = "6.1.1"; + version = "6.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/ln-accounting/-/ln-accounting-6.1.1.tgz"; - sha512 = "qeHM6tB6VpiFEc05Jt4IhsIJvK8K2B8J5P1BsWDGIonP6yovvKXSIQikex2MWiIveNo4Xeev6BA+wByo3Gqgsw=="; + url = "https://registry.npmjs.org/ln-accounting/-/ln-accounting-6.1.2.tgz"; + sha512 = "fVYvNmwyOzqpxKRhcBV4itOYbGRKtjnml5sbmS6lGsS2ZNDZgmopx4/cxl+ZQG5dO8W7/MlSJD7I5MVmFXOrOw=="; }; }; - "ln-service-53.22.0" = { + "ln-service-54.8.0" = { name = "ln-service"; packageName = "ln-service"; - version = "53.22.0"; + version = "54.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/ln-service/-/ln-service-53.22.0.tgz"; - sha512 = "qnjiTbGEAvk92xewNPmo+PT2foGcbxh8DR3dGb6GeylBS0mhkIYF5PMVUu/8Hr/h+11CksGJ+u43DEJNxmbFhA=="; + url = "https://registry.npmjs.org/ln-service/-/ln-service-54.8.0.tgz"; + sha512 = "QNOek7A5BFKGiHlCYHQfIwhehtRyO/oFndeaSn/11x2cvo461pgJXyu/zQETCb4yhGZUa1v3LU1Lmk4bPqsvyw=="; }; }; - "ln-service-53.23.0" = { + "ln-service-54.9.0" = { name = "ln-service"; packageName = "ln-service"; - version = "53.23.0"; + version = "54.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/ln-service/-/ln-service-53.23.0.tgz"; - sha512 = "Ds3IzMNEiAgP8auc9AfDbzr6E2Xdy/GTUcLc6m5FM66JtJBM3jM52apzod+VG1vGm9rVyHfCeem/iP4oyaNPYA=="; + url = "https://registry.npmjs.org/ln-service/-/ln-service-54.9.0.tgz"; + sha512 = "aeuRa5B3EhCJf6RL2m2oTK7luClU90Evhqp9RRWcfxngQZc2BSbw47fav63WaoXwA/o7/3tgy6y/1bCZ5UfzgA=="; }; }; - "ln-service-54.2.4" = { - name = "ln-service"; - packageName = "ln-service"; - version = "54.2.4"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-service/-/ln-service-54.2.4.tgz"; - sha512 = "n8OWGBQRxAf1Oqk6p77jidkkljENjkwWqElIZtRz4QLfVHpFCxhNoMOCcG5iUTt0t53P8zo3s0xzOXRPUEUT8g=="; - }; - }; - "ln-service-54.2.6" = { - name = "ln-service"; - packageName = "ln-service"; - version = "54.2.6"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-service/-/ln-service-54.2.6.tgz"; - sha512 = "HEFcTdVj1nYfhkLzPKtCtBZhw+I9FB8qoJhMb4ro8cwMebRSG/lDDcIvkANfi7ccFLbRNB+M7Tk1vHRaFdQAzw=="; - }; - }; - "ln-service-54.3.1" = { - name = "ln-service"; - packageName = "ln-service"; - version = "54.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-service/-/ln-service-54.3.1.tgz"; - sha512 = "hEsA6BlUl4twgcnQZL1gTfonzzlwJr5Hg29zUBZlDDL43cj1y1OFXs2rJcraaoM5+aJytt5aKoJdcTyKC31w8g=="; - }; - }; - "ln-service-54.3.2" = { - name = "ln-service"; - packageName = "ln-service"; - version = "54.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-service/-/ln-service-54.3.2.tgz"; - sha512 = "3wIZfpHKOo2L+MgqH4PtLdYQerRQTpd4Rdjhs9U7PMi9ar3PSZ/20URv0bPgA05DSc9Q7NGYmmj4vUY504iNaw=="; - }; - }; - "ln-service-54.6.0" = { - name = "ln-service"; - packageName = "ln-service"; - version = "54.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ln-service/-/ln-service-54.6.0.tgz"; - sha512 = "kDbClE4eTNCaaipDkj2o0TsqZWv8TKyxgUXah4Bs3mM92lL1tqLHPAfSMdE/EFzA82tBLkvByXwNUL4xTqSGrA=="; - }; - }; - "ln-sync-3.14.0" = { + "ln-sync-4.1.0" = { name = "ln-sync"; packageName = "ln-sync"; - version = "3.14.0"; + version = "4.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/ln-sync/-/ln-sync-3.14.0.tgz"; - sha512 = "qLRJvl9WqcVo5cbfGeOprflN9194hf9Azd9fHikeixaziWiV1WBObR8jWE4ShQ+dZVnptd6FP8fSNRJqtq4WgA=="; + url = "https://registry.npmjs.org/ln-sync/-/ln-sync-4.1.0.tgz"; + sha512 = "N02s3tCvlyiTSmhJYoawDLqVmZ63Yk/7k27F+244J8kOorwLNrtAjcy8WHn+YnR44yreAph9xHwacU4Nr+VQuQ=="; }; }; - "ln-sync-4.0.5" = { + "ln-sync-4.1.1" = { name = "ln-sync"; packageName = "ln-sync"; - version = "4.0.5"; + version = "4.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/ln-sync/-/ln-sync-4.0.5.tgz"; - sha512 = "zzFK2CMBAiDlnLu/m+kpD4Oqz6YGXg4aiTbtygUOOFEBSdvHtXG4WaM2xFpKf7g4cvHGhYS6xsmMYwVepwsypA=="; + url = "https://registry.npmjs.org/ln-sync/-/ln-sync-4.1.1.tgz"; + sha512 = "Y0XIPFizypuIUNzjwEJMz2eBkgH+7UepCUjwWiVurp61QpLqDNW73dq8/ittFO+mf9bIFqebmTeIiORh0DETFQ=="; }; }; - "ln-telegram-4.3.1" = { + "ln-sync-4.2.0" = { + name = "ln-sync"; + packageName = "ln-sync"; + version = "4.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/ln-sync/-/ln-sync-4.2.0.tgz"; + sha512 = "yRQZ7nQOIa97p4vWeUo8iqGXX0nVMoROqA3PVm29RnW+AgKPk3sXtJ+LUDu+vMNkOauocrGz1vXS61Q+WNLutg=="; + }; + }; + "ln-telegram-4.6.0" = { name = "ln-telegram"; packageName = "ln-telegram"; - version = "4.3.1"; + version = "4.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-4.3.1.tgz"; - sha512 = "lAR12uidLQhvAIZGWFMi9rFtOAuy+sfw0YzlqRiTiiUuxcRL22v224vx0ffPY4YOwfqPdiQC61JKEdVYGwLmuA=="; + url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-4.6.0.tgz"; + sha512 = "rNnNgYUsXEbkLjX20AwgsAa8JBi5U938/NadOLW4ro+gMdb36TprMe/qDX8jOyoiXRVJs+0re9vdQPbHmXBxVw=="; }; }; "load-bmfont-1.4.1" = { @@ -46550,15 +45740,6 @@ let sha512 = "xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw=="; }; }; - "loadware-2.0.0" = { - name = "loadware"; - packageName = "loadware"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/loadware/-/loadware-2.0.0.tgz"; - sha512 = "PD5Yn9VFr7RTJLvIx/CBRALvE+PATUDoEedCcik49Te30LK4qU39DZPV3oxhhF9ql9NKg3kwL+kyf0NqnX9e/g=="; - }; - }; "loady-0.0.5" = { name = "loady"; packageName = "loady"; @@ -47396,6 +46577,15 @@ let sha512 = "Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg=="; }; }; + "lodash.isempty-4.4.0" = { + name = "lodash.isempty"; + packageName = "lodash.isempty"; + version = "4.4.0"; + src = fetchurl { + url = "https://registry.npmjs.org/lodash.isempty/-/lodash.isempty-4.4.0.tgz"; + sha512 = "oKMuF3xEeqDltrGMfDxAPGIVMSSRv8tbRSODbrs4KGsRRLEhrW8N8Rd4DRgB2+621hY8A8XwwrTVhXWpxFvMzg=="; + }; + }; "lodash.isequal-4.5.0" = { name = "lodash.isequal"; packageName = "lodash.isequal"; @@ -48504,31 +47694,22 @@ let sha512 = "zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow=="; }; }; - "luxon-1.28.0" = { + "luxon-1.28.1" = { name = "luxon"; packageName = "luxon"; - version = "1.28.0"; + version = "1.28.1"; src = fetchurl { - url = "https://registry.npmjs.org/luxon/-/luxon-1.28.0.tgz"; - sha512 = "TfTiyvZhwBYM/7QdAVDh+7dBTBA29v4ik0Ce9zda3Mnf8on1S5KJI8P2jKFZ8+5C0jhmr0KwJEO/Wdpm0VeWJQ=="; + url = "https://registry.npmjs.org/luxon/-/luxon-1.28.1.tgz"; + sha512 = "gYHAa180mKrNIUJCbwpmD0aTu9kV0dREDrwNnuyFAsO1Wt0EVYSZelPnJlbj9HplzXX/YWXHFTL45kvZ53M0pw=="; }; }; - "luxon-3.1.0" = { + "luxon-3.2.1" = { name = "luxon"; packageName = "luxon"; - version = "3.1.0"; + version = "3.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/luxon/-/luxon-3.1.0.tgz"; - sha512 = "7w6hmKC0/aoWnEsmPCu5Br54BmbmUp5GfcqBxQngRcXJ+q5fdfjEzn7dxmJh2YdDhgW8PccYtlWKSv4tQkrTQg=="; - }; - }; - "luxon-3.1.1" = { - name = "luxon"; - packageName = "luxon"; - version = "3.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/luxon/-/luxon-3.1.1.tgz"; - sha512 = "Ah6DloGmvseB/pX1cAmjbFvyU/pKuwQMQqz7d0yvuDlVYLTs2WeDHQMpC8tGjm1da+BriHROW/OEIT/KfYg6xw=="; + url = "https://registry.npmjs.org/luxon/-/luxon-3.2.1.tgz"; + sha512 = "QrwPArQCNLAKGO/C+ZIilgIuDnEnKx5QYODdDtbFaxzsbZcc/a7WFq7MhsVYgRlwawLtvOUESTlfJ+hc/USqPg=="; }; }; "lzma-native-8.0.6" = { @@ -48612,15 +47793,6 @@ let sha512 = "RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ=="; }; }; - "magic-string-0.26.2" = { - name = "magic-string"; - packageName = "magic-string"; - version = "0.26.2"; - src = fetchurl { - url = "https://registry.npmjs.org/magic-string/-/magic-string-0.26.2.tgz"; - sha512 = "NzzlXpclt5zAbmo6h6jNc8zl2gNRGHvmsZW4IvZhTC4W7k4OlLP+S5YLussa/r3ixNT66KOQfNORlXHSOy/X4A=="; - }; - }; "magic-string-0.26.7" = { name = "magic-string"; packageName = "magic-string"; @@ -48873,15 +48045,6 @@ let sha512 = "4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w=="; }; }; - "maplibre-gl-2.4.0" = { - name = "maplibre-gl"; - packageName = "maplibre-gl"; - version = "2.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/maplibre-gl/-/maplibre-gl-2.4.0.tgz"; - sha512 = "csNFylzntPmHWidczfgCZpvbTSmhaWvLRj9e1ezUDBEPizGgshgm3ea1T5TCNEEBq0roauu7BPuRZjA3wO4KqA=="; - }; - }; "mapnik-reference-8.10.0" = { name = "mapnik-reference"; packageName = "mapnik-reference"; @@ -49134,22 +48297,22 @@ let sha512 = "Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw=="; }; }; - "markdownlint-0.26.2" = { + "markdownlint-0.27.0" = { name = "markdownlint"; packageName = "markdownlint"; - version = "0.26.2"; + version = "0.27.0"; src = fetchurl { - url = "https://registry.npmjs.org/markdownlint/-/markdownlint-0.26.2.tgz"; - sha512 = "2Am42YX2Ex5SQhRq35HxYWDfz1NLEOZWWN25nqd2h3AHRKsGRE+Qg1gt1++exW792eXTrR4jCNHfShfWk9Nz8w=="; + url = "https://registry.npmjs.org/markdownlint/-/markdownlint-0.27.0.tgz"; + sha512 = "HtfVr/hzJJmE0C198F99JLaeada+646B5SaG2pVoEakLFI6iRGsvMqrnnrflq8hm1zQgwskEgqSnhDW11JBp0w=="; }; }; - "markdownlint-cli2-0.5.1" = { + "markdownlint-cli2-0.6.0" = { name = "markdownlint-cli2"; packageName = "markdownlint-cli2"; - version = "0.5.1"; + version = "0.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/markdownlint-cli2/-/markdownlint-cli2-0.5.1.tgz"; - sha512 = "f3Nb1GF/c8YSrV/FntsCWzpa5mLFJRlO+wzEgv+lkNQjU6MZflUwc2FbyEDPTo6oVhP2VyUOkK0GkFgfuktl1w=="; + url = "https://registry.npmjs.org/markdownlint-cli2/-/markdownlint-cli2-0.6.0.tgz"; + sha512 = "Bv20r6WGdcHMWi8QvAFZ3CBunf4i4aYmVdTfpAvXODI/1k3f09DZZ0i0LcX9ZMhlVxjoOzbVDz1NWyKc5hwTqg=="; }; }; "markdownlint-cli2-formatter-default-0.0.3" = { @@ -49161,15 +48324,6 @@ let sha512 = "QEAJitT5eqX1SNboOD+SO/LNBpu4P4je8JlR02ug2cLQAqmIhh8IJnSK7AcaHBHhNADqdGydnPpQOpsNcEEqCw=="; }; }; - "markdownlint-rule-helpers-0.17.2" = { - name = "markdownlint-rule-helpers"; - packageName = "markdownlint-rule-helpers"; - version = "0.17.2"; - src = fetchurl { - url = "https://registry.npmjs.org/markdownlint-rule-helpers/-/markdownlint-rule-helpers-0.17.2.tgz"; - sha512 = "XaeoW2NYSlWxMCZM2B3H7YTG6nlaLfkEZWMBhr4hSPlq9MuY2sy83+Xr89jXOqZMZYjvi5nBCGoFh7hHoPKZmA=="; - }; - }; "marked-0.3.19" = { name = "marked"; packageName = "marked"; @@ -49179,13 +48333,13 @@ let sha512 = "ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg=="; }; }; - "marked-4.2.4" = { + "marked-4.2.12" = { name = "marked"; packageName = "marked"; - version = "4.2.4"; + version = "4.2.12"; src = fetchurl { - url = "https://registry.npmjs.org/marked/-/marked-4.2.4.tgz"; - sha512 = "Wcc9ikX7Q5E4BYDPvh1C6QNSxrjC9tBgz+A/vAhp59KXUgachw++uMvMKiSW8oA85nopmPZcEvBoex/YLMsiyA=="; + url = "https://registry.npmjs.org/marked/-/marked-4.2.12.tgz"; + sha512 = "yr8hSKa3Fv4D3jdZmtMMPghgVt6TWbk86WQaWhDloQjRSQhMMYCAro7jP7VDJrjjdV8pxVxMssXS8B8Y5DZ5aw=="; }; }; "marked-terminal-5.1.1" = { @@ -49620,6 +48774,15 @@ let sha512 = "7N5ihsOkAEGjFotIX9p/YPdl4TqUoMxL4ajNz7PbT89BqsdWJuBC9rvgt6wpbwTZqWWR0jKWqQbwsOWDBUZv4g=="; }; }; + "mdast-util-phrasing-3.0.0" = { + name = "mdast-util-phrasing"; + packageName = "mdast-util-phrasing"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-3.0.0.tgz"; + sha512 = "S+QYsDRLkGi8U7o5JF1agKa/sdP+CNGXXLqC17pdTVL8FHHgQEiwFGa9yE5aYtUxNiFGYoaDy9V1kC85Sz86Gg=="; + }; + }; "mdast-util-to-markdown-0.6.5" = { name = "mdast-util-to-markdown"; packageName = "mdast-util-to-markdown"; @@ -49629,13 +48792,13 @@ let sha512 = "XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ=="; }; }; - "mdast-util-to-markdown-1.4.0" = { + "mdast-util-to-markdown-1.5.0" = { name = "mdast-util-to-markdown"; packageName = "mdast-util-to-markdown"; - version = "1.4.0"; + version = "1.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.4.0.tgz"; - sha512 = "IjXARf/O8VGx/pc5SZ7syfydq1DYL9vd92orsG5U0b4GNCmAvXzu+n7sbzfIKrXwB0AVrYk3NV2kXl0AIi9LCA=="; + url = "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz"; + sha512 = "bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A=="; }; }; "mdast-util-to-nlcst-4.0.1" = { @@ -49845,22 +49008,13 @@ let sha512 = "7p+bBDqsSisO20YIZf2ntYvST27fFJINn7CKE21XdPUQDcLV62b/yB5sTOooQeEoiZ3rldZQ+4RfONgL/gbRoA=="; }; }; - "memfs-3.4.12" = { + "memfs-3.4.13" = { name = "memfs"; packageName = "memfs"; - version = "3.4.12"; + version = "3.4.13"; src = fetchurl { - url = "https://registry.npmjs.org/memfs/-/memfs-3.4.12.tgz"; - sha512 = "BcjuQn6vfqP+k100e0E9m61Hyqa//Brp+I3f0OBmN0ATHlFA8vx3Lt8z57R3u2bPqe3WGDBC+nF72fTH7isyEw=="; - }; - }; - "memoize-one-6.0.0" = { - name = "memoize-one"; - packageName = "memoize-one"; - version = "6.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz"; - sha512 = "rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw=="; + url = "https://registry.npmjs.org/memfs/-/memfs-3.4.13.tgz"; + sha512 = "omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg=="; }; }; "memoizee-0.4.15" = { @@ -50745,15 +49899,6 @@ let sha512 = "dhNd1uA2u397uQk3Nv5LM4lm93WYDUXFn3Fu291FJerns4jyTudqhIWe4W04YLy7Uk1tm1Ore04NpjRvQp/NPA=="; }; }; - "mime-2.5.2" = { - name = "mime"; - packageName = "mime"; - version = "2.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz"; - sha512 = "tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg=="; - }; - }; "mime-2.6.0" = { name = "mime"; packageName = "mime"; @@ -50979,15 +50124,6 @@ let sha512 = "lp3GeY7ygcgAmVIcRPBVhIkf8Us7FZjA+ILpal44qLdSu11wmjKQ3d9k15lfD7pO4esu9eUIAW7qiYIBppv40A=="; }; }; - "mini-css-extract-plugin-2.7.2" = { - name = "mini-css-extract-plugin"; - packageName = "mini-css-extract-plugin"; - version = "2.7.2"; - src = fetchurl { - url = "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.2.tgz"; - sha512 = "EdlUizq13o0Pd+uCp+WO/JpkLvHRVGt97RqfeGhXqAcorYo1ypJSpkV+WDT0vY/kmh/p7wRdJNJtuyK540PXDw=="; - }; - }; "mini-svg-data-uri-1.4.4" = { name = "mini-svg-data-uri"; packageName = "mini-svg-data-uri"; @@ -51006,13 +50142,13 @@ let sha512 = "LfHUYIA047rrqIZEn0gwbqbzarU5bmZ8yZ9SizeoiPwVq5cemE3foJTJZ3pCktUq/IPkKNGghFHJk1O8149mOA=="; }; }; - "miniflare-2.10.0" = { + "miniflare-2.11.0" = { name = "miniflare"; packageName = "miniflare"; - version = "2.10.0"; + version = "2.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/miniflare/-/miniflare-2.10.0.tgz"; - sha512 = "WPveqChVDdmDGv+wFqXjFqEZlZ5/aBlAKX37h/e4TAjl2XsK5nPfQATP8jZXwNDEC5iE29bYZymOqeZkp+t7OA=="; + url = "https://registry.npmjs.org/miniflare/-/miniflare-2.11.0.tgz"; + sha512 = "QA18I1VQXdCo4nBtPJUcUDxW8c9xbc5ex5F61jwhkGVOISSnYdEheolESmjr8MYk28xwi0XD1ozS4rLaTONd+w=="; }; }; "minilog-3.1.0" = { @@ -51105,15 +50241,6 @@ let sha512 = "nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g=="; }; }; - "minimatch-5.1.0" = { - name = "minimatch"; - packageName = "minimatch"; - version = "5.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz"; - sha512 = "9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg=="; - }; - }; "minimatch-5.1.2" = { name = "minimatch"; packageName = "minimatch"; @@ -51123,6 +50250,15 @@ let sha512 = "bNH9mmM9qsJ2X4r2Nat1B//1dJVcn3+iBLa3IgqJ7EbGaDNepL9QSHOxN4ng33s52VMMhhIfgCYDk3C4ZmlDAg=="; }; }; + "minimatch-5.1.6" = { + name = "minimatch"; + packageName = "minimatch"; + version = "5.1.6"; + src = fetchurl { + url = "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz"; + sha512 = "lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g=="; + }; + }; "minimist-0.0.10" = { name = "minimist"; packageName = "minimist"; @@ -51519,15 +50655,6 @@ let sha512 = "bRuZp3C0itgLKHu/VNxi66DN/XVkQG7xtoBVWxpvC5FhAqbOCP21+nPhULjnzEqd7xBMybp6KwytdUpZKEgpIQ=="; }; }; - "mocha-10.2.0" = { - name = "mocha"; - packageName = "mocha"; - version = "10.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/mocha/-/mocha-10.2.0.tgz"; - sha512 = "IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg=="; - }; - }; "mocha-2.5.3" = { name = "mocha"; packageName = "mocha"; @@ -51924,13 +51051,13 @@ let sha512 = "0YcvWSv7ZOGl9Od6Y5iJ3XnPww8O7WLcpYMDwX+PAA/uXLDtyw94PJv9GLQV/nnp3cWlDhMoyKZIQLrx33sWog=="; }; }; - "mssql-9.0.1" = { + "mssql-9.1.0" = { name = "mssql"; packageName = "mssql"; - version = "9.0.1"; + version = "9.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/mssql/-/mssql-9.0.1.tgz"; - sha512 = "rmBEPeUgZswvcclSc4s21WJCG0xqDYBas1MSnZepzDPvtNRgkx6f/gCm52EEo2djVtIXJgRq22m7gj7floz4Ng=="; + url = "https://registry.npmjs.org/mssql/-/mssql-9.1.0.tgz"; + sha512 = "rAsD7xfOkzSUqmNMoWX9YT43QfxbabIbrhEuf/PGRCzhWCzwHf25jxNgaoAwqT7vcb5/1irDCi6l6DG05ZGEEQ=="; }; }; "multer-1.4.3" = { @@ -52131,15 +51258,6 @@ let sha512 = "J1XDiAmmNpRCBfIWJv+n0ymC4ABcf/Pl+5YvC5B/D2f/2+8PtHvCNxMPKiQcZyi922Hq69J2YOpb1pTywfifyw=="; }; }; - "murmurhash-js-1.0.0" = { - name = "murmurhash-js"; - packageName = "murmurhash-js"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/murmurhash-js/-/murmurhash-js-1.0.0.tgz"; - sha512 = "TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw=="; - }; - }; "mustache-2.3.2" = { name = "mustache"; packageName = "mustache"; @@ -52302,13 +51420,13 @@ let sha512 = "Bca+gk2YWmqp2Uf6k5NFEurwY/0td0cpebAucFpY/3jhrwrVGuxU2uQFCHjU19SJfje0yQvi+rVWdq78hR5lig=="; }; }; - "mysql2-2.3.3" = { + "mysql2-3.0.1" = { name = "mysql2"; packageName = "mysql2"; - version = "2.3.3"; + version = "3.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/mysql2/-/mysql2-2.3.3.tgz"; - sha512 = "wxJUev6LgMSgACDkb/InIFxDprRa6T95+VEoR+xPvtngtccNH2dGjEB/fVZ8yg1gWv1510c9CvXuJHi5zUm0ZA=="; + url = "https://registry.npmjs.org/mysql2/-/mysql2-3.0.1.tgz"; + sha512 = "Wrh5KuE0OOlm6wRwRhE2q+C8LjwwfT3sFKVauyTwMwPbOd2i0SzxMqTZPqs90ZNAEWjot5GFywje84qVn3ITYw=="; }; }; "mz-2.7.0" = { @@ -52329,13 +51447,13 @@ let sha512 = "uH9geV4+roR1tohsrrqSOLCJ9Mh1iFcDI+9vUuydDlDxUS1UCAWUfuGb06p3dj3flzywquJNrGsQ7lHP8+4RVQ=="; }; }; - "named-placeholders-1.1.2" = { + "named-placeholders-1.1.3" = { name = "named-placeholders"; packageName = "named-placeholders"; - version = "1.1.2"; + version = "1.1.3"; src = fetchurl { - url = "https://registry.npmjs.org/named-placeholders/-/named-placeholders-1.1.2.tgz"; - sha512 = "wiFWqxoLL3PGVReSZpjLVxyJ1bRqe+KKJVbr4hGs1KWfTZTQyezHFBbuKj9hsizHyGV2ne7EMjHdxEGAybD5SA=="; + url = "https://registry.npmjs.org/named-placeholders/-/named-placeholders-1.1.3.tgz"; + sha512 = "eLoBxg6wE/rZkJPhU/xRX1WTpkFEwDJEN96oxFrTsqBdbT5ec295Q+CoHrL9IT0DipqKhmGcaZmwOt8OON5x1w=="; }; }; "named-regexp-0.1.1" = { @@ -52527,13 +51645,13 @@ let sha512 = "A0xLykHtARfueITVDernsAWdtIMbOJgKgcluwENp3AlsKN/PloyO10HtmoqnFAQAcxPkgZN7wdfPfEd0zNGxbg=="; }; }; - "napi-macros-2.1.1" = { + "napi-macros-2.2.2" = { name = "napi-macros"; packageName = "napi-macros"; - version = "2.1.1"; + version = "2.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/napi-macros/-/napi-macros-2.1.1.tgz"; - sha512 = "Q5w6SrLzogp1bg1wn2WlFCrRLn2eckE20aNk2J8fK5i9+I6P7tc3Z4rkDAZ+abRzdbFDOemCTgoopSAkRfsa4g=="; + url = "https://registry.npmjs.org/napi-macros/-/napi-macros-2.2.2.tgz"; + sha512 = "hmEVtAGYzVQpCKdbQea4skABsdXW4RUh5t5mJ2zzqowJS2OyXZTU1KhDVFhx+NlWZ4ap9mqR9TcDO3LTTttd+g=="; }; }; "native-duplexpair-1.0.0" = { @@ -52590,13 +51708,13 @@ let sha512 = "p7KTHxU0CUrcOXe62Zfrb5Z13nLvPhSWR/so3kFulUQU0sgUll2Z0LwpsLN351eOOD+hRGu/F1g+6xDfPeD++Q=="; }; }; - "ncjsm-4.3.1" = { + "ncjsm-4.3.2" = { name = "ncjsm"; packageName = "ncjsm"; - version = "4.3.1"; + version = "4.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/ncjsm/-/ncjsm-4.3.1.tgz"; - sha512 = "5hy/Mr7KKLS/AFyY4Be8q0aXz8wYd2PN3cSSMBeQHfcrK6Sbd0EGoQxiNrUoKMAYhl67v4A975f6Gy1oEqfJlA=="; + url = "https://registry.npmjs.org/ncjsm/-/ncjsm-4.3.2.tgz"; + sha512 = "6d1VWA7FY31CpI4Ki97Fpm36jfURkVbpktizp8aoVViTZRQgr/0ddmlKerALSSlzfwQRBeSq1qwwVcBJK4Sk7Q=="; }; }; "nconf-0.10.0" = { @@ -53140,13 +52258,13 @@ let sha512 = "/2D0wOQPgaUWzVSVgRMx+trKJRC2UG4SUc4oCJoXx9Uxjtp0Vy3/kt7zcbxHF8+Z/pK3UloLWzBISg72brfy1w=="; }; }; - "node-abi-3.30.0" = { + "node-abi-3.31.0" = { name = "node-abi"; packageName = "node-abi"; - version = "3.30.0"; + version = "3.31.0"; src = fetchurl { - url = "https://registry.npmjs.org/node-abi/-/node-abi-3.30.0.tgz"; - sha512 = "qWO5l3SCqbwQavymOmtTVuCWZE23++S+rxyoHjXqUmPyzRcaoI4lA2gO55/drddGnedAyjA7sk76SfQ5lfUMnw=="; + url = "https://registry.npmjs.org/node-abi/-/node-abi-3.31.0.tgz"; + sha512 = "eSKV6s+APenqVh8ubJyiu/YhZgxQpGP66ntzUb3lY1xB9ukSRaGnx0AIxI+IM+1+IVYC1oWobgG5L3Lt9ARykQ=="; }; }; "node-abort-controller-3.0.1" = { @@ -53203,13 +52321,13 @@ let sha512 = "73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ=="; }; }; - "node-addon-api-5.0.0" = { + "node-addon-api-5.1.0" = { name = "node-addon-api"; packageName = "node-addon-api"; - version = "5.0.0"; + version = "5.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.0.0.tgz"; - sha512 = "CvkDw2OEnme7ybCykJpVcKH+uAOLV2qLqiyla128dN9TkEWfrYmxG6C2boDe5KcNQqZF3orkqzGgOMvZ/JNekA=="; + url = "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz"; + sha512 = "eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA=="; }; }; "node-api-version-0.1.4" = { @@ -53347,6 +52465,15 @@ let sha512 = "ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ=="; }; }; + "node-fetch-2.6.8" = { + name = "node-fetch"; + packageName = "node-fetch"; + version = "2.6.8"; + src = fetchurl { + url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.8.tgz"; + sha512 = "RZ6dBYuj8dRSfxpUSu+NsdF1dpPpluJxwOp+6IoDp/sH2QNDSvurYsAa+F1WxY2RjA1iP93xhcsUoYbF2XBqVg=="; + }; + }; "node-fetch-3.2.10" = { name = "node-fetch"; packageName = "node-fetch"; @@ -53473,13 +52600,13 @@ let sha512 = "dSq1xmcPDKPZ2EED2S6zw/b9NKsqzXRE6dVr8TVQnI3FJOTteUMuqF3Qqs6LZg+mLGYJWqQzMbIjMtJqTv87nQ=="; }; }; - "node-gyp-build-4.5.0" = { + "node-gyp-build-4.6.0" = { name = "node-gyp-build"; packageName = "node-gyp-build"; - version = "4.5.0"; + version = "4.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz"; - sha512 = "2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg=="; + url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz"; + sha512 = "NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ=="; }; }; "node-gyp-build-optional-packages-5.0.3" = { @@ -53491,15 +52618,6 @@ let sha512 = "k75jcVzk5wnnc/FMxsf4udAoTEUv2jY3ycfdSd3yWu6Cnd1oee6/CfZJApyscA4FJOmdoixWwiwOyf16RzD5JA=="; }; }; - "node-hid-2.1.1" = { - name = "node-hid"; - packageName = "node-hid"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/node-hid/-/node-hid-2.1.1.tgz"; - sha512 = "Skzhqow7hyLZU93eIPthM9yjot9lszg9xrKxESleEs05V2NcbUptZc5HFqzjOkSmL0sFlZFr3kmvaYebx06wrw=="; - }; - }; "node-hid-2.1.2" = { name = "node-hid"; packageName = "node-hid"; @@ -53554,15 +52672,6 @@ let sha512 = "QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ=="; }; }; - "node-modules-regexp-1.0.0" = { - name = "node-modules-regexp"; - packageName = "node-modules-regexp"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz"; - sha512 = "JMaRS9L4wSRIR+6PTVEikTrq/lMGEZR43a48ETeilY0Q0iMwVnccMFrUM1k+tNzmYuIU0Vh710bCUqHX+/+ctQ=="; - }; - }; "node-notifier-10.0.1" = { name = "node-notifier"; packageName = "node-notifier"; @@ -53707,15 +52816,6 @@ let sha512 = "f+Rbqt92Ful9gX0cGtdYwjTrWAaGURgaK5rZCWOgCNyGWusFYHhbqCCBoFBeat+HKETOU02AyTxNhJV0YZf2jQ=="; }; }; - "node-sass-8.0.0" = { - name = "node-sass"; - packageName = "node-sass"; - version = "8.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/node-sass/-/node-sass-8.0.0.tgz"; - sha512 = "jPzqCF2/e6JXw6r3VxfIqYc8tKQdkj5Z/BDATYyG6FL6b/LuYBNFGFVhus0mthcWifHm/JzBpKAd+3eXsWeK/A=="; - }; - }; "node-schedule-2.1.0" = { name = "node-schedule"; packageName = "node-schedule"; @@ -53761,15 +52861,6 @@ let sha512 = "1cBMgRxdMWE8KeWCqk2RIOrvUb0XCwYfEsY5/y2NlXyq4Y/RumnOZvTj4Nbr77+Vb2C+kyBoRTdkNOS8L3d/aQ=="; }; }; - "node-storage-shim-2.0.1" = { - name = "node-storage-shim"; - packageName = "node-storage-shim"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/node-storage-shim/-/node-storage-shim-2.0.1.tgz"; - sha512 = "ce8enbToMe8iUHDTMCg4rdP1K0syoJrZRO0Dl9uMLPCwlc5M1HKaapV3Pqlv6/3LQNuDiYXBm4rPlj78MeUSSA=="; - }; - }; "node-swt-0.1.1" = { name = "node-swt"; packageName = "node-swt"; @@ -54778,13 +53869,13 @@ let sha512 = "90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw=="; }; }; - "nx-15.4.0" = { + "nx-15.5.2" = { name = "nx"; packageName = "nx"; - version = "15.4.0"; + version = "15.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/nx/-/nx-15.4.0.tgz"; - sha512 = "6sS6a8q3Vb8W6ElDbhtLuzZcyPgsHC8Yx46tgVALMLzfcJMuUfPT/WYHkhc2/5VPoTvwOOMsuUnKILrApOydhg=="; + url = "https://registry.npmjs.org/nx/-/nx-15.5.2.tgz"; + sha512 = "jo8DG7zt0EorKL6AihkoshaeiFkK25NOeGUEnF05BFCaqsIoS9s3uctrOumh2G9DhaGMEWzakc3kF4/LeLB9pg=="; }; }; "nyc-15.1.0" = { @@ -54986,13 +54077,13 @@ let sha512 = "RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw=="; }; }; - "object-inspect-1.12.2" = { + "object-inspect-1.12.3" = { name = "object-inspect"; packageName = "object-inspect"; - version = "1.12.2"; + version = "1.12.3"; src = fetchurl { - url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz"; - sha512 = "z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ=="; + url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz"; + sha512 = "geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g=="; }; }; "object-inspect-1.4.1" = { @@ -55454,13 +54545,13 @@ let sha512 = "jQ31cORBFE6td25deYeD80wxKBMj+zBmHTrVxnc6CKhx8gho6ipmWM5zj/oeoqioZ99yqBls9Z/9Nss7J26G2g=="; }; }; - "oo-ascii-tree-1.72.0" = { + "oo-ascii-tree-1.73.0" = { name = "oo-ascii-tree"; packageName = "oo-ascii-tree"; - version = "1.72.0"; + version = "1.73.0"; src = fetchurl { - url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.72.0.tgz"; - sha512 = "MDsUvkANZaO6V62LMLSqxOROpMqmgEqC9KxPv1VDo9dwIQ5jTAHugkMEaaN9G/l2HHuzrZUgnZtmuRr8ZzXpHA=="; + url = "https://registry.npmjs.org/oo-ascii-tree/-/oo-ascii-tree-1.73.0.tgz"; + sha512 = "bGx23QLCltdo+jrUcvnxf+2Ob7Ntsr8n7UzHPVoz0pWABSjzIzxOh2GRQa/2GebYNTqIHLnERY5Ubs/V7RVPWg=="; }; }; "open-0.0.2" = { @@ -55634,13 +54725,13 @@ let sha512 = "2AOzHAbrwdj5DNL3u+BadhfmL3mlc3mmCv6cSAsEjoMncpOOVd95JyMf0j0XUyJigJ8/ILxnhETfg35vt1pGSQ=="; }; }; - "openapi-sampler-1.3.0" = { + "openapi-sampler-1.3.1" = { name = "openapi-sampler"; packageName = "openapi-sampler"; - version = "1.3.0"; + version = "1.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/openapi-sampler/-/openapi-sampler-1.3.0.tgz"; - sha512 = "2QfjK1oM9Sv0q82Ae1RrUe3yfFmAyjF548+6eAeb+h/cL1Uj51TW4UezraBEvwEdzoBgfo4AaTLVFGTKj+yYDw=="; + url = "https://registry.npmjs.org/openapi-sampler/-/openapi-sampler-1.3.1.tgz"; + sha512 = "Ert9mvc2tLPmmInwSyGZS+v4Ogu9/YoZuq9oP3EdUklg2cad6+IGndP9yqJJwbgdXwZibiq5fpv6vYujchdJFg=="; }; }; "openapi-schema-validator-8.0.0" = { @@ -56237,15 +55328,6 @@ let sha512 = "mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw=="; }; }; - "p-debounce-4.0.0" = { - name = "p-debounce"; - packageName = "p-debounce"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/p-debounce/-/p-debounce-4.0.0.tgz"; - sha512 = "4Ispi9I9qYGO4lueiLDhe4q4iK5ERK8reLsuzH6BPaXn53EGaua8H66PXIFGrW897hwjXp+pVLrm/DLxN0RF0A=="; - }; - }; "p-defer-1.0.0" = { name = "p-defer"; packageName = "p-defer"; @@ -56651,13 +55733,13 @@ let sha512 = "RRTnDb2TBG/epPRI2yYXsimO0v3BXC8Yd3ogr1545IaqKK17VGhbWVeGGN+XfCm/08OK8635nH31c8bATkHuSw=="; }; }; - "p2tr-1.3.2" = { + "p2tr-1.3.3" = { name = "p2tr"; packageName = "p2tr"; - version = "1.3.2"; + version = "1.3.3"; src = fetchurl { - url = "https://registry.npmjs.org/p2tr/-/p2tr-1.3.2.tgz"; - sha512 = "f61sZPiAO5fQJJ1jPCziU44mKduwbxui0C37keFRQg70pR45PG7Uvp6Seo4EM0sZU04c08vhLKI3IcMo7a+2oQ=="; + url = "https://registry.npmjs.org/p2tr/-/p2tr-1.3.3.tgz"; + sha512 = "j3M5EDh8iS1ONYu2WrFQ+w9Ap3pw8B9udXh7tHPcvjhKQDA/vt7v3JI8FEo/9R3ayTc3e/My8kSPQ8Rkns/ZMA=="; }; }; "pac-proxy-agent-4.1.0" = { @@ -56831,15 +55913,6 @@ let sha512 = "Gu8fU3GsvOPkak2CkbojR7vjs3k3P9cA6uazKTHdsdV0gpCEQq2opelnEv30KRQWgVzP5Vd/5umjcedma3MKtg=="; }; }; - "pacote-15.0.6" = { - name = "pacote"; - packageName = "pacote"; - version = "15.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/pacote/-/pacote-15.0.6.tgz"; - sha512 = "dQwcz/sME7QIL+cdrw/jftQfMMXxSo17i2kJ/gnhBhUvvBAsxoBu1lw9B5IzCH/Ce8CvEkG/QYZ6txzKfn0bTw=="; - }; - }; "pacote-15.0.8" = { name = "pacote"; packageName = "pacote"; @@ -56876,13 +55949,22 @@ let sha512 = "8EKVBxCRSvLnsX1p2LlSFSH3c2/wuhY9/BXXWu8boL78FbVKqn2L5SpURt1x5iw6Gq8PTqJ7MdPoe5nCtX3I+g=="; }; }; - "paid-services-4.1.0" = { + "paid-services-4.2.1" = { name = "paid-services"; packageName = "paid-services"; - version = "4.1.0"; + version = "4.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/paid-services/-/paid-services-4.1.0.tgz"; - sha512 = "SFDRaUBKgmmaKThMulB5w+R8OddIDUvwy/QzpdDd0yAwIjfyod0baECHC/qMDPuVodwJgahS6XPtxNcxGm2zSA=="; + url = "https://registry.npmjs.org/paid-services/-/paid-services-4.2.1.tgz"; + sha512 = "XguuYsT5jQ9QZPLeS/OrUnodpawCFf79oRB033synxe2RvZYIs8QH52PuPPqwT+dyHR8KvuI9QcdZayLVYOE+A=="; + }; + }; + "paid-services-4.3.0" = { + name = "paid-services"; + packageName = "paid-services"; + version = "4.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/paid-services/-/paid-services-4.3.0.tgz"; + sha512 = "OhwWeWAFnklitYkobAgIqM7UlQuJdsYI9WeEsfdiVrfJau02JYwljtNMZEID1XWE7sYW3vMD3H8tsJC+fagrPQ=="; }; }; "pako-0.2.9" = { @@ -57389,13 +56471,13 @@ let sha512 = "W9CRvTfYQY/kbRc5Q6YTWarb/QDxdEGbd6RCP8CLUQDJV89RVHoS2A0dZYNtAcq31fulGNN4ZhAhiQQazwlKJg=="; }; }; - "parseley-0.7.0" = { + "parseley-0.11.0" = { name = "parseley"; packageName = "parseley"; - version = "0.7.0"; + version = "0.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/parseley/-/parseley-0.7.0.tgz"; - sha512 = "xyOytsdDu077M3/46Am+2cGXEKM9U9QclBDv7fimY7e+BBlxh2JcBp2mgNsmkyA9uvgyTjVzDi7cP1v4hcFxbw=="; + url = "https://registry.npmjs.org/parseley/-/parseley-0.11.0.tgz"; + sha512 = "VfcwXlBWgTF+unPcr7yu3HSSA6QUdDaDnrHcytVfj5Z8azAyKBDrYnSIfeSxlrEayndNcLmrXzg+Vxbo6DWRXQ=="; }; }; "parseqs-0.0.2" = { @@ -57632,6 +56714,15 @@ let sha512 = "ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q=="; }; }; + "path-equal-1.2.5" = { + name = "path-equal"; + packageName = "path-equal"; + version = "1.2.5"; + src = fetchurl { + url = "https://registry.npmjs.org/path-equal/-/path-equal-1.2.5.tgz"; + sha512 = "i73IctDr3F2W+bsOWDyyVm/lqsXO47aY9nsFZUjTT/aljSbkxHxxCoyZ9UUrM8jK0JVod+An+rl48RCsvWM+9g=="; + }; + }; "path-exists-2.1.0" = { name = "path-exists"; packageName = "path-exists"; @@ -57911,15 +57002,6 @@ let sha512 = "e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A=="; }; }; - "pbf-3.2.1" = { - name = "pbf"; - packageName = "pbf"; - version = "3.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pbf/-/pbf-3.2.1.tgz"; - sha512 = "ClrV7pNOn7rtmoQVF4TS1vyU0WhYRnP92fzbfF75jAIwpnzdJXf8iTd4CMEqO4yUenH6NDqLiwjqlh6QgZzgLQ=="; - }; - }; "pbkdf2-3.1.2" = { name = "pbkdf2"; packageName = "pbkdf2"; @@ -57929,6 +57011,15 @@ let sha512 = "iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA=="; }; }; + "peberminta-0.8.0" = { + name = "peberminta"; + packageName = "peberminta"; + version = "0.8.0"; + src = fetchurl { + url = "https://registry.npmjs.org/peberminta/-/peberminta-0.8.0.tgz"; + sha512 = "YYEs+eauIjDH5nUEGi18EohWE0nV2QbGTqmxQcqgZ/0g+laPCQmuIqq7EBLVi9uim9zMgfJv0QBZEnQ3uHw/Tw=="; + }; + }; "peek-readable-4.1.0" = { name = "peek-readable"; packageName = "peek-readable"; @@ -58127,15 +57218,6 @@ let sha512 = "CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA=="; }; }; - "photoswipe-4.1.3" = { - name = "photoswipe"; - packageName = "photoswipe"; - version = "4.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/photoswipe/-/photoswipe-4.1.3.tgz"; - sha512 = "89Z43IRUyw7ycTolo+AaiDn3W1EEIfox54hERmm9bI12IB9cvRfHSHez3XhAyU8XW2EAFrC+2sKMhh7SJwn0bA=="; - }; - }; "physical-cpu-count-2.0.0" = { name = "physical-cpu-count"; packageName = "physical-cpu-count"; @@ -58307,13 +57389,13 @@ let sha512 = "iJrnjgR4FWQIXZkUF48oNgoRI9BpyMhaEmihonHeCnZ6F50ZHAS4YGfGBT/ZVNsPmd+hzkIPGzjKdY08+/yAXw=="; }; }; - "pino-std-serializers-6.0.0" = { + "pino-std-serializers-6.1.0" = { name = "pino-std-serializers"; packageName = "pino-std-serializers"; - version = "6.0.0"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-6.0.0.tgz"; - sha512 = "mMMOwSKrmyl+Y12Ri2xhH1lbzQxwwpuru9VjyJpgFIH4asSj88F2csdMwN6+M5g1Ll4rmsYghHLQJw81tgZ7LQ=="; + url = "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-6.1.0.tgz"; + sha512 = "KO0m2f1HkrPe9S0ldjx7za9BJjeHqBku5Ch8JyxETxT8dEFGz1PwgrHaOQupVYitpzbFSYm7nnljxD8dik2c+g=="; }; }; "pipe-functions-1.3.0" = { @@ -58334,15 +57416,6 @@ let sha512 = "uYpoo8eO3GG37tTsPmYoM3rHOxjXd57zMr/4RwiPYyb3RyZj02rfO14D8ERFbrpuYBJCzDwPYmT23a7N3N3Cow=="; }; }; - "pirates-3.0.2" = { - name = "pirates"; - packageName = "pirates"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/pirates/-/pirates-3.0.2.tgz"; - sha512 = "c5CgUJq6H2k6MJz72Ak1F5sN9n9wlSlJyEnwvpm9/y3WB4E3pHBDT2c6PEiS1vyJvq2bUxUAIu0EGf8Cx4Ic7Q=="; - }; - }; "pirates-4.0.5" = { name = "pirates"; packageName = "pirates"; @@ -58451,15 +57524,6 @@ let sha512 = "nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA=="; }; }; - "pkg-up-4.0.0" = { - name = "pkg-up"; - packageName = "pkg-up"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/pkg-up/-/pkg-up-4.0.0.tgz"; - sha512 = "N4zdA4sfOe6yCv+ulPCmpnIBQ5I60xfhDr1otdBBhKte9QtEf3bhfrfkW7dTb+IQ0iEx4ZDzas0kc1o5rdWpYg=="; - }; - }; "pkginfo-0.2.3" = { name = "pkginfo"; packageName = "pkginfo"; @@ -58748,15 +57812,6 @@ let sha512 = "2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg=="; }; }; - "pofile-1.1.4" = { - name = "pofile"; - packageName = "pofile"; - version = "1.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/pofile/-/pofile-1.1.4.tgz"; - sha512 = "r6Q21sKsY1AjTVVjOuU02VYKVNQGJNQHjTIvs4dEbeuuYfxgYk/DGD2mqqq4RDaVkwdSq0VEtmQUOPe/wH8X3g=="; - }; - }; "polished-4.2.2" = { name = "polished"; packageName = "polished"; @@ -58865,22 +57920,13 @@ let sha512 = "h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA=="; }; }; - "postcss-8.4.20" = { + "postcss-8.4.21" = { name = "postcss"; packageName = "postcss"; - version = "8.4.20"; + version = "8.4.21"; src = fetchurl { - url = "https://registry.npmjs.org/postcss/-/postcss-8.4.20.tgz"; - sha512 = "6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g=="; - }; - }; - "postcss-attribute-case-insensitive-5.0.2" = { - name = "postcss-attribute-case-insensitive"; - packageName = "postcss-attribute-case-insensitive"; - version = "5.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-5.0.2.tgz"; - sha512 = "XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ=="; + url = "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz"; + sha512 = "tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg=="; }; }; "postcss-calc-7.0.5" = { @@ -58901,42 +57947,6 @@ let sha512 = "SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q=="; }; }; - "postcss-clamp-4.1.0" = { - name = "postcss-clamp"; - packageName = "postcss-clamp"; - version = "4.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz"; - sha512 = "ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow=="; - }; - }; - "postcss-color-functional-notation-4.2.4" = { - name = "postcss-color-functional-notation"; - packageName = "postcss-color-functional-notation"; - version = "4.2.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-4.2.4.tgz"; - sha512 = "2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg=="; - }; - }; - "postcss-color-hex-alpha-8.0.4" = { - name = "postcss-color-hex-alpha"; - packageName = "postcss-color-hex-alpha"; - version = "8.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-8.0.4.tgz"; - sha512 = "nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ=="; - }; - }; - "postcss-color-rebeccapurple-7.1.1" = { - name = "postcss-color-rebeccapurple"; - packageName = "postcss-color-rebeccapurple"; - version = "7.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-7.1.1.tgz"; - sha512 = "pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg=="; - }; - }; "postcss-colormin-4.0.3" = { name = "postcss-colormin"; packageName = "postcss-colormin"; @@ -58973,42 +57983,6 @@ let sha512 = "82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA=="; }; }; - "postcss-custom-media-8.0.2" = { - name = "postcss-custom-media"; - packageName = "postcss-custom-media"; - version = "8.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-8.0.2.tgz"; - sha512 = "7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg=="; - }; - }; - "postcss-custom-properties-12.1.11" = { - name = "postcss-custom-properties"; - packageName = "postcss-custom-properties"; - version = "12.1.11"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-12.1.11.tgz"; - sha512 = "0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ=="; - }; - }; - "postcss-custom-selectors-6.0.3" = { - name = "postcss-custom-selectors"; - packageName = "postcss-custom-selectors"; - version = "6.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-6.0.3.tgz"; - sha512 = "fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg=="; - }; - }; - "postcss-dir-pseudo-class-6.0.5" = { - name = "postcss-dir-pseudo-class"; - packageName = "postcss-dir-pseudo-class"; - version = "6.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-6.0.5.tgz"; - sha512 = "eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA=="; - }; - }; "postcss-discard-comments-4.0.2" = { name = "postcss-discard-comments"; packageName = "postcss-discard-comments"; @@ -59081,24 +58055,6 @@ let sha512 = "21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw=="; }; }; - "postcss-double-position-gradients-3.1.2" = { - name = "postcss-double-position-gradients"; - packageName = "postcss-double-position-gradients"; - version = "3.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-3.1.2.tgz"; - sha512 = "GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ=="; - }; - }; - "postcss-env-function-4.0.6" = { - name = "postcss-env-function"; - packageName = "postcss-env-function"; - version = "4.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-4.0.6.tgz"; - sha512 = "kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA=="; - }; - }; "postcss-flexbugs-fixes-4.2.1" = { name = "postcss-flexbugs-fixes"; packageName = "postcss-flexbugs-fixes"; @@ -59108,42 +58064,6 @@ let sha512 = "9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ=="; }; }; - "postcss-focus-visible-6.0.4" = { - name = "postcss-focus-visible"; - packageName = "postcss-focus-visible"; - version = "6.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-6.0.4.tgz"; - sha512 = "QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw=="; - }; - }; - "postcss-focus-within-5.0.4" = { - name = "postcss-focus-within"; - packageName = "postcss-focus-within"; - version = "5.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-5.0.4.tgz"; - sha512 = "vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ=="; - }; - }; - "postcss-font-variant-5.0.0" = { - name = "postcss-font-variant"; - packageName = "postcss-font-variant"; - version = "5.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz"; - sha512 = "1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA=="; - }; - }; - "postcss-gap-properties-3.0.5" = { - name = "postcss-gap-properties"; - packageName = "postcss-gap-properties"; - version = "3.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-3.0.5.tgz"; - sha512 = "IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg=="; - }; - }; "postcss-html-0.36.0" = { name = "postcss-html"; packageName = "postcss-html"; @@ -59153,15 +58073,6 @@ let sha512 = "HeiOxGcuwID0AFsNAL0ox3mW6MHH5cstWN1Z3Y+n6H+g12ih7LHdYxWwEA/QmrebctLjo79xz9ouK3MroHwOJw=="; }; }; - "postcss-image-set-function-4.0.7" = { - name = "postcss-image-set-function"; - packageName = "postcss-image-set-function"; - version = "4.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-4.0.7.tgz"; - sha512 = "9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw=="; - }; - }; "postcss-import-14.1.0" = { name = "postcss-import"; packageName = "postcss-import"; @@ -59171,24 +58082,6 @@ let sha512 = "flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw=="; }; }; - "postcss-import-15.1.0" = { - name = "postcss-import"; - packageName = "postcss-import"; - version = "15.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz"; - sha512 = "hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew=="; - }; - }; - "postcss-initial-4.0.1" = { - name = "postcss-initial"; - packageName = "postcss-initial"; - version = "4.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-initial/-/postcss-initial-4.0.1.tgz"; - sha512 = "0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ=="; - }; - }; "postcss-js-4.0.0" = { name = "postcss-js"; packageName = "postcss-js"; @@ -59198,15 +58091,6 @@ let sha512 = "77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ=="; }; }; - "postcss-lab-function-4.2.1" = { - name = "postcss-lab-function"; - packageName = "postcss-lab-function"; - version = "4.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-4.2.1.tgz"; - sha512 = "xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w=="; - }; - }; "postcss-less-3.1.4" = { name = "postcss-less"; packageName = "postcss-less"; @@ -59252,33 +58136,6 @@ let sha512 = "cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA=="; }; }; - "postcss-loader-7.0.2" = { - name = "postcss-loader"; - packageName = "postcss-loader"; - version = "7.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.0.2.tgz"; - sha512 = "fUJzV/QH7NXUAqV8dWJ9Lg4aTkDCezpTS5HgJ2DvqznexTbSTxgi/dTECvTZ15BwKTtk8G/bqI/QTu2HPd3ZCg=="; - }; - }; - "postcss-logical-5.0.4" = { - name = "postcss-logical"; - packageName = "postcss-logical"; - version = "5.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-logical/-/postcss-logical-5.0.4.tgz"; - sha512 = "RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g=="; - }; - }; - "postcss-media-minmax-5.0.0" = { - name = "postcss-media-minmax"; - packageName = "postcss-media-minmax"; - version = "5.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-5.0.0.tgz"; - sha512 = "yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ=="; - }; - }; "postcss-media-query-parser-0.2.3" = { name = "postcss-media-query-parser"; packageName = "postcss-media-query-parser"; @@ -59414,15 +58271,6 @@ let sha512 = "LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ=="; }; }; - "postcss-modules-extract-imports-3.0.0" = { - name = "postcss-modules-extract-imports"; - packageName = "postcss-modules-extract-imports"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz"; - sha512 = "bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw=="; - }; - }; "postcss-modules-local-by-default-1.2.0" = { name = "postcss-modules-local-by-default"; packageName = "postcss-modules-local-by-default"; @@ -59450,15 +58298,6 @@ let sha512 = "e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw=="; }; }; - "postcss-modules-local-by-default-4.0.0" = { - name = "postcss-modules-local-by-default"; - packageName = "postcss-modules-local-by-default"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz"; - sha512 = "sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ=="; - }; - }; "postcss-modules-scope-1.1.0" = { name = "postcss-modules-scope"; packageName = "postcss-modules-scope"; @@ -59477,15 +58316,6 @@ let sha512 = "YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ=="; }; }; - "postcss-modules-scope-3.0.0" = { - name = "postcss-modules-scope"; - packageName = "postcss-modules-scope"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz"; - sha512 = "hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg=="; - }; - }; "postcss-modules-values-1.3.0" = { name = "postcss-modules-values"; packageName = "postcss-modules-values"; @@ -59513,15 +58343,6 @@ let sha512 = "1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg=="; }; }; - "postcss-modules-values-4.0.0" = { - name = "postcss-modules-values"; - packageName = "postcss-modules-values"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz"; - sha512 = "RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ=="; - }; - }; "postcss-nested-6.0.0" = { name = "postcss-nested"; packageName = "postcss-nested"; @@ -59531,15 +58352,6 @@ let sha512 = "0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w=="; }; }; - "postcss-nesting-10.2.0" = { - name = "postcss-nesting"; - packageName = "postcss-nesting"; - version = "10.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-10.2.0.tgz"; - sha512 = "EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA=="; - }; - }; "postcss-normalize-charset-4.0.1" = { name = "postcss-normalize-charset"; packageName = "postcss-normalize-charset"; @@ -59702,15 +58514,6 @@ let sha512 = "83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA=="; }; }; - "postcss-opacity-percentage-1.1.3" = { - name = "postcss-opacity-percentage"; - packageName = "postcss-opacity-percentage"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-1.1.3.tgz"; - sha512 = "An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A=="; - }; - }; "postcss-ordered-values-4.1.2" = { name = "postcss-ordered-values"; packageName = "postcss-ordered-values"; @@ -59729,51 +58532,6 @@ let sha512 = "9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ=="; }; }; - "postcss-overflow-shorthand-3.0.4" = { - name = "postcss-overflow-shorthand"; - packageName = "postcss-overflow-shorthand"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-3.0.4.tgz"; - sha512 = "otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A=="; - }; - }; - "postcss-page-break-3.0.4" = { - name = "postcss-page-break"; - packageName = "postcss-page-break"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz"; - sha512 = "1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ=="; - }; - }; - "postcss-place-7.0.5" = { - name = "postcss-place"; - packageName = "postcss-place"; - version = "7.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-place/-/postcss-place-7.0.5.tgz"; - sha512 = "wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g=="; - }; - }; - "postcss-preset-env-7.8.3" = { - name = "postcss-preset-env"; - packageName = "postcss-preset-env"; - version = "7.8.3"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-7.8.3.tgz"; - sha512 = "T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag=="; - }; - }; - "postcss-pseudo-class-any-link-7.1.6" = { - name = "postcss-pseudo-class-any-link"; - packageName = "postcss-pseudo-class-any-link"; - version = "7.1.6"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-7.1.6.tgz"; - sha512 = "9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w=="; - }; - }; "postcss-reduce-initial-4.0.3" = { name = "postcss-reduce-initial"; packageName = "postcss-reduce-initial"; @@ -59810,15 +58568,6 @@ let sha512 = "2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ=="; }; }; - "postcss-replace-overflow-wrap-4.0.0" = { - name = "postcss-replace-overflow-wrap"; - packageName = "postcss-replace-overflow-wrap"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz"; - sha512 = "KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw=="; - }; - }; "postcss-reporter-7.0.5" = { name = "postcss-reporter"; packageName = "postcss-reporter"; @@ -59873,15 +58622,6 @@ let sha512 = "jQmGnj0hSGLd9RscFw9LyuSVAa5Bl1/KBPqG1NQw9w8ND55nY4ZEsdlVuYJvLPpV+y0nwTV5v/4rHPzZRihQbA=="; }; }; - "postcss-selector-not-6.0.1" = { - name = "postcss-selector-not"; - packageName = "postcss-selector-not"; - version = "6.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-6.0.1.tgz"; - sha512 = "1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ=="; - }; - }; "postcss-selector-parser-3.1.2" = { name = "postcss-selector-parser"; packageName = "postcss-selector-parser"; @@ -59963,15 +58703,6 @@ let sha512 = "5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA=="; }; }; - "postcss-url-10.1.3" = { - name = "postcss-url"; - packageName = "postcss-url"; - version = "10.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-url/-/postcss-url-10.1.3.tgz"; - sha512 = "FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw=="; - }; - }; "postcss-value-parser-3.3.1" = { name = "postcss-value-parser"; packageName = "postcss-value-parser"; @@ -60116,15 +58847,6 @@ let sha512 = "z+16RoxK3fUPgwaIgH9NGnK1HKY9XIDpydky5eQGgAFVXTCSezalv9U2jQuNV+Z9qV1fDWNzldcw4eK0SSbqKA=="; }; }; - "potpack-1.0.2" = { - name = "potpack"; - packageName = "potpack"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/potpack/-/potpack-1.0.2.tgz"; - sha512 = "choctRBIV9EMT9WGAZHn3V7t0Z2pMQyl0EZE6pFc/6ml3ssw7Dlf/oAOvFwjm1HVsqfQN8GfeFyJ+d8tRzqueQ=="; - }; - }; "pouchdb-abstract-mapreduce-7.3.1" = { name = "pouchdb-abstract-mapreduce"; packageName = "pouchdb-abstract-mapreduce"; @@ -60512,6 +59234,15 @@ let sha512 = "lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg=="; }; }; + "prettier-2.8.3" = { + name = "prettier"; + packageName = "prettier"; + version = "2.8.3"; + src = fetchurl { + url = "https://registry.npmjs.org/prettier/-/prettier-2.8.3.tgz"; + sha512 = "tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw=="; + }; + }; "prettier-bytes-1.0.4" = { name = "prettier-bytes"; packageName = "prettier-bytes"; @@ -60539,13 +59270,13 @@ let sha512 = "GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w=="; }; }; - "prettier-plugin-astro-0.7.0" = { + "prettier-plugin-astro-0.7.2" = { name = "prettier-plugin-astro"; packageName = "prettier-plugin-astro"; - version = "0.7.0"; + version = "0.7.2"; src = fetchurl { - url = "https://registry.npmjs.org/prettier-plugin-astro/-/prettier-plugin-astro-0.7.0.tgz"; - sha512 = "ehCUx7MqHWvkHwUmxxAWLsL35pFaCTM5YXQ8xjG/1W6dY2yBhvEks+2aCfjeI5zmMrZNCXkiMQtpznSlLSLrxw=="; + url = "https://registry.npmjs.org/prettier-plugin-astro/-/prettier-plugin-astro-0.7.2.tgz"; + sha512 = "mmifnkG160BtC727gqoimoxnZT/dwr8ASxpoGGl6EHevhfblSOeu+pwH1LAm5Qu1MynizktztFujHHaijLCkww=="; }; }; "prettier-plugin-svelte-2.9.0" = { @@ -60746,13 +59477,13 @@ let sha512 = "HubhG4Rb2UH8YtV4ba0Vp5bQ7L78RTONYu/ujmCu5nBI8wGv24s4E9xSKBi0N1MowRpxk76pFCpJtW0KPzOK0w=="; }; }; - "probing-3.0.0" = { + "probing-3.0.1" = { name = "probing"; packageName = "probing"; - version = "3.0.0"; + version = "3.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/probing/-/probing-3.0.0.tgz"; - sha512 = "JqIDSuuqXFQEowER46CWbyeYrsUgl3OjrRcKjoJZyIesrDhjqrCB483Pj1jRZjdpE2j0/e1t+W22xKDyix1BYw=="; + url = "https://registry.npmjs.org/probing/-/probing-3.0.1.tgz"; + sha512 = "Q7CstxWTyKOW3rbG7dzYMPOXjX0bvQW/Z72LnhDTNjjvh3RqF9f/VlMSqpwaZ7tA+BGUNMMunHT6pM5dQscFrw=="; }; }; "proc-log-1.0.0" = { @@ -61250,15 +59981,6 @@ let sha512 = "7gkzNGmNqb0b/RcE7ubrZgOpIGEroc7dl91v/mm3R+EXnL+C+Loft4UQ3/RZ7M5U6CHS/EoTtbijPb1Q6wW6uA=="; }; }; - "protobufjs-6.10.3" = { - name = "protobufjs"; - packageName = "protobufjs"; - version = "6.10.3"; - src = fetchurl { - url = "https://registry.npmjs.org/protobufjs/-/protobufjs-6.10.3.tgz"; - sha512 = "yvAslS0hNdBhlSKckI4R1l7wunVilX66uvrjzE4MimiAt7/qw1nLpMhZrn/ObuUTM/c3Xnfl01LYMdcSJe6dwg=="; - }; - }; "protobufjs-6.11.3" = { name = "protobufjs"; packageName = "protobufjs"; @@ -61295,15 +60017,6 @@ let sha512 = "daeNPuKh1NlLD1uDfbLpD+xyUTc07nEtfHwmBZmt/vH0B7VOM+JOCOpDcx9ZRpqHjAiIkGqyTDi+wfGSl17R9w=="; }; }; - "protocol-buffers-schema-3.6.0" = { - name = "protocol-buffers-schema"; - packageName = "protocol-buffers-schema"; - version = "3.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.6.0.tgz"; - sha512 = "TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw=="; - }; - }; "protocols-2.0.1" = { name = "protocols"; packageName = "protocols"; @@ -61412,6 +60125,15 @@ let sha512 = "qFnvwdQcDoQBHHi3jYVVX+W98CRTbyeQs3RlUdAIzdEVbwBHEcv1+xhVaEJHrYiF75n7L+i6roDmZHIXT6tDSQ=="; }; }; + "psbt-2.7.2" = { + name = "psbt"; + packageName = "psbt"; + version = "2.7.2"; + src = fetchurl { + url = "https://registry.npmjs.org/psbt/-/psbt-2.7.2.tgz"; + sha512 = "oNKHkpTazbcCCCaFADUNbUaxirPslcgjPlf5pxg685v5VB3ol5vIl4DMf8HsNarKiDg0FDYamM/E67HfUybQOA=="; + }; + }; "pseudomap-1.0.2" = { name = "pseudomap"; packageName = "pseudomap"; @@ -61448,15 +60170,6 @@ let sha512 = "zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q=="; }; }; - "pubsub-js-1.9.4" = { - name = "pubsub-js"; - packageName = "pubsub-js"; - version = "1.9.4"; - src = fetchurl { - url = "https://registry.npmjs.org/pubsub-js/-/pubsub-js-1.9.4.tgz"; - sha512 = "hJYpaDvPH4w8ZX/0Fdf9ma1AwRgU353GfbaVfPjfJQf1KxZ2iHaHl3fAUw1qlJIR5dr4F3RzjGaWohYUEyoh7A=="; - }; - }; "pug-2.0.4" = { name = "pug"; packageName = "pug"; @@ -62285,13 +60998,13 @@ let sha512 = "jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ=="; }; }; - "punycode-2.1.1" = { + "punycode-2.2.0" = { name = "punycode"; packageName = "punycode"; - version = "2.1.1"; + version = "2.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"; - sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="; + url = "https://registry.npmjs.org/punycode/-/punycode-2.2.0.tgz"; + sha512 = "LN6QV1IJ9ZhxWTNdktaPClrNfp8xdSAYS0Zk2ddX7XsXZAxckMHPCBcHRo0cTcEIgYPRiGEkmji3Idkh2yFtYw=="; }; }; "pupa-2.1.1" = { @@ -62330,22 +61043,22 @@ let sha512 = "U1uufzBjz3+PkpCxFrWzh4OrMIdIb2ztzCu0YEPfRHjHswcSwHZswnK+WdsOQJsRV8WeTg3jLhJR4D867+fjsA=="; }; }; - "puppeteer-19.4.1" = { + "puppeteer-19.5.2" = { name = "puppeteer"; packageName = "puppeteer"; - version = "19.4.1"; + version = "19.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/puppeteer/-/puppeteer-19.4.1.tgz"; - sha512 = "PCnrR13B8A+VSEDXRmrNXRZbrkF1tfsI1hKSC7vs13eNS6CUD3Y4FA8SF8/VZy+Pm1kg5AggJT2Nu3HLAtGkFg=="; + url = "https://registry.npmjs.org/puppeteer/-/puppeteer-19.5.2.tgz"; + sha512 = "xlqRyrhXhVH114l79Y0XqYXUVG+Yfw4sKlvN55t8Y9DxtA5fzI1uqF8SVXbWK5DUMbD6Jo4lpixTZCTTZGD05g=="; }; }; - "puppeteer-core-19.4.1" = { + "puppeteer-core-19.5.2" = { name = "puppeteer-core"; packageName = "puppeteer-core"; - version = "19.4.1"; + version = "19.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-19.4.1.tgz"; - sha512 = "JHIuqtqrUAx4jGOTxXu4ilapV2jabxtVMA/e4wwFUMvtSsqK4nVBSI+Z1SKDoz7gRy/JUIc8WzmfocCa6SIZ1w=="; + url = "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-19.5.2.tgz"; + sha512 = "Rqk+3kqM+Z2deooTYqcYt8lRtGffJdifWa9td9nbJSjhANWsFouk8kLBNUKycewCCFHM8TZUKS0x28OllavW2A=="; }; }; "purgecss-2.3.0" = { @@ -62420,13 +61133,13 @@ let sha512 = "pMpnA0qRdFp32b1sJl1wOJNxZLQ2cbQx+k6tjNtZ8CpvVhNqEPRgivZ2WOUev2YMajecdH7ctUPDvEe87nariQ=="; }; }; - "pyright-1.1.285" = { + "pyright-1.1.290" = { name = "pyright"; packageName = "pyright"; - version = "1.1.285"; + version = "1.1.290"; src = fetchurl { - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.285.tgz"; - sha512 = "z+KJyaguJyVfEVxzVlyannjYtD13LGMdGTcQJuiq975f1nTHZ4oSwd9SrAZWP+rDHW/NVQCOz0CBlsMeNA/2sg=="; + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.290.tgz"; + sha512 = "iHT8G2+R/GUfYWxxd4ud5Lj/0H0bE1eWVR0avKKgPtkBeLkUz3sorjKpfuaJdsuJNrunzMtZsmYPD366t39klg=="; }; }; "q-0.9.7" = { @@ -62816,15 +61529,6 @@ let sha512 = "S27GBT+F0NTRiehtbrgaSE1idUAJ5bX8dPAQTdylEyNlrdcH5X4Lz7Edz3DYzecbsCluD5zO8ZNEe04z3D3u6Q=="; }; }; - "quickselect-2.0.0" = { - name = "quickselect"; - packageName = "quickselect"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/quickselect/-/quickselect-2.0.0.tgz"; - sha512 = "RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw=="; - }; - }; "quicktask-1.0.1" = { name = "quicktask"; packageName = "quicktask"; @@ -62843,6 +61547,33 @@ let sha512 = "b3w19IEXnt5auacLAbePVsqPyVQUwmuhJQrrWnVhm4pP8PAMg2U9vFHbAD9XYXXbMDjdLJs0x5NLqwTV8uFK4g=="; }; }; + "quicktype-core-20.0.26" = { + name = "quicktype-core"; + packageName = "quicktype-core"; + version = "20.0.26"; + src = fetchurl { + url = "https://registry.npmjs.org/quicktype-core/-/quicktype-core-20.0.26.tgz"; + sha512 = "B+VGYa6adM0kZq6yhnwmAMeGMnHEFMjJbHRZQidPmTCbnzeY2cNuxDIhNV6JbPzyt+o8c+fZ/DkYMefWJynIHQ=="; + }; + }; + "quicktype-graphql-input-20.0.26" = { + name = "quicktype-graphql-input"; + packageName = "quicktype-graphql-input"; + version = "20.0.26"; + src = fetchurl { + url = "https://registry.npmjs.org/quicktype-graphql-input/-/quicktype-graphql-input-20.0.26.tgz"; + sha512 = "AbvJp7g0Xbjb5jl3nP/go4GZ93vogky0HcEjDhzted/LCCSQK4tHYMPFECKcqtW7nxk0OB7/f9BEj5aZNHLvPg=="; + }; + }; + "quicktype-typescript-input-20.0.26" = { + name = "quicktype-typescript-input"; + packageName = "quicktype-typescript-input"; + version = "20.0.26"; + src = fetchurl { + url = "https://registry.npmjs.org/quicktype-typescript-input/-/quicktype-typescript-input-20.0.26.tgz"; + sha512 = "OieJhc77M8mb3yEqZHQMF9LmzD3/6j8P1Khs4A1dTJT44lQAs6R3tK6EAIIF/5cfyXyOMGD3d3N7Ou6NoT0OfQ=="; + }; + }; "quotation-1.1.3" = { name = "quotation"; packageName = "quotation"; @@ -63203,13 +61934,13 @@ let sha512 = "bwfUSB37TWkHfP+PPjb/x8BUjChFmmBK44JMfVnU7paisWqZl/o5k7ttCH+EQLnrbn2Aq8Fo1LAsyUiz+WF4CQ=="; }; }; - "rc-config-loader-4.1.1" = { + "rc-config-loader-4.1.2" = { name = "rc-config-loader"; packageName = "rc-config-loader"; - version = "4.1.1"; + version = "4.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/rc-config-loader/-/rc-config-loader-4.1.1.tgz"; - sha512 = "S10o85x/szboh7FOxUyU+KuED+gr9V7SEnUBOzSn+vd1K8J2MtkP1RCPWg8Sw5kkuZKr7976bFzacCM6QtAApQ=="; + url = "https://registry.npmjs.org/rc-config-loader/-/rc-config-loader-4.1.2.tgz"; + sha512 = "qKTnVWFl9OQYKATPzdfaZIbTxcHziQl92zYSxYC6umhOqyAsoj8H8Gq/+aFjAso68sBdjTz3A7omqeAkkF1MWg=="; }; }; "rc4-0.1.5" = { @@ -63806,15 +62537,6 @@ let sha512 = "NkXT2AER7VKXeXtJNSaWLpWIhmtSE3K2PguaLEeWr4JILghcIKqoLt1A3wHrnpDC5+ekf8gfk1GKWkFXe4odMw=="; }; }; - "readable-stream-2.3.0" = { - name = "readable-stream"; - packageName = "readable-stream"; - version = "2.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.0.tgz"; - sha512 = "c7KMXGd4b48nN3OJ1U9qOsn6pXNzf6kLd3kdZCkg2sxAcoiufInqF0XckwEnlrcwuaYwonlNK8GQUIOC/WC7sg=="; - }; - }; "readable-stream-2.3.7" = { name = "readable-stream"; packageName = "readable-stream"; @@ -63833,13 +62555,13 @@ let sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="; }; }; - "readable-stream-4.2.0" = { + "readable-stream-4.3.0" = { name = "readable-stream"; packageName = "readable-stream"; - version = "4.2.0"; + version = "4.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-4.2.0.tgz"; - sha512 = "gJrBHsaI3lgBoGMW/jHZsQ/o/TIWiu5ENCJG1BB7fuCKzpFM8GaS2UoBVt9NO+oI+3FcrBNbUkl3ilDe09aY4A=="; + url = "https://registry.npmjs.org/readable-stream/-/readable-stream-4.3.0.tgz"; + sha512 = "MuEnA0lbSi7JS8XM+WNJlWZkHAAdm7gETHdFK//Q/mChGyj2akEFtdLZh32jSdkWGbRwCW9pn6g3LWDdDeZnBQ=="; }; }; "readable-web-to-node-stream-2.0.0" = { @@ -64184,6 +62906,15 @@ let sha512 = "j5WfFJfc9CoXv/WbwVLHq74i/hdTUpy+iNC534LxczMRP67vJeK3V9JOdnL0N1cIRbn9mYhE2yVjvvKXDxvNXQ=="; }; }; + "reduce-flatten-2.0.0" = { + name = "reduce-flatten"; + packageName = "reduce-flatten"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-2.0.0.tgz"; + sha512 = "EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w=="; + }; + }; "redux-3.7.2" = { name = "redux"; packageName = "redux"; @@ -64193,13 +62924,13 @@ let sha512 = "pNqnf9q1hI5HHZRBkj3bAngGZW/JMCmexDlOxw4XagXY2o1327nHH54LoTjiPJ0gizoqPDRqWyX/00g0hD6w+A=="; }; }; - "redux-4.1.2" = { + "redux-4.2.0" = { name = "redux"; packageName = "redux"; - version = "4.1.2"; + version = "4.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/redux/-/redux-4.1.2.tgz"; - sha512 = "SH8PglcebESbd/shgf6mii6EIoRM0zrQyjcuQ+ojmfxjTtE0z9Y8pa62iA/OJ58qjP6j27uyW4kUF4jl/jd6sw=="; + url = "https://registry.npmjs.org/redux/-/redux-4.2.0.tgz"; + sha512 = "oSBmcKKIuIR4ME29/AeNUnl5L+hvBq7OaJWzaptTQJAntaPvxIJqfnjbaEiCzzaIz+XmVILfqAM3Ob0aXLPfjA=="; }; }; "ref-1.3.5" = { @@ -64319,15 +63050,6 @@ let sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A=="; }; }; - "regex-parser-2.2.11" = { - name = "regex-parser"; - packageName = "regex-parser"; - version = "2.2.11"; - src = fetchurl { - url = "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz"; - sha512 = "jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q=="; - }; - }; "regexp-to-ast-0.3.5" = { name = "regexp-to-ast"; packageName = "regexp-to-ast"; @@ -65840,15 +64562,6 @@ let sha512 = "i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w=="; }; }; - "resolve-protobuf-schema-2.1.0" = { - name = "resolve-protobuf-schema"; - packageName = "resolve-protobuf-schema"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/resolve-protobuf-schema/-/resolve-protobuf-schema-2.1.0.tgz"; - sha512 = "kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ=="; - }; - }; "resolve-url-0.2.1" = { name = "resolve-url"; packageName = "resolve-url"; @@ -65858,15 +64571,6 @@ let sha512 = "ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg=="; }; }; - "resolve-url-loader-5.0.0" = { - name = "resolve-url-loader"; - packageName = "resolve-url-loader"; - version = "5.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-5.0.0.tgz"; - sha512 = "uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg=="; - }; - }; "resp-modifier-6.0.2" = { name = "resp-modifier"; packageName = "resp-modifier"; @@ -65876,15 +64580,6 @@ let sha512 = "U1+0kWC/+4ncRFYqQWTx/3qkfE6a4B/h3XXgmXypfa0SPZ3t7cbbaFk297PjQS/yov24R18h6OZe6iZwj3NSLw=="; }; }; - "response-time-2.3.2" = { - name = "response-time"; - packageName = "response-time"; - version = "2.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/response-time/-/response-time-2.3.2.tgz"; - sha512 = "MUIDaDQf+CVqflfTdQ5yam+aYCkXj1PY8fjlPDQ6ppxJlmgZb864pHtA750mayywNg8tx4rS7qH9JXd/OF+3gw=="; - }; - }; "responselike-1.0.2" = { name = "responselike"; packageName = "responselike"; @@ -66776,13 +65471,13 @@ let sha512 = "ERq4hUjKDbJfE4+XtZLFPCDi8Vb1JqaxAPTxWFLBx8XcAlf9Bda/ZJdVezs/NAfsMQScyIlUMx+Yeu7P7rx5jw=="; }; }; - "safe-stable-stringify-2.4.1" = { + "safe-stable-stringify-2.4.2" = { name = "safe-stable-stringify"; packageName = "safe-stable-stringify"; - version = "2.4.1"; + version = "2.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.1.tgz"; - sha512 = "dVHE6bMtS/bnL2mwualjc6IxEv1F+OCUpA46pKUj6F8uDbUM0jCCulPqRNPSnWwGNKx5etqMjZYdXtrm5KJZGA=="; + url = "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.2.tgz"; + sha512 = "gMxvPJYhP0O9n2pvcfYfIuYgbledAOJFcqRThtPRmjscaipiwcwPPKLytpVzMkG2HAN87Qmo2d4PtGiri1dSLA=="; }; }; "safer-buffer-2.1.2" = { @@ -66884,87 +65579,6 @@ let sha512 = "O2+LwLS79op7GI0xZ8fqzF7X2m/m8WFfI02dHOdsK5R2ECeS5F62zrwg/relM1rjSLy7Vd/DiMNIvPrQGsA0jw=="; }; }; - "sass-embedded-1.57.1" = { - name = "sass-embedded"; - packageName = "sass-embedded"; - version = "1.57.1"; - src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded/-/sass-embedded-1.57.1.tgz"; - sha512 = "O0s796x76bRSJIdmJ4lrK+zJLtF3XeP+0tbJzR4NAPSDnWqHLk2boUYSdfx4DnF4x9rGmcVlMWFE8UvnLMNCmw=="; - }; - }; - "sass-embedded-darwin-arm64-1.57.1" = { - name = "sass-embedded-darwin-arm64"; - packageName = "sass-embedded-darwin-arm64"; - version = "1.57.1"; - src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-darwin-arm64/-/sass-embedded-darwin-arm64-1.57.1.tgz"; - sha512 = "YSfrLZkM2HdXETQdSznv2DN2GdkmBNWLAlHfDWe0toSEIB2C2YGuoqHYZtl6PBYqu8k8FH4TDyct8VzoIa+rMw=="; - }; - }; - "sass-embedded-darwin-x64-1.57.1" = { - name = "sass-embedded-darwin-x64"; - packageName = "sass-embedded-darwin-x64"; - version = "1.57.1"; - src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-darwin-x64/-/sass-embedded-darwin-x64-1.57.1.tgz"; - sha512 = "xq2Au8CRLHQ+MqH2p8gQn9rYGtfQ8voCWMRz7klYmmh5kXHFjefG3opPPB8mJeSc3SIqE35SQxQEIhUbsxozpg=="; - }; - }; - "sass-embedded-linux-arm-1.57.1" = { - name = "sass-embedded-linux-arm"; - packageName = "sass-embedded-linux-arm"; - version = "1.57.1"; - src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-linux-arm/-/sass-embedded-linux-arm-1.57.1.tgz"; - sha512 = "s+roBIgiQSg8124JmYmiSw4THWRvkF2BOclBZCb+OFLa8ZTak2WZdGs0PhqkMmZypxQ7cewh9ts+sOWN24yIrw=="; - }; - }; - "sass-embedded-linux-arm64-1.57.1" = { - name = "sass-embedded-linux-arm64"; - packageName = "sass-embedded-linux-arm64"; - version = "1.57.1"; - src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-linux-arm64/-/sass-embedded-linux-arm64-1.57.1.tgz"; - sha512 = "R0GqVqf0xEhQ5nDbj7vqmKw+/1kqiURNBl0pD4uv4inBed2YKg+7agn7Y5XE5GUWbgOz7ubjL2kt4Glr7K7xeA=="; - }; - }; - "sass-embedded-linux-ia32-1.57.1" = { - name = "sass-embedded-linux-ia32"; - packageName = "sass-embedded-linux-ia32"; - version = "1.57.1"; - src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-linux-ia32/-/sass-embedded-linux-ia32-1.57.1.tgz"; - sha512 = "gKqMpfcjrW4S1m+cuRn88oUkr/HMv48CqyCHnfGCsrkTpIft33a1ZKW2jWm09rwmR0g/G6yGstoQO0iHWJWxuQ=="; - }; - }; - "sass-embedded-linux-x64-1.57.1" = { - name = "sass-embedded-linux-x64"; - packageName = "sass-embedded-linux-x64"; - version = "1.57.1"; - src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-linux-x64/-/sass-embedded-linux-x64-1.57.1.tgz"; - sha512 = "AI6CrcuLWP22RXhVrZUN2JfdQ7YdFR30dA4twYwp/Q4hUfj85dJrVD5ORi8G04haMWPOQiFV6pBcMgzpiY2Bog=="; - }; - }; - "sass-embedded-win32-ia32-1.57.1" = { - name = "sass-embedded-win32-ia32"; - packageName = "sass-embedded-win32-ia32"; - version = "1.57.1"; - src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-win32-ia32/-/sass-embedded-win32-ia32-1.57.1.tgz"; - sha512 = "s7EhJLG9AnJNBga3I+W0rk6y/1n/i0XD34rvqR3yJgBhNKkI5rVCxFN7FAcGR50vQQbCO1MrUCmuVvld+2qvyQ=="; - }; - }; - "sass-embedded-win32-x64-1.57.1" = { - name = "sass-embedded-win32-x64"; - packageName = "sass-embedded-win32-x64"; - version = "1.57.1"; - src = fetchurl { - url = "https://registry.npmjs.org/sass-embedded-win32-x64/-/sass-embedded-win32-x64-1.57.1.tgz"; - sha512 = "b/Kgz7ADPTlPITk8e47Zf3eiuXlTGhi/eWsAoesUmkjR7jayvFNLHPhThgiRAxkzT6UlWI3Dzr+E3OBqUjegEg=="; - }; - }; "sass-formatter-0.7.5" = { name = "sass-formatter"; packageName = "sass-formatter"; @@ -66983,15 +65597,6 @@ let sha512 = "VFWDAHOe6mRuT4mZRd4eKE+d8Uedrk6Xnh7Sh9b4NGufQLQjOrvf/MQoOdx+0s92L89FeyUUNfU597j/3uNpag=="; }; }; - "sass-graph-4.0.1" = { - name = "sass-graph"; - packageName = "sass-graph"; - version = "4.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/sass-graph/-/sass-graph-4.0.1.tgz"; - sha512 = "5YCfmGBmxoIRYHnKK2AKzrAkCoQ8ozO+iumT8K4tXJXRVCPf+7s1/9KxTSW3Rbvf+7Y7b4FR3mWyLnQr3PHocA=="; - }; - }; "sass-loader-10.2.0" = { name = "sass-loader"; packageName = "sass-loader"; @@ -67001,15 +65606,6 @@ let sha512 = "kUceLzC1gIHz0zNJPpqRsJyisWatGYNFRmv2CKZK2/ngMJgLqxTbXwe/hJ85luyvZkgqU3VlJ33UVF2T/0g6mw=="; }; }; - "sass-loader-13.2.0" = { - name = "sass-loader"; - packageName = "sass-loader"; - version = "13.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/sass-loader/-/sass-loader-13.2.0.tgz"; - sha512 = "JWEp48djQA4nbZxmgC02/Wh0eroSUutulROUusYJO9P9zltRbNN80JCBHqRGzjd4cmZCa/r88xgfkjGD0TXsHg=="; - }; - }; "sax-0.5.8" = { name = "sax"; packageName = "sax"; @@ -67154,15 +65750,6 @@ let sha512 = "g3WxHrqSWCZHGHlSrF51VXFdjImhwvH8ZO/pryFH56Qi0cDsZfylQa/t0jCzVQFNbNvM00HfHjkDPEuarKDSWQ=="; }; }; - "screenfull-5.2.0" = { - name = "screenfull"; - packageName = "screenfull"; - version = "5.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/screenfull/-/screenfull-5.2.0.tgz"; - sha512 = "9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA=="; - }; - }; "scrypt-js-3.0.1" = { name = "scrypt-js"; packageName = "scrypt-js"; @@ -67190,15 +65777,6 @@ let sha512 = "dYE8LhncfBUar6POCxMTm0Ln+erjeczqEvCJib5/7XNkdw1FkUGgwMPY360FY0FgPWQxHWCx29Jl3oejyGLM9Q=="; }; }; - "scss-tokenizer-0.4.3" = { - name = "scss-tokenizer"; - packageName = "scss-tokenizer"; - version = "0.4.3"; - src = fetchurl { - url = "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.4.3.tgz"; - sha512 = "raKLgf1LI5QMQnG+RxHz6oK0sL3x3I4FN2UDLqgLOGO8hodECNnNh5BXn7fAyBxrA8zVzdQizQ6XjNJQ+uBwMw=="; - }; - }; "secp256k1-4.0.3" = { name = "secp256k1"; packageName = "secp256k1"; @@ -67244,13 +65822,13 @@ let sha512 = "AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw=="; }; }; - "secure-json-parse-2.6.0" = { + "secure-json-parse-2.7.0" = { name = "secure-json-parse"; packageName = "secure-json-parse"; - version = "2.6.0"; + version = "2.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/secure-json-parse/-/secure-json-parse-2.6.0.tgz"; - sha512 = "B9osKohb6L+EZ6Kve3wHKfsAClzOC/iISA2vSuCe5Jx5NAKiwitfxx8ZKYapHXr0sYRj7UZInT7pLb3rp2Yx6A=="; + url = "https://registry.npmjs.org/secure-json-parse/-/secure-json-parse-2.7.0.tgz"; + sha512 = "6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw=="; }; }; "secure-keys-1.0.0" = { @@ -67271,13 +65849,13 @@ let sha512 = "e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ=="; }; }; - "selderee-0.6.0" = { + "selderee-0.10.0" = { name = "selderee"; packageName = "selderee"; - version = "0.6.0"; + version = "0.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/selderee/-/selderee-0.6.0.tgz"; - sha512 = "ibqWGV5aChDvfVdqNYuaJP/HnVBhlRGSRrlbttmlMpHcLuTqqbMH36QkSs9GEgj5M88JDYLI8eyP94JaQ8xRlg=="; + url = "https://registry.npmjs.org/selderee/-/selderee-0.10.0.tgz"; + sha512 = "DEL/RW/f4qLw/NrVg97xKaEBC8IpzIG2fvxnzCp3Z4yk4jQ3MXom+Imav9wApjxX2dfS3eW7x0DXafJr85i39A=="; }; }; "select-hose-2.0.0" = { @@ -67712,6 +66290,15 @@ let sha512 = "Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag=="; }; }; + "serialize-javascript-6.0.1" = { + name = "serialize-javascript"; + packageName = "serialize-javascript"; + version = "6.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz"; + sha512 = "owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w=="; + }; + }; "serialize-to-js-3.1.2" = { name = "serialize-to-js"; packageName = "serialize-to-js"; @@ -67811,15 +66398,6 @@ let sha512 = "XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g=="; }; }; - "server-1.0.38" = { - name = "server"; - packageName = "server"; - version = "1.0.38"; - src = fetchurl { - url = "https://registry.npmjs.org/server/-/server-1.0.38.tgz"; - sha512 = "RMpuql7HedxgfjqnQqUs8kt1LgkZRRyQaS2KOpsjRwo5bycxtePlwn1Qo/+/KEc33CFhvZflkLKZKdWU/lIWXw=="; - }; - }; "server-destroy-1.0.1" = { name = "server-destroy"; packageName = "server-destroy"; @@ -68360,13 +66938,13 @@ let sha512 = "z4qtrRuaAFJS4PUd0g+xy7aN4y+RvEt/QTJpR184lhJguBA1S/LsVlvE/CM95RsYMOFJG3NGGDjqFCzKU19S/A=="; }; }; - "simple-git-3.15.1" = { + "simple-git-3.16.0" = { name = "simple-git"; packageName = "simple-git"; - version = "3.15.1"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/simple-git/-/simple-git-3.15.1.tgz"; - sha512 = "73MVa5984t/JP4JcQt0oZlKGr42ROYWC3BcUZfuHtT3IHKPspIvL0cZBnvPXF7LL3S/qVeVHVdYYmJ3LOTw4Rg=="; + url = "https://registry.npmjs.org/simple-git/-/simple-git-3.16.0.tgz"; + sha512 = "zuWYsOLEhbJRWVxpjdiXl6eyAyGo/KzVW+KFhhw9MqEEJttcq+32jTWSGyxTdf9e/YCohxRE+9xpWFj9FdiJNw=="; }; }; "simple-markdown-0.4.4" = { @@ -69026,15 +67604,6 @@ let sha512 = "V4GrkLy+HeF1F/en3SpUaM+7XxYXpuMUWLGde1kSSh5nQMN4hLrbPIkD+otwh6q9R6NOQBN4AMaOZ2zVjui82g=="; }; }; - "sockette-2.0.6" = { - name = "sockette"; - packageName = "sockette"; - version = "2.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/sockette/-/sockette-2.0.6.tgz"; - sha512 = "W6iG8RGV6Zife3Cj+FhuyHV447E6fqFM2hKmnaQrTvg3OydINV3Msj3WPFbX76blUlUxvQSMMMdrJxce8NqI5Q=="; - }; - }; "sockjs-0.3.20" = { name = "sockjs"; packageName = "sockjs"; @@ -70818,6 +69387,15 @@ let sha512 = "GCp7vHAfpao+Qh/3Flh9DXEJ/qSi0KJwJw6zYlZOtRYXWUIpMM6mC2rIep/dK8RQqwW0KxGJIllmjPIBOGN8AA=="; }; }; + "stop-iteration-iterator-1.0.0" = { + name = "stop-iteration-iterator"; + packageName = "stop-iteration-iterator"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz"; + sha512 = "iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ=="; + }; + }; "stoppable-1.1.0" = { name = "stoppable"; packageName = "stoppable"; @@ -70944,15 +69522,6 @@ let sha512 = "Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A=="; }; }; - "stream-json-1.1.3" = { - name = "stream-json"; - packageName = "stream-json"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/stream-json/-/stream-json-1.1.3.tgz"; - sha512 = "y+ChhCov2A5nDqC2aZ6HKXs3OvDlvAp0Ps3BF1P/Iv8tUZJQQsMVaSzk0WryVTVoGITKv01UYahCXMpAs7I0lQ=="; - }; - }; "stream-json-1.7.5" = { name = "stream-json"; packageName = "stream-json"; @@ -71106,13 +69675,13 @@ let sha512 = "OG79qm3AujAM9ImoqgWEY1xG4HX+Lw+yY6qZj9R1K2mhF5bEmQ849wvrb+4vt4jLMLzwXttJlQbOdPOQVRv7DQ=="; }; }; - "streamroller-3.1.3" = { + "streamroller-3.1.4" = { name = "streamroller"; packageName = "streamroller"; - version = "3.1.3"; + version = "3.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/streamroller/-/streamroller-3.1.3.tgz"; - sha512 = "CphIJyFx2SALGHeINanjFRKQ4l7x2c+rXYJ4BMq0gd+ZK0gi4VT8b+eHe2wi58x4UayBAKx4xtHpXT/ea1cz8w=="; + url = "https://registry.npmjs.org/streamroller/-/streamroller-3.1.4.tgz"; + sha512 = "Ha1Ccw2/N5C/IF8Do6zgNe8F3jQo8MPBnMBGvX0QjNv/I97BcNRzK6/mzOpZHHK7DjMLTI3c7Xw7Y1KvdChkvw=="; }; }; "streamsearch-0.1.2" = { @@ -71133,13 +69702,13 @@ let sha512 = "Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg=="; }; }; - "streamx-2.13.0" = { + "streamx-2.13.2" = { name = "streamx"; packageName = "streamx"; - version = "2.13.0"; + version = "2.13.2"; src = fetchurl { - url = "https://registry.npmjs.org/streamx/-/streamx-2.13.0.tgz"; - sha512 = "9jD4uoX0juNSIcv4PazT+97FpM4Mww3cp7PM23HRTLANhgb7K7n1mB45guH/kT5F4enl04kApOM3EeoUXSPfvw=="; + url = "https://registry.npmjs.org/streamx/-/streamx-2.13.2.tgz"; + sha512 = "+TWqixPhGDXEG9L/XczSbhfkmwAtGs3BJX5QNU6cvno+pOLKeszByWcnaTu6dg8efsTYqR8ZZuXWHhZfgrxMvA=="; }; }; "strftime-0.10.1" = { @@ -71295,6 +69864,15 @@ let sha512 = "QySF2+3Rwq0SdO3s7BAp4x+c3qsClpPQ6abAmb0DGViiSBAkT5kL6JT2iyzEVP+T1SmzHrQD1TwlP9QAHCc+Sw=="; }; }; + "string-to-stream-3.0.1" = { + name = "string-to-stream"; + packageName = "string-to-stream"; + version = "3.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/string-to-stream/-/string-to-stream-3.0.1.tgz"; + sha512 = "Hl092MV3USJuUCC6mfl9sPzGloA3K5VwdIeJjYIkXY/8K+mUvaeEabWJgArp+xXrsWxCajeT2pc4axbVhIZJyg=="; + }; + }; "string-width-1.0.2" = { name = "string-width"; packageName = "string-width"; @@ -71403,15 +69981,6 @@ let sha512 = "ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ=="; }; }; - "string_decoder-1.0.3" = { - name = "string_decoder"; - packageName = "string_decoder"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz"; - sha512 = "4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ=="; - }; - }; "string_decoder-1.1.1" = { name = "string_decoder"; packageName = "string_decoder"; @@ -71862,6 +70431,15 @@ let sha512 = "Ap7JHfKgmH40SUjumqyKTHYHNZ8GvGQskP34ks0ElHCDEig+bYGpmXVksxPSrgcY9rkJqhVMzfeg5GIpZelfpQ=="; }; }; + "structured-source-4.0.0" = { + name = "structured-source"; + packageName = "structured-source"; + version = "4.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/structured-source/-/structured-source-4.0.0.tgz"; + sha512 = "qGzRFNJDjFieQkl/sVOI2dUjHKRyL9dAJi2gCPGJLbJHBIkyOHxjuocpIEfbLioX+qSJpvbYdT49/YCdMznKxA=="; + }; + }; "style-loader-0.23.1" = { name = "style-loader"; packageName = "style-loader"; @@ -72006,13 +70584,13 @@ let sha512 = "lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg=="; }; }; - "stylus-supremacy-2.17.3" = { + "stylus-supremacy-2.17.5" = { name = "stylus-supremacy"; packageName = "stylus-supremacy"; - version = "2.17.3"; + version = "2.17.5"; src = fetchurl { - url = "https://registry.npmjs.org/stylus-supremacy/-/stylus-supremacy-2.17.3.tgz"; - sha512 = "d/O2TtSjF8TeJSyARMSKFNyTX/ZUFOHco7wNH4axB0DhKmm2jekwPxs0CQ43kzZ1WidLgueQWBWmTZXDyEH8vQ=="; + url = "https://registry.npmjs.org/stylus-supremacy/-/stylus-supremacy-2.17.5.tgz"; + sha512 = "nanFS1zuIWe3pXJisST5myI+B90wQbAg4dvvgrjZ9pLmzZvMwRzIufMmu52T4nv6Df9430leUL/UljfbNsGQtw=="; }; }; "subarg-1.0.0" = { @@ -72186,22 +70764,13 @@ let sha512 = "DnarpKN6Xn8e3pYlFV4Yvsj9yxLY4q5FIsUe5JvN7vjzP+YCfzXv03dTkZSD2yzrSadsNYHf0IgOUJwKjX457A=="; }; }; - "supercluster-7.1.5" = { - name = "supercluster"; - packageName = "supercluster"; - version = "7.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/supercluster/-/supercluster-7.1.5.tgz"; - sha512 = "EulshI3pGUM66o6ZdH3ReiFcvHpM3vAigyK+vcxdjpJyEbIIrtbmBdY23mGgnI24uXiGFvrGq9Gkum/8U7vJWg=="; - }; - }; - "superstatic-8.0.0" = { + "superstatic-9.0.2" = { name = "superstatic"; packageName = "superstatic"; - version = "8.0.0"; + version = "9.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/superstatic/-/superstatic-8.0.0.tgz"; - sha512 = "PqlA2xuEwOlRZsknl58A/rZEmgCUcfWIFec0bn10wYE5/tbMhEbMXGHCYDppiXLXcuhGHyOp1IimM2hLqkLLuw=="; + url = "https://registry.npmjs.org/superstatic/-/superstatic-9.0.2.tgz"; + sha512 = "eKX9qubOaJbtdxn4gWhVVMXuno8cn0WPKOYgLAmLwYiHafrASXAIXHzL3Jx7w06yXiaM5e1DA2Ezeb08iV28+A=="; }; }; "supports-color-0.2.0" = { @@ -72339,13 +70908,13 @@ let sha512 = "ay4MPFjfiQzDsyTidljJLXQi22l2AwjcuamYnJWj/LdhaHdKmDJxRox52WXimdcLpMuLDtkQvv4+jEu+wu9eSw=="; }; }; - "svelte-3.55.0" = { + "svelte-3.55.1" = { name = "svelte"; packageName = "svelte"; - version = "3.55.0"; + version = "3.55.1"; src = fetchurl { - url = "https://registry.npmjs.org/svelte/-/svelte-3.55.0.tgz"; - sha512 = "uGu2FVMlOuey4JoKHKrpZFkoYyj0VLjJdz47zX5+gVK5odxHM40RVhar9/iK2YFRVxvfg9FkhfVlR0sjeIrOiA=="; + url = "https://registry.npmjs.org/svelte/-/svelte-3.55.1.tgz"; + sha512 = "S+87/P0Ve67HxKkEV23iCdAh/SX1xiSfjF1HOglno/YTbSTW7RniICMCofWGdJJbdjw3S+0PfFb1JtGfTXE0oQ=="; }; }; "svelte-preprocess-5.0.0" = { @@ -72393,15 +70962,6 @@ let sha512 = "ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA=="; }; }; - "svg-url-loader-8.0.0" = { - name = "svg-url-loader"; - packageName = "svg-url-loader"; - version = "8.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/svg-url-loader/-/svg-url-loader-8.0.0.tgz"; - sha512 = "5doSXvl18hY1fGsRLdhWAU5jgzgxJ06/gc/26cpuDnN0xOz1HmmfhkpL29SSrdIvhtxQ1UwGzmk7wTT/l48mKw=="; - }; - }; "svg2img-0.9.4" = { name = "svg2img"; packageName = "svg2img"; @@ -72654,15 +71214,6 @@ let sha512 = "dJp4qg+x4JwSEW1HibAuMi0IIrBI3wuQr2GimmqB7OXR50wmwzfdusG+p39R9w3R6aFtZ2mzvxvWKQ3Bd/vx3g=="; }; }; - "synckit-0.7.3" = { - name = "synckit"; - packageName = "synckit"; - version = "0.7.3"; - src = fetchurl { - url = "https://registry.npmjs.org/synckit/-/synckit-0.7.3.tgz"; - sha512 = "jNroMv7Juy+mJ/CHW5H6TzsLWpa1qck6sCHbkv8YTur+irSq2PjbvmGnm2gy14BUQ6jF33vyR4DPssHqmqsDQw=="; - }; - }; "synckit-0.8.4" = { name = "synckit"; packageName = "synckit"; @@ -72681,13 +71232,13 @@ let sha512 = "YPPlu67mdnHGTup2A8ff7BC2Pjq0e0Yp/IyTFN03zWO0RcK07uLcbi7C2KpGR2FvWbaB0+bfE27a+sBKebSo7w=="; }; }; - "systeminformation-5.16.8" = { + "systeminformation-5.17.3" = { name = "systeminformation"; packageName = "systeminformation"; - version = "5.16.8"; + version = "5.17.3"; src = fetchurl { - url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.16.8.tgz"; - sha512 = "LtPUC6LrarEoS8q5zc6gSGzKCYnzzEkZP4CTN5jWwEz7AwYZZSIhGzNUecetHcgxNJQm5vsxSd09sN+4FRVwfg=="; + url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.17.3.tgz"; + sha512 = "IAmnUJdeFUWqY+YneAWJ9rceTdRRIaTiwspvd1B6SG7yhqpxLrSosHgGZKiE8lcaBlBYpLQpY3BRLtus4n8PNQ=="; }; }; "sywac-1.3.0" = { @@ -72753,6 +71304,15 @@ let sha512 = "zTvf0mcggrGeTe/2jJ6ECkJHAQPIYEwDoqsiqBjI24mvRmQbInK5jq33fyypaCBxX08hMkfmdOqj6haT33EqWw=="; }; }; + "table-layout-1.0.2" = { + name = "table-layout"; + packageName = "table-layout"; + version = "1.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/table-layout/-/table-layout-1.0.2.tgz"; + sha512 = "qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A=="; + }; + }; "tabtab-1.3.2" = { name = "tabtab"; packageName = "tabtab"; @@ -72799,13 +71359,13 @@ let sha512 = "y3JaeRSplks6NYQuCOj3ZFMO3j60rTwbuKCvZxsAraGYH2epusatvZ0baZYA01WsGqJBq/Dl6vOrMUJqyMj8kA=="; }; }; - "tail-2.2.4" = { + "tail-2.2.6" = { name = "tail"; packageName = "tail"; - version = "2.2.4"; + version = "2.2.6"; src = fetchurl { - url = "https://registry.npmjs.org/tail/-/tail-2.2.4.tgz"; - sha512 = "PX8klSxW1u3SdgDrDeewh5GNE+hkJ4h02JvHfV6YrHqWOVJ88nUdSQqtsUf/gWhgZlPAws3fiZ+F1f8euspcuQ=="; + url = "https://registry.npmjs.org/tail/-/tail-2.2.6.tgz"; + sha512 = "IQ6G4wK/t8VBauYiGPLx+d3fA5XjSVagjWV5SIYzvEvglbQjwEcukeYI68JOPpdydjxhZ9sIgzRlSmwSpphHyw=="; }; }; "tailwindcss-3.2.4" = { @@ -72853,13 +71413,13 @@ let sha512 = "GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ=="; }; }; - "tape-4.16.1" = { + "tape-4.16.2" = { name = "tape"; packageName = "tape"; - version = "4.16.1"; + version = "4.16.2"; src = fetchurl { - url = "https://registry.npmjs.org/tape/-/tape-4.16.1.tgz"; - sha512 = "U4DWOikL5gBYUrlzx+J0oaRedm2vKLFbtA/+BRAXboGWpXO7bMP8ddxlq3Cse2bvXFQ0jZMOj6kk3546mvCdFg=="; + url = "https://registry.npmjs.org/tape/-/tape-4.16.2.tgz"; + sha512 = "TUChV+q0GxBBCEbfCYkGLkv8hDJYjMdSWdE0/Lr331sB389dsvFUHNV9ph5iQqKzt8Ss9drzcda/YeexclBFqg=="; }; }; "tar-2.2.2" = { @@ -73123,15 +71683,6 @@ let sha512 = "biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w=="; }; }; - "tempy-3.0.0" = { - name = "tempy"; - packageName = "tempy"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/tempy/-/tempy-3.0.0.tgz"; - sha512 = "B2I9X7+o2wOaW4r/CWMkpOO9mdiTRCxXNgob6iGvPmfPWgH/KyUD6Uy5crtWBxIBe3YrNZKR2lSzv1JJKWD4vA=="; - }; - }; "term-canvas-0.0.5" = { name = "term-canvas"; packageName = "term-canvas"; @@ -73267,15 +71818,6 @@ let sha512 = "cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w=="; }; }; - "test-value-2.1.0" = { - name = "test-value"; - packageName = "test-value"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/test-value/-/test-value-2.1.0.tgz"; - sha512 = "+1epbAxtKeXttkGFMTX9H42oqzOTufR1ceCF+GYA5aOmvaPq9wd4PUS8329fn2RRLGNeUkgRLnVpycjx8DsO2w=="; - }; - }; "text-decoding-1.0.0" = { name = "text-decoding"; packageName = "text-decoding"; @@ -73339,13 +71881,13 @@ let sha512 = "MeqZRHLuaGamUXGuVn2ivtU3LA3mLCCIO5kUGoohTCoGmCBg/+8yPhWVX9WSl9telvVd8erftjFk9Fwb2dD6rw=="; }; }; - "textlint-12.2.4" = { + "textlint-12.5.1" = { name = "textlint"; packageName = "textlint"; - version = "12.2.4"; + version = "12.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/textlint/-/textlint-12.2.4.tgz"; - sha512 = "IlBJL4bR9RuqYV+YkQQvOznhmfClGGkuOyxiUaQ4qUj2IaJu2/rXei71x3JAIJF4SLEK7SbMoLVqXIerqIbhGA=="; + url = "https://registry.npmjs.org/textlint/-/textlint-12.5.1.tgz"; + sha512 = "LoFU1yBIm/gxM++jDdvdfS2diW14NBHsimRyChi8Kb5h5pUHcG0rGfW2PflUzfYcHF0XykgW9WBdPd1WWnyS7Q=="; }; }; "textlint-rule-helper-1.2.0" = { @@ -73357,22 +71899,22 @@ let sha512 = "yJmVbmyuUPOndKsxOijpx/G7mwybXXf4M10U2up0BeIZSN+6drUl+aSKAoC+RUHY7bG4ogLwRcmWoNG1lSrRIQ=="; }; }; - "textlint-rule-helper-2.2.3" = { + "textlint-rule-helper-2.2.4" = { name = "textlint-rule-helper"; packageName = "textlint-rule-helper"; - version = "2.2.3"; + version = "2.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/textlint-rule-helper/-/textlint-rule-helper-2.2.3.tgz"; - sha512 = "H499NRHVurHTFXTL+w/FI+aX6YgZD1TAFuR6kHqYDQ2ArGwkCbnRu+so+deweTFEUI4etP7EVMsrLwXP1e2Q+w=="; + url = "https://registry.npmjs.org/textlint-rule-helper/-/textlint-rule-helper-2.2.4.tgz"; + sha512 = "aQDn83+L6uG8tA6IjAsfFLWxR0/OJg51/C0k6OxNuGJnn/rgQnX+6Lh/bWh9dJ0RmOIQk7VkZ1uHUny5PXkjwQ=="; }; }; - "textlint-tester-12.2.4" = { + "textlint-tester-12.5.0" = { name = "textlint-tester"; packageName = "textlint-tester"; - version = "12.2.4"; + version = "12.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/textlint-tester/-/textlint-tester-12.2.4.tgz"; - sha512 = "/H6QLnFF3IDpz3rIYZXtyRLrRoGrPh2RPPik//ErZJbgCCfOrQeTqOXDoS4r91cJY3aMkPdZgGGX1OhuIrK5+A=="; + url = "https://registry.npmjs.org/textlint-tester/-/textlint-tester-12.5.0.tgz"; + sha512 = "4BKh/eWCc73T6mvBwXz1q53gbzCm+S0iHet2nmOQWF9aEbGkVnLbFbEKNdPiayAJ5tugIdvpfT/5iUb1RXDjeg=="; }; }; "textlint-util-to-string-3.1.1" = { @@ -73483,13 +72025,13 @@ let sha512 = "wNrVKH2Lcf8ZrWxDF/khdlLlsTMczdcwPA9VEK4c2exlEPynYWxi9op3nPTo5lAnDIkE0rQEB3VBP+4Zncc9Hg=="; }; }; - "thread-stream-2.2.0" = { + "thread-stream-2.3.0" = { name = "thread-stream"; packageName = "thread-stream"; - version = "2.2.0"; + version = "2.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/thread-stream/-/thread-stream-2.2.0.tgz"; - sha512 = "rUkv4/fnb4rqy/gGy7VuqK6wE1+1DOCOWy4RMeaV69ZHMP11tQKZvZSip1yTgrKCMZzEMcCL/bKfHvSfDHx+iQ=="; + url = "https://registry.npmjs.org/thread-stream/-/thread-stream-2.3.0.tgz"; + sha512 = "kaDqm1DET9pp3NXwR8382WHbnpXnRkN9xGN9dQt3B2+dmXiW8X1SOwmFOxAErEQ47ObhZ96J6yhZNXuyCOL7KA=="; }; }; "thriftrw-3.12.0" = { @@ -73510,13 +72052,13 @@ let sha512 = "fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA=="; }; }; - "throat-6.0.1" = { + "throat-6.0.2" = { name = "throat"; packageName = "throat"; - version = "6.0.1"; + version = "6.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/throat/-/throat-6.0.1.tgz"; - sha512 = "8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w=="; + url = "https://registry.npmjs.org/throat/-/throat-6.0.2.tgz"; + sha512 = "WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ=="; }; }; "throttle-1.0.3" = { @@ -73834,22 +72376,13 @@ let sha512 = "+CorETse1kl98xg0WAzii8DTT4ABF4R3nquhrkIbVGcw1T8JYs5Gfx9xEfGINPUZGDj9C4BmOtuKeaTtuuRolg=="; }; }; - "tinycolor2-1.5.1" = { + "tinycolor2-1.5.2" = { name = "tinycolor2"; packageName = "tinycolor2"; - version = "1.5.1"; + version = "1.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.5.1.tgz"; - sha512 = "BHlrsGeYN2OpkRpfAgkEwCMu6w8Quq8JkK/mp4c55NZP7OwceJObR1CPZt62TqiA0Y3J5pwuDX+fXDqc35REtg=="; - }; - }; - "tinyqueue-2.0.3" = { - name = "tinyqueue"; - packageName = "tinyqueue"; - version = "2.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/tinyqueue/-/tinyqueue-2.0.3.tgz"; - sha512 = "ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA=="; + url = "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.5.2.tgz"; + sha512 = "h80m9GPFGbcLzZByXlNSEhp1gf8Dy+VX/2JCGUZsWLo7lV1mnE/XlxGYgRBoMLJh1lIDXP0EMC4RPTjlRaV+Bg=="; }; }; "titleize-2.1.0" = { @@ -73897,22 +72430,22 @@ let sha512 = "Q0TU9zh5hDs2CpRFNM7SOW3K7OSgUgJC/cMrq9t44ei4tu+G3KV8BZyIJuYVvryJHH96mKgc9WXdhgKVvGD7jg=="; }; }; - "tldts-5.7.103" = { + "tldts-5.7.104" = { name = "tldts"; packageName = "tldts"; - version = "5.7.103"; + version = "5.7.104"; src = fetchurl { - url = "https://registry.npmjs.org/tldts/-/tldts-5.7.103.tgz"; - sha512 = "tFCCed5JL2j7M7l+hfXY3ytc83OCTOMfCcVhL8Pdip0A4ijZvQORYhWzg0gEgRlwSBowoGjCQ+KVOeNUX0FHuA=="; + url = "https://registry.npmjs.org/tldts/-/tldts-5.7.104.tgz"; + sha512 = "PlziEIVPH/ogbqOhS35K6MOeD09rd9U5g2NHO5n9NZeMC1PGpXgsjQpoJ1KiRnjhZsWDkzN8EoX3xQZuz5ZyFQ=="; }; }; - "tldts-core-5.7.103" = { + "tldts-core-5.7.104" = { name = "tldts-core"; packageName = "tldts-core"; - version = "5.7.103"; + version = "5.7.104"; src = fetchurl { - url = "https://registry.npmjs.org/tldts-core/-/tldts-core-5.7.103.tgz"; - sha512 = "MdSolgnhJwr2SH6a+5KFAYB8znpYdRLoOFTJmrWslsec9Ne/V3DBrw+BbS1YYQJKGTin6U02Y9CSYxnOpg3vwg=="; + url = "https://registry.npmjs.org/tldts-core/-/tldts-core-5.7.104.tgz"; + sha512 = "8vhSgc2nzPNT0J7XyCqcOtQ6+ySBn+gsPmj5h95YytIZ7L2Xl40paUmj0T6Uko42HegHGQxXieunHIQuABWSmQ=="; }; }; "tmp-0.0.29" = { @@ -74761,15 +73294,6 @@ let sha512 = "NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw=="; }; }; - "ts-node-8.9.1" = { - name = "ts-node"; - packageName = "ts-node"; - version = "8.9.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ts-node/-/ts-node-8.9.1.tgz"; - sha512 = "yrq6ODsxEFTLz0R3BX2myf0WBCSQh9A+py8PBo1dCzWIOcvisbyH6akNKqDHMgXePF2kir5mm5JXJTH3OUJYOQ=="; - }; - }; "ts-node-9.1.1" = { name = "ts-node"; packageName = "ts-node"; @@ -74833,13 +73357,22 @@ let sha512 = "fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ=="; }; }; - "tsconfig-paths-4.1.0" = { + "tsconfig-paths-4.1.1" = { name = "tsconfig-paths"; packageName = "tsconfig-paths"; - version = "4.1.0"; + version = "4.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.1.0.tgz"; - sha512 = "AHx4Euop/dXFC+Vx589alFba8QItjF+8hf8LtmuiCwHyI4rHXQtOOENaM8kvYf5fR0dRChy3wzWIZ9WbB7FWow=="; + url = "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.1.1.tgz"; + sha512 = "VgPrtLKpRgEAJsMj5Q/I/mXouC6A/7eJ/X4Nuk6o0cRPwBtznYxTCU4FodbexbzH9somBPEXYi0ZkUViUpJ21Q=="; + }; + }; + "tsconfig-paths-4.1.2" = { + name = "tsconfig-paths"; + packageName = "tsconfig-paths"; + version = "4.1.2"; + src = fetchurl { + url = "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.1.2.tgz"; + sha512 = "uhxiMgnXQp1IR622dUXI+9Ehnws7i/y6xvpZB9IbUVOPy0muvdvgXeZOn88UcGPiT98Vp3rJPTa8bFoalZ3Qhw=="; }; }; "tsconfig-paths-webpack-plugin-4.0.0" = { @@ -74914,15 +73447,6 @@ let sha512 = "77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw=="; }; }; - "tslib-2.4.0" = { - name = "tslib"; - packageName = "tslib"; - version = "2.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz"; - sha512 = "d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ=="; - }; - }; "tslib-2.4.1" = { name = "tslib"; packageName = "tslib"; @@ -75067,6 +73591,15 @@ let sha512 = "BEkXaWH7Wh7e9bd2QumhfAXk5g34+6QUmmWx+0q6ThaVOLuLUqsnkq35HQ5SBHSaxjSfSM7US5o4lhJNH7B9MA=="; }; }; + "turndown-plugin-gfm-1.0.2" = { + name = "turndown-plugin-gfm"; + packageName = "turndown-plugin-gfm"; + version = "1.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/turndown-plugin-gfm/-/turndown-plugin-gfm-1.0.2.tgz"; + sha512 = "vwz9tfvF7XN/jE0dGoBei3FXWuvll78ohzCZQuOb+ZjWrs3a0XhQVomJEb2Qh4VHTPNRO4GPZh0V7VRbiWwkRg=="; + }; + }; "tus-js-client-3.0.1" = { name = "tus-js-client"; packageName = "tus-js-client"; @@ -75328,24 +73861,6 @@ let sha512 = "RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA=="; }; }; - "type-fest-3.1.0" = { - name = "type-fest"; - packageName = "type-fest"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/type-fest/-/type-fest-3.1.0.tgz"; - sha512 = "StmrZmK3eD9mDF9Vt7UhqthrDSk66O9iYl5t5a0TSoVkHjl0XZx/xuc/BRz4urAXXGHOY5OLsE0RdJFIApSFmw=="; - }; - }; - "type-fest-3.2.0" = { - name = "type-fest"; - packageName = "type-fest"; - version = "3.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/type-fest/-/type-fest-3.2.0.tgz"; - sha512 = "Il3wdLRzWvbAEtocgxGQA9YOoRVeVUGOMBtel5LdEpNeEAol6GJTLw8GbX6Z8EIMfvfhoOXs2bwOijtAZdK5og=="; - }; - }; "type-fest-3.4.0" = { name = "type-fest"; packageName = "type-fest"; @@ -75355,6 +73870,24 @@ let sha512 = "PEPg6RHlB9cFwoTMNENNrQFL0cXX04voWr2UPwQBJ3pVs7Mt8Y1oLWdUeMdGEwZE8HFFlujq8gS9enmyiQ8pLg=="; }; }; + "type-fest-3.5.1" = { + name = "type-fest"; + packageName = "type-fest"; + version = "3.5.1"; + src = fetchurl { + url = "https://registry.npmjs.org/type-fest/-/type-fest-3.5.1.tgz"; + sha512 = "70T99cpILFk2fzwuljwWxmazSphFrdOe3gRHbp6bqs71pxFBbJwFqnmkLO2lQL6aLHxHmYAnP/sL+AJWpT70jA=="; + }; + }; + "type-fest-3.5.2" = { + name = "type-fest"; + packageName = "type-fest"; + version = "3.5.2"; + src = fetchurl { + url = "https://registry.npmjs.org/type-fest/-/type-fest-3.5.2.tgz"; + sha512 = "Ph7S4EhXzWy0sbljEuZo0tTNoLl+K2tPauGrQpcwUWrOVneLePTuhVzcuzVJJ6RU5DsNwQZka+8YtkXXU4z9cA=="; + }; + }; "type-is-1.6.18" = { name = "type-is"; packageName = "type-is"; @@ -75364,6 +73897,15 @@ let sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="; }; }; + "typed-array-length-1.0.4" = { + name = "typed-array-length"; + packageName = "typed-array-length"; + version = "1.0.4"; + src = fetchurl { + url = "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz"; + sha512 = "KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng=="; + }; + }; "typed-rest-client-1.8.9" = { name = "typed-rest-client"; packageName = "typed-rest-client"; @@ -75472,15 +74014,6 @@ let sha512 = "kk80vLW9iGtjMnIv11qyxLqZm20UklzuR2tL0QAnDIygIUIemcZMxlMWudl9OOt76H3ntVzcTiddQ1/pAAJMYg=="; }; }; - "typescript-3.2.4" = { - name = "typescript"; - packageName = "typescript"; - version = "3.2.4"; - src = fetchurl { - url = "https://registry.npmjs.org/typescript/-/typescript-3.2.4.tgz"; - sha512 = "0RNDbSdEokBeEAkgNbxJ+BLwSManFy9TeXz8uW+48j/xhEXv1ePME60olyzw2XzUqUBNAYFeJadIqAgNqIACwg=="; - }; - }; "typescript-3.9.10" = { name = "typescript"; packageName = "typescript"; @@ -75589,6 +74122,24 @@ let sha512 = "ofhi8kjIje6npGozTip9Fr8iecmYfEbS06i0JnIg+rh51KakryWF4+jX8lLKZVhy6N+ID45WYSFCxPOdTWCzNg=="; }; }; + "typical-4.0.0" = { + name = "typical"; + packageName = "typical"; + version = "4.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/typical/-/typical-4.0.0.tgz"; + sha512 = "VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw=="; + }; + }; + "typical-5.2.0" = { + name = "typical"; + packageName = "typical"; + version = "5.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz"; + sha512 = "dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg=="; + }; + }; "typo-geom-0.12.1" = { name = "typo-geom"; packageName = "typo-geom"; @@ -75994,13 +74545,13 @@ let sha512 = "UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw=="; }; }; - "undici-5.14.0" = { + "undici-5.15.0" = { name = "undici"; packageName = "undici"; - version = "5.14.0"; + version = "5.15.0"; src = fetchurl { - url = "https://registry.npmjs.org/undici/-/undici-5.14.0.tgz"; - sha512 = "yJlHYw6yXPPsuOH0x2Ib1Km61vu4hLiRRQoafs+WUgX1vO64vgnxiCEN9dpIrhZyHFsai3F0AEj4P9zy19enEQ=="; + url = "https://registry.npmjs.org/undici/-/undici-5.15.0.tgz"; + sha512 = "wCAZJDyjw9Myv+Ay62LAoB+hZLPW9SmKbQkbHIhMw/acKSlpn7WohdMUc/Vd4j1iSMBO0hWwU8mjB7a5p5bl8g=="; }; }; "undici-5.9.1" = { @@ -76084,6 +74635,15 @@ let sha512 = "qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA=="; }; }; + "unicode-properties-1.4.1" = { + name = "unicode-properties"; + packageName = "unicode-properties"; + version = "1.4.1"; + src = fetchurl { + url = "https://registry.npmjs.org/unicode-properties/-/unicode-properties-1.4.1.tgz"; + sha512 = "CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg=="; + }; + }; "unicode-property-aliases-ecmascript-2.1.0" = { name = "unicode-property-aliases-ecmascript"; packageName = "unicode-property-aliases-ecmascript"; @@ -76102,6 +74662,15 @@ let sha512 = "WgVuO0M2jDl7hVfbPgXv2LUrD81HM0bQj/bvLGiw6fJ4Zo8nNFnDrA0/hU2Te/wz6pjxCm5cxJwtLjo2eyV51Q=="; }; }; + "unicode-trie-2.0.0" = { + name = "unicode-trie"; + packageName = "unicode-trie"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/unicode-trie/-/unicode-trie-2.0.0.tgz"; + sha512 = "x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ=="; + }; + }; "unified-10.1.2" = { name = "unified"; packageName = "unified"; @@ -77029,13 +75598,13 @@ let sha512 = "EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og=="; }; }; - "upload-files-express-0.4.0" = { - name = "upload-files-express"; - packageName = "upload-files-express"; - version = "0.4.0"; + "update-notifier-cjs-5.1.6" = { + name = "update-notifier-cjs"; + packageName = "update-notifier-cjs"; + version = "5.1.6"; src = fetchurl { - url = "https://registry.npmjs.org/upload-files-express/-/upload-files-express-0.4.0.tgz"; - sha512 = "ET3Pcstq4F1gNCPtfy9cK8WAYhg81NoiC1qjYaptGT2ODkT8FMarNbGh5Ku71/B6Ig39o58JibfEkObmhJFY0Q=="; + url = "https://registry.npmjs.org/update-notifier-cjs/-/update-notifier-cjs-5.1.6.tgz"; + sha512 = "wgxdSBWv3x/YpMzsWz5G4p4ec7JWD0HCl8W6bmNB6E5Gwo+1ym5oN4hiXpLf0mPySVEJEIsYlkshnplkg2OP9A=="; }; }; "upnp-device-client-1.0.2" = { @@ -77254,6 +75823,15 @@ let sha512 = "DOE84vZT2fEcl9gqCUTcnAw5ZY5Id55ikUcziSUntuEFL3pRvavg5kwDmTEUJkeCHInTlV/HexFomgYnzO5kdQ=="; }; }; + "urlpattern-polyfill-6.0.2" = { + name = "urlpattern-polyfill"; + packageName = "urlpattern-polyfill"; + version = "6.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-6.0.2.tgz"; + sha512 = "5vZjFlH9ofROmuWmXM9yj2wljYKgWstGwe8YTyiqM7hVum/g9LyCizPZtb3UqsuppVwety9QJmfc42VggLpTgg=="; + }; + }; "urlsafe-base64-1.0.0" = { name = "urlsafe-base64"; packageName = "urlsafe-base64"; @@ -77344,6 +75922,15 @@ let sha512 = "vLt1O5Pp+flcArHGIyKEQq883nBt8nN8tVBcoL0qUXj2XT1n7p70yGIq2VK98I5FdZ1YHc0wk/koOnHjnXWk1Q=="; }; }; + "utf-8-validate-6.0.0" = { + name = "utf-8-validate"; + packageName = "utf-8-validate"; + version = "6.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-6.0.0.tgz"; + sha512 = "OCJuwxQsnG51swYmNloViggxNOFO/leOZpnb/vVeoastJbrzrZZU7lGsYlUcdkCl9nsBu2nkKLjpljb3Ckvb/Q=="; + }; + }; "utf7-1.0.2" = { name = "utf7"; packageName = "utf7"; @@ -77812,6 +76399,15 @@ let sha512 = "41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg=="; }; }; + "value-or-promise-1.0.12" = { + name = "value-or-promise"; + packageName = "value-or-promise"; + version = "1.0.12"; + src = fetchurl { + url = "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.12.tgz"; + sha512 = "Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q=="; + }; + }; "value-or-promise-1.0.6" = { name = "value-or-promise"; packageName = "value-or-promise"; @@ -78631,15 +77227,6 @@ let sha512 = "jWi+297PJUUWTHwlcrZz0zIuEXuHOBJIQMapXmEzbosWGv/gMnNSAMV4hTKnl5wzxvZKZzV6j+WFdrSlKQ5qnw=="; }; }; - "vscode-css-languageservice-5.4.2" = { - name = "vscode-css-languageservice"; - packageName = "vscode-css-languageservice"; - version = "5.4.2"; - src = fetchurl { - url = "https://registry.npmjs.org/vscode-css-languageservice/-/vscode-css-languageservice-5.4.2.tgz"; - sha512 = "DT7+7vfdT2HDNjDoXWtYJ0lVDdeDEdbMNdK4PKqUl2MS8g7PWt7J5G9B6k9lYox8nOfhCEjLnoNC3UKHHCR1lg=="; - }; - }; "vscode-css-languageservice-6.2.1" = { name = "vscode-css-languageservice"; packageName = "vscode-css-languageservice"; @@ -78667,15 +77254,6 @@ let sha512 = "mIb5VMXM5jI97HzCk2eadI1K//rCEZXte0wBqA7PGXsyJH4KTyJUaYk9MR+mbfpUl2vMi3HZw9GUOLGYLc6l5w=="; }; }; - "vscode-html-languageservice-4.2.5" = { - name = "vscode-html-languageservice"; - packageName = "vscode-html-languageservice"; - version = "4.2.5"; - src = fetchurl { - url = "https://registry.npmjs.org/vscode-html-languageservice/-/vscode-html-languageservice-4.2.5.tgz"; - sha512 = "dbr10KHabB9EaK8lI0XZW7SqOsTfrNyT3Nuj0GoPi4LjGKUmMiLtsqzfedIzRTzqY+w0FiLdh0/kQrnQ0tLxrw=="; - }; - }; "vscode-html-languageservice-5.0.3" = { name = "vscode-html-languageservice"; packageName = "vscode-html-languageservice"; @@ -78775,15 +77353,6 @@ let sha512 = "wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg=="; }; }; - "vscode-jsonrpc-6.1.0-next.2" = { - name = "vscode-jsonrpc"; - packageName = "vscode-jsonrpc"; - version = "6.1.0-next.2"; - src = fetchurl { - url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-6.1.0-next.2.tgz"; - sha512 = "nkiNDGI+Ytp7uj1lxHXddXCoEunhcry1D+KmVHBfUUgWT9jMF8ZJyH5KQObdF+OGAh7bXZxD/SV4uGwSCeHHWA=="; - }; - }; "vscode-jsonrpc-8.0.0-next.7" = { name = "vscode-jsonrpc"; packageName = "vscode-jsonrpc"; @@ -78802,13 +77371,13 @@ let sha512 = "RY7HwI/ydoC1Wwg4gJ3y6LpU9FJRZAUnTYMXthqhFXXu77ErDd/xkREpGuk4MyYkk4a+XDWAMqe0S3KkelYQEQ=="; }; }; - "vscode-jsonrpc-8.1.0-next.5" = { + "vscode-jsonrpc-8.1.0-next.7" = { name = "vscode-jsonrpc"; packageName = "vscode-jsonrpc"; - version = "8.1.0-next.5"; + version = "8.1.0-next.7"; src = fetchurl { - url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.1.0-next.5.tgz"; - sha512 = "9l9lB8gXW1kPECKLC5Goc41pFztSCfODY3dvGaNTJ0KfRgwKIUyIhEBSdlWT2IU4uL4Tcl/zcitpb+Lj6QP7aQ=="; + url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-8.1.0-next.7.tgz"; + sha512 = "UJlY2e4wnI+GkaNYM2TERqrNvTe0XScny7lUA4f+F+z6XI5pDJnHj6udXiGJofT/tX57d8C6fnlfgrCfF6aptQ=="; }; }; "vscode-languageclient-4.0.1" = { @@ -78901,15 +77470,6 @@ let sha512 = "60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw=="; }; }; - "vscode-languageserver-7.1.0-next.4" = { - name = "vscode-languageserver"; - packageName = "vscode-languageserver"; - version = "7.1.0-next.4"; - src = fetchurl { - url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-7.1.0-next.4.tgz"; - sha512 = "/65lxR/CuLJoOdzTjOTYUPWS7k5qzaWese4PObnWc6jwLryUrSa7DslYfaRXigh5/xr1nlaUZCcJwkpgM0wFvw=="; - }; - }; "vscode-languageserver-8.0.2" = { name = "vscode-languageserver"; packageName = "vscode-languageserver"; @@ -78919,13 +77479,13 @@ let sha512 = "bpEt2ggPxKzsAOZlXmCJ50bV7VrxwCS5BI4+egUmure/oI/t4OlFzi/YNtVvY24A2UDOZAgwFGgnZPwqSJubkA=="; }; }; - "vscode-languageserver-8.1.0-next.4" = { + "vscode-languageserver-8.1.0-next.6" = { name = "vscode-languageserver"; packageName = "vscode-languageserver"; - version = "8.1.0-next.4"; + version = "8.1.0-next.6"; src = fetchurl { - url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-8.1.0-next.4.tgz"; - sha512 = "W+sdV5sgOTgE1bmEBdCrCpjfYIwD7f0ykwoPOTkvaNFdsgbMIvq4VZLjGMVnFR7U2tPa/w0Kn7lXodlSJudNmQ=="; + url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-8.1.0-next.6.tgz"; + sha512 = "YSj9fKN0FtVW95RKjcy8UheODK4YosqiZUkEbAgJJ0uMxR1Om1dhD/+QwYUKfJX/u8KLS/qFroMNVFHoPoc2hg=="; }; }; "vscode-languageserver-protocol-3.14.1" = { @@ -78973,15 +77533,6 @@ let sha512 = "tx4DnXw9u3N7vw+bx6n2NKp6FoxoNwiP/biH83AS30I2AnTGyLd7afSeH6Oewn2E8jvB7K15bs12sMppkKOVeQ=="; }; }; - "vscode-languageserver-protocol-3.17.0-next.5" = { - name = "vscode-languageserver-protocol"; - packageName = "vscode-languageserver-protocol"; - version = "3.17.0-next.5"; - src = fetchurl { - url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.0-next.5.tgz"; - sha512 = "LFZ6WMB3iPezQAU9OnGoERzcIVKhcs0OLfD/NHcqSj3g1wgxuLUL5kSlZbbjFySQCmhzm6b0yb3hjTSeBtq1+w=="; - }; - }; "vscode-languageserver-protocol-3.17.2" = { name = "vscode-languageserver-protocol"; packageName = "vscode-languageserver-protocol"; @@ -78991,13 +77542,13 @@ let sha512 = "8kYisQ3z/SQ2kyjlNeQxbkkTNmVFoQCqkmGrzLH6A9ecPlgTbp3wDTnUNqaUxYr4vlAcloxx8zwy7G5WdguYNg=="; }; }; - "vscode-languageserver-protocol-3.17.3-next.4" = { + "vscode-languageserver-protocol-3.17.3-next.6" = { name = "vscode-languageserver-protocol"; packageName = "vscode-languageserver-protocol"; - version = "3.17.3-next.4"; + version = "3.17.3-next.6"; src = fetchurl { - url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.3-next.4.tgz"; - sha512 = "G6XrjZGSe2LIo7uDa860JKX97sLKc1vQF4AU4SW8DI7NNVKxnCB+vEs8gYHmle7kD9v13PvFkDCBD5ApeONGNQ=="; + url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.3-next.6.tgz"; + sha512 = "UCL2DaAOCzGFZKIAJ4wOS9BXVbeARL8GxXTW7ANnAXJg03IytNmOJcmguL6l+ht4CCdKNQbnRSJB4dh8cgDyJw=="; }; }; "vscode-languageserver-protocol-3.5.1" = { @@ -79036,6 +77587,15 @@ let sha512 = "1bonkGqQs5/fxGT5UchTgjGVnfysL0O8v1AYMBjqTbWQTFn721zaPGDYFkOKtfDgFiSgXM3KwaG3FMGfW4Ed9Q=="; }; }; + "vscode-languageserver-textdocument-1.0.9" = { + name = "vscode-languageserver-textdocument"; + packageName = "vscode-languageserver-textdocument"; + version = "1.0.9"; + src = fetchurl { + url = "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.9.tgz"; + sha512 = "NPfHVGFW2/fQEWHspr8x3PXhRgtFbuDZdl7p6ifuN3M7nk2Yjf5POr/NfDBuAiQG88DehDyJ7nGOT+p+edEtbw=="; + }; + }; "vscode-languageserver-types-3.14.0" = { name = "vscode-languageserver-types"; packageName = "vscode-languageserver-types"; @@ -79081,15 +77641,6 @@ let sha512 = "QjXB7CKIfFzKbiCJC4OWC8xUncLsxo19FzGVp/ADFvvi87PlmBSCAtZI5xwGjF5qE0xkLf0jjKUn3DzmpDP52Q=="; }; }; - "vscode-languageserver-types-3.17.0-next.1" = { - name = "vscode-languageserver-types"; - packageName = "vscode-languageserver-types"; - version = "3.17.0-next.1"; - src = fetchurl { - url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.0-next.1.tgz"; - sha512 = "VGzh06oynbYa6JbTKUbxOEZN7CYEtWhN7DK5wfzUpeCJl8X8xZX39g2PVfpqXrIEduu7dcJgK007KgnX9tHNKA=="; - }; - }; "vscode-languageserver-types-3.17.0-next.3" = { name = "vscode-languageserver-types"; packageName = "vscode-languageserver-types"; @@ -79117,13 +77668,13 @@ let sha512 = "zHhCWatviizPIq9B7Vh9uvrH6x3sK8itC84HkamnBWoDFJtzBf7SWlpLCZUit72b3os45h6RWQNC9xHRDF8dRA=="; }; }; - "vscode-languageserver-types-3.17.3-next.1" = { + "vscode-languageserver-types-3.17.3-next.3" = { name = "vscode-languageserver-types"; packageName = "vscode-languageserver-types"; - version = "3.17.3-next.1"; + version = "3.17.3-next.3"; src = fetchurl { - url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.3-next.1.tgz"; - sha512 = "i7HXZs5CdNibVHXZORZw9m5Bm0mfXiGhD/tZv6f7arBtz4iatgiiHu2qInxn0fKeahhMJoBbp6irhsL9+E3UAA=="; + url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.17.3-next.3.tgz"; + sha512 = "R36Wi5sHoVc/PsAva0QGoEgw+LRCXPDKcdjFfgoVwrRdrFOdYUkvp5G4NvrPUsVT2f2qS/bSs6QiRxyjNkcR9A=="; }; }; "vscode-languageserver-types-3.5.0" = { @@ -79234,15 +77785,6 @@ let sha512 = "WHV31NZp7EP0JHFPWzhuHuo4+MaHcrTyZZucsCW+wFuF3OQ3mJsOBSfJTqkG53ZN1jdjkfxitbOFLy8pNyKyDA=="; }; }; - "vt-pbf-3.1.3" = { - name = "vt-pbf"; - packageName = "vt-pbf"; - version = "3.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/vt-pbf/-/vt-pbf-3.1.3.tgz"; - sha512 = "2LzDFzt0mZKZ9IpVF2r69G9bXaP2Q2sArJCmcCgvfTdCCZzSyz4aCLoQyUilu37Ll56tCblIZrXFIjNUpGIlmA=="; - }; - }; "vue-2.6.14" = { name = "vue"; packageName = "vue"; @@ -79315,33 +77857,6 @@ let sha512 = "qh3VhDLeh773wjgNTl7ss0VejY9bMMa0GoDG2fQVyDzRFdiU3L7fw74tWZDHNQXdZqxO3EveQroa9ct39D2nqg=="; }; }; - "vue-eslint-parser-9.1.0" = { - name = "vue-eslint-parser"; - packageName = "vue-eslint-parser"; - version = "9.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-9.1.0.tgz"; - sha512 = "NGn/iQy8/Wb7RrRa4aRkokyCZfOUWk19OP5HP6JEozQFX5AoS/t+Z0ZN7FY4LlmWc4FNI922V7cvX28zctN8dQ=="; - }; - }; - "vue-fullscreen-2.6.1" = { - name = "vue-fullscreen"; - packageName = "vue-fullscreen"; - version = "2.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/vue-fullscreen/-/vue-fullscreen-2.6.1.tgz"; - sha512 = "bbMJDKj2ZhsAwLcsvh8oV8WJeqAr2zxTHysvf7H8wSqaJTn5CnHXMSMbP9Tz4L/54I7jNQIdyA7VZ+EKAG+svg=="; - }; - }; - "vue-gettext-2.1.12" = { - name = "vue-gettext"; - packageName = "vue-gettext"; - version = "2.1.12"; - src = fetchurl { - url = "https://registry.npmjs.org/vue-gettext/-/vue-gettext-2.1.12.tgz"; - sha512 = "7Kw36xtKvARp8ZafQGPK9WR6EM+dhFUikR5f0+etSkiHuvUM3yf1HsRDLYoLLdJ0AMaXxKwgekumzvCk6KX8rA=="; - }; - }; "vue-hot-reload-api-2.3.4" = { name = "vue-hot-reload-api"; packageName = "vue-hot-reload-api"; @@ -79351,15 +77866,6 @@ let sha512 = "BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog=="; }; }; - "vue-infinite-scroll-2.0.2" = { - name = "vue-infinite-scroll"; - packageName = "vue-infinite-scroll"; - version = "2.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/vue-infinite-scroll/-/vue-infinite-scroll-2.0.2.tgz"; - sha512 = "n+YghR059YmciANGJh9SsNWRi1YZEBVlODtmnb/12zI+4R72QZSWd+EuZ5mW6auEo/yaJXgxzwsuhvALVnm73A=="; - }; - }; "vue-loader-15.10.1" = { name = "vue-loader"; packageName = "vue-loader"; @@ -79369,15 +77875,6 @@ let sha512 = "SaPHK1A01VrNthlix6h1hq4uJu7S/z0kdLUb6klubo738NeQoLbS6V9/d8Pv19tU0XdQKju3D1HSKuI8wJ5wMA=="; }; }; - "vue-loader-plugin-1.3.0" = { - name = "vue-loader-plugin"; - packageName = "vue-loader-plugin"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vue-loader-plugin/-/vue-loader-plugin-1.3.0.tgz"; - sha512 = "kzWyVB81zHnkv41tAC2nQtRKDWEA3od791FWjV/JOg9TSaop6Uvt92VWIPQQ84FK2UQYP4Ah99vAaVZXSnIgYA=="; - }; - }; "vue-loader-v16-16.8.3" = { name = "vue-loader-v16"; packageName = "vue-loader-v16"; @@ -79387,15 +77884,6 @@ let sha512 = "7vKN45IxsKxe5GcVCbc2qFU5aWzyiLrYJyUuMz4BQLKctCj/fmCa0w6fGiiQ2cLFetNcek1ppGJQDCup0c1hpA=="; }; }; - "vue-luxon-0.10.0" = { - name = "vue-luxon"; - packageName = "vue-luxon"; - version = "0.10.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vue-luxon/-/vue-luxon-0.10.0.tgz"; - sha512 = "edMqK3qfWNze9z7Upbkb6RSI5XFFwaU3LwD6ZPJJPBhinTg1VBH7Rn8qNi5+5GmHMcbp2ybnOWm78m5lTjznFw=="; - }; - }; "vue-onsenui-helper-json-1.0.2" = { name = "vue-onsenui-helper-json"; packageName = "vue-onsenui-helper-json"; @@ -79423,15 +77911,6 @@ let sha512 = "FUlILrW3DGitS2h+Xaw8aRNvGTwtuaxrRkNSHWTizOfLUie7wuYwezeZ50iflRn8YPV5kxmU2LQuu3nM/b3Zsg=="; }; }; - "vue-router-3.6.5" = { - name = "vue-router"; - packageName = "vue-router"; - version = "3.6.5"; - src = fetchurl { - url = "https://registry.npmjs.org/vue-router/-/vue-router-3.6.5.tgz"; - sha512 = "VYXZQLtjuvKxxcshuRAwjHnciqZVoXAjTjcqBTz4rKc8qih9g9pI3hbDjmqXaHdgL3v8pV6P8Z335XvHzESxLQ=="; - }; - }; "vue-style-loader-4.1.3" = { name = "vue-style-loader"; packageName = "vue-style-loader"; @@ -79468,24 +77947,6 @@ let sha512 = "4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw=="; }; }; - "vue2-filters-0.14.0" = { - name = "vue2-filters"; - packageName = "vue2-filters"; - version = "0.14.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vue2-filters/-/vue2-filters-0.14.0.tgz"; - sha512 = "2tFWC6gx1SVIr+6VXoufkL+bZa8Gn0/P09T/bnGjOEAGH1+eVT05bPm/VF2V/nL/HMyWkLdlvxKh9JNqpfFlyw=="; - }; - }; - "vuetify-1.5.24" = { - name = "vuetify"; - packageName = "vuetify"; - version = "1.5.24"; - src = fetchurl { - url = "https://registry.npmjs.org/vuetify/-/vuetify-1.5.24.tgz"; - sha512 = "guFOgEgZ8VpSgNXOv1QL2fOliaJBoiyNnf+bBqcXsnIppJGRlW1wyT6Ux7ZlQyphSHs+UK1aJNUjcyAtoOiHWg=="; - }; - }; "vuetify-2.5.10" = { name = "vuetify"; packageName = "vuetify"; @@ -79603,13 +78064,13 @@ let sha512 = "rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w=="; }; }; - "wasm-feature-detect-1.3.0" = { + "wasm-feature-detect-1.4.0" = { name = "wasm-feature-detect"; packageName = "wasm-feature-detect"; - version = "1.3.0"; + version = "1.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/wasm-feature-detect/-/wasm-feature-detect-1.3.0.tgz"; - sha512 = "w9datO3OReMouWgKOelvu1CozmLK/VbkXOtlzNTanBJpR0uBHyUwS3EYdXf5vBPoHKYS0lpuYo91rpqMNIZM9g=="; + url = "https://registry.npmjs.org/wasm-feature-detect/-/wasm-feature-detect-1.4.0.tgz"; + sha512 = "9z4Yk3SeHQdb7E4g6ywQYcUt1CHr9HFiCIA5h29rv0gmW4lCE5dnDhheiJI5qzVPSDnXHyXQPLGPyucsuIzacw=="; }; }; "watchpack-1.7.5" = { @@ -79900,15 +78361,6 @@ let sha512 = "6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q=="; }; }; - "webpack-5.74.0" = { - name = "webpack"; - packageName = "webpack"; - version = "5.74.0"; - src = fetchurl { - url = "https://registry.npmjs.org/webpack/-/webpack-5.74.0.tgz"; - sha512 = "A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA=="; - }; - }; "webpack-5.75.0" = { name = "webpack"; packageName = "webpack"; @@ -80026,15 +78478,6 @@ let sha512 = "mrG3bJGX4jgWbrpY0ghIpPgCmNhZziFMBJBmZfpIe6K/P1rWPkdkbGihbCUIufgQ8ruX4txE5/CKSeFNzDcYOw=="; }; }; - "webpack-hot-middleware-2.25.3" = { - name = "webpack-hot-middleware"; - packageName = "webpack-hot-middleware"; - version = "2.25.3"; - src = fetchurl { - url = "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.25.3.tgz"; - sha512 = "IK/0WAHs7MTu1tzLTjio73LjS3Ov+VvBKQmE8WPlJutgG5zT6Urgq/BbAdRrHTRpyzK0dvAvFh1Qg98akxgZpA=="; - }; - }; "webpack-log-2.0.0" = { name = "webpack-log"; packageName = "webpack-log"; @@ -80053,24 +78496,6 @@ let sha512 = "9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ=="; }; }; - "webpack-manifest-plugin-5.0.0" = { - name = "webpack-manifest-plugin"; - packageName = "webpack-manifest-plugin"; - version = "5.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-5.0.0.tgz"; - sha512 = "8RQfMAdc5Uw3QbCQ/CBV/AXqOR8mt03B6GJmRbhWopE8GzRfEpn+k0ZuWywxW+5QZsffhmFDY1J6ohqJo+eMuw=="; - }; - }; - "webpack-md5-hash-0.0.6" = { - name = "webpack-md5-hash"; - packageName = "webpack-md5-hash"; - version = "0.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/webpack-md5-hash/-/webpack-md5-hash-0.0.6.tgz"; - sha512 = "HrQ0AJpeXHRa3IjsgyyEfTx8EqYs5y/4x/WklSYsNDcqBixHzCkrmJV5U+4ks+sx7ycKoIdqWLdyuk913FCS+Q=="; - }; - }; "webpack-merge-4.2.2" = { name = "webpack-merge"; packageName = "webpack-merge"; @@ -80125,15 +78550,6 @@ let sha512 = "lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ=="; }; }; - "webpack-sources-2.3.1" = { - name = "webpack-sources"; - packageName = "webpack-sources"; - version = "2.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-2.3.1.tgz"; - sha512 = "y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA=="; - }; - }; "webpack-sources-3.2.3" = { name = "webpack-sources"; packageName = "webpack-sources"; @@ -80188,13 +78604,13 @@ let sha512 = "7iZ+u28Ljw5hCnMiq0BCOeSYf0vCFQe/ORY0HgscTiKjQed8WqugpBUggJ2NTnB9fahn1kEnPRX2jf8Px5PhJw=="; }; }; - "webtorrent-1.9.6" = { + "webtorrent-1.9.7" = { name = "webtorrent"; packageName = "webtorrent"; - version = "1.9.6"; + version = "1.9.7"; src = fetchurl { - url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.9.6.tgz"; - sha512 = "fJtVlqeg7s4G3MHppdONfHfspvdfJPTEgSUnc4W+i0tCtl1hyWHSdodC2T4VtNNE00Rdy60dLji3Ai0Y/FXvow=="; + url = "https://registry.npmjs.org/webtorrent/-/webtorrent-1.9.7.tgz"; + sha512 = "N+hRuVctWviTAYem/sI6tuFP2J/Rn3/ETEh++7GnJv6Oro49kDjcPuz1W6s+vfS65xKr3Eh4HMuxf3hH82LGfg=="; }; }; "webworkify-webpack-2.1.5" = { @@ -80809,6 +79225,15 @@ let sha512 = "mO8XtqyPvykVCsrwj5MlOVWvSnCdT+C+QVbm6blradR7JExAhbkZ7hZ9A+9NUtwzSqrlUo9a67ws0EiILrvRpw=="; }; }; + "wordwrapjs-4.0.1" = { + name = "wordwrapjs"; + packageName = "wordwrapjs"; + version = "4.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/wordwrapjs/-/wordwrapjs-4.0.1.tgz"; + sha512 = "kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA=="; + }; + }; "worker-farm-1.5.2" = { name = "worker-farm"; packageName = "worker-farm"; @@ -81160,15 +79585,6 @@ let sha512 = "F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q=="; }; }; - "ws-8.10.0" = { - name = "ws"; - packageName = "ws"; - version = "8.10.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ws/-/ws-8.10.0.tgz"; - sha512 = "+s49uSmZpvtAsd2h37vIPy1RBusaLawVe8of+GyEPsaJTCMpj/2v8NpeK1SHXjBlQ95lQTmQofOJnFiLoaN3yw=="; - }; - }; "ws-8.11.0" = { name = "ws"; packageName = "ws"; @@ -81178,6 +79594,15 @@ let sha512 = "HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg=="; }; }; + "ws-8.12.0" = { + name = "ws"; + packageName = "ws"; + version = "8.12.0"; + src = fetchurl { + url = "https://registry.npmjs.org/ws/-/ws-8.12.0.tgz"; + sha512 = "kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig=="; + }; + }; "ws-8.2.3" = { name = "ws"; packageName = "ws"; @@ -81304,13 +79729,13 @@ let sha512 = "N1XQngeqMBoj9wM4ZFadVV2MymImeiFfYD+fJrNlcVcOHsJFFQe7n3b+aBoTPwARuq2HQxukfzVpQmAk1gN4sQ=="; }; }; - "xdl-59.2.55" = { + "xdl-59.3.0" = { name = "xdl"; packageName = "xdl"; - version = "59.2.55"; + version = "59.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/xdl/-/xdl-59.2.55.tgz"; - sha512 = "6XLpWpPFUsjH2gwpvCMRx4vJjszRonX1UxF8LpLYdZi0jZB1fvppweUYJjdQ8RaS62pEm3TBRq+JwB0RIFlFwA=="; + url = "https://registry.npmjs.org/xdl/-/xdl-59.3.0.tgz"; + sha512 = "+7HeQDo13SWNCktnmggutegmWBIgF5TzKLPpaZe3qhlTXRETdNvQUbuYfaETLlcwk372jzvO7navUgxUvFrpNA=="; }; }; "xenvar-0.5.1" = { @@ -81466,15 +79891,6 @@ let sha512 = "t3QW+VdXvxcy214Wf5Mvb+38RPW6EUG1RpMjjtG+esbAFh+/50PdXz1iGywefNl70DW2ucNWTXBw5buTgzDWyw=="; }; }; - "xmlbuilder-10.1.1" = { - name = "xmlbuilder"; - packageName = "xmlbuilder"; - version = "10.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-10.1.1.tgz"; - sha512 = "OyzrcFLL/nb6fMGHbiRDuPup9ljBycsdCypwuyg5AAHvyWzGfChJpCXMG88AGTIMFhGZ9RccFN1e6lhg3hkwKg=="; - }; - }; "xmlbuilder-11.0.1" = { name = "xmlbuilder"; packageName = "xmlbuilder"; @@ -81710,6 +80126,15 @@ let sha512 = "F6WF5s6xG/bm8Oxi2ETuzwGQW8yleL5I4JPxZl49m7Uw7D4LAXu+4dvUK78Uo4D863sM8auqw6+1Xmj9mFlmDQ=="; }; }; + "xstate-4.35.2" = { + name = "xstate"; + packageName = "xstate"; + version = "4.35.2"; + src = fetchurl { + url = "https://registry.npmjs.org/xstate/-/xstate-4.35.2.tgz"; + sha512 = "5X7EyJv5OHHtGQwN7DsmCAbSnDs3Mxl1cXQ4PVaLwi+7p/RRapERnd1dFyHjYin+KQoLLfuXpl1dPBThgyIGNg=="; + }; + }; "xstream-11.14.0" = { name = "xstream"; packageName = "xstream"; @@ -81755,15 +80180,6 @@ let sha512 = "ibF0Or+FivM9lNrg+HGJfVX8WJqgo+kCLDc4vx6xMeTce7Aj+DLttKbxxRR/gNLSAelRc1omAPlJ77N/Jem07A=="; }; }; - "xxhashjs-0.2.2" = { - name = "xxhashjs"; - packageName = "xxhashjs"; - version = "0.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/xxhashjs/-/xxhashjs-0.2.2.tgz"; - sha512 = "AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw=="; - }; - }; "y18n-3.2.2" = { name = "y18n"; packageName = "y18n"; @@ -81836,22 +80252,13 @@ let sha512 = "5kGSQrzDyjCk0BLuFfjkoUE9vYcoyrwZIZ+GnpOSM9vhkvPjItYiWJ1jpRSo0aU4QmsoNrFwDT4O7XS2UGcBQg=="; }; }; - "yaml-2.1.1" = { + "yaml-2.2.1" = { name = "yaml"; packageName = "yaml"; - version = "2.1.1"; + version = "2.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/yaml/-/yaml-2.1.1.tgz"; - sha512 = "o96x3OPo8GjWeSLF+wOAbrPfhFOGY0W00GNaxCDv+9hkcDJEnev1yh8S7pgHF0ik6zc8sQLuL8hjHjJULZp8bw=="; - }; - }; - "yaml-2.2.0" = { - name = "yaml"; - packageName = "yaml"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/yaml/-/yaml-2.2.0.tgz"; - sha512 = "auf7Gi6QwO7HW//GA9seGvTXVGWl1CM/ADWh1+RxtXr6XOxnT65ovDl9fTi4e0monEyJxCHqDpF6QnFDXmJE4g=="; + url = "https://registry.npmjs.org/yaml/-/yaml-2.2.1.tgz"; + sha512 = "e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw=="; }; }; "yaml-ast-parser-0.0.43" = { @@ -82502,13 +80909,13 @@ let sha512 = "1MzNQdAvO+54H+EaK5YpyEy0T+Ejo/7YLHS93G3RnYWh5gaotGHwGeN/ZO687qEDU2y4CdStQYXVHIgrUl5UVQ=="; }; }; - "zwave-js-10.3.1" = { + "zwave-js-10.4.0" = { name = "zwave-js"; packageName = "zwave-js"; - version = "10.3.1"; + version = "10.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/zwave-js/-/zwave-js-10.3.1.tgz"; - sha512 = "7H4JwvYWAUPlwwBrKyxj0LwwryOQGBOOzWilbJ97DmFZbINUHr5fjuPf/w0BDu+B15YzjVKkdM1BCB4FvhBCYg=="; + url = "https://registry.npmjs.org/zwave-js/-/zwave-js-10.4.0.tgz"; + sha512 = "9eVe+7xli+KOvoyakXPMI1a5Mhkjlwi2t6Gniuyu+s6U8rOCd8NmhHvvzB2p+2KLRjuYjBRqPNA5c8qAsvC+ug=="; }; }; "zwitch-1.0.5" = { @@ -82544,35 +80951,32 @@ in "@angular/cli" = nodeEnv.buildNodePackage { name = "_at_angular_slash_cli"; packageName = "@angular/cli"; - version = "15.0.4"; + version = "15.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/@angular/cli/-/cli-15.0.4.tgz"; - sha512 = "dQEus458EvBYZuM10UPO/1BYshV3cprY4os6uQj6YLdEwOogElkAedUILgtTYOo3jrwc+qjefHVJbz6R+xJCOg=="; + url = "https://registry.npmjs.org/@angular/cli/-/cli-15.1.1.tgz"; + sha512 = "539I3B5yTasaX/EQrXZyXOc9eZUyVBxMWiGj3/bmlCsft7/Y8J+A92uftjxIO4P8lYWzSdSxFT3Bu1zI1b6yzw=="; }; dependencies = [ - sources."@angular-devkit/architect-0.1500.4" - sources."@angular-devkit/core-15.0.4" - sources."@angular-devkit/schematics-15.0.4" + sources."@angular-devkit/architect-0.1501.1" + sources."@angular-devkit/core-15.1.1" + sources."@angular-devkit/schematics-15.1.1" sources."@gar/promisify-1.1.3" + sources."@jridgewell/sourcemap-codec-1.4.14" sources."@npmcli/fs-2.1.2" - (sources."@npmcli/git-4.0.3" // { - dependencies = [ - sources."proc-log-3.0.0" - ]; - }) + sources."@npmcli/git-4.0.3" sources."@npmcli/installed-package-contents-2.0.1" sources."@npmcli/move-file-2.0.1" sources."@npmcli/node-gyp-3.0.0" sources."@npmcli/promise-spawn-6.0.2" sources."@npmcli/run-script-6.0.0" - sources."@schematics/angular-15.0.4" + sources."@schematics/angular-15.1.1" sources."@tootallnate/once-2.0.0" sources."@yarnpkg/lockfile-1.1.0" sources."abbrev-1.1.1" sources."agent-base-6.0.2" sources."agentkeepalive-4.2.1" sources."aggregate-error-3.1.0" - sources."ajv-8.11.0" + sources."ajv-8.12.0" sources."ajv-formats-2.1.1" sources."ansi-colors-4.1.3" sources."ansi-escapes-4.3.2" @@ -82593,10 +80997,8 @@ in dependencies = [ sources."@npmcli/fs-3.1.0" sources."brace-expansion-2.0.1" - sources."fs-minipass-3.0.0" - sources."glob-8.0.3" - sources."minimatch-5.1.2" - sources."minipass-4.0.0" + sources."glob-8.1.0" + sources."minimatch-5.1.6" sources."unique-filename-3.0.0" sources."unique-slug-4.0.0" ]; @@ -82635,7 +81037,7 @@ in sources."fast-deep-equal-3.1.3" sources."figures-3.2.0" sources."fill-range-7.0.1" - sources."fs-minipass-2.1.0" + sources."fs-minipass-3.0.0" sources."fs.realpath-1.0.0" sources."fsevents-2.3.2" sources."function-bind-1.1.1" @@ -82647,7 +81049,7 @@ in sources."has-1.0.3" sources."has-flag-4.0.0" sources."has-unicode-2.0.1" - sources."hosted-git-info-5.2.1" + sources."hosted-git-info-6.1.1" sources."http-cache-semantics-4.1.0" sources."http-proxy-agent-5.0.0" sources."https-proxy-agent-5.0.1" @@ -82657,7 +81059,7 @@ in (sources."ignore-walk-6.0.0" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" ]; }) sources."imurmurhash-0.1.4" @@ -82692,26 +81094,56 @@ in sources."lodash-4.17.21" sources."log-symbols-4.1.0" sources."lru-cache-7.14.1" - sources."magic-string-0.26.7" + sources."magic-string-0.27.0" (sources."make-fetch-happen-10.2.1" // { dependencies = [ sources."brace-expansion-2.0.1" sources."cacache-16.1.3" - sources."glob-8.0.3" - sources."minimatch-5.1.2" + sources."fs-minipass-2.1.0" + sources."glob-8.1.0" + sources."minimatch-5.1.6" + sources."minipass-3.3.6" sources."ssri-9.0.1" ]; }) sources."mimic-fn-2.1.0" sources."minimatch-3.1.2" - sources."minipass-3.3.6" - sources."minipass-collect-1.0.2" - sources."minipass-fetch-2.1.2" - sources."minipass-flush-1.0.5" - sources."minipass-json-stream-1.0.1" - sources."minipass-pipeline-1.2.4" - sources."minipass-sized-1.0.3" - sources."minizlib-2.1.2" + sources."minipass-4.0.0" + (sources."minipass-collect-1.0.2" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) + (sources."minipass-fetch-2.1.2" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) + (sources."minipass-flush-1.0.5" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) + (sources."minipass-json-stream-1.0.1" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) + (sources."minipass-pipeline-1.2.4" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) + (sources."minipass-sized-1.0.3" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) + (sources."minizlib-2.1.2" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) sources."mkdirp-1.0.4" sources."ms-2.1.2" sources."mute-stream-0.0.8" @@ -82722,34 +81154,18 @@ in ]; }) sources."nopt-6.0.0" - (sources."normalize-package-data-5.0.0" // { - dependencies = [ - sources."hosted-git-info-6.1.1" - ]; - }) + sources."normalize-package-data-5.0.0" sources."normalize-path-3.0.0" sources."npm-bundled-3.0.0" sources."npm-install-checks-6.0.0" sources."npm-normalize-package-bin-3.0.0" - sources."npm-package-arg-9.1.2" + sources."npm-package-arg-10.1.0" sources."npm-packlist-7.0.4" - (sources."npm-pick-manifest-8.0.1" // { - dependencies = [ - sources."hosted-git-info-6.1.1" - sources."npm-package-arg-10.1.0" - sources."proc-log-3.0.0" - sources."validate-npm-package-name-5.0.0" - ]; - }) + sources."npm-pick-manifest-8.0.1" (sources."npm-registry-fetch-14.0.3" // { dependencies = [ - sources."hosted-git-info-6.1.1" sources."make-fetch-happen-11.0.2" - sources."minipass-4.0.0" sources."minipass-fetch-3.0.1" - sources."npm-package-arg-10.1.0" - sources."proc-log-3.0.0" - sources."validate-npm-package-name-5.0.0" ]; }) sources."npmlog-6.0.2" @@ -82759,26 +81175,19 @@ in sources."ora-5.4.1" sources."os-tmpdir-1.0.2" sources."p-map-4.0.0" - (sources."pacote-15.0.6" // { - dependencies = [ - sources."hosted-git-info-6.1.1" - sources."npm-package-arg-10.1.0" - sources."proc-log-3.0.0" - sources."validate-npm-package-name-5.0.0" - ]; - }) + sources."pacote-15.0.8" sources."path-is-absolute-1.0.1" sources."path-parse-1.0.7" sources."picomatch-2.3.1" - sources."proc-log-2.0.1" + sources."proc-log-3.0.0" sources."promise-inflight-1.0.1" sources."promise-retry-2.0.1" - sources."punycode-2.1.1" + sources."punycode-2.2.0" (sources."read-package-json-6.0.0" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."glob-8.0.3" - sources."minimatch-5.1.2" + sources."glob-8.1.0" + sources."minimatch-5.1.6" ]; }) sources."read-package-json-fast-3.0.2" @@ -82805,16 +81214,11 @@ in sources."socks-2.7.1" sources."socks-proxy-agent-7.0.0" sources."source-map-0.7.4" - sources."sourcemap-codec-1.4.8" sources."spdx-correct-3.1.1" sources."spdx-exceptions-2.3.0" sources."spdx-expression-parse-3.0.1" sources."spdx-license-ids-3.0.12" - (sources."ssri-10.0.1" // { - dependencies = [ - sources."minipass-4.0.0" - ]; - }) + sources."ssri-10.0.1" sources."string-width-4.2.3" sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" @@ -82823,7 +81227,11 @@ in sources."symbol-observable-4.0.0" (sources."tar-6.1.13" // { dependencies = [ - sources."minipass-4.0.0" + (sources."fs-minipass-2.1.0" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) ]; }) sources."through-2.3.8" @@ -82836,7 +81244,7 @@ in sources."uri-js-4.4.1" sources."util-deprecate-1.0.2" sources."validate-npm-package-license-3.0.4" - sources."validate-npm-package-name-4.0.0" + sources."validate-npm-package-name-5.0.0" sources."wcwidth-1.0.1" sources."which-3.0.0" sources."wide-align-1.1.5" @@ -82898,7 +81306,7 @@ in sources."buffer-6.0.3" sources."colorette-2.0.19" sources."commander-9.4.1" - sources."convict-6.2.3" + sources."convict-6.2.4" sources."dateformat-4.6.3" sources."end-of-stream-1.4.4" sources."event-target-shim-5.0.1" @@ -82907,7 +81315,7 @@ in sources."fast-redact-3.1.2" sources."fast-safe-stringify-2.1.1" sources."fs.realpath-1.0.0" - sources."glob-8.0.3" + sources."glob-8.1.0" (sources."help-me-4.2.0" // { dependencies = [ sources."readable-stream-3.6.0" @@ -82918,30 +81326,30 @@ in sources."inherits-2.0.4" sources."joycon-3.1.1" sources."js-yaml-4.1.0" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."lodash.clonedeep-4.5.0" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" sources."minimist-1.2.7" sources."on-exit-leak-free-2.1.0" sources."once-1.4.0" sources."pino-8.7.0" sources."pino-abstract-transport-1.0.0" sources."pino-pretty-9.1.1" - sources."pino-std-serializers-6.0.0" + sources."pino-std-serializers-6.1.0" sources."process-0.11.10" sources."process-warning-2.1.0" sources."pump-3.0.0" sources."quick-format-unescaped-4.0.4" - sources."readable-stream-4.2.0" + sources."readable-stream-4.3.0" sources."real-require-0.2.0" sources."safe-buffer-5.2.1" - sources."safe-stable-stringify-2.4.1" - sources."secure-json-parse-2.6.0" + sources."safe-stable-stringify-2.4.2" + sources."secure-json-parse-2.7.0" sources."sonic-boom-3.2.1" sources."split2-4.1.0" sources."string_decoder-1.3.0" sources."strip-json-comments-3.1.1" - sources."thread-stream-2.2.0" + sources."thread-stream-2.3.0" sources."util-deprecate-1.0.2" sources."wrappy-1.0.2" sources."yargs-parser-20.2.9" @@ -83010,7 +81418,7 @@ in sources."colorette-2.0.19" sources."concat-map-0.0.1" sources."convert-source-map-1.9.0" - sources."convict-6.2.3" + sources."convict-6.2.4" sources."core-util-is-1.0.3" sources."crc-32-1.2.2" sources."dateformat-4.6.3" @@ -83052,8 +81460,8 @@ in (sources."help-me-4.2.0" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."glob-8.0.3" - sources."minimatch-5.1.2" + sources."glob-8.1.0" + sources."minimatch-5.1.6" ]; }) sources."hpagent-1.1.0" @@ -83077,7 +81485,7 @@ in sources."joycon-3.1.1" sources."js-yaml-4.1.0" sources."json-stable-stringify-without-jsonify-1.0.1" - sources."json5-2.2.2" + sources."json5-2.2.3" (sources."lazystream-1.0.1" // { dependencies = [ sources."readable-stream-2.3.7" @@ -83113,15 +81521,15 @@ in sources."pino-8.7.0" (sources."pino-abstract-transport-1.0.0" // { dependencies = [ - sources."readable-stream-4.2.0" + sources."readable-stream-4.3.0" ]; }) (sources."pino-pretty-9.1.1" // { dependencies = [ - sources."readable-stream-4.2.0" + sources."readable-stream-4.3.0" ]; }) - sources."pino-std-serializers-6.0.0" + sources."pino-std-serializers-6.1.0" sources."process-0.11.10" sources."process-nextick-args-2.0.1" sources."process-warning-2.1.0" @@ -83139,8 +81547,8 @@ in sources."require-from-string-2.0.2" sources."resolve-options-1.1.0" sources."safe-buffer-5.1.2" - sources."safe-stable-stringify-2.4.1" - sources."secure-json-parse-2.6.0" + sources."safe-stable-stringify-2.4.2" + sources."secure-json-parse-2.7.0" sources."sha.js-2.4.11" sources."should-proxy-1.0.4" sources."simple-concat-1.0.1" @@ -83151,7 +81559,7 @@ in sources."stream-shift-1.0.1" sources."string_decoder-1.1.1" sources."strip-json-comments-3.1.1" - sources."thread-stream-2.2.0" + sources."thread-stream-2.3.0" sources."through-2.3.8" (sources."through2-2.0.5" // { dependencies = [ @@ -83202,13 +81610,13 @@ in "@astrojs/language-server" = nodeEnv.buildNodePackage { name = "_at_astrojs_slash_language-server"; packageName = "@astrojs/language-server"; - version = "0.29.1"; + version = "0.29.4"; src = fetchurl { - url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-0.29.1.tgz"; - sha512 = "nfPbJPqnk5L0FC5kfOt2NbwZ/6osFeaDHkEk31JtsvQd8WqRWvpggqPuQV1gtGylsWfRd56mgq3Mb4fEK0T12w=="; + url = "https://registry.npmjs.org/@astrojs/language-server/-/language-server-0.29.4.tgz"; + sha512 = "ZcvMVz4ItsLe+Ey6Ucrp+HYYT5Bc9BeNlQ7QYWVyHYqoke/HvlHXHPScj04LxVJ2Iq9FXjj4yRNFxBWj8P5J2g=="; }; dependencies = [ - sources."@astrojs/compiler-0.29.19" + sources."@astrojs/compiler-0.31.4" sources."@emmetio/abbreviation-2.2.3" sources."@emmetio/css-abbreviation-2.1.4" sources."@emmetio/scanner-1.0.0" @@ -83216,7 +81624,7 @@ in sources."@jridgewell/sourcemap-codec-1.4.14" sources."@jridgewell/trace-mapping-0.3.17" sources."@pkgr/utils-2.3.1" - (sources."@vscode/emmet-helper-2.8.4" // { + (sources."@vscode/emmet-helper-2.8.6" // { dependencies = [ sources."vscode-uri-2.1.2" ]; @@ -83237,18 +81645,14 @@ in sources."open-8.4.0" sources."path-key-3.1.1" sources."picocolors-1.0.0" - sources."prettier-2.8.1" - (sources."prettier-plugin-astro-0.7.0" // { - dependencies = [ - sources."synckit-0.8.4" - ]; - }) + sources."prettier-2.8.3" + sources."prettier-plugin-astro-0.7.2" sources."s.color-0.0.15" sources."sass-formatter-0.7.5" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."suf-log-2.5.3" - sources."synckit-0.7.3" + sources."synckit-0.8.4" sources."tiny-glob-0.2.9" sources."tslib-2.4.1" sources."vscode-css-languageservice-6.2.1" @@ -83256,9 +81660,8 @@ in sources."vscode-jsonrpc-8.0.2" sources."vscode-languageserver-8.0.2" sources."vscode-languageserver-protocol-3.17.2" - sources."vscode-languageserver-textdocument-1.0.8" + sources."vscode-languageserver-textdocument-1.0.9" sources."vscode-languageserver-types-3.17.2" - sources."vscode-nls-5.2.0" sources."vscode-uri-3.0.7" sources."which-2.0.2" ]; @@ -83274,16 +81677,16 @@ in "@bitwarden/cli" = nodeEnv.buildNodePackage { name = "_at_bitwarden_slash_cli"; packageName = "@bitwarden/cli"; - version = "2022.11.0"; + version = "2023.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/@bitwarden/cli/-/cli-2022.11.0.tgz"; - sha512 = "y+4LvvFKoIfsAx+2CZMxtPDNv5vJlQgkQ+VMgdHO0UVbz8uY5oIPk1V8hafbL13hhR/6mneDEErNpuUmY42qzQ=="; + url = "https://registry.npmjs.org/@bitwarden/cli/-/cli-2023.1.0.tgz"; + sha512 = "/90Op7H2EAsqbkEgJYUhgogf08m0QtS+pE5DaPcGvJDB6JNuQldRA//qmQIHPGAJiOsu6jb3/zIvRPNWEiyjsg=="; }; dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.5" - sources."@babel/core-7.20.7" + sources."@babel/compat-data-7.20.10" + sources."@babel/core-7.20.12" (sources."@babel/generator-7.20.7" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" @@ -83294,7 +81697,7 @@ in sources."@babel/helper-function-name-7.19.0" sources."@babel/helper-hoist-variables-7.18.6" sources."@babel/helper-module-imports-7.18.6" - sources."@babel/helper-module-transforms-7.20.7" + sources."@babel/helper-module-transforms-7.20.11" sources."@babel/helper-plugin-utils-7.20.2" sources."@babel/helper-simple-access-7.20.2" sources."@babel/helper-split-export-declaration-7.18.6" @@ -83310,9 +81713,9 @@ in sources."@babel/parser-7.20.7" sources."@babel/plugin-proposal-export-namespace-from-7.18.9" sources."@babel/plugin-syntax-export-namespace-from-7.8.3" - sources."@babel/plugin-transform-modules-commonjs-7.20.7" + sources."@babel/plugin-transform-modules-commonjs-7.20.11" sources."@babel/template-7.20.7" - sources."@babel/traverse-7.20.8" + sources."@babel/traverse-7.20.12" sources."@babel/types-7.20.7" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" @@ -83369,7 +81772,7 @@ in sources."bytes-3.1.2" sources."cache-content-type-1.0.1" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" sources."canvas-2.11.0" (sources."chalk-4.1.2" // { dependencies = [ @@ -83509,7 +81912,7 @@ in }) sources."jsesc-2.5.2" sources."json-stringify-safe-5.0.1" - sources."json5-2.2.2" + sources."json5-2.2.3" (sources."jszip-3.10.1" // { dependencies = [ sources."isarray-1.0.0" @@ -83565,7 +81968,7 @@ in sources."mute-stream-0.0.8" sources."nan-2.17.0" sources."negotiator-0.6.3" - (sources."node-fetch-2.6.7" // { + (sources."node-fetch-2.6.8" // { dependencies = [ sources."tr46-0.0.3" sources."webidl-conversions-3.0.1" @@ -83573,13 +81976,13 @@ in ]; }) sources."node-forge-1.3.1" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."node-releases-2.0.8" sources."nopt-5.0.0" sources."npmlog-5.0.1" sources."nwsapi-2.2.2" sources."object-assign-4.1.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."on-finished-2.4.1" sources."once-1.4.0" sources."onetime-5.1.2" @@ -83599,7 +82002,7 @@ in sources."process-nextick-args-2.0.1" sources."proper-lockfile-4.1.2" sources."psl-1.9.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.11.0" sources."querystringify-2.2.0" (sources."raw-body-2.5.1" // { @@ -83654,8 +82057,8 @@ in ]; }) sources."through-2.3.8" - sources."tldts-5.7.103" - sources."tldts-core-5.7.103" + sources."tldts-5.7.104" + sources."tldts-core-5.7.104" sources."tmp-0.0.33" sources."to-fast-properties-2.0.0" sources."toidentifier-1.0.1" @@ -83704,10 +82107,10 @@ in "@commitlint/cli" = nodeEnv.buildNodePackage { name = "_at_commitlint_slash_cli"; packageName = "@commitlint/cli"; - version = "17.3.0"; + version = "17.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/cli/-/cli-17.3.0.tgz"; - sha512 = "/H0md7TsKflKzVPz226VfXzVafJFO1f9+r2KcFvmBu08V0T56lZU1s8WL7/xlxqLMqBTVaBf7Ixtc4bskdEEZg=="; + url = "https://registry.npmjs.org/@commitlint/cli/-/cli-17.4.2.tgz"; + sha512 = "0rPGJ2O1owhpxMIXL9YJ2CgPkdrFLKZElIZHXDN8L8+qWK1DGH7Q7IelBT1pchXTYTuDlqkOTdh//aTvT3bSUA=="; }; dependencies = [ sources."@babel/code-frame-7.18.6" @@ -83722,20 +82125,20 @@ in sources."supports-color-5.5.0" ]; }) - sources."@commitlint/config-validator-17.1.0" - sources."@commitlint/ensure-17.3.0" - sources."@commitlint/execute-rule-17.0.0" - sources."@commitlint/format-17.0.0" - sources."@commitlint/is-ignored-17.2.0" - sources."@commitlint/lint-17.3.0" - sources."@commitlint/load-17.3.0" - sources."@commitlint/message-17.2.0" - sources."@commitlint/parse-17.2.0" - sources."@commitlint/read-17.2.0" - sources."@commitlint/resolve-extends-17.3.0" - sources."@commitlint/rules-17.3.0" - sources."@commitlint/to-lines-17.0.0" - (sources."@commitlint/top-level-17.0.0" // { + sources."@commitlint/config-validator-17.4.0" + sources."@commitlint/ensure-17.4.0" + sources."@commitlint/execute-rule-17.4.0" + sources."@commitlint/format-17.4.0" + sources."@commitlint/is-ignored-17.4.2" + sources."@commitlint/lint-17.4.2" + sources."@commitlint/load-17.4.2" + sources."@commitlint/message-17.4.2" + sources."@commitlint/parse-17.4.2" + sources."@commitlint/read-17.4.2" + sources."@commitlint/resolve-extends-17.4.0" + sources."@commitlint/rules-17.4.2" + sources."@commitlint/to-lines-17.4.0" + (sources."@commitlint/top-level-17.4.0" // { dependencies = [ sources."find-up-5.0.0" sources."locate-path-6.0.0" @@ -83743,38 +82146,38 @@ in sources."p-locate-5.0.0" ]; }) - sources."@commitlint/types-17.0.0" + sources."@commitlint/types-17.4.0" sources."@cspotcode/source-map-support-0.8.1" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/sourcemap-codec-1.4.14" sources."@jridgewell/trace-mapping-0.3.9" - sources."@swc/core-1.3.24" - sources."@swc/core-darwin-arm64-1.3.24" - sources."@swc/core-darwin-x64-1.3.24" - sources."@swc/core-linux-arm-gnueabihf-1.3.24" - sources."@swc/core-linux-arm64-gnu-1.3.24" - sources."@swc/core-linux-arm64-musl-1.3.24" - sources."@swc/core-linux-x64-gnu-1.3.24" - sources."@swc/core-linux-x64-musl-1.3.24" - sources."@swc/core-win32-arm64-msvc-1.3.24" - sources."@swc/core-win32-ia32-msvc-1.3.24" - sources."@swc/core-win32-x64-msvc-1.3.24" - sources."@swc/wasm-1.3.24" + sources."@swc/core-1.3.27" + sources."@swc/core-darwin-arm64-1.3.27" + sources."@swc/core-darwin-x64-1.3.27" + sources."@swc/core-linux-arm-gnueabihf-1.3.27" + sources."@swc/core-linux-arm64-gnu-1.3.27" + sources."@swc/core-linux-arm64-musl-1.3.27" + sources."@swc/core-linux-x64-gnu-1.3.27" + sources."@swc/core-linux-x64-musl-1.3.27" + sources."@swc/core-win32-arm64-msvc-1.3.27" + sources."@swc/core-win32-ia32-msvc-1.3.27" + sources."@swc/core-win32-x64-msvc-1.3.27" + sources."@swc/wasm-1.3.27" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" sources."@types/minimist-1.2.2" - sources."@types/node-14.18.35" + sources."@types/node-18.11.18" sources."@types/normalize-package-data-2.4.1" - sources."@types/parse-json-4.0.0" sources."JSONStream-1.3.5" sources."acorn-8.8.1" sources."acorn-walk-8.2.0" - sources."ajv-8.11.2" + sources."ajv-8.12.0" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."arg-4.1.3" + sources."argparse-2.0.1" sources."array-ify-1.0.0" sources."arrify-1.0.1" sources."callsites-3.1.0" @@ -83787,7 +82190,7 @@ in sources."compare-func-2.0.0" sources."conventional-changelog-angular-5.0.13" sources."conventional-commits-parser-3.2.4" - sources."cosmiconfig-7.1.0" + sources."cosmiconfig-8.0.0" sources."cosmiconfig-typescript-loader-4.3.0" sources."create-require-1.1.1" sources."cross-spawn-7.0.3" @@ -83807,7 +82210,7 @@ in sources."execa-5.1.1" sources."fast-deep-equal-3.1.3" sources."find-up-4.1.0" - sources."fs-extra-10.1.0" + sources."fs-extra-11.1.0" sources."function-bind-1.1.1" sources."get-caller-file-2.0.5" sources."get-stream-6.0.1" @@ -83836,6 +82239,7 @@ in sources."is-text-path-1.0.1" sources."isexe-2.0.0" sources."js-tokens-4.0.0" + sources."js-yaml-4.1.0" sources."json-parse-even-better-errors-2.3.1" sources."json-schema-traverse-1.0.0" sources."jsonfile-6.1.0" @@ -83875,7 +82279,7 @@ in sources."path-key-3.1.1" sources."path-parse-1.0.7" sources."path-type-4.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."q-1.5.1" sources."quick-lru-4.0.1" (sources."read-pkg-5.2.0" // { @@ -83899,7 +82303,7 @@ in sources."resolve-from-5.0.0" sources."resolve-global-1.0.0" sources."safe-buffer-5.2.1" - sources."semver-7.3.7" + sources."semver-7.3.8" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."signal-exit-3.0.7" @@ -83931,7 +82335,6 @@ in sources."wrap-ansi-7.0.0" sources."y18n-5.0.8" sources."yallist-4.0.0" - sources."yaml-1.10.2" (sources."yargs-17.6.2" // { dependencies = [ sources."yargs-parser-21.1.1" @@ -83954,10 +82357,10 @@ in "@commitlint/config-conventional" = nodeEnv.buildNodePackage { name = "_at_commitlint_slash_config-conventional"; packageName = "@commitlint/config-conventional"; - version = "17.3.0"; + version = "17.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.3.0.tgz"; - sha512 = "hgI+fN5xF8nhS9uG/V06xyT0nlcyvHHMkq0kwRSr96vl5BFlRGaL2C0/YY4kQagfU087tmj01bJkG9Ek98Wllw=="; + url = "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.4.2.tgz"; + sha512 = "JVo1moSj5eDMoql159q8zKCU8lkOhQ+b23Vl3LVVrS6PXDLQIELnJ34ChQmFVbBdSSRNAbbXnRDhosFU+wnuHw=="; }; dependencies = [ sources."array-ify-1.0.0" @@ -83981,10 +82384,10 @@ in "@emacs-eask/cli" = nodeEnv.buildNodePackage { name = "_at_emacs-eask_slash_cli"; packageName = "@emacs-eask/cli"; - version = "0.7.5"; + version = "0.7.8"; src = fetchurl { - url = "https://registry.npmjs.org/@emacs-eask/cli/-/cli-0.7.5.tgz"; - sha512 = "8YxlJKu1JuQ+JVQ1PSIrlIoN0wtt/g8BtH0eWlJj3czH1yd35vwfOhCy/QWDGt9UQH0JDWGSbQa1gnQgPHaDKg=="; + url = "https://registry.npmjs.org/@emacs-eask/cli/-/cli-0.7.8.tgz"; + sha512 = "Vr7nZf9H/T6wQyrC+vj3x2ysGbRlyRsayp6TrWu5jBWUi2ocYCq2/0O48HUKj9lkyEPWKjwr+ANehC95S727Sg=="; }; dependencies = [ sources."ansi-regex-5.0.1" @@ -84017,10 +82420,10 @@ in "@forge/cli" = nodeEnv.buildNodePackage { name = "_at_forge_slash_cli"; packageName = "@forge/cli"; - version = "6.3.0"; + version = "6.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/@forge/cli/-/cli-6.3.0.tgz"; - sha512 = "dDfEEcIj65lnQOJEzIWQOrToPiKuhFAg5wHNE+xmZOVBeHGD1tq/9EvnWS5RR75AhG18BOcB9iqGQQLhm9L81A=="; + url = "https://registry.npmjs.org/@forge/cli/-/cli-6.4.0.tgz"; + sha512 = "inTrWbkBbgnFX+L+RJ4XRxo6GgXGGiECZLnE1WrCpgoNI8j+SSvk11UPz5YA3krebKeiSJseMQ/VyswePvzsMg=="; }; dependencies = [ sources."@ampproject/remapping-2.2.0" @@ -84031,8 +82434,8 @@ in ]; }) sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.5" - sources."@babel/core-7.20.7" + sources."@babel/compat-data-7.20.10" + sources."@babel/core-7.20.12" (sources."@babel/generator-7.20.7" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" @@ -84040,13 +82443,13 @@ in }) sources."@babel/helper-annotate-as-pure-7.18.6" sources."@babel/helper-compilation-targets-7.20.7" - sources."@babel/helper-create-class-features-plugin-7.20.7" + sources."@babel/helper-create-class-features-plugin-7.20.12" sources."@babel/helper-environment-visitor-7.18.9" sources."@babel/helper-function-name-7.19.0" sources."@babel/helper-hoist-variables-7.18.6" sources."@babel/helper-member-expression-to-functions-7.20.7" sources."@babel/helper-module-imports-7.18.6" - sources."@babel/helper-module-transforms-7.20.7" + sources."@babel/helper-module-transforms-7.20.11" sources."@babel/helper-optimise-call-expression-7.18.6" sources."@babel/helper-plugin-utils-7.20.2" sources."@babel/helper-replace-supers-7.20.7" @@ -84070,19 +82473,19 @@ in sources."@babel/plugin-transform-typescript-7.20.7" sources."@babel/preset-typescript-7.18.6" sources."@babel/template-7.20.7" - sources."@babel/traverse-7.20.8" + sources."@babel/traverse-7.20.12" sources."@babel/types-7.20.7" sources."@colors/colors-1.5.0" sources."@discoveryjs/json-ext-0.5.7" - sources."@forge/api-2.9.0" + sources."@forge/api-2.9.1" (sources."@forge/auth-0.0.1" // { dependencies = [ sources."tslib-1.14.1" ]; }) sources."@forge/babel-plugin-transform-ui-1.1.0" - sources."@forge/bundler-4.1.0" - (sources."@forge/cli-shared-3.4.0" // { + sources."@forge/bundler-4.2.0" + (sources."@forge/cli-shared-3.5.0" // { dependencies = [ sources."glob-7.2.3" ]; @@ -84090,11 +82493,11 @@ in (sources."@forge/egress-1.1.1" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" ]; }) - sources."@forge/lint-3.2.11" - sources."@forge/manifest-4.5.2" + sources."@forge/lint-3.2.12" + sources."@forge/manifest-4.5.3" sources."@forge/storage-1.3.1" sources."@forge/util-1.2.0" sources."@jridgewell/gen-mapping-0.1.1" @@ -84119,17 +82522,17 @@ in sources."@types/estree-0.0.51" sources."@types/html-minifier-terser-6.1.0" sources."@types/json-schema-7.0.11" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/node-fetch-2.6.2" - sources."@typescript-eslint/types-5.47.0" - (sources."@typescript-eslint/typescript-estree-5.47.0" // { + sources."@typescript-eslint/types-5.48.2" + (sources."@typescript-eslint/typescript-estree-5.48.2" // { dependencies = [ sources."lru-cache-6.0.0" sources."semver-7.3.8" sources."yallist-4.0.0" ]; }) - sources."@typescript-eslint/visitor-keys-5.47.0" + sources."@typescript-eslint/visitor-keys-5.48.2" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -84189,6 +82592,7 @@ in sources."async-3.2.4" sources."asynckit-0.4.0" sources."atlassian-openapi-1.0.17" + sources."available-typed-arrays-1.0.5" sources."babel-loader-8.3.0" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" @@ -84235,7 +82639,7 @@ in sources."call-bind-1.0.2" sources."call-me-maybe-1.0.2" sources."camel-case-4.1.2" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" sources."case-1.6.3" sources."chainsaw-0.1.0" sources."chalk-2.4.2" @@ -84353,8 +82757,9 @@ in sources."entities-2.2.0" sources."env-paths-2.2.1" sources."envinfo-7.8.1" - sources."es-abstract-1.20.5" + sources."es-abstract-1.21.1" sources."es-module-lexer-0.9.3" + sources."es-set-tostringtag-2.0.1" sources."es-shim-unscopables-1.0.0" sources."es-to-primitive-1.2.1" sources."es5-ext-0.10.62" @@ -84391,11 +82796,12 @@ in sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" sources."fastest-levenshtein-1.0.16" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."figures-3.2.0" sources."fill-range-7.0.1" sources."find-cache-dir-3.3.2" sources."find-up-4.1.0" + sources."for-each-0.3.3" sources."form-data-3.0.1" sources."fp-ts-2.13.1" sources."fs-constants-1.0.0" @@ -84423,6 +82829,7 @@ in sources."glob-parent-5.1.2" sources."glob-to-regexp-0.4.1" sources."globals-11.12.0" + sources."globalthis-1.0.3" sources."globby-11.1.0" sources."gopd-1.0.1" (sources."got-9.6.0" // { @@ -84439,6 +82846,7 @@ in sources."has-bigints-1.0.2" sources."has-flag-3.0.0" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" (sources."hash-base-3.1.0" // { @@ -84471,19 +82879,21 @@ in sources."inflight-1.0.6" sources."inherits-2.0.1" sources."ini-1.3.8" - (sources."inquirer-7.3.3" // { + (sources."inquirer-8.2.5" // { dependencies = [ sources."ansi-styles-4.3.0" sources."chalk-4.1.2" sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."has-flag-4.0.0" + sources."ora-5.4.1" sources."supports-color-7.2.0" ]; }) sources."internal-slot-1.0.4" sources."interpret-2.2.0" sources."io-ts-2.2.20" + sources."is-array-buffer-3.0.1" sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" @@ -84503,7 +82913,9 @@ in sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" + sources."is-typed-array-1.1.10" sources."is-typedarray-1.0.0" + sources."is-unicode-supported-0.1.0" sources."is-weakref-1.0.2" sources."isarray-1.0.0" sources."isexe-2.0.0" @@ -84529,7 +82941,7 @@ in sources."json-schema-typed-7.0.3" sources."json-stable-stringify-1.0.2" sources."json-stringify-safe-5.0.1" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."jsonfile-4.0.0" sources."jsonify-0.0.1" sources."jsonpointer-5.0.1" @@ -84573,14 +82985,23 @@ in sources."lodash.some-4.6.0" sources."lodash.sortby-4.7.0" sources."lodash.union-4.6.0" - sources."log-symbols-3.0.0" + (sources."log-symbols-4.1.0" // { + dependencies = [ + sources."ansi-styles-4.3.0" + sources."chalk-4.1.2" + sources."color-convert-2.0.1" + sources."color-name-1.1.4" + sources."has-flag-4.0.0" + sources."supports-color-7.2.0" + ]; + }) sources."lower-case-2.0.2" sources."lowercase-keys-1.0.1" sources."lru-cache-5.1.1" sources."lru-queue-0.1.0" sources."make-dir-3.1.0" sources."md5.js-1.3.5" - sources."memfs-3.4.12" + sources."memfs-3.4.13" sources."memoizee-0.4.15" sources."merge-stream-2.0.0" sources."merge2-1.4.1" @@ -84616,7 +83037,7 @@ in sources."neo-async-2.6.2" sources."next-tick-1.1.0" sources."no-case-3.0.4" - (sources."node-abi-3.30.0" // { + (sources."node-abi-3.31.0" // { dependencies = [ sources."lru-cache-6.0.0" sources."semver-7.3.8" @@ -84631,7 +83052,7 @@ in sources."whatwg-url-5.0.0" ]; }) - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" (sources."node-localstorage-1.3.1" // { dependencies = [ sources."write-file-atomic-1.3.4" @@ -84643,7 +83064,7 @@ in sources."normalize-url-4.5.1" sources."nth-check-2.1.1" sources."object-assign-4.1.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."object-keys-1.1.1" sources."object.assign-4.1.4" sources."omelette-0.4.17" @@ -84657,6 +83078,16 @@ in sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."has-flag-4.0.0" + (sources."log-symbols-3.0.0" // { + dependencies = [ + sources."ansi-styles-3.2.1" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."has-flag-3.0.0" + sources."supports-color-5.5.0" + ]; + }) sources."supports-color-7.2.0" ]; }) @@ -84699,7 +83130,7 @@ in }) sources."prebuild-install-7.1.1" sources."prepend-http-2.0.0" - sources."prettier-2.8.1" + sources."prettier-2.8.3" sources."pretty-error-4.0.0" sources."process-0.11.10" sources."process-nextick-args-2.0.1" @@ -84725,7 +83156,7 @@ in (sources."readdir-glob-1.1.2" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" ]; }) sources."rechoir-0.7.1" @@ -84747,11 +83178,7 @@ in sources."ripemd160-2.0.2" sources."run-async-2.4.1" sources."run-parallel-1.2.0" - (sources."rxjs-6.6.7" // { - dependencies = [ - sources."tslib-1.14.1" - ]; - }) + sources."rxjs-7.8.0" sources."safe-buffer-5.2.1" sources."safe-json-stringify-1.2.0" sources."safe-regex-test-1.0.0" @@ -84759,7 +83186,7 @@ in sources."sanitize-filename-1.6.3" sources."schema-utils-2.7.1" sources."semver-6.3.0" - sources."serialize-javascript-6.0.0" + sources."serialize-javascript-6.0.1" sources."setimmediate-1.0.5" sources."sha.js-2.4.11" sources."shallow-clone-3.0.1" @@ -84827,7 +83254,7 @@ in sources."totalist-1.1.0" (sources."tr46-1.0.1" // { dependencies = [ - sources."punycode-2.1.1" + sources."punycode-2.2.0" ]; }) sources."traverse-0.3.9" @@ -84854,6 +83281,7 @@ in sources."tunnel-agent-0.6.0" sources."type-1.2.0" sources."type-fest-0.21.3" + sources."typed-array-length-1.0.4" sources."typedarray-to-buffer-3.1.5" sources."typescript-4.9.4" (sources."typescript-json-schema-0.45.1" // { @@ -84874,7 +83302,7 @@ in sources."update-browserslist-db-1.0.10" (sources."uri-js-4.4.1" // { dependencies = [ - sources."punycode-2.1.1" + sources."punycode-2.2.0" ]; }) sources."urijs-1.19.11" @@ -84919,6 +83347,7 @@ in sources."whatwg-url-7.1.0" sources."which-2.0.2" sources."which-boxed-primitive-1.0.2" + sources."which-typed-array-1.1.9" sources."wildcard-2.0.0" sources."winattr-3.0.0" (sources."wrap-ansi-7.0.0" // { @@ -84975,7 +83404,7 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" sources."@types/minimatch-3.0.5" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/normalize-package-data-2.4.1" sources."@types/responselike-1.0.0" sources."abort-controller-3.0.0" @@ -85136,7 +83565,7 @@ in sources."ms-2.1.2" sources."multimatch-5.0.0" sources."mute-stream-0.0.8" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."node-forge-1.3.1" sources."normalize-newline-4.1.0" (sources."normalize-package-data-3.0.3" // { @@ -85146,7 +83575,7 @@ in }) sources."normalize-path-3.0.0" sources."normalize-url-6.1.0" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."once-1.4.0" sources."onetime-5.1.2" sources."open-8.4.0" @@ -85321,7 +83750,7 @@ in sources."@types/markdown-it-12.2.3" sources."@types/mdurl-1.0.2" sources."@types/minimatch-5.1.2" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/tough-cookie-2.3.8" sources."abbrev-1.1.1" sources."abort-controller-3.0.0" @@ -85357,7 +83786,7 @@ in sources."asynckit-0.4.0" sources."atob-2.1.2" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."axios-0.21.4" sources."axios-cookiejar-support-0.5.1" sources."balanced-match-1.0.2" @@ -85543,7 +83972,7 @@ in sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fetch-cookie-0.11.0" (sources."figures-2.0.0" // { dependencies = [ @@ -85734,7 +84163,7 @@ in sources."map-visit-1.0.0" sources."markdown-it-12.3.2" sources."markdown-it-anchor-8.6.6" - sources."marked-4.2.4" + sources."marked-4.2.12" sources."md5.js-1.3.5" sources."mdurl-1.0.1" (sources."mem-4.3.0" // { @@ -85782,7 +84211,7 @@ in sources."neo-async-2.6.2" sources."nice-try-1.0.5" sources."node-abi-2.30.1" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."node-pre-gyp-0.11.0" sources."noop-fn-1.0.0" sources."noop-logger-0.1.1" @@ -85888,7 +84317,11 @@ in ]; }) sources."pouchdb-extend-0.1.2" - sources."pouchdb-fetch-7.3.1" + (sources."pouchdb-fetch-7.3.1" // { + dependencies = [ + sources."node-fetch-2.6.7" + ]; + }) (sources."pouchdb-find-7.3.1" // { dependencies = [ sources."buffer-from-1.1.2" @@ -85950,7 +84383,7 @@ in sources."promise-nodify-1.0.2" sources."psl-1.9.0" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."q-1.5.1" sources."qs-6.5.3" sources."queue-microtask-1.2.3" @@ -86223,7 +84656,7 @@ in sources."tslib-2.4.1" ]; }) - (sources."@azure/core-client-1.6.1" // { + (sources."@azure/core-client-1.7.0" // { dependencies = [ sources."tslib-2.4.1" ]; @@ -86239,7 +84672,7 @@ in sources."tslib-2.4.1" ]; }) - (sources."@azure/core-lro-2.4.0" // { + (sources."@azure/core-lro-2.5.0" // { dependencies = [ sources."tslib-2.4.1" ]; @@ -86249,7 +84682,7 @@ in sources."tslib-2.4.1" ]; }) - (sources."@azure/core-rest-pipeline-1.10.0" // { + (sources."@azure/core-rest-pipeline-1.10.1" // { dependencies = [ sources."tslib-2.4.1" ]; @@ -86274,15 +84707,15 @@ in sources."tslib-2.4.1" ]; }) - (sources."@azure/msal-browser-2.32.1" // { + (sources."@azure/msal-browser-2.32.2" // { dependencies = [ - sources."@azure/msal-common-9.0.1" + sources."@azure/msal-common-9.1.0" ]; }) sources."@azure/msal-common-7.6.0" - (sources."@azure/msal-node-1.14.5" // { + (sources."@azure/msal-node-1.14.6" // { dependencies = [ - sources."@azure/msal-common-9.0.1" + sources."@azure/msal-common-9.1.0" ]; }) (sources."@azure/storage-blob-12.11.0" // { @@ -86306,7 +84739,7 @@ in sources."@babel/parser-7.20.7" ]; }) - (sources."@babel/traverse-7.20.8" // { + (sources."@babel/traverse-7.20.12" // { dependencies = [ sources."@babel/parser-7.20.7" ]; @@ -86322,7 +84755,7 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@opentelemetry/api-1.3.0" + sources."@opentelemetry/api-1.4.0" sources."@pnpm/error-1.4.0" sources."@pnpm/link-bins-5.3.25" sources."@pnpm/package-bins-4.1.0" @@ -86362,7 +84795,6 @@ in sources."@szmarczak/http-timer-1.1.2" sources."@tootallnate/once-2.0.0" sources."@types/argparse-1.0.38" - sources."@types/error-stack-parser-2.0.0" sources."@types/lodash-4.14.191" sources."@types/minimatch-3.0.5" sources."@types/minimist-1.2.2" @@ -86429,7 +84861,7 @@ in ]; }) sources."callsite-1.0.0" - sources."callsite-record-4.1.4" + sources."callsite-record-4.1.5" sources."callsites-3.1.0" sources."camelcase-6.3.0" (sources."camelcase-keys-6.2.2" // { @@ -86460,7 +84892,7 @@ in sources."color-name-1.1.3" sources."colors-1.2.5" sources."combined-stream-1.0.8" - sources."commander-9.4.1" + sources."commander-9.5.0" sources."concat-map-0.0.1" sources."configstore-5.0.1" sources."core-util-is-1.0.3" @@ -86502,7 +84934,6 @@ in }) sources."end-of-stream-1.4.4" sources."error-ex-1.3.2" - sources."error-stack-parser-3.0.0" sources."escalade-3.1.1" sources."escape-goat-2.1.1" sources."escape-string-regexp-1.0.5" @@ -86513,7 +84944,7 @@ in sources."external-editor-3.1.0" sources."fast-deep-equal-3.1.3" sources."fast-glob-3.2.12" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."figures-3.0.0" sources."fill-range-7.0.1" sources."find-up-4.1.0" @@ -86581,7 +85012,7 @@ in sources."ignore-5.1.9" sources."ignore-walk-3.0.4" sources."immediate-3.0.6" - sources."immutable-4.2.0" + sources."immutable-4.2.2" sources."import-fresh-3.3.0" sources."import-lazy-2.1.0" sources."imurmurhash-0.1.4" @@ -86635,13 +85066,12 @@ in sources."jsesc-2.5.2" sources."json-buffer-3.0.0" sources."json-parse-even-better-errors-2.3.1" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."jsonfile-4.0.0" sources."jsonpath-plus-4.0.0" - (sources."jsonwebtoken-8.5.1" // { + (sources."jsonwebtoken-9.0.0" // { dependencies = [ sources."jws-3.2.2" - sources."semver-5.7.1" ]; }) sources."jszip-3.7.1" @@ -86665,14 +85095,7 @@ in sources."locate-path-5.0.0" sources."lodash-4.17.21" sources."lodash.get-4.4.2" - sources."lodash.includes-4.3.0" - sources."lodash.isboolean-3.0.3" sources."lodash.isequal-4.5.0" - sources."lodash.isinteger-4.0.4" - sources."lodash.isnumber-3.0.3" - sources."lodash.isplainobject-4.0.6" - sources."lodash.isstring-4.0.1" - sources."lodash.once-4.1.1" (sources."log-symbols-4.1.0" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -86801,7 +85224,7 @@ in ]; }) sources."please-upgrade-node-3.2.0" - sources."postcss-8.4.20" + sources."postcss-8.4.21" (sources."preferred-pm-3.0.3" // { dependencies = [ sources."find-up-5.0.0" @@ -86815,7 +85238,7 @@ in sources."process-nextick-args-2.0.1" sources."psl-1.9.0" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."pupa-2.1.1" sources."query-ast-1.0.5" sources."querystringify-2.2.0" @@ -86827,7 +85250,7 @@ in sources."strip-json-comments-2.0.1" ]; }) - (sources."rc-config-loader-4.1.1" // { + (sources."rc-config-loader-4.1.2" // { dependencies = [ sources."js-yaml-4.1.0" ]; @@ -86925,7 +85348,7 @@ in sources."text-table-0.2.0" sources."thenify-3.3.1" sources."thenify-all-1.6.0" - sources."throat-6.0.1" + sources."throat-6.0.2" sources."through-2.3.8" sources."tmp-0.0.33" sources."to-fast-properties-2.0.0" @@ -87074,7 +85497,7 @@ in sources."mimic-fn-2.1.0" sources."ms-2.1.2" sources."netrc-0.1.4" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."node-version-1.2.0" sources."once-1.4.0" sources."onetime-5.1.2" @@ -87117,15 +85540,15 @@ in "@nestjs/cli" = nodeEnv.buildNodePackage { name = "_at_nestjs_slash_cli"; packageName = "@nestjs/cli"; - version = "9.1.5"; + version = "9.1.8"; src = fetchurl { - url = "https://registry.npmjs.org/@nestjs/cli/-/cli-9.1.5.tgz"; - sha512 = "rSp26+Nv7PFtYrRSP18Gv5ZK8rRSc2SCCF5wh4SdZaVGgkxShpNq9YEfI+ik/uziN3KC5o74ppYRXGj+aHGVsA=="; + url = "https://registry.npmjs.org/@nestjs/cli/-/cli-9.1.8.tgz"; + sha512 = "53laCMoPLAkjyz3405FlMSrHnbr3DGeoaQjY963bEroezLlm/qfQhwj6oGJwtgA28eNFgx68mvQV2f1VZNUJtw=="; }; dependencies = [ - sources."@angular-devkit/core-14.2.2" - sources."@angular-devkit/schematics-14.2.2" - (sources."@angular-devkit/schematics-cli-14.2.2" // { + sources."@angular-devkit/core-15.0.4" + sources."@angular-devkit/schematics-15.0.4" + (sources."@angular-devkit/schematics-cli-15.0.4" // { dependencies = [ sources."chalk-4.1.2" sources."inquirer-8.2.4" @@ -87145,32 +85568,19 @@ in sources."supports-color-5.5.0" ]; }) + sources."@colors/colors-1.5.0" sources."@jridgewell/gen-mapping-0.3.2" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/source-map-0.3.2" sources."@jridgewell/sourcemap-codec-1.4.14" sources."@jridgewell/trace-mapping-0.3.17" - (sources."@nestjs/schematics-9.0.3" // { - dependencies = [ - (sources."@angular-devkit/core-14.2.1" // { - dependencies = [ - sources."jsonc-parser-3.1.0" - ]; - }) - (sources."@angular-devkit/schematics-14.2.1" // { - dependencies = [ - sources."jsonc-parser-3.1.0" - ]; - }) - sources."jsonc-parser-3.2.0" - ]; - }) + sources."@nestjs/schematics-9.0.4" sources."@types/eslint-8.4.10" sources."@types/eslint-scope-3.7.4" sources."@types/estree-0.0.51" sources."@types/json-schema-7.0.11" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/parse-json-4.0.0" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" @@ -87214,14 +85624,14 @@ in sources."buffer-5.7.1" sources."buffer-from-1.1.2" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" sources."chalk-3.0.0" sources."chardet-0.7.0" sources."chokidar-3.5.3" sources."chrome-trace-event-1.0.3" sources."cli-cursor-3.1.0" sources."cli-spinners-2.7.0" - sources."cli-table3-0.6.2" + sources."cli-table3-0.6.3" sources."cli-width-3.0.0" sources."clone-1.0.4" sources."color-convert-2.0.1" @@ -87255,12 +85665,13 @@ in sources."fast-json-stable-stringify-2.1.0" sources."figures-3.2.0" sources."fill-range-7.0.1" - (sources."fork-ts-checker-webpack-plugin-7.2.13" // { + (sources."fork-ts-checker-webpack-plugin-7.2.14" // { dependencies = [ sources."chalk-4.1.2" + sources."fs-extra-10.1.0" ]; }) - sources."fs-extra-10.1.0" + sources."fs-extra-11.1.0" sources."fs-monkey-1.0.3" sources."fs.realpath-1.0.0" sources."fsevents-2.3.2" @@ -87304,8 +85715,8 @@ in sources."js-tokens-4.0.0" sources."json-parse-even-better-errors-2.3.1" sources."json-schema-traverse-1.0.0" - sources."json5-2.2.2" - sources."jsonc-parser-3.1.0" + sources."json5-2.2.3" + sources."jsonc-parser-3.2.0" sources."jsonfile-6.1.0" sources."lines-and-columns-1.2.4" sources."loader-runner-4.3.0" @@ -87317,8 +85728,8 @@ in }) sources."lru-cache-6.0.0" sources."macos-release-2.5.0" - sources."magic-string-0.26.2" - sources."memfs-3.4.12" + sources."magic-string-0.26.7" + sources."memfs-3.4.13" sources."merge-stream-2.0.0" sources."mime-db-1.52.0" sources."mime-types-2.1.35" @@ -87351,7 +85762,7 @@ in sources."picomatch-2.3.1" sources."pluralize-8.0.0" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."randombytes-2.1.0" sources."readable-stream-3.6.0" sources."readdirp-3.6.0" @@ -87372,7 +85783,7 @@ in ]; }) sources."semver-7.3.8" - sources."serialize-javascript-6.0.0" + sources."serialize-javascript-6.0.1" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."shelljs-0.8.5" @@ -87403,7 +85814,7 @@ in sources."tmp-0.0.33" sources."to-regex-range-5.0.1" sources."tree-kill-1.2.2" - sources."tsconfig-paths-4.1.0" + sources."tsconfig-paths-4.1.1" (sources."tsconfig-paths-webpack-plugin-4.0.0" // { dependencies = [ sources."chalk-4.1.2" @@ -87411,7 +85822,7 @@ in }) sources."tslib-1.14.1" sources."type-fest-0.21.3" - sources."typescript-4.8.4" + sources."typescript-4.9.4" sources."universalify-2.0.0" sources."update-browserslist-db-1.0.10" sources."uri-js-4.4.1" @@ -87419,7 +85830,7 @@ in sources."vue-template-compiler-2.7.14" sources."watchpack-2.4.0" sources."wcwidth-1.0.1" - sources."webpack-5.74.0" + sources."webpack-5.75.0" sources."webpack-node-externals-3.0.0" sources."webpack-sources-3.2.3" sources."which-2.0.2" @@ -87443,10 +85854,10 @@ in "@squoosh/cli" = nodeEnv.buildNodePackage { name = "_at_squoosh_slash_cli"; packageName = "@squoosh/cli"; - version = "0.7.2"; + version = "0.7.3"; src = fetchurl { - url = "https://registry.npmjs.org/@squoosh/cli/-/cli-0.7.2.tgz"; - sha512 = "uMnUWMx4S8UApO/EfPyRyvUmw+0jI9wwAfdHfGjvVg4DAIvEgsA+VWK2KOBnJiChvVd768K27g09ESzptyX93w=="; + url = "https://registry.npmjs.org/@squoosh/cli/-/cli-0.7.3.tgz"; + sha512 = "mU/iWbVWqLXX+gJJa4RBl5U4LdKYaiD9cmxW7bjyw8EEFAuMXFDGAQcq7hEvUZwoP5Em5s7sjimBPirSBJQ87g=="; }; dependencies = [ sources."@squoosh/lib-0.4.1" @@ -87468,7 +85879,7 @@ in sources."inherits-2.0.4" sources."is-interactive-1.0.0" sources."is-unicode-supported-0.1.0" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."kleur-4.1.5" sources."log-symbols-4.1.0" sources."mimic-fn-2.1.0" @@ -87482,7 +85893,7 @@ in sources."strip-ansi-6.0.1" sources."supports-color-7.2.0" sources."util-deprecate-1.0.2" - sources."wasm-feature-detect-1.3.0" + sources."wasm-feature-detect-1.4.0" sources."wcwidth-1.0.1" sources."web-streams-polyfill-3.2.1" ]; @@ -87512,23 +85923,23 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.24" - sources."@swc/core-darwin-arm64-1.3.24" - sources."@swc/core-darwin-x64-1.3.24" - sources."@swc/core-linux-arm-gnueabihf-1.3.24" - sources."@swc/core-linux-arm64-gnu-1.3.24" - sources."@swc/core-linux-arm64-musl-1.3.24" - sources."@swc/core-linux-x64-gnu-1.3.24" - sources."@swc/core-linux-x64-musl-1.3.24" - sources."@swc/core-win32-arm64-msvc-1.3.24" - sources."@swc/core-win32-ia32-msvc-1.3.24" - sources."@swc/core-win32-x64-msvc-1.3.24" - sources."@swc/wasm-1.3.24" + sources."@swc/core-1.3.27" + sources."@swc/core-darwin-arm64-1.3.27" + sources."@swc/core-darwin-x64-1.3.27" + sources."@swc/core-linux-arm-gnueabihf-1.3.27" + sources."@swc/core-linux-arm64-gnu-1.3.27" + sources."@swc/core-linux-arm64-musl-1.3.27" + sources."@swc/core-linux-x64-gnu-1.3.27" + sources."@swc/core-linux-x64-musl-1.3.27" + sources."@swc/core-win32-arm64-msvc-1.3.27" + sources."@swc/core-win32-ia32-msvc-1.3.27" + sources."@swc/core-win32-x64-msvc-1.3.27" + sources."@swc/wasm-1.3.27" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."acorn-7.4.1" sources."acorn-node-1.8.2" sources."acorn-walk-7.2.0" @@ -87555,7 +85966,7 @@ in sources."glob-parent-5.1.2" ]; }) - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fill-range-7.0.1" sources."fsevents-2.3.2" sources."function-bind-1.1.1" @@ -87578,7 +85989,7 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-2.3.0" - sources."postcss-8.4.20" + sources."postcss-8.4.21" sources."postcss-import-14.1.0" sources."postcss-js-4.0.0" sources."postcss-load-config-3.1.4" @@ -87636,23 +86047,23 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.24" - sources."@swc/core-darwin-arm64-1.3.24" - sources."@swc/core-darwin-x64-1.3.24" - sources."@swc/core-linux-arm-gnueabihf-1.3.24" - sources."@swc/core-linux-arm64-gnu-1.3.24" - sources."@swc/core-linux-arm64-musl-1.3.24" - sources."@swc/core-linux-x64-gnu-1.3.24" - sources."@swc/core-linux-x64-musl-1.3.24" - sources."@swc/core-win32-arm64-msvc-1.3.24" - sources."@swc/core-win32-ia32-msvc-1.3.24" - sources."@swc/core-win32-x64-msvc-1.3.24" - sources."@swc/wasm-1.3.24" + sources."@swc/core-1.3.27" + sources."@swc/core-darwin-arm64-1.3.27" + sources."@swc/core-darwin-x64-1.3.27" + sources."@swc/core-linux-arm-gnueabihf-1.3.27" + sources."@swc/core-linux-arm64-gnu-1.3.27" + sources."@swc/core-linux-arm64-musl-1.3.27" + sources."@swc/core-linux-x64-gnu-1.3.27" + sources."@swc/core-linux-x64-musl-1.3.27" + sources."@swc/core-win32-arm64-msvc-1.3.27" + sources."@swc/core-win32-ia32-msvc-1.3.27" + sources."@swc/core-win32-x64-msvc-1.3.27" + sources."@swc/wasm-1.3.27" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."acorn-7.4.1" sources."acorn-node-1.8.2" sources."acorn-walk-7.2.0" @@ -87679,7 +86090,7 @@ in sources."glob-parent-5.1.2" ]; }) - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fill-range-7.0.1" sources."fsevents-2.3.2" sources."function-bind-1.1.1" @@ -87703,7 +86114,7 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-2.3.0" - sources."postcss-8.4.20" + sources."postcss-8.4.21" sources."postcss-import-14.1.0" sources."postcss-js-4.0.0" sources."postcss-load-config-3.1.4" @@ -87779,23 +86190,23 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.24" - sources."@swc/core-darwin-arm64-1.3.24" - sources."@swc/core-darwin-x64-1.3.24" - sources."@swc/core-linux-arm-gnueabihf-1.3.24" - sources."@swc/core-linux-arm64-gnu-1.3.24" - sources."@swc/core-linux-arm64-musl-1.3.24" - sources."@swc/core-linux-x64-gnu-1.3.24" - sources."@swc/core-linux-x64-musl-1.3.24" - sources."@swc/core-win32-arm64-msvc-1.3.24" - sources."@swc/core-win32-ia32-msvc-1.3.24" - sources."@swc/core-win32-x64-msvc-1.3.24" - sources."@swc/wasm-1.3.24" + sources."@swc/core-1.3.27" + sources."@swc/core-darwin-arm64-1.3.27" + sources."@swc/core-darwin-x64-1.3.27" + sources."@swc/core-linux-arm-gnueabihf-1.3.27" + sources."@swc/core-linux-arm64-gnu-1.3.27" + sources."@swc/core-linux-arm64-musl-1.3.27" + sources."@swc/core-linux-x64-gnu-1.3.27" + sources."@swc/core-linux-x64-musl-1.3.27" + sources."@swc/core-win32-arm64-msvc-1.3.27" + sources."@swc/core-win32-ia32-msvc-1.3.27" + sources."@swc/core-win32-x64-msvc-1.3.27" + sources."@swc/wasm-1.3.27" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."acorn-7.4.1" sources."acorn-node-1.8.2" sources."acorn-walk-7.2.0" @@ -87822,7 +86233,7 @@ in sources."glob-parent-5.1.2" ]; }) - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fill-range-7.0.1" sources."fsevents-2.3.2" sources."function-bind-1.1.1" @@ -87845,7 +86256,7 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-2.3.0" - sources."postcss-8.4.20" + sources."postcss-8.4.21" sources."postcss-import-14.1.0" sources."postcss-js-4.0.0" sources."postcss-load-config-3.1.4" @@ -87890,10 +86301,10 @@ in "@tailwindcss/typography" = nodeEnv.buildNodePackage { name = "_at_tailwindcss_slash_typography"; packageName = "@tailwindcss/typography"; - version = "0.5.8"; + version = "0.5.9"; src = fetchurl { - url = "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.8.tgz"; - sha512 = "xGQEp8KXN8Sd8m6R4xYmwxghmswrd0cPnNI2Lc6fmrC3OojysTBJJGSIVwPV56q4t6THFUK3HJ0EaWwpglSxWw=="; + url = "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.9.tgz"; + sha512 = "t8Sg3DyynFysV9f4JDOVISGsjazNb48AeIYQwcL+Bsq5uf4RYL75C1giZ43KISjeDGBaTN3Kxh7Xj/vRSMJUUg=="; }; dependencies = [ sources."@cspotcode/source-map-support-0.8.1" @@ -87903,23 +86314,23 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.24" - sources."@swc/core-darwin-arm64-1.3.24" - sources."@swc/core-darwin-x64-1.3.24" - sources."@swc/core-linux-arm-gnueabihf-1.3.24" - sources."@swc/core-linux-arm64-gnu-1.3.24" - sources."@swc/core-linux-arm64-musl-1.3.24" - sources."@swc/core-linux-x64-gnu-1.3.24" - sources."@swc/core-linux-x64-musl-1.3.24" - sources."@swc/core-win32-arm64-msvc-1.3.24" - sources."@swc/core-win32-ia32-msvc-1.3.24" - sources."@swc/core-win32-x64-msvc-1.3.24" - sources."@swc/wasm-1.3.24" + sources."@swc/core-1.3.27" + sources."@swc/core-darwin-arm64-1.3.27" + sources."@swc/core-darwin-x64-1.3.27" + sources."@swc/core-linux-arm-gnueabihf-1.3.27" + sources."@swc/core-linux-arm64-gnu-1.3.27" + sources."@swc/core-linux-arm64-musl-1.3.27" + sources."@swc/core-linux-x64-gnu-1.3.27" + sources."@swc/core-linux-x64-musl-1.3.27" + sources."@swc/core-win32-arm64-msvc-1.3.27" + sources."@swc/core-win32-ia32-msvc-1.3.27" + sources."@swc/core-win32-x64-msvc-1.3.27" + sources."@swc/wasm-1.3.27" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."acorn-7.4.1" sources."acorn-node-1.8.2" sources."acorn-walk-7.2.0" @@ -87946,7 +86357,7 @@ in sources."glob-parent-5.1.2" ]; }) - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fill-range-7.0.1" sources."fsevents-2.3.2" sources."function-bind-1.1.1" @@ -87972,7 +86383,7 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-2.3.0" - sources."postcss-8.4.20" + sources."postcss-8.4.21" sources."postcss-import-14.1.0" sources."postcss-js-4.0.0" sources."postcss-load-config-3.1.4" @@ -88034,7 +86445,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/responselike-1.0.0" sources."accepts-1.3.8" sources."ansi-styles-4.3.0" @@ -88042,7 +86453,7 @@ in sources."asynckit-0.4.0" sources."atob-2.1.2" sources."available-typed-arrays-1.0.5" - sources."aws-sdk-2.1281.0" + sources."aws-sdk-2.1296.0" sources."base64-js-1.5.1" (sources."basic-auth-2.0.1" // { dependencies = [ @@ -88151,7 +86562,7 @@ in sources."is-typed-array-1.1.10" sources."isarray-1.0.0" sources."jmespath-0.16.0" - sources."js-base64-3.7.3" + sources."js-base64-3.7.4" sources."json-buffer-3.0.1" (sources."jsonwebtoken-8.5.1" // { dependencies = [ @@ -88180,7 +86591,7 @@ in sources."long-timeout-0.1.1" sources."lowercase-keys-2.0.0" sources."lru-cache-6.0.0" - sources."luxon-1.28.0" + sources."luxon-1.28.1" sources."media-typer-0.3.0" sources."merge-descriptors-1.0.1" sources."methods-1.1.2" @@ -88197,12 +86608,12 @@ in }) sources."ms-2.1.3" sources."negotiator-0.6.3" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."node-schedule-2.1.0" sources."normalize-url-6.1.0" sources."oauth-sign-0.8.2" sources."object-assign-4.1.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."object-keys-1.1.1" sources."on-finished-2.4.1" sources."on-headers-1.0.2" @@ -88244,7 +86655,7 @@ in sources."semver-7.3.7" sources."send-0.18.0" sources."serialize-error-2.1.0" - sources."serialize-javascript-6.0.0" + sources."serialize-javascript-6.0.1" sources."serve-static-1.15.0" sources."setprototypeof-1.2.0" sources."side-channel-1.0.4" @@ -88313,8 +86724,8 @@ in sources."@apollographql/apollo-tools-0.5.4" sources."@apollographql/graphql-playground-html-1.6.29" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.5" - (sources."@babel/core-7.20.7" // { + sources."@babel/compat-data-7.20.10" + (sources."@babel/core-7.20.12" // { dependencies = [ sources."semver-6.3.0" ]; @@ -88333,7 +86744,7 @@ in sources."yallist-3.1.1" ]; }) - sources."@babel/helper-create-class-features-plugin-7.20.7" + sources."@babel/helper-create-class-features-plugin-7.20.12" sources."@babel/helper-create-regexp-features-plugin-7.20.5" (sources."@babel/helper-define-polyfill-provider-0.3.3" // { dependencies = [ @@ -88346,7 +86757,7 @@ in sources."@babel/helper-hoist-variables-7.18.6" sources."@babel/helper-member-expression-to-functions-7.20.7" sources."@babel/helper-module-imports-7.18.6" - sources."@babel/helper-module-transforms-7.20.7" + sources."@babel/helper-module-transforms-7.20.11" sources."@babel/helper-optimise-call-expression-7.18.6" sources."@babel/helper-plugin-utils-7.20.2" sources."@babel/helper-remap-async-to-generator-7.18.9" @@ -88407,7 +86818,7 @@ in sources."@babel/plugin-transform-arrow-functions-7.20.7" sources."@babel/plugin-transform-async-to-generator-7.20.7" sources."@babel/plugin-transform-block-scoped-functions-7.18.6" - sources."@babel/plugin-transform-block-scoping-7.20.8" + sources."@babel/plugin-transform-block-scoping-7.20.11" sources."@babel/plugin-transform-classes-7.20.7" sources."@babel/plugin-transform-computed-properties-7.20.7" sources."@babel/plugin-transform-destructuring-7.20.7" @@ -88419,9 +86830,9 @@ in sources."@babel/plugin-transform-function-name-7.18.9" sources."@babel/plugin-transform-literals-7.18.9" sources."@babel/plugin-transform-member-expression-literals-7.18.6" - sources."@babel/plugin-transform-modules-amd-7.20.7" - sources."@babel/plugin-transform-modules-commonjs-7.20.7" - sources."@babel/plugin-transform-modules-systemjs-7.19.6" + sources."@babel/plugin-transform-modules-amd-7.20.11" + sources."@babel/plugin-transform-modules-commonjs-7.20.11" + sources."@babel/plugin-transform-modules-systemjs-7.20.11" sources."@babel/plugin-transform-modules-umd-7.18.6" sources."@babel/plugin-transform-named-capturing-groups-regex-7.20.5" sources."@babel/plugin-transform-new-target-7.18.6" @@ -88455,14 +86866,15 @@ in }) sources."@babel/runtime-7.20.7" sources."@babel/template-7.20.7" - sources."@babel/traverse-7.20.8" + sources."@babel/traverse-7.20.12" sources."@babel/types-7.20.7" sources."@graphql-tools/merge-8.3.1" - (sources."@graphql-tools/mock-8.7.14" // { + (sources."@graphql-tools/mock-8.7.15" // { dependencies = [ - sources."@graphql-tools/merge-8.3.14" - sources."@graphql-tools/schema-9.0.12" - sources."@graphql-tools/utils-9.1.3" + sources."@graphql-tools/merge-8.3.15" + sources."@graphql-tools/schema-9.0.13" + sources."@graphql-tools/utils-9.1.4" + sources."value-or-promise-1.0.12" ]; }) sources."@graphql-tools/schema-8.5.1" @@ -88509,7 +86921,7 @@ in }) sources."@types/long-4.0.2" sources."@types/mime-3.0.1" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/normalize-package-data-2.4.1" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" @@ -88618,7 +87030,7 @@ in }) sources."call-bind-1.0.2" sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" sources."caw-2.0.1" sources."chalk-4.1.2" sources."chardet-0.7.0" @@ -88667,7 +87079,7 @@ in sources."cookie-0.5.0" sources."cookie-signature-1.0.6" sources."copy-descriptor-0.1.1" - sources."core-js-compat-3.26.1" + sources."core-js-compat-3.27.1" sources."core-util-is-1.0.3" sources."cors-2.8.5" (sources."cross-spawn-6.0.5" // { @@ -88791,14 +87203,14 @@ in }) sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fd-slicer-1.1.0" sources."figures-3.2.0" sources."file-type-8.1.0" (sources."filelist-1.0.4" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" ]; }) sources."filename-reserved-regex-2.0.0" @@ -88836,7 +87248,7 @@ in sources."which-2.0.2" ]; }) - sources."flow-parser-0.196.3" + sources."flow-parser-0.197.0" sources."for-in-1.0.2" sources."forwarded-0.2.0" sources."fragment-cache-0.2.1" @@ -88973,7 +87385,7 @@ in sources."jsesc-2.5.2" sources."json-buffer-3.0.0" sources."json-parse-even-better-errors-2.3.1" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."jsonfile-6.1.0" sources."keyv-3.0.0" sources."kind-of-6.0.3" @@ -89023,8 +87435,8 @@ in sources."nice-try-1.0.5" sources."node-abort-controller-3.0.1" sources."node-dir-0.1.17" - sources."node-fetch-2.6.7" - sources."node-gyp-build-4.5.0" + sources."node-fetch-2.6.8" + sources."node-gyp-build-4.6.0" (sources."node-notifier-10.0.1" // { dependencies = [ sources."uuid-8.3.2" @@ -89058,7 +87470,7 @@ in sources."kind-of-3.2.2" ]; }) - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."object-visit-1.0.1" sources."object.pick-1.3.0" sources."on-finished-2.4.1" @@ -89117,7 +87529,7 @@ in ]; }) sources."posix-character-classes-0.1.1" - (sources."postcss-8.4.20" // { + (sources."postcss-8.4.21" // { dependencies = [ sources."nanoid-3.3.4" ]; @@ -89626,7 +88038,7 @@ in sources."@babel/code-frame-7.18.6" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" - sources."@npmcli/config-6.1.0" + sources."@npmcli/config-6.1.1" sources."@npmcli/map-workspaces-3.0.1" sources."@npmcli/name-from-folder-2.0.0" sources."@pnpm/network.ca-file-1.0.2" @@ -89645,9 +88057,8 @@ in sources."@types/minimist-1.2.2" sources."@types/ms-0.7.31" sources."@types/nlcst-1.0.0" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/normalize-package-data-2.4.1" - sources."@types/parse5-6.0.3" sources."@types/supports-color-8.1.1" sources."@types/unist-2.0.6" sources."abbrev-2.0.0" @@ -89674,7 +88085,7 @@ in sources."bubble-stream-error-1.0.0" sources."buffer-from-1.1.2" sources."cacheable-lookup-7.0.0" - sources."cacheable-request-10.2.3" + sources."cacheable-request-10.2.5" sources."camelcase-7.0.1" (sources."camelcase-keys-8.0.2" // { dependencies = [ @@ -89687,7 +88098,7 @@ in sources."character-entities-html4-2.1.0" sources."character-entities-legacy-3.0.0" sources."character-reference-invalid-2.0.1" - sources."ci-info-3.7.0" + sources."ci-info-3.7.1" sources."cli-boxes-3.0.0" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -89751,7 +88162,7 @@ in sources."get-stream-6.0.1" sources."git-diff-tree-1.1.0" sources."git-spawned-stream-1.0.1" - sources."glob-8.0.3" + sources."glob-8.1.0" (sources."global-dirs-3.0.1" // { dependencies = [ sources."ini-2.0.0" @@ -89763,17 +88174,17 @@ in sources."has-1.0.3" sources."has-flag-3.0.0" sources."has-yarn-3.0.0" - sources."hast-util-embedded-2.0.0" - sources."hast-util-from-parse5-7.1.0" - sources."hast-util-has-property-2.0.0" + sources."hast-util-embedded-2.0.1" + sources."hast-util-from-parse5-7.1.1" + sources."hast-util-has-property-2.0.1" sources."hast-util-is-body-ok-link-2.0.0" - sources."hast-util-is-element-2.1.2" - sources."hast-util-parse-selector-3.1.0" - sources."hast-util-phrasing-2.0.1" + sources."hast-util-is-element-2.1.3" + sources."hast-util-parse-selector-3.1.1" + sources."hast-util-phrasing-2.0.2" sources."hast-util-to-nlcst-2.2.0" sources."hast-util-to-string-2.0.0" - sources."hast-util-whitespace-2.0.0" - sources."hastscript-7.1.0" + sources."hast-util-whitespace-2.0.1" + sources."hastscript-7.2.0" sources."hosted-git-info-5.2.1" sources."http-cache-semantics-4.1.0" (sources."http2-wrapper-2.2.0" // { @@ -89783,7 +88194,7 @@ in }) sources."ignore-5.2.4" sources."import-lazy-4.0.0" - sources."import-meta-resolve-2.2.0" + sources."import-meta-resolve-2.2.1" sources."imurmurhash-0.1.4" sources."indent-string-5.0.0" sources."inflight-1.0.6" @@ -89842,7 +88253,8 @@ in sources."mdast-util-mdx-expression-1.3.1" sources."mdast-util-mdx-jsx-2.1.0" sources."mdast-util-mdxjs-esm-1.3.0" - sources."mdast-util-to-markdown-1.4.0" + sources."mdast-util-phrasing-3.0.0" + sources."mdast-util-to-markdown-1.5.0" sources."mdast-util-to-nlcst-5.2.1" sources."mdast-util-to-string-3.1.0" sources."meow-11.0.0" @@ -89884,7 +88296,7 @@ in sources."micromark-util-types-1.0.2" sources."mimic-response-4.0.0" sources."min-indent-1.0.1" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" sources."minimist-1.2.7" sources."minimist-options-4.1.0" sources."mri-1.2.0" @@ -90021,7 +88433,7 @@ in sources."to-vfile-7.2.3" sources."trim-newlines-4.0.2" sources."trough-2.1.0" - sources."type-fest-3.4.0" + sources."type-fest-3.5.2" sources."typedarray-0.0.6" sources."typedarray-to-buffer-3.1.5" sources."unherit-3.0.1" @@ -90093,7 +88505,7 @@ in sources."xdg-basedir-5.1.0" sources."xtend-2.1.2" sources."yallist-4.0.0" - sources."yaml-2.2.0" + sources."yaml-2.2.1" sources."yargs-parser-21.1.1" sources."yocto-queue-1.0.0" sources."zwitch-2.0.4" @@ -90119,8 +88531,8 @@ in dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.5" - sources."@babel/core-7.20.7" + sources."@babel/compat-data-7.20.10" + sources."@babel/core-7.20.12" (sources."@babel/generator-7.20.7" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" @@ -90131,7 +88543,7 @@ in sources."@babel/helper-function-name-7.19.0" sources."@babel/helper-hoist-variables-7.18.6" sources."@babel/helper-module-imports-7.18.6" - sources."@babel/helper-module-transforms-7.20.7" + sources."@babel/helper-module-transforms-7.20.11" sources."@babel/helper-simple-access-7.20.2" sources."@babel/helper-split-export-declaration-7.18.6" sources."@babel/helper-string-parser-7.19.4" @@ -90141,7 +88553,7 @@ in sources."@babel/highlight-7.18.6" sources."@babel/parser-7.20.7" sources."@babel/template-7.20.7" - sources."@babel/traverse-7.20.8" + sources."@babel/traverse-7.20.12" sources."@babel/types-7.20.7" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" @@ -90156,7 +88568,7 @@ in sources."balanced-match-1.0.2" sources."brace-expansion-2.0.1" sources."browserslist-4.21.4" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" sources."chalk-2.4.2" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -90172,7 +88584,7 @@ in sources."escape-string-regexp-1.0.5" (sources."filelist-1.0.4" // { dependencies = [ - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" ]; }) sources."fs-extra-5.0.0" @@ -90212,7 +88624,7 @@ in }) sources."js-tokens-4.0.0" sources."jsesc-2.5.2" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."jsonfile-4.0.0" sources."jsonlint-1.6.3" sources."lodash-4.17.21" @@ -90284,7 +88696,7 @@ in sources."async-2.6.4" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."axios-0.24.0" sources."axios-digest-0.3.0" sources."bcrypt-pbkdf-1.0.2" @@ -90402,7 +88814,7 @@ in sources."path-to-regexp-1.8.0" sources."performance-now-2.1.0" sources."psl-1.9.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.5.3" sources."request-2.88.2" sources."require-directory-2.1.1" @@ -90469,7 +88881,7 @@ in dependencies = [ sources."@types/glob-7.2.0" sources."@types/minimatch-5.1.2" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" sources."chromium-pickle-js-0.2.0" @@ -90554,7 +88966,7 @@ in }; dependencies = [ sources."browserslist-4.21.4" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" sources."electron-to-chromium-1.4.284" sources."escalade-3.1.1" sources."fraction.js-4.2.0" @@ -90562,7 +88974,7 @@ in sources."node-releases-2.0.8" sources."normalize-range-0.1.2" sources."picocolors-1.0.0" - sources."postcss-8.4.20" + sources."postcss-8.4.21" sources."postcss-value-parser-4.2.0" sources."source-map-js-1.0.2" sources."update-browserslist-db-1.0.10" @@ -90593,7 +89005,7 @@ in sources."lru-cache-6.0.0" sources."minimist-1.2.7" sources."neo-async-2.6.2" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."parse-github-url-1.0.2" sources."safer-buffer-2.1.2" sources."semver-7.3.8" @@ -90625,7 +89037,7 @@ in }; dependencies = [ sources."@tootallnate/once-1.1.2" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/yauzl-2.10.0" sources."acorn-8.8.1" sources."acorn-walk-8.2.0" @@ -90635,7 +89047,7 @@ in sources."ansi-styles-4.3.0" sources."ast-types-0.13.4" sources."available-typed-arrays-1.0.5" - (sources."aws-sdk-2.1281.0" // { + (sources."aws-sdk-2.1296.0" // { dependencies = [ sources."uuid-8.0.0" ]; @@ -90666,7 +89078,7 @@ in sources."clone-1.0.4" sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."commander-9.4.1" + sources."commander-9.5.0" sources."concat-map-0.0.1" sources."core-util-is-1.0.3" sources."cross-fetch-3.1.5" @@ -90760,7 +89172,7 @@ in sources."mute-stream-0.0.8" sources."netmask-2.0.2" sources."node-fetch-2.6.7" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."nth-check-2.1.1" sources."once-1.4.0" sources."onetime-5.1.2" @@ -90859,10 +89271,10 @@ in aws-cdk = nodeEnv.buildNodePackage { name = "aws-cdk"; packageName = "aws-cdk"; - version = "2.56.0"; + version = "2.60.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.56.0.tgz"; - sha512 = "UjzCnuW5uw10MrzlOqp/cc8dGfTw5Og9YpMWBlCrYA+kVSSS2ikc6aWnk0IM07RQLr9RTvAzXkT2IfVivY3baQ=="; + url = "https://registry.npmjs.org/aws-cdk/-/aws-cdk-2.60.0.tgz"; + sha512 = "/kO8KGuJVCnkhnR+SmDHsAaaqmaTR6Vp/kpryohsBfKh/ZdOH1oKpviMiz167K6tUdin7x95Wjz/GZAfeiKPKg=="; }; dependencies = [ sources."fsevents-2.3.2" @@ -90981,7 +89393,7 @@ in sources."execa-1.0.0" sources."extend-3.0.2" sources."fast-glob-3.2.12" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fill-range-7.0.1" sources."find-up-4.1.0" sources."fs.realpath-1.0.0" @@ -91298,10 +89710,10 @@ in balanceofsatoshis = nodeEnv.buildNodePackage { name = "balanceofsatoshis"; packageName = "balanceofsatoshis"; - version = "13.10.7"; + version = "13.21.0"; src = fetchurl { - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-13.10.7.tgz"; - sha512 = "pmdso9LB//jfUtTHjegJ81rNyMJPNp3gKCvIoff9W4MBB677iiT/XmkgOmtUXuFID2wMSC3QZ82HzQVIsndPxg=="; + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-13.21.0.tgz"; + sha512 = "4y0t3tAZiAMqRpyw0Yc8EbbRlikIpJRSKkcbi/0i3QcNg85FYaMeL7f2+BxfkMWzTjmN6XA4WWaPgqTV7W69eg=="; }; dependencies = [ (sources."@alexbosworth/caporal-1.4.4" // { @@ -91310,7 +89722,7 @@ in ]; }) sources."@alexbosworth/cli-table3-0.6.1" - sources."@alexbosworth/fiat-1.0.3" + sources."@alexbosworth/fiat-1.0.4" sources."@alexbosworth/html2unicode-1.1.5" sources."@alexbosworth/node-fetch-2.6.2" (sources."@alexbosworth/prettyjson-1.2.2" // { @@ -91327,9 +89739,9 @@ in }) sources."@colors/colors-1.5.0" sources."@dabh/diagnostics-2.0.3" - sources."@grammyjs/types-2.10.3" - sources."@grpc/grpc-js-1.7.0" - sources."@grpc/proto-loader-0.7.2" + sources."@grammyjs/types-2.11.2" + sources."@grpc/grpc-js-1.8.4" + sources."@grpc/proto-loader-0.7.4" sources."@handsontable/formulajs-2.0.2" sources."@mitmaro/errors-1.0.0" sources."@mitmaro/http-authorization-header-1.0.0" @@ -91346,11 +89758,11 @@ in sources."@types/body-parser-1.19.2" sources."@types/caseless-0.12.2" sources."@types/connect-3.4.35" - sources."@types/express-4.17.13" - sources."@types/express-serve-static-core-4.17.31" + sources."@types/express-4.17.15" + sources."@types/express-serve-static-core-4.17.32" sources."@types/long-4.0.2" sources."@types/mime-3.0.1" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" sources."@types/request-2.48.8" @@ -91365,7 +89777,7 @@ in sources."ms-2.1.2" ]; }) - sources."ajv-8.11.2" + sources."ajv-8.12.0" sources."ansi-0.3.1" sources."ansi-escapes-1.4.0" sources."ansi-regex-5.0.1" @@ -91375,7 +89787,7 @@ in sources."asciichart-1.5.25" sources."astral-regex-2.0.0" sources."async-3.2.4" - sources."asyncjs-util-1.2.10" + sources."asyncjs-util-1.2.11" sources."asynckit-0.4.0" sources."base-x-3.0.9" sources."base64-js-1.5.1" @@ -91395,15 +89807,11 @@ in }) sources."bluebird-3.7.2" sources."bn.js-5.2.1" - sources."body-parser-1.20.0" - sources."bolt01-1.2.5" - (sources."bolt03-1.2.14" // { - dependencies = [ - sources."bitcoinjs-lib-6.0.1" - ]; - }) - sources."bolt07-1.8.2" - sources."bolt09-0.2.3" + sources."body-parser-1.20.1" + sources."bolt01-1.2.6" + sources."bolt03-1.2.15" + sources."bolt07-1.8.3" + sources."bolt09-0.2.4" sources."bs58-4.0.1" sources."bs58check-2.1.2" sources."buffer-6.0.3" @@ -91473,7 +89881,7 @@ in sources."etag-1.8.1" sources."event-target-shim-5.0.1" sources."exit-hook-1.1.1" - (sources."express-4.18.1" // { + (sources."express-4.18.2" // { dependencies = [ sources."safe-buffer-5.2.1" ]; @@ -91493,22 +89901,8 @@ in sources."gauge-1.2.7" sources."get-caller-file-2.0.5" sources."get-intrinsic-1.1.3" - (sources."goldengate-11.4.0" // { - dependencies = [ - sources."@types/node-18.7.14" - sources."bitcoinjs-lib-6.0.2" - sources."ecpair-2.0.1" - sources."ln-service-53.23.0" - (sources."ln-sync-3.14.0" // { - dependencies = [ - sources."@grpc/grpc-js-1.6.11" - sources."lightning-5.20.2" - sources."ln-service-53.22.0" - ]; - }) - ]; - }) - (sources."grammy-1.12.0" // { + sources."goldengate-12.0.2" + (sources."grammy-1.13.1" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -91553,13 +89947,13 @@ in sources."string-width-5.1.2" sources."strip-ansi-7.0.1" sources."tmp-0.0.33" - sources."type-fest-3.4.0" sources."wrap-ansi-8.0.1" ]; }) - (sources."invoices-2.2.0" // { + (sources."invoices-2.2.2" // { dependencies = [ sources."bitcoinjs-lib-6.0.2" + sources."bolt07-1.8.2" ]; }) sources."ip-2.0.0" @@ -91585,89 +89979,75 @@ in sources."jstat-1.9.6" sources."kind-of-6.0.3" sources."kuler-2.0.0" - (sources."lightning-5.21.0" // { - dependencies = [ - sources."@grpc/grpc-js-1.6.12" - sources."@types/node-18.7.14" - sources."bitcoinjs-lib-6.0.2" - sources."ecpair-2.0.1" - ]; - }) - (sources."ln-accounting-6.1.1" // { - dependencies = [ - sources."@grpc/grpc-js-1.7.3" - sources."@grpc/proto-loader-0.7.3" - sources."@types/express-4.17.14" - sources."@types/node-18.11.9" - sources."bitcoinjs-lib-6.0.2" - sources."body-parser-1.20.1" - sources."bolt09-0.2.4" - sources."express-4.18.2" - sources."lightning-6.2.7" - sources."ln-service-54.2.6" - sources."qs-6.11.0" - sources."safe-buffer-5.2.1" - sources."type-fest-3.1.0" - sources."ws-8.10.0" - ]; - }) - (sources."ln-service-54.6.0" // { + (sources."lightning-6.8.0" // { dependencies = [ sources."@grpc/grpc-js-1.8.0" - sources."@grpc/proto-loader-0.7.4" - sources."@types/express-4.17.15" - sources."@types/node-18.11.15" - sources."bitcoinjs-lib-6.0.2" - sources."body-parser-1.20.1" - sources."bolt09-0.2.4" - sources."express-4.18.2" - sources."invoices-2.2.2" - (sources."lightning-6.6.0" // { + sources."@types/node-18.11.16" + sources."asyncjs-util-1.2.10" + sources."bolt07-1.8.2" + (sources."psbt-2.7.1" // { dependencies = [ - sources."bitcoinjs-lib-6.1.0" + sources."bitcoinjs-lib-6.0.2" ]; }) - sources."qs-6.11.0" - sources."safe-buffer-5.2.1" sources."type-fest-3.4.0" - sources."ws-8.11.0" ]; }) - (sources."ln-sync-4.0.5" // { + (sources."ln-accounting-6.1.2" // { dependencies = [ - sources."@grpc/grpc-js-1.7.3" - sources."@grpc/proto-loader-0.7.3" - sources."@types/express-4.17.14" - sources."@types/node-18.11.9" - sources."bitcoinjs-lib-6.0.2" - sources."body-parser-1.20.1" - sources."bolt09-0.2.4" - sources."express-4.18.2" - sources."lightning-6.2.7" - sources."ln-service-54.2.6" - sources."qs-6.11.0" - sources."safe-buffer-5.2.1" - sources."type-fest-3.1.0" - sources."ws-8.10.0" + sources."@grpc/grpc-js-1.8.1" + sources."bolt07-1.8.2" + sources."goldengate-12.0.1" + (sources."ln-sync-4.1.0" // { + dependencies = [ + sources."asyncjs-util-1.2.10" + sources."ln-service-54.8.0" + ]; + }) + (sources."psbt-2.7.1" // { + dependencies = [ + sources."bitcoinjs-lib-6.0.2" + ]; + }) ]; }) - (sources."ln-telegram-4.3.1" // { + (sources."ln-service-54.9.0" // { dependencies = [ - sources."@grpc/grpc-js-1.7.3" - sources."@grpc/proto-loader-0.7.3" - sources."@types/express-4.17.14" - sources."@types/node-18.11.9" - sources."bitcoinjs-lib-6.0.2" - sources."body-parser-1.20.1" - sources."bolt09-0.2.4" - sources."express-4.18.2" - sources."invoices-2.2.2" - sources."lightning-6.3.1" - sources."ln-service-54.3.2" - sources."qs-6.11.0" - sources."safe-buffer-5.2.1" - sources."type-fest-3.2.0" - sources."ws-8.11.0" + sources."@grpc/grpc-js-1.8.1" + sources."@types/ws-8.5.4" + sources."bolt09-0.2.5" + sources."invoices-2.2.3" + sources."lightning-7.0.3" + sources."type-fest-3.5.1" + ]; + }) + sources."ln-sync-4.2.0" + (sources."ln-telegram-4.6.0" // { + dependencies = [ + sources."@grpc/grpc-js-1.8.1" + sources."bolt09-0.2.5" + sources."debug-4.3.4" + (sources."goldengate-12.0.1" // { + dependencies = [ + sources."bolt07-1.8.2" + (sources."ln-sync-4.1.0" // { + dependencies = [ + sources."asyncjs-util-1.2.10" + sources."ln-service-54.8.0" + (sources."psbt-2.7.1" // { + dependencies = [ + sources."bitcoinjs-lib-6.0.2" + ]; + }) + ]; + }) + ]; + }) + sources."grammy-1.13.0" + sources."invoices-2.2.3" + sources."ln-sync-4.1.1" + sources."ms-2.1.2" + sources."paid-services-4.2.1" ]; }) sources."lodash-4.17.21" @@ -91690,7 +90070,7 @@ in ]; }) sources."long-4.0.0" - sources."luxon-3.1.0" + sources."luxon-3.2.1" sources."macaroon-3.0.4" sources."md5.js-1.3.5" sources."media-typer-0.3.0" @@ -91712,13 +90092,13 @@ in sources."ms-2.0.0" sources."mute-stream-0.0.6" sources."negotiator-0.6.3" - sources."node-fetch-2.6.7" - sources."node-gyp-build-4.5.0" + sources."node-fetch-2.6.8" + sources."node-gyp-build-4.6.0" sources."nofilter-3.1.0" sources."npmlog-2.0.4" sources."number-is-nan-1.0.1" sources."object-assign-4.1.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."on-finished-2.4.1" sources."on-headers-1.0.2" sources."one-time-1.0.0" @@ -91735,52 +90115,18 @@ in }) sources."os-shim-0.1.3" sources."os-tmpdir-1.0.2" - sources."p2tr-1.3.2" - (sources."paid-services-4.1.0" // { + sources."p2tr-1.3.3" + (sources."paid-services-4.3.0" // { dependencies = [ - sources."@grpc/grpc-js-1.7.3" - sources."@grpc/proto-loader-0.7.3" - sources."@types/express-4.17.14" - sources."@types/node-18.11.9" - sources."bitcoinjs-lib-6.0.2" - sources."body-parser-1.20.1" - sources."bolt09-0.2.4" - sources."express-4.18.2" - sources."invoices-2.2.2" - (sources."lightning-6.3.0" // { - dependencies = [ - sources."invoices-2.2.1" - ]; - }) - sources."ln-service-54.3.1" - sources."qs-6.11.0" - sources."safe-buffer-5.2.1" - sources."type-fest-3.2.0" - sources."ws-8.11.0" + sources."bolt09-0.2.5" + sources."invoices-2.2.3" ]; }) sources."parseurl-1.3.3" sources."path-to-regexp-0.1.7" sources."pinkie-2.0.4" sources."pinkie-promise-2.0.1" - (sources."probing-3.0.0" // { - dependencies = [ - sources."@grpc/grpc-js-1.7.3" - sources."@grpc/proto-loader-0.7.3" - sources."@types/express-4.17.14" - sources."@types/node-18.11.7" - sources."bitcoinjs-lib-6.0.2" - sources."body-parser-1.20.1" - sources."bolt09-0.2.4" - sources."express-4.18.2" - sources."lightning-6.2.5" - sources."ln-service-54.2.4" - sources."qs-6.11.0" - sources."safe-buffer-5.2.1" - sources."type-fest-3.1.0" - sources."ws-8.10.0" - ]; - }) + sources."probing-3.0.1" sources."process-nextick-args-2.0.1" (sources."protobufjs-7.1.2" // { dependencies = [ @@ -91788,15 +90134,11 @@ in ]; }) sources."proxy-addr-2.0.7" - (sources."psbt-2.7.1" // { - dependencies = [ - sources."bitcoinjs-lib-6.0.2" - ]; - }) - sources."punycode-2.1.1" + sources."psbt-2.7.2" + sources."punycode-2.2.0" sources."pushdata-bitcoin-1.0.1" sources."qrcode-terminal-0.12.0" - sources."qs-6.10.3" + sources."qs-6.11.0" sources."randombytes-2.1.0" sources."range-parser-1.2.1" sources."raw-body-2.5.1" @@ -91809,7 +90151,7 @@ in sources."rx-4.1.0" sources."rxjs-7.8.0" sources."safe-buffer-5.1.2" - sources."safe-stable-stringify-2.4.1" + sources."safe-stable-stringify-2.4.2" sources."safer-buffer-2.1.2" sources."sanitize-filename-1.6.3" (sources."send-0.18.0" // { @@ -91868,7 +90210,7 @@ in sources."tslib-2.4.1" sources."tweetnacl-1.0.3" sources."tweetnacl-util-0.15.1" - sources."type-fest-2.19.0" + sources."type-fest-3.5.2" sources."type-is-1.6.18" sources."typedarray-0.0.6" sources."typeforce-1.18.0" @@ -91903,7 +90245,7 @@ in sources."color-name-1.1.4" ]; }) - sources."ws-8.8.1" + sources."ws-8.11.0" sources."y18n-5.0.8" sources."yargs-16.2.0" sources."yargs-parser-20.2.9" @@ -91921,10 +90263,10 @@ in bash-language-server = nodeEnv.buildNodePackage { name = "bash-language-server"; packageName = "bash-language-server"; - version = "4.1.3"; + version = "4.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/bash-language-server/-/bash-language-server-4.1.3.tgz"; - sha512 = "Q8hnvZoIitKpn/QcHsfwi3BdaEL3P3mlMSHonx/b2zXqDeZFh4O0fMUBPQmunq95HwMz5GK7kv7MnNCGr1rBTw=="; + url = "https://registry.npmjs.org/bash-language-server/-/bash-language-server-4.5.0.tgz"; + sha512 = "Vnq+3KScmrj6MYujzUhiZ4DJDMI/Pyc5EC2gxi1bIW8Qg+ASlOeUnm485/3Q6Ro3jNf+T6E9opQFbh6O606xfg=="; }; dependencies = [ sources."@nodelib/fs.scandir-2.1.5" @@ -91934,7 +90276,7 @@ in sources."domino-2.1.6" sources."encoding-0.1.13" sources."fast-glob-3.2.12" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fill-range-7.0.1" sources."fuzzy-search-3.2.1" sources."glob-parent-5.1.2" @@ -91944,7 +90286,7 @@ in sources."is-number-7.0.0" sources."merge2-1.4.1" sources."micromatch-4.0.5" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."picomatch-2.3.1" sources."queue-microtask-1.2.3" sources."reusify-1.0.4" @@ -92352,7 +90694,7 @@ in sources."@socket.io/component-emitter-3.1.0" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.13" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."accepts-1.3.8" sources."ansi-regex-2.1.1" sources."ansi-styles-2.2.1" @@ -92406,7 +90748,7 @@ in sources."encodeurl-1.0.2" sources."engine.io-6.2.1" sources."engine.io-client-6.2.3" - sources."engine.io-parser-5.0.4" + sources."engine.io-parser-5.0.6" sources."escalade-3.1.1" sources."escape-html-1.0.3" sources."escape-string-regexp-1.0.5" @@ -92465,10 +90807,10 @@ in sources."mitt-1.2.0" sources."ms-2.1.2" sources."negotiator-0.6.3" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."normalize-path-3.0.0" sources."object-assign-4.1.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."on-finished-2.3.0" sources."openurl-1.1.1" sources."opn-5.3.0" @@ -92608,7 +90950,7 @@ in sources."async-3.2.4" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."axios-0.24.0" sources."babel-walk-3.0.0-canary-5" sources."balanced-match-1.0.2" @@ -92859,7 +91201,7 @@ in sources."normalize-package-data-3.0.3" sources."oauth-sign-0.9.0" sources."object-assign-4.1.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."on-finished-2.4.1" sources."on-headers-1.0.2" sources."once-1.4.0" @@ -92894,7 +91236,7 @@ in sources."pug-runtime-3.0.1" sources."pug-strip-comments-2.0.0" sources."pug-walk-2.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."pushdata-bitcoin-1.0.1" sources."qrcode-1.5.1" sources."qs-6.11.0" @@ -93051,7 +91393,7 @@ in sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" sources."@types/long-4.0.2" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."addr-to-ip-port-1.5.4" sources."airplay-js-0.2.16" sources."ajv-6.12.6" @@ -93066,7 +91408,7 @@ in sources."assert-plus-1.0.0" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" sources."bcrypt-pbkdf-1.0.2" @@ -93113,7 +91455,7 @@ in sources."co-3.1.0" sources."codepage-1.4.0" sources."combined-stream-1.0.8" - sources."commander-9.4.1" + sources."commander-10.0.0" sources."compact2string-1.4.1" sources."concat-map-0.0.1" (sources."concat-stream-2.0.0" // { @@ -93304,7 +91646,7 @@ in sources."once-1.2.0" ]; }) - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qap-3.3.1" sources."qs-6.5.3" sources."query-string-1.0.1" @@ -93990,7 +92332,7 @@ in sources."terminal-image-0.1.2" sources."through-2.3.8" sources."timed-out-4.0.1" - sources."tinycolor2-1.5.1" + sources."tinycolor2-1.5.2" sources."tmp-0.0.33" (sources."to-object-path-0.3.0" // { dependencies = [ @@ -94147,20 +92489,20 @@ in cdk8s-cli = nodeEnv.buildNodePackage { name = "cdk8s-cli"; packageName = "cdk8s-cli"; - version = "2.1.83"; + version = "2.1.109"; src = fetchurl { - url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.1.83.tgz"; - sha512 = "rJcdKP8cf0/+w0tX2pwXexY6/dj/54ZzGhfTxINEsFOpZ9Tsr3w26AtrndFkBBvMbUoCkkkJqiVlpXzX8zaUvQ=="; + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-2.1.109.tgz"; + sha512 = "ebHJcPSosOi62963Roe3HB05ibu4bj2HXdFnWBbbiQB9JQtmJCfE8Ml2wmi9U1e5LMvw7xwh6NiRM/2U0I8gkg=="; }; dependencies = [ - sources."@jsii/check-node-1.72.0" - sources."@jsii/spec-1.72.0" + sources."@jsii/check-node-1.73.0" + sources."@jsii/spec-1.73.0" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@types/node-14.18.35" + sources."@types/node-14.18.36" sources."@xmldom/xmldom-0.8.6" - sources."ajv-8.11.2" + sources."ajv-8.12.0" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."astral-regex-2.0.0" @@ -94168,12 +92510,12 @@ in sources."braces-3.0.2" sources."camelcase-6.3.0" sources."case-1.6.3" - sources."cdk8s-2.5.82" - sources."cdk8s-plus-25-2.3.2" + sources."cdk8s-2.6.22" + sources."cdk8s-plus-25-2.3.27" sources."chalk-4.1.2" sources."cliui-7.0.4" sources."clone-2.1.2" - (sources."codemaker-1.72.0" // { + (sources."codemaker-1.73.0" // { dependencies = [ sources."fs-extra-10.1.0" ]; @@ -94182,7 +92524,7 @@ in sources."color-name-1.1.4" sources."colors-1.4.0" sources."commonmark-0.30.0" - sources."constructs-10.1.197" + sources."constructs-10.1.223" sources."date-format-4.0.14" sources."debug-4.3.4" sources."decamelize-5.0.1" @@ -94195,7 +92537,7 @@ in sources."escape-string-regexp-4.0.0" sources."fast-deep-equal-3.1.3" sources."fast-glob-3.2.12" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fill-range-7.0.1" sources."find-up-4.1.0" sources."flatted-3.2.7" @@ -94213,37 +92555,37 @@ in sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.3" sources."is-number-7.0.0" - (sources."jsii-1.72.0" // { + (sources."jsii-1.73.0" // { dependencies = [ sources."fs-extra-10.1.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-pacmak-1.72.0" // { + (sources."jsii-pacmak-1.73.0" // { dependencies = [ sources."fs-extra-10.1.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-reflect-1.72.0" // { + (sources."jsii-reflect-1.73.0" // { dependencies = [ sources."fs-extra-10.1.0" sources."yargs-16.2.0" ]; }) - (sources."jsii-rosetta-1.72.0" // { + (sources."jsii-rosetta-1.73.0" // { dependencies = [ sources."yargs-16.2.0" ]; }) - (sources."jsii-srcmak-0.1.770" // { + (sources."jsii-srcmak-0.1.797" // { dependencies = [ sources."fs-extra-9.1.0" ]; }) sources."json-schema-0.4.0" sources."json-schema-traverse-1.0.0" - sources."json2jsii-0.3.220" + sources."json2jsii-0.3.247" sources."jsonfile-6.1.0" sources."locate-path-5.0.0" sources."lodash.truncate-4.4.2" @@ -94257,13 +92599,13 @@ in sources."ms-2.1.2" sources."ncp-2.0.0" sources."no-case-3.0.4" - sources."oo-ascii-tree-1.72.0" + sources."oo-ascii-tree-1.73.0" sources."p-limit-2.3.0" sources."p-locate-4.1.0" sources."p-try-2.2.0" sources."path-exists-4.0.0" sources."picomatch-2.3.1" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."queue-microtask-1.2.3" sources."require-directory-2.1.1" sources."require-from-string-2.0.2" @@ -94283,7 +92625,7 @@ in sources."sort-json-2.0.1" sources."spdx-license-list-6.6.0" sources."sscaff-1.2.274" - sources."streamroller-3.1.3" + sources."streamroller-3.1.4" sources."string-width-4.2.3" sources."string.prototype.repeat-0.2.0" sources."strip-ansi-6.0.1" @@ -94325,10 +92667,10 @@ in cdktf-cli = nodeEnv.buildNodePackage { name = "cdktf-cli"; packageName = "cdktf-cli"; - version = "0.14.3"; + version = "0.15.0"; src = fetchurl { - url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.14.3.tgz"; - sha512 = "yT1NM/fBauOp2NYEftHLood35jESa72Bbxs/0jYKMP9di0tEWY5tblFyhfFnWqMMtwMlrJbnTzPb8T7sNc5eZg=="; + url = "https://registry.npmjs.org/cdktf-cli/-/cdktf-cli-0.15.0.tgz"; + sha512 = "wPVkiuoId7u1Jy1C1d+D4ktfQde5GfHkZBMppmkO/daZXsI2kH7yIFZpJ81/0k9hNRHvoK1d0/gDMMywqwWcmg=="; }; dependencies = [ sources."@babel/code-frame-7.18.6" @@ -94339,17 +92681,18 @@ in sources."@babel/parser-7.20.7" sources."@babel/template-7.20.7" sources."@babel/types-7.20.7" - sources."@cdktf/cli-core-0.14.3" - sources."@cdktf/commons-0.14.3" - sources."@cdktf/hcl2cdk-0.14.3" - sources."@cdktf/hcl2json-0.14.3" - sources."@cdktf/provider-generator-0.14.3" + sources."@cdktf/cli-core-0.15.0" + sources."@cdktf/commons-0.15.0" + sources."@cdktf/hcl2cdk-0.15.0" + sources."@cdktf/hcl2json-0.15.0" + sources."@cdktf/node-pty-prebuilt-multiarch-0.10.1-pre.10" + sources."@cdktf/provider-generator-0.15.0" sources."@jridgewell/gen-mapping-0.3.2" sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" sources."@jridgewell/trace-mapping-0.3.17" - (sources."@jsii/check-node-1.72.0" // { + (sources."@jsii/check-node-1.73.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."chalk-4.1.2" @@ -94359,7 +92702,7 @@ in sources."supports-color-7.2.0" ]; }) - sources."@jsii/spec-1.72.0" + sources."@jsii/spec-1.73.0" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -94370,7 +92713,7 @@ in sources."@sentry/node-6.19.7" sources."@sentry/types-6.19.7" sources."@sentry/utils-6.19.7" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/node-fetch-2.6.2" sources."@types/prop-types-15.7.5" sources."@types/react-18.0.26" @@ -94378,7 +92721,7 @@ in sources."@types/yoga-layout-1.9.2" sources."@xmldom/xmldom-0.8.6" sources."agent-base-6.0.2" - sources."ajv-8.11.2" + sources."ajv-8.12.0" (sources."ansi-escapes-4.3.2" // { dependencies = [ sources."type-fest-0.21.3" @@ -94392,13 +92735,17 @@ in sources."at-least-node-1.0.0" sources."auto-bind-4.0.0" sources."balanced-match-1.0.2" + sources."base64-js-1.5.1" + sources."bl-4.1.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" + sources."buffer-5.7.1" sources."bufferutil-4.0.7" sources."camelcase-6.3.0" sources."case-1.6.3" - sources."cdktf-0.14.3" + sources."cdktf-0.15.0" sources."chalk-2.4.2" + sources."chownr-1.1.4" sources."ci-info-2.0.0" sources."cli-boxes-2.2.1" sources."cli-cursor-3.1.0" @@ -94406,7 +92753,7 @@ in sources."cliui-6.0.0" sources."clone-2.1.2" sources."code-excerpt-3.0.0" - (sources."codemaker-1.72.0" // { + (sources."codemaker-1.73.0" // { dependencies = [ sources."decamelize-5.0.1" sources."fs-extra-10.1.0" @@ -94419,7 +92766,7 @@ in sources."combined-stream-1.0.8" sources."commonmark-0.30.0" sources."concat-map-0.0.1" - sources."constructs-10.1.197" + sources."constructs-10.1.223" sources."convert-to-spaces-1.0.2" sources."cookie-0.4.2" sources."cross-spawn-7.0.3" @@ -94427,28 +92774,35 @@ in sources."date-format-4.0.14" sources."debug-4.3.4" sources."decamelize-1.2.0" + sources."decompress-response-6.0.0" + sources."deep-extend-0.6.0" sources."deepmerge-4.2.2" sources."delayed-stream-1.0.0" sources."detect-indent-5.0.0" + sources."detect-libc-2.0.1" sources."detect-newline-2.1.0" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" + sources."end-of-stream-1.4.4" sources."entities-2.0.3" sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" sources."events-3.3.0" + sources."expand-template-2.0.3" sources."fast-deep-equal-3.1.3" sources."fast-glob-3.2.12" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."figures-3.2.0" sources."fill-range-7.0.1" sources."find-up-4.1.0" sources."flatted-3.2.7" sources."follow-redirects-1.15.2" sources."form-data-3.0.1" + sources."fs-constants-1.0.0" sources."fs-extra-8.1.0" sources."fs.realpath-1.0.0" sources."get-caller-file-2.0.5" + sources."github-from-package-0.0.0" (sources."glob-7.2.3" // { dependencies = [ sources."minimatch-3.1.2" @@ -94458,16 +92812,18 @@ in sources."graceful-fs-4.2.10" (sources."graphology-0.25.1" // { dependencies = [ - sources."graphology-types-0.24.5" + sources."graphology-types-0.24.7" ]; }) sources."graphology-types-0.21.2" sources."has-flag-3.0.0" sources."https-proxy-agent-5.0.1" sources."iconv-lite-0.6.3" + sources."ieee754-1.2.1" sources."indent-string-4.0.0" sources."inflight-1.0.6" sources."inherits-2.0.4" + sources."ini-1.3.8" (sources."ink-3.2.0" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -94479,6 +92835,7 @@ in ]; }) sources."ink-select-input-4.2.1" + sources."ink-table-3.0.0" sources."is-ci-2.0.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" @@ -94488,7 +92845,7 @@ in sources."isexe-2.0.0" sources."js-tokens-4.0.0" sources."jsesc-2.5.2" - (sources."jsii-1.72.0" // { + (sources."jsii-1.73.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."chalk-4.1.2" @@ -94506,7 +92863,7 @@ in sources."yargs-parser-20.2.9" ]; }) - (sources."jsii-pacmak-1.72.0" // { + (sources."jsii-pacmak-1.73.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."cliui-7.0.4" @@ -94522,7 +92879,7 @@ in sources."yargs-parser-20.2.9" ]; }) - (sources."jsii-reflect-1.72.0" // { + (sources."jsii-reflect-1.73.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."chalk-4.1.2" @@ -94540,7 +92897,7 @@ in sources."yargs-parser-20.2.9" ]; }) - (sources."jsii-rosetta-1.72.0" // { + (sources."jsii-rosetta-1.73.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."cliui-7.0.4" @@ -94552,7 +92909,7 @@ in sources."yargs-parser-20.2.9" ]; }) - (sources."jsii-srcmak-0.1.770" // { + (sources."jsii-srcmak-0.1.797" // { dependencies = [ sources."fs-extra-9.1.0" sources."jsonfile-6.1.0" @@ -94575,22 +92932,28 @@ in sources."mime-db-1.52.0" sources."mime-types-2.1.35" sources."mimic-fn-2.1.0" - (sources."minimatch-5.1.2" // { + sources."mimic-response-3.1.0" + (sources."minimatch-5.1.6" // { dependencies = [ sources."brace-expansion-2.0.1" ]; }) sources."minimist-1.2.7" + sources."mkdirp-classic-0.5.3" sources."ms-2.1.2" + sources."nan-2.17.0" + sources."napi-build-utils-1.0.2" sources."ncp-2.0.0" + sources."node-abi-3.31.0" sources."node-abort-controller-3.0.1" - sources."node-fetch-2.6.7" - sources."node-gyp-build-4.5.0" + sources."node-fetch-2.6.8" + sources."node-gyp-build-4.6.0" sources."object-assign-4.1.1" + sources."object-hash-2.2.0" sources."obliterator-2.0.4" sources."once-1.4.0" sources."onetime-5.1.2" - sources."oo-ascii-tree-1.72.0" + sources."oo-ascii-tree-1.73.0" sources."p-limit-2.3.0" sources."p-locate-4.1.0" sources."p-try-2.2.0" @@ -94599,12 +92962,16 @@ in sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" sources."picomatch-2.3.1" - sources."prettier-2.8.1" - sources."punycode-2.1.1" + sources."prebuild-install-7.1.1" + sources."prettier-2.8.3" + sources."pump-3.0.0" + sources."punycode-2.2.0" sources."queue-microtask-1.2.3" + sources."rc-1.2.8" sources."react-17.0.2" sources."react-devtools-core-4.27.1" sources."react-reconciler-0.26.2" + sources."readable-stream-3.6.0" sources."require-directory-2.1.1" sources."require-from-string-2.0.2" sources."require-main-filename-2.0.0" @@ -94628,6 +92995,8 @@ in sources."shebang-regex-3.0.0" sources."shell-quote-1.7.4" sources."signal-exit-3.0.7" + sources."simple-concat-1.0.1" + sources."simple-get-4.0.1" (sources."slice-ansi-3.0.0" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -94642,11 +93011,15 @@ in sources."escape-string-regexp-2.0.0" ]; }) - sources."streamroller-3.1.3" + sources."streamroller-3.1.4" sources."string-width-4.2.3" sources."string.prototype.repeat-0.2.0" + sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" + sources."strip-json-comments-2.0.1" sources."supports-color-5.5.0" + sources."tar-fs-2.1.1" + sources."tar-stream-2.2.0" sources."to-fast-properties-2.0.0" sources."to-regex-range-5.0.1" sources."tr46-0.0.3" @@ -94657,6 +93030,7 @@ in sources."universalify-0.1.2" sources."uri-js-4.4.1" sources."utf-8-validate-5.0.10" + sources."util-deprecate-1.0.2" sources."uuid-8.3.2" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" @@ -94675,6 +93049,7 @@ in sources."ws-7.5.9" sources."xml-js-1.6.11" sources."xmlbuilder-15.1.1" + sources."xstate-4.35.2" sources."y18n-4.0.3" sources."yallist-4.0.0" (sources."yargs-17.6.2" // { @@ -94897,7 +93272,7 @@ in sources."mute-stream-0.0.8" sources."node-fetch-1.7.3" sources."prompt-1.3.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."query-string-6.14.1" sources."read-1.0.7" sources."revalidator-0.1.8" @@ -94983,10 +93358,10 @@ in coc-diagnostic = nodeEnv.buildNodePackage { name = "coc-diagnostic"; packageName = "coc-diagnostic"; - version = "0.23.6"; + version = "0.23.7"; src = fetchurl { - url = "https://registry.npmjs.org/coc-diagnostic/-/coc-diagnostic-0.23.6.tgz"; - sha512 = "NlTA2rgJwE0/KZ/tQGDIFrpIfBpSUC7G7gC1aClNyaiG8AsrbPxsK45XoYJ8Qkh8j9AyQxQ/DFh2Pwh+qE86bA=="; + url = "https://registry.npmjs.org/coc-diagnostic/-/coc-diagnostic-0.23.7.tgz"; + sha512 = "CRFEcusfy8ATbYswZV2205Et/qjfe82KvJunQnLL8VlhKkymwgrfbgMZCTr35WPX0Dv3PItUSZZYq91LcYIm6w=="; }; buildInputs = globalBuildInputs; meta = { @@ -95076,10 +93451,10 @@ in coc-explorer = nodeEnv.buildNodePackage { name = "coc-explorer"; packageName = "coc-explorer"; - version = "0.25.4"; + version = "0.26.1"; src = fetchurl { - url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.25.4.tgz"; - sha512 = "2Bm+znIZxurdgYKolB93suCVQs2B5NI/6R30EkNxxkvpBFj5KYL+ST9azZmyaL8UmOs1L+Lqq8JLBtTANs428Q=="; + url = "https://registry.npmjs.org/coc-explorer/-/coc-explorer-0.26.1.tgz"; + sha512 = "L2qnieIfAu4Eqv6+1Cir4vO0E8AI8/8Meqc5GsYdwEiblMRGmB8XnIJoIYY7RhdS4jztw25EmLfBcj11q0JTRQ=="; }; dependencies = [ sources."@sindresorhus/chunkify-0.2.0" @@ -95201,7 +93576,7 @@ in dependencies = [ sources."isexe-2.0.0" sources."tslib-2.4.1" - sources."vscode-languageserver-textdocument-1.0.8" + sources."vscode-languageserver-textdocument-1.0.9" sources."vscode-uri-3.0.7" sources."which-2.0.2" ]; @@ -95217,10 +93592,10 @@ in coc-haxe = nodeEnv.buildNodePackage { name = "coc-haxe"; packageName = "coc-haxe"; - version = "0.15.0"; + version = "0.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/coc-haxe/-/coc-haxe-0.15.0.tgz"; - sha512 = "89uBfIQumDEP0wmdoy1KIWC+aK25lSeg9Njeml9FbG8YbzKAmgbxH7d06Y+FsliEm/wJzxz8b5KfVZ4lC3v3QQ=="; + url = "https://registry.npmjs.org/coc-haxe/-/coc-haxe-0.16.0.tgz"; + sha512 = "fFae5P/6EC6a7EPYGjMo6Bq5IETZwMpcshk63ck+uyHrv/VsFiafQw5mlsK+7VSzr9QngBB9tl8qM0ibsR7kiQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -95379,10 +93754,10 @@ in coc-markdownlint = nodeEnv.buildNodePackage { name = "coc-markdownlint"; packageName = "coc-markdownlint"; - version = "1.26.0"; + version = "1.27.0"; src = fetchurl { - url = "https://registry.npmjs.org/coc-markdownlint/-/coc-markdownlint-1.26.0.tgz"; - sha512 = "8aBF+a4GpM5tWvEk2+6uwOXQZcwZ8+ng2jNKNo8hvk1st4boFgXOwB8JImBbNTff+WqfavzXJl3OphCezx0UJA=="; + url = "https://registry.npmjs.org/coc-markdownlint/-/coc-markdownlint-1.27.0.tgz"; + sha512 = "sVu+bIYMvPDNFK0nTHem4+xO86mVi3+s79b/4OUrG9HcyspFfMdeh5NDQqMxNW4VFj5uBNHqLbTXrRnuK2ZjfA=="; }; buildInputs = globalBuildInputs; meta = { @@ -95409,6 +93784,7 @@ in sources."agent-base-6.0.2" sources."arch-2.2.0" sources."async-2.6.4" + sources."available-typed-arrays-1.0.5" sources."await-semaphore-0.1.3" sources."balanced-match-1.0.2" sources."big-integer-1.6.51" @@ -95441,13 +93817,15 @@ in sources."duplexer2-0.1.4" sources."encoding-0.1.13" sources."end-of-stream-1.4.4" - sources."es-abstract-1.20.5" + sources."es-abstract-1.21.1" + sources."es-set-tostringtag-2.0.1" sources."es-to-primitive-1.2.1" sources."execa-1.0.0" sources."fast-diff-1.2.0" sources."fb-watchman-2.0.2" sources."flatted-3.2.7" sources."follow-redirects-1.15.2" + sources."for-each-0.3.3" sources."fp-ts-2.13.1" sources."fs-extra-8.1.0" (sources."fs-minipass-2.1.0" // { @@ -95469,11 +93847,13 @@ in sources."get-stream-4.1.0" sources."get-symbol-description-1.0.0" sources."glob-7.2.3" + sources."globalthis-1.0.3" sources."gopd-1.0.1" sources."graceful-fs-4.2.10" sources."has-1.0.3" sources."has-bigints-1.0.2" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."http-proxy-agent-4.0.1" @@ -95485,6 +93865,7 @@ in sources."ini-1.3.8" sources."int64-buffer-0.1.10" sources."internal-slot-1.0.4" + sources."is-array-buffer-3.0.1" sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" @@ -95497,6 +93878,7 @@ in sources."is-stream-1.1.0" sources."is-string-1.0.7" sources."is-symbol-1.0.4" + sources."is-typed-array-1.1.10" sources."is-weakref-1.0.2" sources."is-wsl-2.2.0" sources."isarray-1.0.0" @@ -95533,10 +93915,10 @@ in }) sources."ncp-2.0.0" sources."nice-try-1.0.5" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."node-int64-0.4.0" sources."npm-run-path-2.0.2" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."object-keys-1.1.1" sources."object.assign-4.1.4" sources."once-1.4.0" @@ -95567,7 +93949,7 @@ in sources."shell-quote-1.7.4" sources."side-channel-1.0.4" sources."signal-exit-3.0.7" - sources."streamroller-3.1.3" + sources."streamroller-3.1.4" sources."string.prototype.trimend-1.0.6" sources."string.prototype.trimstart-1.0.6" (sources."string_decoder-1.1.1" // { @@ -95581,6 +93963,7 @@ in sources."tr46-0.0.3" sources."traverse-0.3.9" sources."tslib-2.4.1" + sources."typed-array-length-1.0.4" sources."unbox-primitive-1.0.2" sources."universalify-0.1.2" sources."unzipper-0.10.11" @@ -95592,13 +93975,14 @@ in sources."vscode-languageserver-types-3.15.1" ]; }) - sources."vscode-languageserver-textdocument-1.0.8" + sources."vscode-languageserver-textdocument-1.0.9" sources."vscode-languageserver-types-3.17.2" sources."vscode-uri-2.1.2" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" sources."which-2.0.2" sources."which-boxed-primitive-1.0.2" + sources."which-typed-array-1.1.9" sources."wrappy-1.0.2" sources."yallist-4.0.0" ]; @@ -95638,7 +94022,7 @@ in sha512 = "t/j62Sjq/eBcaN90b4KPNDuZBP3K+TomXj9RLdiJX0zE7RG2byqsxVTnVKAk9c+qE05jv16C5Zv1qv97ZKcA4g=="; }; dependencies = [ - sources."prettier-2.8.1" + sources."prettier-2.8.3" ]; buildInputs = globalBuildInputs; meta = { @@ -95659,7 +94043,7 @@ in sha512 = "MP4yyTx1C7WCp6/l1JIBlSIZLmnoNLSjHPyt2rCKQyglt8T+4zt6pHDRgoG+nGs9SjxMASQJLU7y4tURHTV+4g=="; }; dependencies = [ - sources."pyright-1.1.285" + sources."pyright-1.1.290" ]; buildInputs = globalBuildInputs; meta = { @@ -95700,7 +94084,7 @@ in dependencies = [ sources."vscode-jsonrpc-8.0.2" sources."vscode-languageserver-protocol-3.17.2" - sources."vscode-languageserver-textdocument-1.0.8" + sources."vscode-languageserver-textdocument-1.0.9" sources."vscode-languageserver-types-3.17.2" ]; buildInputs = globalBuildInputs; @@ -95733,10 +94117,10 @@ in coc-rust-analyzer = nodeEnv.buildNodePackage { name = "coc-rust-analyzer"; packageName = "coc-rust-analyzer"; - version = "0.71.0"; + version = "0.71.1"; src = fetchurl { - url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.71.0.tgz"; - sha512 = "T5PvH6Kq5oR5Aiiq/7bGNIkLQsrlJ5p2k/mOuy9vfU9sdPKSv63EFWYHpRQuLF5uN+CC21Q3PJscGdQwYwmHlQ=="; + url = "https://registry.npmjs.org/coc-rust-analyzer/-/coc-rust-analyzer-0.71.1.tgz"; + sha512 = "O8gH7wk6AMoRKBvfwvI9rF9MeZapS5fmN+U8/xlgB12IqcqkQliOWMbQYoH+jmb1/CWEnCg3hY6MjwWIwe9HBA=="; }; buildInputs = globalBuildInputs; meta = { @@ -95762,7 +94146,7 @@ in sources."assert-plus-1.0.0" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."balanced-match-1.0.2" sources."bash-language-server-3.0.3" sources."bcrypt-pbkdf-1.0.2" @@ -95783,7 +94167,7 @@ in sources."fs.realpath-1.0.0" sources."fuzzy-search-3.2.1" sources."getpass-0.1.7" - sources."glob-8.0.3" + sources."glob-8.1.0" sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."http-signature-1.2.0" @@ -95799,12 +94183,12 @@ in sources."lodash-4.17.21" sources."mime-db-1.52.0" sources."mime-types-2.1.35" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" sources."oauth-sign-0.9.0" sources."once-1.4.0" sources."performance-now-2.1.0" sources."psl-1.9.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.5.3" sources."request-2.88.2" sources."request-promise-core-1.1.4" @@ -95825,7 +94209,7 @@ in sources."vscode-jsonrpc-8.0.2" sources."vscode-languageserver-6.1.1" sources."vscode-languageserver-protocol-3.17.2" - sources."vscode-languageserver-textdocument-1.0.8" + sources."vscode-languageserver-textdocument-1.0.9" sources."vscode-languageserver-types-3.17.2" sources."web-tree-sitter-0.20.7" sources."wrappy-1.0.2" @@ -96037,8 +94421,8 @@ in dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.5" - sources."@babel/core-7.20.7" + sources."@babel/compat-data-7.20.10" + sources."@babel/core-7.20.12" (sources."@babel/generator-7.20.7" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" @@ -96049,7 +94433,7 @@ in sources."@babel/helper-function-name-7.19.0" sources."@babel/helper-hoist-variables-7.18.6" sources."@babel/helper-module-imports-7.18.6" - sources."@babel/helper-module-transforms-7.20.7" + sources."@babel/helper-module-transforms-7.20.11" sources."@babel/helper-simple-access-7.20.2" sources."@babel/helper-split-export-declaration-7.18.6" sources."@babel/helper-string-parser-7.19.4" @@ -96063,7 +94447,7 @@ in }) sources."@babel/parser-7.20.7" sources."@babel/template-7.20.7" - sources."@babel/traverse-7.20.8" + sources."@babel/traverse-7.20.12" sources."@babel/types-7.20.7" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" @@ -96080,7 +94464,7 @@ in sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."@types/unist-2.0.6" - sources."ajv-8.11.2" + sources."ajv-8.12.0" sources."ansi-regex-5.0.1" sources."ansi-styles-3.2.1" sources."array-union-2.1.0" @@ -96103,7 +94487,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -96152,7 +94536,7 @@ in sources."fast-diff-1.2.0" sources."fast-glob-3.2.12" sources."fastest-levenshtein-1.0.16" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."file-entry-cache-6.0.1" sources."fill-range-7.0.1" sources."find-up-4.1.0" @@ -96213,7 +94597,7 @@ in sources."jsesc-2.5.2" sources."json-parse-even-better-errors-2.3.1" sources."json-schema-traverse-1.0.0" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."kind-of-6.0.3" sources."known-css-properties-0.21.0" sources."lines-and-columns-1.2.4" @@ -96281,7 +94665,7 @@ in sources."postcss-selector-parser-6.0.11" sources."postcss-syntax-0.36.2" sources."postcss-value-parser-4.2.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."queue-microtask-1.2.3" sources."quick-lru-4.0.1" (sources."read-pkg-5.2.0" // { @@ -96361,7 +94745,7 @@ in sources."vscode-languageserver-types-3.16.0-next.1" ]; }) - sources."vscode-languageserver-textdocument-1.0.8" + sources."vscode-languageserver-textdocument-1.0.9" sources."vscode-languageserver-types-3.17.2" sources."vscode-uri-2.1.2" sources."which-1.3.1" @@ -96463,7 +94847,7 @@ in sources."@taplo/lsp-0.2.4" sources."encoding-0.1.13" sources."iconv-lite-0.6.3" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."safer-buffer-2.1.2" sources."tr46-0.0.3" sources."webidl-conversions-3.0.1" @@ -96750,11 +95134,11 @@ in sources."path-key-3.1.1" sources."path-parse-1.0.7" sources."prelude-ls-1.2.1" - sources."prettier-2.8.1" + sources."prettier-2.8.3" sources."progress-2.0.3" sources."pug-error-2.0.0" sources."pug-lexer-5.0.1" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."regexpp-3.2.0" sources."require-from-string-2.0.2" sources."resolve-1.22.1" @@ -96778,7 +95162,7 @@ in sources."supports-preserve-symlinks-flag-1.0.0" (sources."table-6.8.1" // { dependencies = [ - sources."ajv-8.11.2" + sources."ajv-8.12.0" sources."json-schema-traverse-1.0.0" ]; }) @@ -96995,7 +95379,7 @@ in sources."isexe-2.0.0" sources."isurl-1.0.0" sources."js2xmlparser-4.0.2" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."jsonfile-4.0.0" sources."lowercase-keys-1.0.1" (sources."make-dir-1.3.0" // { @@ -97232,7 +95616,7 @@ in sources."readable-stream-3.6.0" sources."requires-port-1.0.0" sources."safe-buffer-5.2.1" - sources."safe-stable-stringify-2.4.1" + sources."safe-stable-stringify-2.4.2" sources."simple-swizzle-0.2.2" sources."stack-trace-0.0.10" sources."strftime-0.10.1" @@ -97474,10 +95858,10 @@ in cordova = nodeEnv.buildNodePackage { name = "cordova"; packageName = "cordova"; - version = "11.0.0"; + version = "11.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/cordova/-/cordova-11.0.0.tgz"; - sha512 = "Hu2YeT0naeP/1sEm/xfJYUsXN48XV6zagxbi1+4q0Ei9c5TKsIq8v4EWukvSHF4UO2pnh+9ViaDlGMcS1Wrnfg=="; + url = "https://registry.npmjs.org/cordova/-/cordova-11.1.0.tgz"; + sha512 = "CuF9wHcGLC7ef1ti1YpOy3+3Xov5n8znbOipKbHjpZUEXtYEHDv2+GuaqQB6njkHY+ZxfosrIV/BVMLpkpD8dw=="; }; dependencies = [ sources."@gar/promisify-1.1.3" @@ -97503,7 +95887,7 @@ in sources."ajv-6.12.6" (sources."ajv-formats-2.1.1" // { dependencies = [ - sources."ajv-8.11.2" + sources."ajv-8.12.0" sources."json-schema-traverse-1.0.0" ]; }) @@ -97531,7 +95915,7 @@ in sources."at-least-node-1.0.0" sources."atomically-1.7.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" sources."bcrypt-pbkdf-1.0.2" @@ -97594,7 +95978,7 @@ in sources."concat-map-0.0.1" (sources."conf-10.2.0" // { dependencies = [ - sources."ajv-8.11.2" + sources."ajv-8.12.0" sources."dot-prop-6.0.1" sources."json-schema-traverse-1.0.0" ]; @@ -97615,14 +95999,14 @@ in sources."fs-extra-9.1.0" ]; }) - sources."cordova-create-4.0.0" + sources."cordova-create-4.1.0" (sources."cordova-fetch-3.1.0" // { dependencies = [ sources."fs-extra-9.1.0" sources."pify-5.0.0" ]; }) - (sources."cordova-lib-11.0.0" // { + (sources."cordova-lib-11.1.0" // { dependencies = [ sources."pify-5.0.0" ]; @@ -97694,7 +96078,7 @@ in sources."fast-glob-3.2.12" sources."fast-json-parse-1.0.3" sources."fast-json-stable-stringify-2.1.0" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."figures-2.0.0" sources."fill-range-7.0.1" (sources."finalhandler-1.2.0" // { @@ -97881,7 +96265,7 @@ in sources."number-is-nan-1.0.1" sources."oauth-sign-0.9.0" sources."object-assign-4.1.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."objectorarray-1.0.5" sources."on-finished-2.4.1" sources."on-headers-1.0.2" @@ -97924,7 +96308,7 @@ in sources."proxy-addr-2.0.7" sources."psl-1.9.0" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."pupa-2.1.1" sources."q-1.5.1" sources."qs-6.5.3" @@ -98014,7 +96398,7 @@ in sources."strip-json-comments-2.0.1" sources."supports-color-7.2.0" sources."supports-preserve-symlinks-flag-1.0.0" - sources."systeminformation-5.16.8" + sources."systeminformation-5.17.3" (sources."tar-6.1.13" // { dependencies = [ sources."minipass-4.0.0" @@ -98093,6 +96477,7 @@ in buildInputs = globalBuildInputs; meta = { description = "Cordova command line interface tool"; + homepage = "https://github.com/apache/cordova-cli#readme"; license = "Apache-2.0"; }; production = true; @@ -98143,7 +96528,7 @@ in sources."error-ex-1.3.2" sources."escape-string-regexp-5.0.0" sources."fast-glob-3.2.12" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fill-range-7.0.1" sources."find-up-5.0.0" sources."function-bind-1.1.1" @@ -98249,7 +96634,7 @@ in sources."@cycle/run-3.4.0" sources."@cycle/time-0.10.1" sources."@types/cookiejar-2.1.2" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/superagent-3.8.2" sources."ansi-escapes-3.2.0" sources."ansi-regex-2.1.1" @@ -98270,7 +96655,7 @@ in sources."combine-errors-3.0.3" sources."combined-stream-1.0.8" sources."component-emitter-1.3.0" - sources."cookiejar-2.1.3" + sources."cookiejar-2.1.4" sources."core-util-is-1.0.3" sources."cross-spawn-5.1.0" sources."cssauron-1.4.0" @@ -98339,7 +96724,7 @@ in sources."mute-stream-0.0.7" sources."next-tick-1.1.0" sources."object-assign-4.1.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."object-keys-1.1.1" sources."onetime-2.0.1" sources."os-tmpdir-1.0.2" @@ -98514,10 +96899,10 @@ in cspell = nodeEnv.buildNodePackage { name = "cspell"; packageName = "cspell"; - version = "6.18.0"; + version = "6.19.2"; src = fetchurl { - url = "https://registry.npmjs.org/cspell/-/cspell-6.18.0.tgz"; - sha512 = "Lv8E9dfTw6syPPFNiPMd4AiuXBhR+31H1tYh1dTYwbjO2NLyQQO/H8jq4o9w77Ht/c8jkdXrllF7LdsX7nNeMg=="; + url = "https://registry.npmjs.org/cspell/-/cspell-6.19.2.tgz"; + sha512 = "nyrxnTcv1UzzdElZe96OMU8mxJGaLBnmPCR/HOaFE367EZD+WS5fcpoDBHC9tfD7yJv4+q5sjByYZltcV6jo0A=="; }; dependencies = [ sources."@babel/code-frame-7.18.6" @@ -98532,56 +96917,59 @@ in sources."supports-color-5.5.0" ]; }) - sources."@cspell/cspell-bundled-dicts-6.18.0" - sources."@cspell/cspell-pipe-6.18.0" - sources."@cspell/cspell-service-bus-6.18.0" - sources."@cspell/cspell-types-6.18.0" + sources."@cspell/cspell-bundled-dicts-6.19.2" + sources."@cspell/cspell-pipe-6.19.2" + sources."@cspell/cspell-service-bus-6.19.2" + sources."@cspell/cspell-types-6.19.2" sources."@cspell/dict-ada-4.0.1" sources."@cspell/dict-aws-3.0.0" sources."@cspell/dict-bash-4.1.1" - sources."@cspell/dict-companies-3.0.4" + sources."@cspell/dict-companies-3.0.6" sources."@cspell/dict-cpp-4.0.1" sources."@cspell/dict-cryptocurrencies-3.0.1" sources."@cspell/dict-csharp-4.0.2" - sources."@cspell/dict-css-4.0.1" + sources."@cspell/dict-css-4.0.2" sources."@cspell/dict-dart-2.0.1" sources."@cspell/dict-django-4.0.1" - sources."@cspell/dict-docker-1.1.4" + sources."@cspell/dict-docker-1.1.5" sources."@cspell/dict-dotnet-4.0.1" sources."@cspell/dict-elixir-4.0.1" sources."@cspell/dict-en-gb-1.1.33" - sources."@cspell/dict-en_us-4.1.1" + sources."@cspell/dict-en_us-4.2.0" sources."@cspell/dict-filetypes-3.0.0" sources."@cspell/dict-fonts-3.0.0" - sources."@cspell/dict-fullstack-3.0.0" - sources."@cspell/dict-gaming-terms-1.0.2" + sources."@cspell/dict-fullstack-3.1.1" + sources."@cspell/dict-gaming-terms-1.0.4" sources."@cspell/dict-git-2.0.0" sources."@cspell/dict-golang-5.0.1" sources."@cspell/dict-haskell-4.0.1" sources."@cspell/dict-html-4.0.2" sources."@cspell/dict-html-symbol-entities-4.0.0" - sources."@cspell/dict-java-5.0.3" + sources."@cspell/dict-java-5.0.4" sources."@cspell/dict-k8s-1.0.0" - sources."@cspell/dict-latex-3.0.0" + sources."@cspell/dict-latex-3.1.0" sources."@cspell/dict-lorem-ipsum-3.0.0" - sources."@cspell/dict-lua-3.0.0" + sources."@cspell/dict-lua-4.0.0" sources."@cspell/dict-node-4.0.2" - sources."@cspell/dict-npm-5.0.1" + sources."@cspell/dict-npm-5.0.3" sources."@cspell/dict-php-3.0.4" - sources."@cspell/dict-powershell-3.0.0" + sources."@cspell/dict-powershell-4.0.0" sources."@cspell/dict-public-licenses-2.0.1" sources."@cspell/dict-python-4.0.1" sources."@cspell/dict-r-2.0.1" - sources."@cspell/dict-ruby-3.0.0" - sources."@cspell/dict-rust-3.0.0" - sources."@cspell/dict-scala-3.0.0" - sources."@cspell/dict-software-terms-3.0.6" + sources."@cspell/dict-ruby-4.0.1" + sources."@cspell/dict-rust-4.0.0" + sources."@cspell/dict-scala-4.0.0" + sources."@cspell/dict-software-terms-3.1.0" sources."@cspell/dict-sql-2.0.1" - sources."@cspell/dict-svelte-1.0.1" + sources."@cspell/dict-svelte-1.0.2" sources."@cspell/dict-swift-2.0.1" - sources."@cspell/dict-typescript-3.0.2" + sources."@cspell/dict-typescript-3.1.0" sources."@cspell/dict-vue-3.0.0" - sources."@cspell/strong-weak-map-6.18.0" + sources."@cspell/strong-weak-map-6.19.2" + sources."@nodelib/fs.scandir-2.1.5" + sources."@nodelib/fs.stat-2.0.5" + sources."@nodelib/fs.walk-1.2.8" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."argparse-2.0.1" @@ -98594,27 +96982,29 @@ in sources."clear-module-4.1.2" sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."commander-9.4.1" + sources."commander-10.0.0" sources."comment-json-4.2.3" sources."concat-map-0.0.1" sources."configstore-5.0.1" sources."core-util-is-1.0.3" sources."cosmiconfig-8.0.0" sources."crypto-random-string-2.0.0" - sources."cspell-dictionary-6.18.0" - sources."cspell-gitignore-6.18.0" - sources."cspell-glob-6.18.0" - sources."cspell-grammar-6.18.0" - sources."cspell-io-6.18.0" - sources."cspell-lib-6.18.0" - sources."cspell-trie-lib-6.18.0" + sources."cspell-dictionary-6.19.2" + sources."cspell-gitignore-6.19.2" + sources."cspell-glob-6.19.2" + sources."cspell-grammar-6.19.2" + sources."cspell-io-6.19.2" + sources."cspell-lib-6.19.2" + sources."cspell-trie-lib-6.19.2" sources."dot-prop-5.3.0" sources."encoding-0.1.13" sources."error-ex-1.3.2" sources."escape-string-regexp-1.0.5" sources."esprima-4.0.1" sources."fast-equals-4.0.3" + sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" + sources."fastq-1.15.0" sources."file-entry-cache-6.0.1" sources."fill-range-7.0.1" sources."find-up-5.0.0" @@ -98624,12 +97014,8 @@ in sources."fs.realpath-1.0.0" sources."gensequence-4.0.3" sources."get-stdin-8.0.0" - (sources."glob-8.0.3" // { - dependencies = [ - sources."brace-expansion-2.0.1" - sources."minimatch-5.1.2" - ]; - }) + sources."glob-7.2.3" + sources."glob-parent-5.1.2" sources."global-dirs-0.1.1" sources."graceful-fs-4.2.10" sources."has-flag-4.0.0" @@ -98646,6 +97032,8 @@ in sources."inherits-2.0.4" sources."ini-1.3.8" sources."is-arrayish-0.2.1" + sources."is-extglob-2.1.1" + sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."is-obj-2.0.0" sources."is-typedarray-1.0.0" @@ -98661,9 +97049,10 @@ in sources."semver-6.3.0" ]; }) + sources."merge2-1.4.1" sources."micromatch-4.0.5" sources."minimatch-3.1.2" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."once-1.4.0" sources."p-limit-3.1.0" sources."p-locate-5.0.0" @@ -98673,14 +97062,13 @@ in sources."path-is-absolute-1.0.1" sources."path-type-4.0.0" sources."picomatch-2.3.1" + sources."queue-microtask-1.2.3" sources."repeat-string-1.6.1" sources."resolve-from-5.0.0" sources."resolve-global-1.0.0" - (sources."rimraf-3.0.2" // { - dependencies = [ - sources."glob-7.2.3" - ]; - }) + sources."reusify-1.0.4" + sources."rimraf-3.0.2" + sources."run-parallel-1.2.0" sources."safer-buffer-2.1.2" sources."semver-7.3.8" sources."signal-exit-3.0.7" @@ -98691,7 +97079,7 @@ in sources."typedarray-to-buffer-3.1.5" sources."unique-string-2.0.0" sources."universalify-2.0.0" - sources."vscode-languageserver-textdocument-1.0.8" + sources."vscode-languageserver-textdocument-1.0.9" sources."vscode-uri-3.0.7" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" @@ -98783,7 +97171,7 @@ in sources."atob-2.1.2" sources."atomic-batcher-1.0.2" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."b4a-1.6.1" sources."balanced-match-1.0.2" (sources."base-0.11.2" // { @@ -99088,11 +97476,11 @@ in sources."nanoresource-1.3.0" sources."nanoscheduler-1.0.3" sources."nanotiming-7.3.1" - sources."napi-macros-2.1.1" + sources."napi-macros-2.2.2" sources."neat-input-1.11.1" sources."neat-log-3.1.0" sources."nets-3.2.0" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."normalize-path-2.1.1" sources."npm-run-path-2.0.2" sources."oauth-sign-0.9.0" @@ -99138,7 +97526,7 @@ in sources."pseudomap-1.0.2" sources."psl-1.9.0" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.5.3" sources."queue-tick-1.0.1" sources."random-access-file-2.2.1" @@ -99422,7 +97810,7 @@ in sources."del-6.1.1" sources."dir-glob-3.0.1" sources."fast-glob-3.2.12" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fill-range-7.0.1" sources."find-up-4.1.0" sources."fs.realpath-1.0.0" @@ -99469,7 +97857,7 @@ in sources."vscode-jsonrpc-8.0.2" sources."vscode-languageserver-6.1.1" sources."vscode-languageserver-protocol-3.17.2" - sources."vscode-languageserver-textdocument-1.0.8" + sources."vscode-languageserver-textdocument-1.0.9" sources."vscode-languageserver-types-3.17.2" sources."vscode-uri-2.1.2" sources."wrappy-1.0.2" @@ -99503,7 +97891,7 @@ in sources."vscode-languageserver-types-3.17.2" ]; }) - sources."vscode-languageserver-textdocument-1.0.8" + sources."vscode-languageserver-textdocument-1.0.9" sources."vscode-languageserver-types-3.17.0-next.3" ]; buildInputs = globalBuildInputs; @@ -99519,15 +97907,15 @@ in elasticdump = nodeEnv.buildNodePackage { name = "elasticdump"; packageName = "elasticdump"; - version = "6.94.1"; + version = "6.96.0"; src = fetchurl { - url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.94.1.tgz"; - sha512 = "VThINQBW1MG7k7oVGndPBXCL6cFSfByu2EZo0gch9l7voyv1FfxyrIp9cZ5Ft9Vwygjh7sXSomnWaQ+qzmkfKA=="; + url = "https://registry.npmjs.org/elasticdump/-/elasticdump-6.96.0.tgz"; + sha512 = "GJsJF+yxOBv5s/KS1h4nCnkhXbJtHm0nEq7xUTDxpI6aqHj9wWaWCURNjdGziN4lv3hNPtnHXt7TsM57nzAXbQ=="; }; dependencies = [ sources."@fast-csv/format-4.3.5" sources."@fast-csv/parse-4.3.6" - sources."@types/node-14.18.35" + sources."@types/node-14.18.36" sources."JSONStream-1.3.5" sources."ajv-6.12.6" sources."asn1-0.2.6" @@ -99536,7 +97924,7 @@ in sources."asynckit-0.4.0" sources."aws-sdk-2.1122.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."base64-js-1.5.1" sources."bcrypt-pbkdf-1.0.2" sources."big.js-5.2.2" @@ -99564,7 +97952,7 @@ in sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."http-signature-1.2.0" - sources."http-status-1.5.3" + sources."http-status-1.6.2" sources."ieee754-1.1.13" sources."inherits-2.0.4" sources."ini-2.0.0" @@ -99634,14 +98022,14 @@ in sources."through-2.3.8" (sources."tough-cookie-2.5.0" // { dependencies = [ - sources."punycode-2.1.1" + sources."punycode-2.2.0" ]; }) sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" (sources."uri-js-4.4.1" // { dependencies = [ - sources."punycode-2.1.1" + sources."punycode-2.2.0" ]; }) sources."url-0.10.3" @@ -99679,7 +98067,7 @@ in sources."@electron-forge/template-base-6.0.4" sources."@electron-forge/template-webpack-6.0.4" sources."@electron-forge/template-webpack-typescript-6.0.4" - (sources."@electron/asar-3.2.2" // { + (sources."@electron/asar-3.2.3" // { dependencies = [ sources."commander-5.1.0" ]; @@ -99720,7 +98108,7 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" sources."@types/minimatch-5.1.2" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/responselike-1.0.0" sources."@types/yauzl-2.10.0" sources."abbrev-1.1.1" @@ -99754,8 +98142,8 @@ in (sources."cacache-16.1.3" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."glob-8.0.3" - sources."minimatch-5.1.2" + sources."glob-8.1.0" + sources."minimatch-5.1.6" ]; }) sources."cacheable-lookup-5.0.4" @@ -99827,7 +98215,7 @@ in sources."expand-tilde-2.0.2" sources."extract-zip-2.0.1" sources."fast-glob-3.2.12" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fd-slicer-1.1.0" sources."filename-reserved-regex-2.0.0" sources."filenamify-4.3.0" @@ -99964,12 +98352,12 @@ in sources."ms-2.1.3" sources."negotiator-0.6.3" sources."nice-try-1.0.5" - sources."node-abi-3.30.0" + sources."node-abi-3.31.0" sources."node-addon-api-3.2.1" sources."node-api-version-0.1.4" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."node-gyp-9.3.1" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."nopt-6.0.0" (sources."normalize-package-data-2.5.0" // { dependencies = [ @@ -100136,10 +98524,10 @@ in eas-cli = nodeEnv.buildNodePackage { name = "eas-cli"; packageName = "eas-cli"; - version = "3.1.1"; + version = "3.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/eas-cli/-/eas-cli-3.1.1.tgz"; - sha512 = "E+mz8AkugCvSigIxXm4Go5E7kYD9zjiC3b8wqOP63EQw5aQYW2Wai7bdX85G/jdcRZ72s1y0pMrS0AxBfTV0+Q=="; + url = "https://registry.npmjs.org/eas-cli/-/eas-cli-3.3.2.tgz"; + sha512 = "YHlGUS+qkSXOnwin67gC+6IfV87fkCUNUS/t8Lm9aXVTClLPNVOI3LPPJqnabPn6TzhYU3zSIP+S7IzOL8zqzA=="; }; dependencies = [ sources."@babel/code-frame-7.10.4" @@ -100155,21 +98543,27 @@ in sources."uuid-8.3.2" ]; }) - sources."@expo/code-signing-certificates-0.0.3" - (sources."@expo/config-7.0.1" // { + sources."@expo/code-signing-certificates-0.0.5" + (sources."@expo/config-7.0.3" // { dependencies = [ + sources."@expo/json-file-8.2.36" sources."semver-7.3.2" ]; }) - sources."@expo/config-plugins-5.0.1" - sources."@expo/config-types-46.0.2" - sources."@expo/eas-build-job-0.2.97" - (sources."@expo/eas-json-3.0.0" // { + (sources."@expo/config-plugins-5.0.4" // { + dependencies = [ + sources."@expo/json-file-8.2.36" + sources."@expo/plist-0.0.18" + ]; + }) + sources."@expo/config-types-47.0.0" + sources."@expo/eas-build-job-0.2.102" + (sources."@expo/eas-json-3.3.2" // { dependencies = [ sources."@babel/code-frame-7.18.6" ]; }) - (sources."@expo/image-utils-0.3.20" // { + (sources."@expo/image-utils-0.3.22" // { dependencies = [ sources."@expo/spawn-async-1.5.0" sources."fs-extra-9.0.0" @@ -100177,20 +98571,25 @@ in sources."semver-7.3.2" ]; }) - sources."@expo/json-file-8.2.36" - sources."@expo/multipart-body-parser-1.1.0" - sources."@expo/osascript-2.0.33" - sources."@expo/package-manager-0.0.56" - sources."@expo/pkcs12-0.0.8" - (sources."@expo/plist-0.0.18" // { + (sources."@expo/json-file-8.2.37" // { dependencies = [ - sources."xmlbuilder-14.0.0" + sources."json5-2.2.3" ]; }) - sources."@expo/plugin-help-5.1.16" - sources."@expo/plugin-warn-if-update-available-2.4.0" - (sources."@expo/prebuild-config-5.0.3" // { + sources."@expo/multipart-body-parser-1.1.0" + sources."@expo/osascript-2.0.33" + (sources."@expo/package-manager-0.0.57" // { dependencies = [ + sources."@expo/json-file-8.2.36" + ]; + }) + sources."@expo/pkcs12-0.0.8" + sources."@expo/plist-0.0.20" + sources."@expo/plugin-help-5.1.22" + sources."@expo/plugin-warn-if-update-available-2.5.0" + (sources."@expo/prebuild-config-5.0.7" // { + dependencies = [ + sources."@expo/json-file-8.2.36" sources."fs-extra-9.1.0" sources."semver-7.3.2" sources."universalify-2.0.0" @@ -100213,13 +98612,12 @@ in ]; }) sources."@expo/timeago.js-1.0.0" - sources."@graphql-typed-document-node/core-3.1.1" sources."@hapi/hoek-9.3.0" sources."@hapi/topo-5.1.0" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - (sources."@oclif/core-1.19.2" // { + (sources."@oclif/core-1.23.2" // { dependencies = [ sources."ansi-styles-4.3.0" sources."color-convert-2.0.1" @@ -100231,24 +98629,24 @@ in ]; }) sources."@oclif/linewrap-1.0.0" - (sources."@oclif/plugin-autocomplete-1.3.4" // { + (sources."@oclif/plugin-autocomplete-1.3.10" // { dependencies = [ sources."fs-extra-9.1.0" sources."universalify-2.0.0" ]; }) - sources."@oclif/screen-3.0.3" + sources."@oclif/screen-3.0.4" sources."@react-native/normalize-color-2.1.0" - sources."@segment/ajv-human-errors-2.1.2" + sources."@segment/ajv-human-errors-2.2.0" sources."@segment/loosely-validate-event-2.0.0" sources."@sideway/address-4.1.4" sources."@sideway/formula-3.0.1" sources."@sideway/pinpoint-2.0.0" - sources."@urql/core-3.0.5" + sources."@urql/core-3.1.1" sources."@urql/exchange-retry-1.0.0" sources."@xmldom/xmldom-0.7.9" sources."agent-base-6.0.2" - sources."ajv-8.11.2" + sources."ajv-8.11.0" sources."ajv-formats-2.1.1" (sources."ansi-escapes-4.3.2" // { dependencies = [ @@ -100329,7 +98727,7 @@ in sources."escape-string-regexp-1.0.5" sources."esprima-4.0.1" sources."exec-async-2.2.0" - (sources."expo-modules-autolinking-1.0.0" // { + (sources."expo-modules-autolinking-1.0.2" // { dependencies = [ sources."commander-7.2.0" sources."fs-extra-9.1.0" @@ -100338,7 +98736,7 @@ in }) sources."fast-deep-equal-3.1.3" sources."fast-glob-3.2.12" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fetch-retry-4.1.1" sources."figures-3.2.0" sources."filelist-1.0.4" @@ -100351,7 +98749,11 @@ in sources."universalify-2.0.0" ]; }) - sources."fs-minipass-2.1.0" + (sources."fs-minipass-2.1.0" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) sources."fs.realpath-1.0.0" sources."get-package-type-0.1.0" sources."getenv-1.0.0" @@ -100373,7 +98775,7 @@ in sources."https-proxy-agent-5.0.1" sources."hyperlinker-1.0.0" sources."iconv-lite-0.6.3" - sources."ignore-5.2.0" + sources."ignore-5.2.4" sources."imurmurhash-0.1.4" sources."indent-string-4.0.0" sources."inflight-1.0.6" @@ -100398,13 +98800,13 @@ in }) sources."jimp-compact-0.16.1" sources."jks-js-1.1.0" - sources."joi-17.6.4" + sources."joi-17.7.0" sources."join-component-1.1.0" sources."js-tokens-4.0.0" sources."js-yaml-3.14.1" sources."json-parse-better-errors-1.0.2" sources."json-schema-traverse-1.0.0" - sources."json5-1.0.1" + sources."json5-1.0.2" (sources."jsonfile-6.1.0" // { dependencies = [ sources."universalify-2.0.0" @@ -100424,14 +98826,18 @@ in sources."mime-db-1.52.0" sources."mime-types-2.1.35" sources."mimic-fn-2.1.0" - (sources."minimatch-5.1.0" // { + (sources."minimatch-5.1.2" // { dependencies = [ sources."brace-expansion-2.0.1" ]; }) sources."minimist-1.2.7" - sources."minipass-3.3.6" - sources."minizlib-2.1.2" + sources."minipass-4.0.0" + (sources."minizlib-2.1.2" // { + dependencies = [ + sources."minipass-3.3.6" + ]; + }) sources."mkdirp-0.5.6" sources."ms-2.1.2" sources."mute-stream-0.0.8" @@ -100494,12 +98900,16 @@ in sources."p-locate-4.1.0" ]; }) - sources."plist-3.0.6" + (sources."plist-3.0.6" // { + dependencies = [ + sources."xmlbuilder-15.1.1" + ]; + }) sources."pngjs-6.0.0" sources."promise-limit-2.7.0" sources."promise-retry-2.0.1" sources."prompts-2.4.2" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qrcode-terminal-0.12.0" sources."queue-microtask-1.2.3" sources."redeyed-2.1.1" @@ -100539,7 +98949,7 @@ in sources."supports-color-7.2.0" ]; }) - (sources."tar-6.1.11" // { + (sources."tar-6.1.13" // { dependencies = [ sources."mkdirp-1.0.4" ]; @@ -100553,7 +98963,7 @@ in sources."to-regex-range-5.0.1" sources."tr46-0.0.3" sources."ts-interface-checker-0.1.13" - sources."tslib-2.4.0" + sources."tslib-2.4.1" sources."tunnel-agent-0.6.0" sources."turndown-7.1.1" sources."type-fest-0.3.1" @@ -100588,7 +98998,7 @@ in sources."xmlbuilder-11.0.1" ]; }) - sources."xmlbuilder-15.1.1" + sources."xmlbuilder-14.0.0" sources."yallist-4.0.0" sources."yocto-queue-0.1.0" ]; @@ -100623,10 +99033,10 @@ in elm-test = nodeEnv.buildNodePackage { name = "elm-test"; packageName = "elm-test"; - version = "0.19.1-revision10"; + version = "0.19.1-revision11"; src = fetchurl { - url = "https://registry.npmjs.org/elm-test/-/elm-test-0.19.1-revision10.tgz"; - sha512 = "33jXpA15alVcYjX+UJOkiOmQIQxjd3c0eeg3960VyhEf8tG8O4g4B5ipMmu6KAllncrSxSQrYzKJnNJM/8ZiCg=="; + url = "https://registry.npmjs.org/elm-test/-/elm-test-0.19.1-revision11.tgz"; + sha512 = "ZUCE+YM3zNzADtZNZpm+swcL7NEJm68vEqRb+cENOp+ndQbG9nBWjSpVfpAo5Ha3rEmj/KdxjiWf2kMUCggnmQ=="; }; dependencies = [ sources."ansi-styles-4.3.0" @@ -100639,13 +99049,13 @@ in sources."chokidar-3.5.3" sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."commander-9.4.1" + sources."commander-9.5.0" sources."cross-spawn-7.0.3" sources."elm-solve-deps-wasm-1.0.2" sources."fill-range-7.0.1" sources."fs.realpath-1.0.0" sources."fsevents-2.3.2" - sources."glob-8.0.3" + sources."glob-8.1.0" sources."glob-parent-5.1.2" sources."graceful-fs-4.2.10" sources."has-flag-4.0.0" @@ -100656,7 +99066,7 @@ in sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."isexe-2.0.0" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" sources."normalize-path-3.0.0" sources."once-1.4.0" sources."path-key-3.1.1" @@ -100693,8 +99103,8 @@ in dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.5" - (sources."@babel/core-7.20.7" // { + sources."@babel/compat-data-7.20.10" + (sources."@babel/core-7.20.12" // { dependencies = [ sources."semver-6.3.0" ]; @@ -100716,7 +99126,7 @@ in sources."@babel/helper-function-name-7.19.0" sources."@babel/helper-hoist-variables-7.18.6" sources."@babel/helper-module-imports-7.18.6" - sources."@babel/helper-module-transforms-7.20.7" + sources."@babel/helper-module-transforms-7.20.11" sources."@babel/helper-plugin-utils-7.20.2" sources."@babel/helper-simple-access-7.20.2" sources."@babel/helper-split-export-declaration-7.18.6" @@ -100733,7 +99143,7 @@ in sources."@babel/plugin-transform-parameters-7.20.7" sources."@babel/plugin-transform-react-jsx-7.20.7" sources."@babel/template-7.20.7" - sources."@babel/traverse-7.20.8" + sources."@babel/traverse-7.20.12" sources."@babel/types-7.20.7" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" @@ -100768,7 +99178,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" sources."chalk-2.4.2" sources."ci-info-2.0.0" sources."cli-boxes-2.2.1" @@ -100861,7 +99271,7 @@ in sources."json-parse-even-better-errors-2.3.1" sources."json-schema-traverse-0.4.1" sources."json-schema-typed-7.0.3" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."kind-of-6.0.3" sources."lines-and-columns-1.2.4" sources."locate-path-3.0.0" @@ -100887,7 +99297,7 @@ in sources."minimist-options-4.1.0" sources."ms-2.1.2" sources."nice-try-1.0.5" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."node-releases-2.0.8" sources."normalize-package-data-2.5.0" sources."npm-run-path-2.0.2" @@ -100921,7 +99331,7 @@ in sources."pkg-up-3.1.0" sources."prop-types-15.8.1" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."quick-lru-4.0.1" sources."react-16.14.0" sources."react-devtools-core-4.27.1" @@ -101037,11 +99447,11 @@ in dependencies = [ sources."@azure/abort-controller-1.1.0" sources."@azure/core-auth-1.4.0" - sources."@azure/core-client-1.6.1" + sources."@azure/core-client-1.7.0" sources."@azure/core-http-compat-1.3.0" - sources."@azure/core-lro-2.4.0" + sources."@azure/core-lro-2.5.0" sources."@azure/core-paging-1.4.0" - (sources."@azure/core-rest-pipeline-1.10.0" // { + (sources."@azure/core-rest-pipeline-1.10.1" // { dependencies = [ sources."@tootallnate/once-2.0.0" sources."debug-4.3.4" @@ -101059,15 +99469,15 @@ in }) sources."@azure/keyvault-keys-4.6.0" sources."@azure/logger-1.0.3" - (sources."@azure/msal-browser-2.32.1" // { + (sources."@azure/msal-browser-2.32.2" // { dependencies = [ - sources."@azure/msal-common-9.0.1" + sources."@azure/msal-common-9.1.0" ]; }) sources."@azure/msal-common-7.6.0" - (sources."@azure/msal-node-1.14.5" // { + (sources."@azure/msal-node-1.14.6" // { dependencies = [ - sources."@azure/msal-common-9.0.1" + sources."@azure/msal-common-9.1.0" sources."uuid-8.3.2" ]; }) @@ -101103,21 +99513,21 @@ in sources."strip-json-comments-3.1.1" ]; }) - sources."@fluentui/date-time-utilities-8.5.3" - sources."@fluentui/dom-utilities-2.2.3" - sources."@fluentui/font-icons-mdl2-8.5.5" - sources."@fluentui/foundation-legacy-8.2.25" - sources."@fluentui/keyboard-key-0.4.3" - sources."@fluentui/merge-styles-8.5.4" - sources."@fluentui/react-8.104.0" - sources."@fluentui/react-focus-8.8.11" - sources."@fluentui/react-hooks-8.6.14" + sources."@fluentui/date-time-utilities-8.5.4" + sources."@fluentui/dom-utilities-2.2.4" + sources."@fluentui/font-icons-mdl2-8.5.6" + sources."@fluentui/foundation-legacy-8.2.26" + sources."@fluentui/keyboard-key-0.4.4" + sources."@fluentui/merge-styles-8.5.5" + sources."@fluentui/react-8.104.5" + sources."@fluentui/react-focus-8.8.12" + sources."@fluentui/react-hooks-8.6.15" sources."@fluentui/react-portal-compat-context-9.0.4" - sources."@fluentui/react-window-provider-2.2.4" - sources."@fluentui/set-version-8.2.3" - sources."@fluentui/style-utilities-8.8.4" - sources."@fluentui/theme-2.6.20" - sources."@fluentui/utilities-8.13.4" + sources."@fluentui/react-window-provider-2.2.5" + sources."@fluentui/set-version-8.2.4" + sources."@fluentui/style-utilities-8.8.5" + sources."@fluentui/theme-2.6.21" + sources."@fluentui/utilities-8.13.5" sources."@gar/promisify-1.1.3" (sources."@gulp-sourcemaps/identity-map-2.0.1" // { dependencies = [ @@ -101147,23 +99557,23 @@ in sources."@jridgewell/source-map-0.3.2" sources."@jridgewell/sourcemap-codec-1.4.14" sources."@jridgewell/trace-mapping-0.3.17" - sources."@js-joda/core-5.4.2" + sources."@js-joda/core-5.5.2" sources."@mapbox/node-pre-gyp-1.0.10" sources."@microsoft/load-themed-styles-1.10.295" - sources."@node-rs/crc32-1.5.1" - sources."@node-rs/crc32-android-arm-eabi-1.5.1" - sources."@node-rs/crc32-android-arm64-1.5.1" - sources."@node-rs/crc32-darwin-arm64-1.5.1" - sources."@node-rs/crc32-darwin-x64-1.5.1" - sources."@node-rs/crc32-freebsd-x64-1.5.1" - sources."@node-rs/crc32-linux-arm-gnueabihf-1.5.1" - sources."@node-rs/crc32-linux-arm64-gnu-1.5.1" - sources."@node-rs/crc32-linux-arm64-musl-1.5.1" - sources."@node-rs/crc32-linux-x64-gnu-1.5.1" - sources."@node-rs/crc32-linux-x64-musl-1.5.1" - sources."@node-rs/crc32-win32-arm64-msvc-1.5.1" - sources."@node-rs/crc32-win32-ia32-msvc-1.5.1" - sources."@node-rs/crc32-win32-x64-msvc-1.5.1" + sources."@node-rs/crc32-1.6.0" + sources."@node-rs/crc32-android-arm-eabi-1.6.0" + sources."@node-rs/crc32-android-arm64-1.6.0" + sources."@node-rs/crc32-darwin-arm64-1.6.0" + sources."@node-rs/crc32-darwin-x64-1.6.0" + sources."@node-rs/crc32-freebsd-x64-1.6.0" + sources."@node-rs/crc32-linux-arm-gnueabihf-1.6.0" + sources."@node-rs/crc32-linux-arm64-gnu-1.6.0" + sources."@node-rs/crc32-linux-arm64-musl-1.6.0" + sources."@node-rs/crc32-linux-x64-gnu-1.6.0" + sources."@node-rs/crc32-linux-x64-musl-1.6.0" + sources."@node-rs/crc32-win32-arm64-msvc-1.6.0" + sources."@node-rs/crc32-win32-ia32-msvc-1.6.0" + sources."@node-rs/crc32-win32-x64-msvc-1.6.0" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" @@ -101179,25 +99589,25 @@ in sources."@redis/json-1.0.4" sources."@redis/search-1.1.0" sources."@redis/time-series-1.0.4" - (sources."@sap/hana-client-2.15.17" // { + (sources."@sap/hana-client-2.15.19" // { dependencies = [ sources."debug-3.1.0" ]; }) sources."@sindresorhus/is-0.14.0" sources."@sqltools/formatter-1.2.5" - sources."@swc/core-1.3.24" - sources."@swc/core-darwin-arm64-1.3.24" - sources."@swc/core-darwin-x64-1.3.24" - sources."@swc/core-linux-arm-gnueabihf-1.3.24" - sources."@swc/core-linux-arm64-gnu-1.3.24" - sources."@swc/core-linux-arm64-musl-1.3.24" - sources."@swc/core-linux-x64-gnu-1.3.24" - sources."@swc/core-linux-x64-musl-1.3.24" - sources."@swc/core-win32-arm64-msvc-1.3.24" - sources."@swc/core-win32-ia32-msvc-1.3.24" - sources."@swc/core-win32-x64-msvc-1.3.24" - sources."@swc/wasm-1.3.24" + sources."@swc/core-1.3.27" + sources."@swc/core-darwin-arm64-1.3.27" + sources."@swc/core-darwin-x64-1.3.27" + sources."@swc/core-linux-arm-gnueabihf-1.3.27" + sources."@swc/core-linux-arm64-gnu-1.3.27" + sources."@swc/core-linux-arm64-musl-1.3.27" + sources."@swc/core-linux-x64-gnu-1.3.27" + sources."@swc/core-linux-x64-musl-1.3.27" + sources."@swc/core-win32-arm64-msvc-1.3.27" + sources."@swc/core-win32-ia32-msvc-1.3.27" + sources."@swc/core-win32-x64-msvc-1.3.27" + sources."@swc/wasm-1.3.27" sources."@szmarczak/http-timer-1.1.2" sources."@tediousjs/connection-string-0.4.1" sources."@tokenizer/token-0.3.0" @@ -101215,7 +99625,7 @@ in sources."@types/eslint-scope-3.7.4" sources."@types/estree-0.0.51" sources."@types/express-4.17.13" - sources."@types/express-serve-static-core-4.17.31" + sources."@types/express-serve-static-core-4.17.32" sources."@types/file-type-10.9.1" sources."@types/js-yaml-4.0.4" sources."@types/json-schema-7.0.11" @@ -101230,7 +99640,7 @@ in sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" sources."@types/react-18.0.26" - sources."@types/react-dom-18.0.9" + sources."@types/react-dom-18.0.10" sources."@types/scheduler-0.16.2" sources."@types/serve-static-1.15.0" sources."@types/socket.io-3.0.1" @@ -101301,7 +99711,7 @@ in ]; }) sources."aggregate-error-3.1.0" - sources."ajv-8.11.2" + sources."ajv-8.12.0" sources."ajv-formats-2.1.1" (sources."ajv-keywords-3.5.2" // { dependencies = [ @@ -101388,6 +99798,7 @@ in sources."async-settle-1.0.0" sources."asynckit-0.4.0" sources."atob-2.1.2" + sources."available-typed-arrays-1.0.5" sources."axios-0.24.0" sources."bach-1.2.0" sources."backo2-1.0.2" @@ -101445,7 +99856,7 @@ in sources."call-bind-1.0.2" sources."callsites-3.1.0" sources."camelcase-3.0.0" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" sources."chalk-4.1.2" sources."chardet-0.7.0" (sources."chokidar-2.1.8" // { @@ -101622,15 +100033,16 @@ in sources."ws-8.2.3" ]; }) - sources."engine.io-parser-5.0.4" + sources."engine.io-parser-5.0.6" sources."enhanced-resolve-5.12.0" sources."enquirer-2.3.6" sources."env-paths-2.2.1" sources."err-code-2.0.3" sources."error-ex-1.3.2" - sources."es-abstract-1.20.5" + sources."es-abstract-1.21.1" sources."es-aggregate-error-1.0.9" sources."es-module-lexer-0.9.3" + sources."es-set-tostringtag-2.0.1" sources."es-to-primitive-1.2.1" sources."es5-ext-0.10.62" sources."es6-iterator-2.0.3" @@ -101732,7 +100144,7 @@ in sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."figlet-1.5.2" sources."figures-3.2.0" sources."file-entry-cache-6.0.1" @@ -101768,6 +100180,7 @@ in ]; }) sources."follow-redirects-1.15.2" + sources."for-each-0.3.3" sources."for-in-1.0.2" sources."for-own-1.0.0" sources."form-data-4.0.0" @@ -101798,7 +100211,7 @@ in sources."get-symbol-description-1.0.0" sources."get-value-2.0.6" sources."github-from-package-0.0.0" - sources."glob-8.0.3" + sources."glob-8.1.0" sources."glob-parent-5.1.2" (sources."glob-stream-6.1.0" // { dependencies = [ @@ -101935,6 +100348,7 @@ in sources."has-bigints-1.0.2" sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-unicode-2.0.1" @@ -101983,7 +100397,7 @@ in sources."interpret-1.4.0" sources."inversify-5.1.1" sources."invert-kv-1.0.0" - (sources."ioredis-5.2.4" // { + (sources."ioredis-5.2.5" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -101994,6 +100408,7 @@ in sources."ipaddr.js-1.9.1" sources."is-absolute-1.0.0" sources."is-accessor-descriptor-1.0.0" + sources."is-array-buffer-3.0.1" sources."is-arrayish-0.2.1" sources."is-bigint-1.0.4" sources."is-binary-path-1.0.1" @@ -102025,6 +100440,7 @@ in sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" + sources."is-typed-array-1.1.10" sources."is-unc-path-1.0.0" sources."is-utf8-0.2.1" sources."is-valid-glob-1.0.0" @@ -102058,11 +100474,10 @@ in sources."eventemitter3-3.1.2" ]; }) - (sources."jsonwebtoken-8.5.1" // { + (sources."jsonwebtoken-9.0.0" // { dependencies = [ sources."jws-3.2.2" sources."ms-2.1.3" - sources."semver-5.7.1" ]; }) sources."just-debounce-1.1.0" @@ -102092,15 +100507,8 @@ in sources."loader-runner-4.3.0" sources."lodash-4.17.21" sources."lodash.defaults-4.2.0" - sources."lodash.includes-4.3.0" sources."lodash.isarguments-3.1.0" - sources."lodash.isboolean-3.0.3" - sources."lodash.isinteger-4.0.4" - sources."lodash.isnumber-3.0.3" - sources."lodash.isplainobject-4.0.6" - sources."lodash.isstring-4.0.1" sources."lodash.merge-4.6.2" - sources."lodash.once-4.1.1" sources."lodash.truncate-4.4.2" (sources."log4js-6.3.0" // { dependencies = [ @@ -102108,7 +100516,7 @@ in sources."ms-2.1.2" ]; }) - sources."long-4.0.0" + sources."long-5.2.1" sources."loose-envify-1.4.0" sources."lowercase-keys-1.0.1" sources."lru-cache-6.0.0" @@ -102153,7 +100561,7 @@ in sources."mime-types-2.1.35" sources."mimic-fn-2.1.0" sources."mimic-response-1.0.1" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" sources."minimist-1.2.5" sources."minipass-4.0.0" (sources."minipass-collect-1.0.2" // { @@ -102267,9 +100675,9 @@ in ]; }) sources."ms-2.0.0" - (sources."mssql-9.0.1" // { + (sources."mssql-9.1.0" // { dependencies = [ - sources."commander-9.4.1" + sources."commander-9.5.0" sources."debug-4.3.4" sources."ms-2.1.2" ]; @@ -102289,17 +100697,17 @@ in sources."string_decoder-1.1.1" ]; }) - (sources."mysql2-2.3.3" // { + (sources."mysql2-3.0.1" // { dependencies = [ sources."iconv-lite-0.6.3" + sources."lru-cache-7.14.1" sources."sqlstring-2.3.3" ]; }) sources."mz-2.7.0" - (sources."named-placeholders-1.1.2" // { + (sources."named-placeholders-1.1.3" // { dependencies = [ - sources."lru-cache-4.1.5" - sources."yallist-2.1.2" + sources."lru-cache-7.14.1" ]; }) sources."nan-2.17.0" @@ -102311,10 +100719,10 @@ in sources."neo-async-2.6.2" sources."next-tick-1.1.0" sources."nice-try-1.0.5" - sources."node-abi-3.30.0" + sources."node-abi-3.31.0" sources."node-abort-controller-3.0.1" sources."node-addon-api-4.3.0" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" (sources."node-gyp-8.4.1" // { dependencies = [ sources."are-we-there-yet-3.0.1" @@ -102325,7 +100733,7 @@ in sources."npmlog-6.0.2" ]; }) - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."node-releases-2.0.8" sources."nopt-5.0.0" (sources."normalize-package-data-2.5.0" // { @@ -102352,7 +100760,7 @@ in sources."kind-of-3.2.2" ]; }) - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."object-keys-1.1.1" sources."object-visit-1.0.1" sources."object.assign-4.1.4" @@ -102496,14 +100904,13 @@ in sources."promise-queue-2.2.5" sources."promise-retry-2.0.1" sources."proxy-addr-2.0.7" - sources."pseudomap-1.0.2" sources."pump-3.0.0" (sources."pumpify-1.5.1" // { dependencies = [ sources."pump-2.0.1" ]; }) - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.7.0" sources."queue-microtask-1.2.3" sources."randombytes-2.1.0" @@ -102601,7 +101008,7 @@ in ]; }) sources."seq-queue-0.0.5" - sources."serialize-javascript-6.0.0" + sources."serialize-javascript-6.0.1" sources."serve-static-1.14.1" sources."set-blocking-2.0.0" (sources."set-value-2.0.1" // { @@ -102746,7 +101153,7 @@ in sources."swagger-schema-official-2.0.0-bab6bed" sources."swagger-ui-dist-3.52.5" sources."table-6.8.1" - sources."tail-2.2.4" + sources."tail-2.2.6" sources."tapable-2.2.1" sources."tar-6.1.13" (sources."tar-fs-2.1.1" // { @@ -102818,6 +101225,7 @@ in sources."type-check-0.4.0" sources."type-fest-0.20.2" sources."type-is-1.6.18" + sources."typed-array-length-1.0.4" sources."typedarray-0.0.6" (sources."typeorm-0.2.38" // { dependencies = [ @@ -102902,6 +101310,7 @@ in sources."which-2.0.2" sources."which-boxed-primitive-1.0.2" sources."which-module-1.0.0" + sources."which-typed-array-1.1.9" sources."wide-align-1.1.5" sources."word-wrap-1.2.3" sources."wrap-ansi-7.0.0" @@ -103007,7 +101416,7 @@ in sources."@types/connect-3.4.35" sources."@types/connect-history-api-fallback-1.3.5" sources."@types/express-4.17.15" - sources."@types/express-serve-static-core-4.17.31" + sources."@types/express-serve-static-core-4.17.32" sources."@types/glob-7.2.0" sources."@types/hls.js-0.13.3" sources."@types/http-proxy-1.17.9" @@ -103017,7 +101426,7 @@ in sources."@types/mime-3.0.1" sources."@types/minimatch-5.1.2" sources."@types/minimist-1.2.2" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."@types/q-1.5.5" @@ -103269,8 +101678,9 @@ in sources."source-map-0.6.1" ]; }) + sources."available-typed-arrays-1.0.5" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."axios-0.24.0" (sources."babel-code-frame-6.26.0" // { dependencies = [ @@ -103368,7 +101778,7 @@ in sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" sources."case-sensitive-paths-webpack-plugin-2.4.0" sources."caseless-0.12.0" sources."chalk-2.4.2" @@ -103656,7 +102066,7 @@ in sources."encodeurl-1.0.2" sources."end-of-stream-1.4.4" sources."engine.io-client-6.0.3" - sources."engine.io-parser-5.0.4" + sources."engine.io-parser-5.0.6" (sources."enhanced-resolve-4.5.0" // { dependencies = [ sources."memory-fs-0.5.0" @@ -103672,8 +102082,9 @@ in sources."errno-0.1.8" sources."error-ex-1.3.2" sources."error-stack-parser-2.1.4" - sources."es-abstract-1.20.5" + sources."es-abstract-1.21.1" sources."es-array-method-boxes-properly-1.0.0" + sources."es-set-tostringtag-2.0.1" sources."es-to-primitive-1.2.1" sources."es6-promise-4.2.8" sources."escalade-3.1.1" @@ -103720,7 +102131,7 @@ in sources."supports-color-7.2.0" (sources."table-6.8.1" // { dependencies = [ - sources."ajv-8.11.2" + sources."ajv-8.12.0" ]; }) sources."type-check-0.4.0" @@ -103824,7 +102235,7 @@ in sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."faye-websocket-0.11.4" sources."fibers-5.0.3" sources."figgy-pudding-3.5.2" @@ -103854,6 +102265,7 @@ in sources."flatted-2.0.2" sources."flush-write-stream-1.1.1" sources."follow-redirects-1.15.2" + sources."for-each-0.3.3" sources."for-in-1.0.2" sources."forever-agent-0.6.1" (sources."fork-ts-checker-webpack-plugin-3.1.1" // { @@ -103918,6 +102330,7 @@ in sources."type-fest-0.8.1" ]; }) + sources."globalthis-1.0.3" sources."globby-11.1.0" (sources."globule-1.3.4" // { dependencies = [ @@ -103942,6 +102355,7 @@ in sources."has-cors-1.1.0" sources."has-flag-3.0.0" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-unicode-2.0.1" @@ -104064,6 +102478,7 @@ in sources."is-absolute-url-2.1.0" sources."is-accessor-descriptor-1.0.0" sources."is-arguments-1.1.1" + sources."is-array-buffer-3.0.1" sources."is-arrayish-0.2.1" sources."is-bigint-1.0.4" sources."is-binary-path-2.1.0" @@ -104097,6 +102512,7 @@ in sources."is-stream-1.1.0" sources."is-string-1.0.7" sources."is-symbol-1.0.4" + sources."is-typed-array-1.1.10" sources."is-typedarray-1.0.0" sources."is-weakref-1.0.2" sources."is-windows-1.0.2" @@ -104118,13 +102534,13 @@ in sources."json-stable-stringify-1.0.1" sources."json-stable-stringify-without-jsonify-1.0.1" sources."json-stringify-safe-5.0.1" - sources."json5-1.0.1" + sources."json5-1.0.2" sources."jsonfile-6.1.0" sources."jsonify-0.0.1" sources."jsprim-1.4.2" sources."killable-1.0.1" sources."kind-of-6.0.3" - sources."klona-2.0.5" + sources."klona-2.0.6" sources."launch-editor-2.6.0" sources."launch-editor-middleware-2.6.0" sources."levn-0.3.0" @@ -104162,7 +102578,7 @@ in sources."md5.js-1.3.5" sources."mdn-data-2.0.4" sources."media-typer-0.3.0" - sources."memfs-3.4.12" + sources."memfs-3.4.13" sources."memory-fs-0.4.1" (sources."meow-9.0.0" // { dependencies = [ @@ -104237,7 +102653,7 @@ in sources."which-2.0.2" ]; }) - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" (sources."node-libs-browser-2.2.1" // { dependencies = [ sources."punycode-1.4.1" @@ -104273,7 +102689,7 @@ in sources."nth-check-1.0.2" (sources."null-loader-4.0.1" // { dependencies = [ - sources."json5-2.2.2" + sources."json5-2.2.3" sources."loader-utils-2.0.4" sources."schema-utils-3.1.1" ]; @@ -104296,7 +102712,7 @@ in ]; }) sources."object-hash-1.3.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."object-is-1.1.5" sources."object-keys-1.1.1" sources."object-visit-1.0.1" @@ -104366,7 +102782,7 @@ in ]; }) sources."posix-character-classes-0.1.1" - sources."postcss-8.4.20" + sources."postcss-8.4.21" (sources."postcss-calc-7.0.5" // { dependencies = [ sources."picocolors-0.2.1" @@ -104644,7 +103060,7 @@ in sources."pump-2.0.1" ]; }) - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."q-1.5.1" sources."qs-6.5.3" sources."query-string-4.3.4" @@ -104743,7 +103159,7 @@ in }) (sources."sass-loader-10.2.0" // { dependencies = [ - sources."json5-2.2.2" + sources."json5-2.2.3" sources."loader-utils-2.0.4" sources."schema-utils-3.1.1" ]; @@ -105002,6 +103418,7 @@ in sources."type-check-0.3.2" sources."type-fest-0.6.0" sources."type-is-1.6.18" + sources."typed-array-length-1.0.4" sources."typedarray-0.0.6" sources."typeface-roboto-1.1.13" sources."typescript-4.4.4" @@ -105086,7 +103503,7 @@ in sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."has-flag-4.0.0" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."loader-utils-2.0.4" sources."supports-color-7.2.0" ]; @@ -105105,7 +103522,7 @@ in (sources."vuetify-loader-1.7.3" // { dependencies = [ sources."file-loader-6.2.0" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."loader-utils-2.0.4" sources."schema-utils-3.1.1" ]; @@ -105216,6 +103633,7 @@ in sources."which-1.3.1" sources."which-boxed-primitive-1.0.2" sources."which-module-2.0.0" + sources."which-typed-array-1.1.9" sources."wide-align-1.1.5" sources."word-wrap-1.2.3" sources."worker-farm-1.7.0" @@ -105288,13 +103706,13 @@ in eslint = nodeEnv.buildNodePackage { name = "eslint"; packageName = "eslint"; - version = "8.30.0"; + version = "8.32.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint/-/eslint-8.30.0.tgz"; - sha512 = "MGADB39QqYuzEGov+F/qb18r4i7DohCDOfatHaxI2iGlPuC65bwG2gxgO+7DkyL38dRFaRH7RaRAgU6JKL9rMQ=="; + url = "https://registry.npmjs.org/eslint/-/eslint-8.32.0.tgz"; + sha512 = "nETVXpnthqKPFyuY2FNjz/bEd6nbosRgKbkgS/y1C7LJop96gYHWpiguLecMHQ2XCPxn77DS0P+68WzG6vkZSQ=="; }; dependencies = [ - sources."@eslint/eslintrc-1.4.0" + sources."@eslint/eslintrc-1.4.1" sources."@humanwhocodes/config-array-0.11.8" sources."@humanwhocodes/module-importer-1.0.1" sources."@humanwhocodes/object-schema-1.2.1" @@ -105319,7 +103737,7 @@ in sources."deep-is-0.1.4" sources."doctrine-3.0.0" sources."escape-string-regexp-4.0.0" - sources."eslint-8.30.0" + sources."eslint-8.32.0" sources."eslint-scope-7.1.1" (sources."eslint-utils-3.0.0" // { dependencies = [ @@ -105335,7 +103753,7 @@ in sources."fast-deep-equal-3.1.3" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."file-entry-cache-6.0.1" sources."find-up-5.0.0" sources."flat-cache-3.0.4" @@ -105374,7 +103792,7 @@ in sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" sources."prelude-ls-1.2.1" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."queue-microtask-1.2.3" sources."regexpp-3.2.0" sources."resolve-from-4.0.0" @@ -105414,7 +103832,7 @@ in sha512 = "qOJ9cTi5AaH5bOgEoCkv41DJ637mHgzffbOLojwU4wadwC6qbR+OxVJRvVzH0v2XYmQOvw4eiJK7ivrr5SvzsA=="; }; dependencies = [ - sources."@eslint/eslintrc-1.4.0" + sources."@eslint/eslintrc-1.4.1" sources."@humanwhocodes/config-array-0.11.8" sources."@humanwhocodes/module-importer-1.0.1" sources."@humanwhocodes/object-schema-1.2.1" @@ -105444,7 +103862,7 @@ in sources."deep-is-0.1.4" sources."doctrine-3.0.0" sources."escape-string-regexp-4.0.0" - sources."eslint-8.30.0" + sources."eslint-8.32.0" sources."eslint-scope-7.1.1" (sources."eslint-utils-3.0.0" // { dependencies = [ @@ -105460,7 +103878,7 @@ in sources."fast-deep-equal-3.1.3" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."file-entry-cache-6.0.1" sources."find-up-5.0.0" sources."flat-cache-3.0.4" @@ -105500,7 +103918,7 @@ in sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" sources."prelude-ls-1.2.1" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."queue-microtask-1.2.3" sources."regexpp-3.2.0" sources."resolve-from-4.0.0" @@ -105551,10 +103969,10 @@ in expo-cli = nodeEnv.buildNodePackage { name = "expo-cli"; packageName = "expo-cli"; - version = "6.0.8"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/expo-cli/-/expo-cli-6.0.8.tgz"; - sha512 = "ZVQ47l/wFsPgF9S68MT3mQCCq0HEH4wggnDdd3keZBHV8uhC1TvkdufOeWgbr7/uP5oKdfXEOQCXaYbJPdd69A=="; + url = "https://registry.npmjs.org/expo-cli/-/expo-cli-6.1.0.tgz"; + sha512 = "yhbevPdwof7oyjQup/dEYbxYZCiK/vYYQVnZA3CbYxtz0TG6LcEumz1Pn5WhAwU6vGCSmKpsJ02r4O0/bwIB/Q=="; }; dependencies = [ (sources."@ampproject/remapping-2.2.0" // { @@ -105563,10 +103981,10 @@ in ]; }) sources."@babel/code-frame-7.10.4" - sources."@babel/compat-data-7.20.5" + sources."@babel/compat-data-7.20.10" (sources."@babel/core-7.9.0" // { dependencies = [ - sources."json5-2.2.2" + sources."json5-2.2.3" sources."semver-5.7.1" ]; }) @@ -105580,7 +103998,7 @@ in sources."yallist-3.1.1" ]; }) - sources."@babel/helper-create-class-features-plugin-7.20.7" + sources."@babel/helper-create-class-features-plugin-7.20.12" sources."@babel/helper-create-regexp-features-plugin-7.20.5" (sources."@babel/helper-define-polyfill-provider-0.3.3" // { dependencies = [ @@ -105593,7 +104011,7 @@ in sources."@babel/helper-hoist-variables-7.18.6" sources."@babel/helper-member-expression-to-functions-7.20.7" sources."@babel/helper-module-imports-7.18.6" - sources."@babel/helper-module-transforms-7.20.7" + sources."@babel/helper-module-transforms-7.20.11" sources."@babel/helper-optimise-call-expression-7.18.6" sources."@babel/helper-plugin-utils-7.20.2" sources."@babel/helper-remap-async-to-generator-7.18.9" @@ -105616,8 +104034,8 @@ in (sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7" // { dependencies = [ sources."@babel/code-frame-7.18.6" - sources."@babel/core-7.20.7" - sources."json5-2.2.2" + sources."@babel/core-7.20.12" + sources."json5-2.2.3" sources."semver-6.3.0" ]; }) @@ -105626,8 +104044,8 @@ in (sources."@babel/plugin-proposal-class-static-block-7.20.7" // { dependencies = [ sources."@babel/code-frame-7.18.6" - sources."@babel/core-7.20.7" - sources."json5-2.2.2" + sources."@babel/core-7.20.12" + sources."json5-2.2.3" sources."semver-6.3.0" ]; }) @@ -105668,7 +104086,7 @@ in sources."@babel/plugin-transform-arrow-functions-7.20.7" sources."@babel/plugin-transform-async-to-generator-7.20.7" sources."@babel/plugin-transform-block-scoped-functions-7.18.6" - sources."@babel/plugin-transform-block-scoping-7.20.8" + sources."@babel/plugin-transform-block-scoping-7.20.11" sources."@babel/plugin-transform-classes-7.20.7" sources."@babel/plugin-transform-computed-properties-7.20.7" sources."@babel/plugin-transform-destructuring-7.20.7" @@ -105680,9 +104098,9 @@ in sources."@babel/plugin-transform-function-name-7.18.9" sources."@babel/plugin-transform-literals-7.18.9" sources."@babel/plugin-transform-member-expression-literals-7.18.6" - sources."@babel/plugin-transform-modules-amd-7.20.7" - sources."@babel/plugin-transform-modules-commonjs-7.20.7" - sources."@babel/plugin-transform-modules-systemjs-7.19.6" + sources."@babel/plugin-transform-modules-amd-7.20.11" + sources."@babel/plugin-transform-modules-commonjs-7.20.11" + sources."@babel/plugin-transform-modules-systemjs-7.20.11" sources."@babel/plugin-transform-modules-umd-7.18.6" sources."@babel/plugin-transform-named-capturing-groups-regex-7.20.5" sources."@babel/plugin-transform-new-target-7.18.6" @@ -105720,7 +104138,7 @@ in sources."@babel/code-frame-7.18.6" ]; }) - (sources."@babel/traverse-7.20.8" // { + (sources."@babel/traverse-7.20.12" // { dependencies = [ sources."@babel/code-frame-7.18.6" ]; @@ -105729,21 +104147,23 @@ in sources."@colors/colors-1.5.0" sources."@expo/apple-utils-0.0.0-alpha.31" sources."@expo/bunyan-4.0.0" - (sources."@expo/cli-0.4.10" // { + (sources."@expo/cli-0.4.11" // { dependencies = [ sources."@babel/runtime-7.20.7" (sources."@expo/config-7.0.3" // { dependencies = [ + sources."@expo/json-file-8.2.36" sources."semver-7.3.2" ]; }) (sources."@expo/config-plugins-5.0.4" // { dependencies = [ + sources."@expo/json-file-8.2.36" sources."semver-7.3.8" ]; }) sources."@expo/config-types-47.0.0" - (sources."@expo/dev-server-0.1.123" // { + (sources."@expo/dev-server-0.1.124" // { dependencies = [ sources."fs-extra-9.0.0" sources."semver-7.3.2" @@ -105756,31 +104176,51 @@ in sources."tempy-0.3.0" ]; }) - sources."@expo/metro-config-0.5.2" + (sources."@expo/metro-config-0.5.2" // { + dependencies = [ + sources."@expo/json-file-8.2.36" + ]; + }) sources."@expo/plist-0.0.18" (sources."@expo/prebuild-config-5.0.7" // { dependencies = [ + sources."@expo/json-file-8.2.36" sources."fs-extra-9.1.0" sources."semver-7.3.2" sources."universalify-2.0.0" ]; }) + (sources."body-parser-1.20.1" // { + dependencies = [ + sources."debug-2.6.9" + ]; + }) sources."bplist-parser-0.3.2" + sources."bytes-3.1.2" + sources."depd-2.0.0" sources."form-data-3.0.1" (sources."fs-extra-8.1.0" // { dependencies = [ sources."universalify-0.1.2" ]; }) + sources."http-errors-2.0.0" sources."jsonfile-4.0.0" + sources."ms-2.0.0" sources."node-forge-1.3.1" (sources."npm-package-arg-7.0.0" // { dependencies = [ sources."semver-5.7.1" ]; }) + sources."on-finished-2.4.1" + sources."qs-6.11.0" + sources."raw-body-2.5.1" sources."semver-6.3.0" + sources."setprototypeof-1.2.0" + sources."statuses-2.0.1" sources."temp-dir-1.0.0" + sources."toidentifier-1.0.1" sources."type-fest-0.3.1" sources."universalify-1.0.0" sources."uuid-3.4.0" @@ -105791,9 +104231,14 @@ in sources."node-forge-1.3.1" ]; }) - sources."@expo/config-6.0.24" + (sources."@expo/config-6.0.24" // { + dependencies = [ + sources."@expo/json-file-8.2.36" + ]; + }) (sources."@expo/config-plugins-4.1.5" // { dependencies = [ + sources."@expo/json-file-8.2.36" sources."@expo/plist-0.0.18" sources."semver-7.3.8" ]; @@ -105814,18 +104259,31 @@ in sources."type-fest-0.3.1" ]; }) - sources."@expo/json-file-8.2.36" - sources."@expo/metro-config-0.3.18" + (sources."@expo/json-file-8.2.37" // { + dependencies = [ + sources."json5-2.2.3" + ]; + }) + (sources."@expo/metro-config-0.3.18" // { + dependencies = [ + sources."@expo/json-file-8.2.36" + ]; + }) sources."@expo/osascript-2.0.33" (sources."@expo/package-manager-0.0.56" // { dependencies = [ + sources."@expo/json-file-8.2.36" sources."npm-package-arg-7.0.0" sources."rimraf-3.0.2" sources."semver-5.7.1" ]; }) - sources."@expo/plist-0.0.19" - sources."@expo/prebuild-config-4.0.3" + sources."@expo/plist-0.0.20" + (sources."@expo/prebuild-config-4.0.3" // { + dependencies = [ + sources."@expo/json-file-8.2.36" + ]; + }) sources."@expo/rudder-sdk-node-1.1.1" (sources."@expo/schemer-1.4.4" // { dependencies = [ @@ -105835,7 +104293,7 @@ in sources."@expo/sdk-runtime-versions-1.0.0" sources."@expo/spawn-async-1.5.0" sources."@expo/vector-icons-13.0.0" - sources."@expo/webpack-config-0.17.3" + sources."@expo/webpack-config-0.17.4" (sources."@expo/xcpretty-4.2.2" // { dependencies = [ sources."js-yaml-4.1.0" @@ -105882,7 +104340,7 @@ in sources."@types/json-schema-7.0.11" sources."@types/keyv-3.1.4" sources."@types/minimatch-5.1.2" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/q-1.5.5" sources."@types/responselike-1.0.0" sources."@types/retry-0.12.2" @@ -105903,7 +104361,7 @@ in sources."source-map-0.7.4" ]; }) - sources."@types/yargs-15.0.14" + sources."@types/yargs-15.0.15" sources."@types/yargs-parser-21.0.0" sources."@urql/core-2.3.6" sources."@urql/exchange-retry-0.3.0" @@ -105933,7 +104391,7 @@ in sources."address-1.1.2" sources."agent-base-6.0.2" sources."aggregate-error-3.1.0" - sources."ajv-8.11.2" + sources."ajv-8.12.0" sources."ajv-errors-1.0.1" sources."ajv-formats-2.1.1" (sources."ajv-keywords-3.5.2" // { @@ -105987,6 +104445,7 @@ in sources."asynckit-0.4.0" sources."at-least-node-1.0.0" sources."atob-2.1.2" + sources."available-typed-arrays-1.0.5" sources."axios-0.21.1" (sources."babel-loader-8.1.0" // { dependencies = [ @@ -106082,7 +104541,7 @@ in sources."camel-case-4.1.2" sources."camelcase-6.3.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -106096,7 +104555,7 @@ in sources."chokidar-3.5.3" sources."chownr-2.0.0" sources."chrome-trace-event-1.0.3" - sources."ci-info-3.7.0" + sources."ci-info-3.7.1" sources."cipher-base-1.0.4" (sources."class-utils-0.3.6" // { dependencies = [ @@ -106213,7 +104672,7 @@ in sources."semver-6.3.0" ]; }) - sources."core-js-compat-3.26.1" + sources."core-js-compat-3.27.1" sources."core-util-is-1.0.3" sources."cosmiconfig-5.2.1" (sources."create-ecdh-4.0.4" // { @@ -106223,7 +104682,11 @@ in }) sources."create-hash-1.2.0" sources."create-hmac-1.1.7" - sources."cross-fetch-3.1.5" + (sources."cross-fetch-3.1.5" // { + dependencies = [ + sources."node-fetch-2.6.7" + ]; + }) (sources."cross-spawn-6.0.5" // { dependencies = [ sources."semver-5.7.1" @@ -106362,8 +104825,9 @@ in sources."eol-0.9.1" sources."errno-0.1.8" sources."error-ex-1.3.2" - sources."es-abstract-1.20.5" + sources."es-abstract-1.21.1" sources."es-array-method-boxes-properly-1.0.0" + sources."es-set-tostringtag-2.0.1" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-html-1.0.3" @@ -106409,7 +104873,7 @@ in sources."ms-2.0.0" ]; }) - (sources."expo-47.0.9" // { + (sources."expo-47.0.13" // { dependencies = [ sources."@babel/runtime-7.20.7" (sources."@expo/config-7.0.3" // { @@ -106419,9 +104883,10 @@ in }) sources."@expo/config-plugins-5.0.4" sources."@expo/config-types-47.0.0" + sources."@expo/json-file-8.2.36" sources."@expo/plist-0.0.18" sources."commander-7.2.0" - sources."expo-modules-autolinking-1.0.0" + sources."expo-modules-autolinking-1.0.2" sources."fs-extra-9.1.0" sources."semver-7.3.8" sources."uuid-3.4.0" @@ -106434,6 +104899,7 @@ in sources."@expo/config-7.0.3" sources."@expo/config-plugins-5.0.4" sources."@expo/config-types-47.0.0" + sources."@expo/json-file-8.2.36" sources."@expo/plist-0.0.18" sources."semver-7.3.8" sources."uuid-3.4.0" @@ -106453,7 +104919,7 @@ in sources."fs-extra-9.1.0" ]; }) - sources."expo-modules-core-1.0.4" + sources."expo-modules-core-1.1.1" (sources."expo-pwa-0.0.124" // { dependencies = [ sources."@expo/image-utils-0.3.23" @@ -106497,7 +104963,7 @@ in sources."fast-deep-equal-3.1.3" sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."faye-websocket-0.10.0" sources."fbemitter-3.0.0" sources."fbjs-3.0.4" @@ -106532,6 +104998,7 @@ in sources."flush-write-stream-1.1.1" sources."follow-redirects-1.15.2" sources."fontfaceobserver-2.3.0" + sources."for-each-0.3.3" sources."for-in-1.0.2" (sources."fork-ts-checker-webpack-plugin-4.1.6" // { dependencies = [ @@ -106587,6 +105054,7 @@ in sources."global-modules-2.0.0" sources."global-prefix-3.0.0" sources."globals-11.12.0" + sources."globalthis-1.0.3" sources."globby-11.1.0" sources."gopd-1.0.1" sources."got-11.8.6" @@ -106599,6 +105067,7 @@ in sources."has-bigints-1.0.2" sources."has-flag-3.0.0" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-value-1.0.0" @@ -106697,6 +105166,7 @@ in sources."is-absolute-url-2.1.0" sources."is-accessor-descriptor-1.0.0" sources."is-arguments-1.1.1" + sources."is-array-buffer-3.0.1" sources."is-arrayish-0.2.1" sources."is-bigint-1.0.4" sources."is-binary-path-2.1.0" @@ -106763,6 +105233,7 @@ in sources."is-stream-2.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" + sources."is-typed-array-1.1.10" sources."is-valid-path-0.1.1" sources."is-weakref-1.0.2" sources."is-windows-1.0.2" @@ -106796,7 +105267,7 @@ in }) sources."json-schema-traverse-1.0.0" sources."json3-3.3.3" - sources."json5-1.0.1" + sources."json5-1.0.2" sources."jsonfile-6.1.0" sources."keychain-1.3.0" sources."keyv-4.5.2" @@ -106810,7 +105281,7 @@ in sources."loader-runner-2.4.0" (sources."loader-utils-2.0.4" // { dependencies = [ - sources."json5-2.2.2" + sources."json5-2.2.3" ]; }) sources."locate-path-6.0.0" @@ -106851,8 +105322,8 @@ in (sources."metro-react-native-babel-preset-0.72.3" // { dependencies = [ sources."@babel/code-frame-7.18.6" - sources."@babel/core-7.20.7" - sources."json5-2.2.2" + sources."@babel/core-7.20.12" + sources."json5-2.2.3" sources."semver-6.3.0" ]; }) @@ -106915,7 +105386,7 @@ in sources."nested-error-stacks-2.0.1" sources."nice-try-1.0.5" sources."no-case-3.0.4" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."node-forge-0.10.0" sources."node-html-parser-1.4.9" (sources."node-libs-browser-2.2.1" // { @@ -106950,7 +105421,7 @@ in sources."kind-of-3.2.2" ]; }) - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."object-is-1.1.5" sources."object-keys-1.1.1" sources."object-visit-1.0.1" @@ -107230,7 +105701,7 @@ in sources."pump-2.0.1" ]; }) - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."q-1.5.1" sources."qrcode-terminal-0.11.0" sources."qs-6.7.0" @@ -107257,7 +105728,7 @@ in sources."escape-string-regexp-2.0.0" sources."find-up-4.1.0" sources."globby-11.0.1" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."loader-utils-2.0.0" sources."locate-path-5.0.0" sources."node-releases-1.1.77" @@ -107645,6 +106116,7 @@ in sources."turndown-7.0.0" sources."type-fest-0.12.0" sources."type-is-1.6.18" + sources."typed-array-length-1.0.4" sources."typedarray-0.0.6" sources."ua-parser-js-0.7.32" sources."unbox-primitive-1.0.2" @@ -107845,6 +106317,7 @@ in sources."which-1.3.1" sources."which-boxed-primitive-1.0.2" sources."which-module-2.0.0" + sources."which-typed-array-1.1.9" sources."widest-line-3.1.0" sources."with-open-file-0.1.7" sources."wonka-4.0.15" @@ -107865,7 +106338,7 @@ in sources."uuid-7.0.3" ]; }) - (sources."xdl-59.2.55" // { + (sources."xdl-59.3.0" // { dependencies = [ sources."bplist-parser-0.3.2" sources."minimatch-3.0.4" @@ -107923,8 +106396,8 @@ in dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.5" - sources."@babel/core-7.20.7" + sources."@babel/compat-data-7.20.10" + sources."@babel/core-7.20.12" (sources."@babel/generator-7.20.7" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" @@ -107936,7 +106409,7 @@ in sources."@babel/helper-function-name-7.19.0" sources."@babel/helper-hoist-variables-7.18.6" sources."@babel/helper-module-imports-7.18.6" - sources."@babel/helper-module-transforms-7.20.7" + sources."@babel/helper-module-transforms-7.20.11" sources."@babel/helper-plugin-utils-7.20.2" sources."@babel/helper-simple-access-7.20.2" sources."@babel/helper-split-export-declaration-7.18.6" @@ -107953,7 +106426,7 @@ in sources."@babel/plugin-transform-parameters-7.20.7" sources."@babel/plugin-transform-react-jsx-7.20.7" sources."@babel/template-7.20.7" - sources."@babel/traverse-7.20.8" + sources."@babel/traverse-7.20.12" sources."@babel/types-7.20.7" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" @@ -107961,7 +106434,7 @@ in sources."@jridgewell/sourcemap-codec-1.4.14" sources."@jridgewell/trace-mapping-0.3.17" sources."@types/minimist-1.2.2" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/normalize-package-data-2.4.1" sources."@types/prop-types-15.7.5" sources."@types/react-18.0.26" @@ -107992,7 +106465,7 @@ in sources."callsites-3.1.0" sources."camelcase-5.3.1" sources."camelcase-keys-6.2.2" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" sources."chalk-2.4.2" sources."chownr-1.1.4" sources."ci-info-2.0.0" @@ -108071,7 +106544,7 @@ in sources."js-tokens-4.0.0" sources."jsesc-2.5.2" sources."json-parse-even-better-errors-2.3.1" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."kind-of-6.0.3" sources."lines-and-columns-1.2.4" sources."locate-path-5.0.0" @@ -108092,7 +106565,7 @@ in sources."mkdirp-classic-0.5.3" sources."ms-2.1.2" sources."node-fetch-2.6.7" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."node-releases-2.0.8" (sources."normalize-package-data-3.0.3" // { dependencies = [ @@ -108238,10 +106711,10 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@oclif/command-1.8.20" + sources."@oclif/command-1.8.21" sources."@oclif/config-1.18.6" sources."@oclif/errors-1.3.6" - (sources."@oclif/help-1.0.4" // { + (sources."@oclif/help-1.0.5" // { dependencies = [ sources."wrap-ansi-6.2.0" ]; @@ -108288,7 +106761,7 @@ in sources."assert-plus-1.0.0" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."base64-js-1.5.1" sources."bcrypt-pbkdf-1.0.2" (sources."bl-4.1.0" // { @@ -108347,7 +106820,11 @@ in sources."colors-1.0.3" sources."combined-stream-1.0.8" sources."core-util-is-1.0.3" - sources."cross-fetch-3.1.5" + (sources."cross-fetch-3.1.5" // { + dependencies = [ + sources."node-fetch-2.6.7" + ]; + }) (sources."cross-spawn-6.0.5" // { dependencies = [ sources."semver-5.7.1" @@ -108367,11 +106844,7 @@ in sources."duplexer3-0.1.5" sources."ecc-jsbn-0.1.2" sources."emoji-regex-8.0.0" - (sources."encoding-0.1.13" // { - dependencies = [ - sources."iconv-lite-0.6.3" - ]; - }) + sources."encoding-0.1.13" sources."escape-string-regexp-4.0.0" sources."escodegen-1.14.3" sources."esprima-4.0.1" @@ -108380,14 +106853,18 @@ in sources."execa-0.10.0" sources."exponential-backoff-3.1.0" sources."extend-3.0.2" - sources."external-editor-3.1.0" + (sources."external-editor-3.1.0" // { + dependencies = [ + sources."iconv-lite-0.4.24" + ]; + }) sources."extract-stack-1.0.0" sources."extsprintf-1.3.0" sources."fast-deep-equal-3.1.3" sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."faunadb-4.7.1" (sources."figures-3.2.0" // { dependencies = [ @@ -108427,7 +106904,7 @@ in sources."http-cache-semantics-3.8.1" sources."http-signature-1.2.0" sources."hyperlinker-1.0.0" - sources."iconv-lite-0.4.24" + sources."iconv-lite-0.6.3" sources."ieee754-1.2.1" sources."ignore-5.2.4" sources."indent-string-4.0.0" @@ -108489,7 +106966,7 @@ in }) sources."nice-try-1.0.5" sources."node-abort-controller-3.0.1" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."normalize-url-2.0.1" sources."npm-run-path-2.0.2" sources."oauth-sign-0.9.0" @@ -108512,10 +106989,10 @@ in sources."pify-3.0.0" sources."prelude-ls-1.1.2" sources."prepend-http-2.0.0" - sources."prettier-2.8.1" + sources."prettier-2.8.3" sources."process-nextick-args-2.0.1" sources."psl-1.9.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.5.3" sources."query-string-5.1.1" sources."queue-microtask-1.2.3" @@ -108608,10 +107085,10 @@ in firebase-tools = nodeEnv.buildNodePackage { name = "firebase-tools"; packageName = "firebase-tools"; - version = "11.19.0"; + version = "11.20.0"; src = fetchurl { - url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-11.19.0.tgz"; - sha512 = "J1gM10/KwWUIfR59PgkPnsDWAqyqQP9BDb6/3lOPMaYF9IMgV59lDpLaHRBt8V8NOvfbxhyFt66erRH6KsDPuw=="; + url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-11.20.0.tgz"; + sha512 = "jFDqWcYuydvHbx1uE1iDSx2pmqyIe2YuF7Jrf28HxU4VZyRPXII010v9OfT8cn5EJlA47WTDWuO2Fbx8EYPL7g=="; }; dependencies = [ (sources."@apidevtools/json-schema-ref-parser-9.1.0" // { @@ -108641,8 +107118,10 @@ in ]; }) sources."@npmcli/move-file-2.0.1" - sources."@opentelemetry/api-1.3.0" + sources."@opentelemetry/api-1.4.0" sources."@opentelemetry/semantic-conventions-1.3.1" + sources."@pnpm/network.ca-file-1.0.2" + sources."@pnpm/npm-conf-1.0.5" sources."@protobufjs/aspromise-1.1.2" sources."@protobufjs/base64-1.1.2" sources."@protobufjs/codegen-2.0.4" @@ -108662,7 +107141,7 @@ in sources."@types/long-4.0.2" sources."@types/markdown-it-12.2.3" sources."@types/mdurl-1.0.2" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."abbrev-1.1.1" sources."abort-controller-3.0.0" sources."accepts-1.3.8" @@ -108679,7 +107158,7 @@ in sources."ajv-6.12.6" (sources."ajv-formats-2.1.1" // { dependencies = [ - sources."ajv-8.11.2" + sources."ajv-8.12.0" sources."json-schema-traverse-1.0.0" ]; }) @@ -108710,7 +107189,7 @@ in sources."async-lock-1.3.2" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" (sources."basic-auth-2.0.1" // { @@ -108732,10 +107211,9 @@ in sources."ms-2.0.0" ]; }) - (sources."boxen-4.2.0" // { + (sources."boxen-5.1.2" // { dependencies = [ - sources."chalk-3.0.0" - sources."type-fest-0.8.1" + sources."type-fest-0.20.2" ]; }) sources."brace-expansion-2.0.1" @@ -108749,9 +107227,9 @@ in sources."bytes-3.1.2" (sources."cacache-16.1.3" // { dependencies = [ - sources."glob-8.0.3" + sources."glob-8.1.0" sources."lru-cache-7.14.1" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" ]; }) (sources."cacheable-request-6.1.0" // { @@ -108762,7 +107240,7 @@ in }) sources."call-bind-1.0.2" sources."call-me-maybe-1.0.2" - sources."camelcase-5.3.1" + sources."camelcase-6.3.0" sources."cardinal-2.1.1" sources."caseless-0.12.0" sources."catharsis-0.9.0" @@ -108798,7 +107276,6 @@ in sources."colorspace-1.1.4" sources."combined-stream-1.0.8" sources."commander-4.1.1" - sources."compare-semver-1.1.0" sources."compress-commons-4.1.1" sources."compressible-2.0.18" (sources."compression-1.7.4" // { @@ -108810,6 +107287,11 @@ in ]; }) sources."concat-map-0.0.1" + (sources."config-chain-1.1.13" // { + dependencies = [ + sources."ini-1.3.8" + ]; + }) sources."configstore-5.0.1" (sources."connect-3.7.0" // { dependencies = [ @@ -108902,7 +107384,7 @@ in sources."events-listener-1.1.0" (sources."exegesis-4.1.1" // { dependencies = [ - sources."ajv-8.11.2" + sources."ajv-8.12.0" sources."json-schema-traverse-1.0.0" sources."semver-7.3.8" ]; @@ -108971,7 +107453,7 @@ in sources."function-bind-1.1.1" sources."gauge-4.0.4" sources."gaxios-5.0.2" - sources."gcp-metadata-5.1.0" + sources."gcp-metadata-5.2.0" sources."get-caller-file-2.0.5" sources."get-intrinsic-1.1.3" sources."get-stream-4.1.0" @@ -108987,7 +107469,7 @@ in sources."glob-parent-5.1.2" sources."glob-slash-1.0.0" sources."glob-slasher-1.0.1" - sources."global-dirs-2.1.0" + sources."global-dirs-3.0.1" (sources."google-auth-library-7.14.1" // { dependencies = [ sources."gaxios-4.3.3" @@ -109008,11 +107490,6 @@ in sources."har-schema-2.0.0" sources."har-validator-5.1.5" sources."has-1.0.3" - (sources."has-ansi-2.0.0" // { - dependencies = [ - sources."ansi-regex-2.1.1" - ]; - }) sources."has-flag-4.0.0" sources."has-symbols-1.0.3" sources."has-unicode-2.0.1" @@ -109032,7 +107509,7 @@ in sources."infer-owner-1.0.4" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."ini-1.3.7" + sources."ini-2.0.0" sources."inquirer-8.2.5" sources."install-artifact-from-github-1.3.2" sources."ip-1.1.8" @@ -109044,10 +107521,10 @@ in sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.3" - sources."is-installed-globally-0.3.2" + sources."is-installed-globally-0.4.0" sources."is-interactive-1.0.0" sources."is-lambda-1.0.1" - sources."is-npm-4.0.0" + sources."is-npm-5.0.0" sources."is-number-7.0.0" sources."is-obj-2.0.0" sources."is-path-inside-3.0.3" @@ -109061,6 +107538,7 @@ in sources."is2-2.0.9" sources."isarray-1.0.0" sources."isexe-2.0.0" + sources."isomorphic-fetch-3.0.0" sources."isstream-0.1.2" sources."jju-1.4.0" sources."join-path-1.1.1" @@ -109142,7 +107620,7 @@ in }) sources."markdown-it-12.3.2" sources."markdown-it-anchor-8.6.6" - sources."marked-4.2.4" + sources."marked-4.2.12" (sources."marked-terminal-5.1.1" // { dependencies = [ sources."ansi-escapes-5.0.0" @@ -109187,7 +107665,7 @@ in sources."netmask-2.0.2" sources."nice-try-1.0.5" sources."node-emoji-1.11.0" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."node-forge-1.3.1" (sources."node-gyp-9.3.1" // { dependencies = [ @@ -109195,7 +107673,7 @@ in sources."which-2.0.2" ]; }) - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."nopt-6.0.0" sources."normalize-path-3.0.0" sources."normalize-url-4.5.1" @@ -109203,7 +107681,7 @@ in sources."oauth-sign-0.9.0" sources."object-assign-4.1.1" sources."object-hash-3.0.0" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."on-finished-2.4.1" sources."on-headers-1.0.2" sources."once-1.4.0" @@ -109221,6 +107699,7 @@ in sources."pac-resolver-5.0.1" (sources."package-json-6.5.0" // { dependencies = [ + sources."registry-auth-token-4.2.2" sources."semver-6.3.0" ]; }) @@ -109248,6 +107727,7 @@ in sources."retry-0.12.0" ]; }) + sources."proto-list-1.2.4" sources."proto3-json-serializer-1.1.0" (sources."protobufjs-7.1.2" // { dependencies = [ @@ -109256,8 +107736,8 @@ in }) (sources."protobufjs-cli-1.0.2" // { dependencies = [ - sources."glob-8.0.3" - sources."minimatch-5.1.2" + sources."glob-8.1.0" + sources."minimatch-5.1.6" sources."semver-7.3.8" ]; }) @@ -109271,13 +107751,14 @@ in sources."proxy-from-env-1.1.0" sources."psl-1.9.0" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."pupa-2.1.1" sources."qs-6.11.0" sources."range-parser-1.2.1" sources."raw-body-2.5.1" (sources."rc-1.2.8" // { dependencies = [ + sources."ini-1.3.8" sources."strip-json-comments-2.0.1" ]; }) @@ -109285,12 +107766,12 @@ in sources."readable-stream-3.6.0" (sources."readdir-glob-1.1.2" // { dependencies = [ - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" ]; }) sources."readdirp-3.6.0" sources."redeyed-2.1.1" - sources."registry-auth-token-4.2.2" + sources."registry-auth-token-5.0.1" sources."registry-url-5.1.0" (sources."request-2.88.2" // { dependencies = [ @@ -109317,7 +107798,7 @@ in sources."run-async-2.4.1" sources."rxjs-7.8.0" sources."safe-buffer-5.2.1" - sources."safe-stable-stringify-2.4.1" + sources."safe-stable-stringify-2.4.2" sources."safer-buffer-2.1.2" sources."semver-5.7.1" (sources."semver-diff-3.1.1" // { @@ -109361,34 +107842,16 @@ in sources."stream-chain-2.2.5" sources."stream-json-1.7.5" sources."stream-shift-1.0.1" - (sources."string-length-1.0.1" // { - dependencies = [ - sources."ansi-regex-2.1.1" - sources."strip-ansi-3.0.1" - ]; - }) sources."string-width-4.2.3" sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" sources."strip-json-comments-3.1.1" - (sources."superstatic-8.0.0" // { + (sources."superstatic-9.0.2" // { dependencies = [ - sources."ansi-regex-2.1.1" - sources."ansi-styles-2.2.1" - sources."chalk-1.1.3" - sources."commander-9.4.1" - sources."escape-string-regexp-1.0.5" + sources."commander-9.5.0" sources."isarray-0.0.1" + sources."minimatch-5.1.6" sources."path-to-regexp-1.8.0" - sources."strip-ansi-3.0.1" - sources."supports-color-2.0.0" - (sources."update-notifier-4.1.3" // { - dependencies = [ - sources."ansi-styles-4.3.0" - sources."chalk-3.0.0" - sources."supports-color-7.2.0" - ]; - }) ]; }) sources."supports-color-7.2.0" @@ -109405,7 +107868,6 @@ in sources."debug-4.3.1" ]; }) - sources."term-size-2.2.1" sources."text-hex-1.0.0" sources."through-2.3.8" sources."tmp-0.2.1" @@ -109443,14 +107905,12 @@ in }) (sources."update-notifier-5.1.0" // { dependencies = [ - sources."boxen-5.1.2" - sources."camelcase-6.3.0" - sources."global-dirs-3.0.1" - sources."ini-2.0.0" - sources."is-installed-globally-0.4.0" - sources."is-npm-5.0.0" sources."semver-7.3.8" - sources."type-fest-0.20.2" + ]; + }) + (sources."update-notifier-cjs-5.1.6" // { + dependencies = [ + sources."semver-7.3.8" ]; }) sources."uri-js-4.4.1" @@ -109470,6 +107930,7 @@ in sources."vm2-3.9.13" sources."wcwidth-1.0.1" sources."webidl-conversions-3.0.1" + sources."whatwg-fetch-3.6.2" sources."whatwg-url-5.0.0" sources."which-1.3.1" sources."wide-align-1.1.5" @@ -109486,7 +107947,7 @@ in sources."xregexp-2.0.0" sources."y18n-5.0.8" sources."yallist-4.0.0" - sources."yaml-2.2.0" + sources."yaml-2.2.1" sources."yargs-16.2.0" sources."yargs-parser-20.2.9" sources."zip-stream-4.1.0" @@ -109784,7 +108245,7 @@ in sources."@types/atob-2.1.2" sources."@types/bn.js-5.1.1" sources."@types/inquirer-6.5.0" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/pbkdf2-3.1.0" sources."@types/secp256k1-4.0.3" sources."@types/through-0.0.30" @@ -109800,7 +108261,7 @@ in sources."at-least-node-1.0.0" sources."atob-2.1.2" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."base-x-3.0.9" sources."bcrypt-pbkdf-1.0.2" sources."binary-search-tree-0.2.5" @@ -109895,7 +108356,7 @@ in sources."jsonfile-6.1.0" sources."jsprim-1.4.2" sources."jwt-decode-2.2.0" - sources."keccak-3.0.2" + sources."keccak-3.0.3" sources."lie-3.1.1" sources."localforage-1.10.0" sources."locate-path-5.0.0" @@ -109911,8 +108372,8 @@ in sources."mute-stream-0.0.8" sources."nedb-1.8.0" sources."node-addon-api-2.0.2" - sources."node-fetch-2.6.7" - sources."node-gyp-build-4.5.0" + sources."node-fetch-2.6.8" + sources."node-gyp-build-4.6.0" (sources."number-to-bn-1.7.0" // { dependencies = [ sources."bn.js-4.11.6" @@ -109929,7 +108390,7 @@ in sources."pbkdf2-3.1.2" sources."performance-now-2.1.0" sources."psl-1.9.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.5.3" sources."querystring-0.2.1" sources."randombytes-2.1.0" @@ -110111,14 +108572,14 @@ in sources."cycle-1.0.3" sources."debug-2.6.9" sources."decode-uri-component-0.2.2" - sources."deep-equal-2.1.0" + sources."deep-equal-2.2.0" sources."define-properties-1.1.4" sources."define-property-2.0.2" sources."director-1.2.7" sources."dot-prop-4.2.1" sources."duplexer-0.1.2" sources."enabled-2.0.0" - sources."es-get-iterator-1.1.2" + sources."es-get-iterator-1.1.3" sources."event-stream-3.3.4" sources."eventemitter2-6.4.4" (sources."expand-brackets-2.1.4" // { @@ -110194,8 +108655,10 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-1.3.8" + sources."internal-slot-1.0.4" sources."is-accessor-descriptor-1.0.0" sources."is-arguments-1.1.1" + sources."is-array-buffer-3.0.1" sources."is-arrayish-0.3.2" sources."is-bigint-1.0.4" sources."is-binary-path-1.0.1" @@ -110219,6 +108682,7 @@ in sources."is-plain-object-2.0.4" sources."is-regex-1.1.4" sources."is-set-2.0.2" + sources."is-shared-array-buffer-1.0.2" sources."is-stream-2.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" @@ -110280,7 +108744,7 @@ in sources."kind-of-3.2.2" ]; }) - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."object-is-1.1.5" sources."object-keys-1.1.1" sources."object-visit-1.0.1" @@ -110328,7 +108792,7 @@ in sources."rimraf-2.7.1" sources."safe-buffer-5.1.2" sources."safe-regex-1.1.0" - sources."safe-stable-stringify-2.4.1" + sources."safe-stable-stringify-2.4.2" (sources."set-value-2.0.1" // { dependencies = [ sources."extend-shallow-2.0.1" @@ -110391,6 +108855,7 @@ in sources."kind-of-5.1.0" ]; }) + sources."stop-iteration-iterator-1.0.0" sources."stream-combiner-0.0.4" sources."string_decoder-1.1.1" sources."strip-json-comments-2.0.1" @@ -110496,15 +108961,15 @@ in ganache = nodeEnv.buildNodePackage { name = "ganache"; packageName = "ganache"; - version = "7.7.2"; + version = "7.7.3"; src = fetchurl { - url = "https://registry.npmjs.org/ganache/-/ganache-7.7.2.tgz"; - sha512 = "WPQeD50AMGtWkHsexUT3XfHDoz0NI0NklUbIqVtRQhC0zfPypHr12T3TlnnylpfP6ATe8IJMBX/XARMM8B22BQ=="; + url = "https://registry.npmjs.org/ganache/-/ganache-7.7.3.tgz"; + sha512 = "dZTUHjzSuvDTMUpKaBTWJnpcWpsBUtqciA8ttdmC/r/XRXJhDa0EpypisYULhoV8tx76G08mOuM/B1vhPbh20A=="; }; dependencies = [ sources."@types/bn.js-5.1.1" sources."@types/lru-cache-5.1.1" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/seedrandom-3.0.1" sources."abstract-level-1.0.3" (sources."abstract-leveldown-7.2.0" // { @@ -110526,7 +108991,7 @@ in sources."level-transcoder-1.0.1" sources."lodash-4.17.21" sources."module-error-1.0.2" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."queue-microtask-1.2.3" sources."utf-8-validate-5.0.7" ]; @@ -110543,16 +109008,16 @@ in gatsby-cli = nodeEnv.buildNodePackage { name = "gatsby-cli"; packageName = "gatsby-cli"; - version = "5.3.1"; + version = "5.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.3.1.tgz"; - sha512 = "Z+cqBUpCnEo7rBnnZkxq/svE4CVHY5E+1uArbqDk3j4RmZMU+/kxBxVeWb9Eb0j/IyblFsNqpNjOX8oig87Ywg=="; + url = "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-5.4.0.tgz"; + sha512 = "3b6PGhv89mtIabur6Al7O/0cDoazgQfNjQzeKqsboRyaZCanJZsZnk6mDaHBYBSUfq6M+8TQWZvNlvxnF2kwig=="; }; dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.5" - (sources."@babel/core-7.20.7" // { + sources."@babel/compat-data-7.20.10" + (sources."@babel/core-7.20.12" // { dependencies = [ sources."semver-6.3.0" ]; @@ -110568,17 +109033,18 @@ in sources."semver-6.3.0" ]; }) - sources."@babel/helper-create-class-features-plugin-7.20.7" + sources."@babel/helper-create-class-features-plugin-7.20.12" sources."@babel/helper-environment-visitor-7.18.9" sources."@babel/helper-function-name-7.19.0" sources."@babel/helper-hoist-variables-7.18.6" sources."@babel/helper-member-expression-to-functions-7.20.7" sources."@babel/helper-module-imports-7.18.6" - sources."@babel/helper-module-transforms-7.20.7" + sources."@babel/helper-module-transforms-7.20.11" sources."@babel/helper-optimise-call-expression-7.18.6" sources."@babel/helper-plugin-utils-7.20.2" sources."@babel/helper-replace-supers-7.20.7" sources."@babel/helper-simple-access-7.20.2" + sources."@babel/helper-skip-transparent-expression-wrappers-7.20.0" sources."@babel/helper-split-export-declaration-7.18.6" sources."@babel/helper-string-parser-7.19.4" sources."@babel/helper-validator-identifier-7.19.1" @@ -110595,7 +109061,7 @@ in sources."@babel/preset-typescript-7.18.6" sources."@babel/runtime-7.20.7" sources."@babel/template-7.20.7" - sources."@babel/traverse-7.20.8" + sources."@babel/traverse-7.20.12" sources."@babel/types-7.20.7" sources."@hapi/hoek-9.3.0" sources."@hapi/topo-5.1.0" @@ -110628,7 +109094,7 @@ in sources."@types/common-tags-1.8.1" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/node-fetch-2.6.2" sources."@types/responselike-1.0.0" sources."@types/yoga-layout-1.9.2" @@ -110655,7 +109121,7 @@ in ]; }) sources."camelcase-6.3.0" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" (sources."chalk-4.1.2" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -110692,7 +109158,7 @@ in sources."configstore-5.0.1" sources."convert-hrtime-3.0.0" sources."convert-source-map-1.9.0" - sources."create-gatsby-3.3.1" + sources."create-gatsby-3.4.0" (sources."cross-spawn-6.0.5" // { dependencies = [ sources."semver-5.7.1" @@ -110742,7 +109208,7 @@ in sources."tmp-0.0.33" ]; }) - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."figures-3.2.0" sources."file-type-16.5.4" sources."find-up-4.1.0" @@ -110750,8 +109216,8 @@ in sources."fs-exists-cached-1.0.0" sources."fs-extra-10.1.0" sources."fs.realpath-1.0.0" - sources."gatsby-core-utils-4.3.1" - (sources."gatsby-telemetry-4.3.1" // { + sources."gatsby-core-utils-4.4.0" + (sources."gatsby-telemetry-4.4.0" // { dependencies = [ sources."ansi-styles-4.3.0" sources."boxen-4.2.0" @@ -110807,7 +109273,7 @@ in sources."js-tokens-4.0.0" sources."jsesc-2.5.2" sources."json-buffer-3.0.1" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."jsonfile-6.1.0" sources."keyv-4.5.2" sources."kleur-3.0.3" @@ -110834,7 +109300,7 @@ in sources."mute-stream-0.0.8" sources."nice-try-1.0.5" sources."node-addon-api-4.3.0" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."node-gyp-build-optional-packages-5.0.3" sources."node-object-hash-2.3.10" sources."node-releases-2.0.8" @@ -110869,7 +109335,7 @@ in sources."read-1.0.7" sources."readable-stream-3.6.0" sources."readable-web-to-node-stream-3.0.2" - sources."redux-4.1.2" + sources."redux-4.2.0" sources."regenerator-runtime-0.13.11" (sources."renderkid-2.0.7" // { dependencies = [ @@ -111007,8 +109473,8 @@ in (sources."@npmcli/map-workspaces-2.0.4" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."glob-8.0.3" - sources."minimatch-5.1.2" + sources."glob-8.1.0" + sources."minimatch-5.1.6" ]; }) sources."@npmcli/metavuln-calculator-2.0.0" @@ -111136,12 +109602,12 @@ in }) sources."fast-glob-3.2.12" sources."fast-plist-0.1.3" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."figures-3.2.0" (sources."filelist-1.0.4" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" ]; }) sources."fill-range-7.0.1" @@ -111251,7 +109717,7 @@ in sources."multimatch-5.0.0" sources."mute-stream-0.0.8" sources."negotiator-0.6.3" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" (sources."node-gyp-8.4.1" // { dependencies = [ sources."are-we-there-yet-3.0.1" @@ -111283,7 +109749,7 @@ in sources."@tootallnate/once-2.0.0" sources."brace-expansion-2.0.1" sources."cacache-16.1.3" - sources."glob-8.0.3" + sources."glob-8.1.0" sources."http-proxy-agent-5.0.0" sources."lru-cache-7.14.1" (sources."make-fetch-happen-10.2.1" // { @@ -111291,7 +109757,7 @@ in sources."minipass-fetch-2.1.2" ]; }) - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" sources."socks-proxy-agent-7.0.0" sources."ssri-9.0.1" sources."unique-filename-2.0.1" @@ -111509,7 +109975,7 @@ in sources."iconv-lite-0.6.3" sources."iterall-1.3.0" sources."minimist-1.2.7" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."safer-buffer-2.1.2" sources."supports-color-5.5.0" sources."tr46-0.0.3" @@ -111615,7 +110081,7 @@ in sources."multiserver-scopes-2.0.0" sources."muxrpc-6.7.3" sources."nearley-2.20.1" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."node-polyglot-1.0.0" sources."non-private-ip-2.2.0" sources."os-homedir-1.0.2" @@ -111787,7 +110253,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/responselike-1.0.0" sources."ansi-regex-6.0.1" sources."ansi-styles-4.3.0" @@ -111847,7 +110313,7 @@ in sources."mimic-fn-2.1.0" sources."mimic-response-1.0.1" sources."normalize-url-6.1.0" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."once-1.4.0" sources."onetime-5.1.2" (sources."ora-6.1.2" // { @@ -111917,7 +110383,7 @@ in sources."acorn-8.8.1" sources."acorn-walk-8.2.0" sources."agent-base-6.0.2" - sources."ajv-8.11.2" + sources."ajv-8.12.0" sources."ajv-formats-2.1.1" (sources."ansi-align-3.0.1" // { dependencies = [ @@ -111943,7 +110409,7 @@ in sources."buffer-6.0.3" sources."bytes-3.1.2" sources."cacheable-lookup-7.0.0" - sources."cacheable-request-10.2.3" + sources."cacheable-request-10.2.5" sources."camelcase-7.0.1" (sources."camelcase-keys-8.0.2" // { dependencies = [ @@ -111952,7 +110418,7 @@ in }) sources."chalk-5.2.0" sources."chardet-0.7.0" - sources."ci-info-3.7.0" + sources."ci-info-3.7.1" sources."cli-boxes-3.0.0" sources."cli-cursor-4.0.0" sources."cli-spinners-2.7.0" @@ -111974,7 +110440,7 @@ in sources."type-fest-1.4.0" ]; }) - sources."data-uri-to-buffer-4.0.0" + sources."data-uri-to-buffer-4.0.1" sources."debounce-fn-4.0.0" sources."debug-4.3.4" sources."decamelize-6.0.0" @@ -112153,7 +110619,7 @@ in ]; }) sources."proxy-from-env-1.1.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."pupa-3.1.0" sources."quick-lru-6.1.1" sources."raw-body-2.5.1" @@ -112222,7 +110688,7 @@ in sources."trim-newlines-4.0.2" sources."tslib-2.4.1" sources."type-check-0.3.2" - sources."type-fest-3.4.0" + sources."type-fest-3.5.2" sources."typedarray-to-buffer-3.1.5" sources."unique-string-3.0.0" sources."universalify-0.1.2" @@ -112259,10 +110725,10 @@ in glob = nodeEnv.buildNodePackage { name = "glob"; packageName = "glob"; - version = "8.0.3"; + version = "8.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz"; - sha512 = "ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ=="; + url = "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz"; + sha512 = "r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ=="; }; dependencies = [ sources."balanced-match-1.0.2" @@ -112270,7 +110736,7 @@ in sources."fs.realpath-1.0.0" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" sources."once-1.4.0" sources."wrappy-1.0.2" ]; @@ -112373,7 +110839,7 @@ in sources."minimist-1.2.7" sources."mkdirp-0.5.6" sources."ms-2.1.3" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."object-assign-4.1.1" sources."once-1.4.0" sources."path-is-absolute-1.0.1" @@ -112467,7 +110933,7 @@ in sources."iconv-lite-0.6.3" sources."idb-keyval-6.2.0" sources."inversify-6.0.1" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."reflect-metadata-0.1.13" sources."safari-14-idb-fix-3.0.0" sources."safer-buffer-2.1.2" @@ -112475,7 +110941,7 @@ in sources."vscode-jsonrpc-6.0.0" sources."vscode-languageserver-7.0.0" sources."vscode-languageserver-protocol-3.16.0" - sources."vscode-languageserver-textdocument-1.0.8" + sources."vscode-languageserver-textdocument-1.0.9" sources."vscode-languageserver-types-3.16.0" sources."web-tree-sitter-0.20.5" sources."webidl-conversions-3.0.1" @@ -112566,9 +111032,9 @@ in sources."tslib-2.1.0" ]; }) - (sources."@graphql-tools/import-6.7.14" // { + (sources."@graphql-tools/import-6.7.15" // { dependencies = [ - sources."@graphql-tools/utils-9.1.3" + sources."@graphql-tools/utils-9.1.4" sources."tslib-2.4.1" ]; }) @@ -112627,7 +111093,7 @@ in sources."@nodelib/fs.walk-1.2.8" sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/parse-json-4.0.0" sources."@types/websocket-1.0.2" sources."abort-controller-3.0.0" @@ -112648,7 +111114,7 @@ in sources."at-least-node-1.0.0" sources."available-typed-arrays-1.0.5" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."backo2-1.0.2" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" @@ -112710,7 +111176,7 @@ in sources."dataloader-2.0.0" sources."debug-4.3.4" sources."decompress-response-3.3.0" - sources."deep-equal-2.1.0" + sources."deep-equal-2.2.0" sources."deep-extend-0.6.0" sources."defaults-1.0.4" sources."defer-to-connect-1.1.3" @@ -112722,7 +111188,7 @@ in sources."emoji-regex-8.0.0" sources."end-of-stream-1.4.4" sources."error-ex-1.3.2" - sources."es-get-iterator-1.1.2" + sources."es-get-iterator-1.1.3" sources."es6-promise-3.3.1" sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" @@ -112742,7 +111208,7 @@ in sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" sources."fast-safe-stringify-2.1.1" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."figlet-1.5.0" sources."figures-3.2.0" sources."fill-range-7.0.1" @@ -112815,7 +111281,9 @@ in sources."strip-ansi-6.0.1" ]; }) + sources."internal-slot-1.0.4" sources."is-arguments-1.1.1" + sources."is-array-buffer-3.0.1" sources."is-arrayish-0.2.1" sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" @@ -112832,6 +111300,7 @@ in sources."is-promise-4.0.0" sources."is-regex-1.1.4" sources."is-set-2.0.2" + sources."is-shared-array-buffer-1.0.2" sources."is-stream-1.1.0" sources."is-string-1.0.7" sources."is-symbol-1.0.4" @@ -112912,7 +111381,7 @@ in sources."node-emoji-1.10.0" sources."node-fetch-2.6.1" sources."node-fetch-h2-2.3.0" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."node-readfiles-0.2.0" sources."normalize-path-2.1.1" sources."normalize-url-4.5.1" @@ -112927,7 +111396,7 @@ in sources."oas-schema-walker-1.1.5" sources."oas-validator-5.0.8" sources."oauth-sign-0.9.0" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."object-is-1.1.5" sources."object-keys-1.1.1" sources."object.assign-4.1.4" @@ -112978,7 +111447,7 @@ in sources."prepend-http-2.0.0" sources."psl-1.9.0" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.5.3" sources."queue-microtask-1.2.3" sources."rc-1.2.8" @@ -113018,6 +111487,7 @@ in sources."slash-3.0.0" sources."sprintf-js-1.0.3" sources."sshpk-1.17.0" + sources."stop-iteration-iterator-1.0.0" sources."string-env-interpolation-1.0.1" (sources."string-width-4.2.3" // { dependencies = [ @@ -113110,21 +111580,21 @@ in sources."@babel/polyfill-7.12.1" sources."@babel/types-7.20.7" sources."@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2" - sources."@graphql-tools/batch-execute-8.5.14" - sources."@graphql-tools/delegate-9.0.21" - sources."@graphql-tools/executor-0.0.11" - sources."@graphql-tools/executor-graphql-ws-0.0.5" - sources."@graphql-tools/executor-http-0.0.7" - sources."@graphql-tools/executor-legacy-ws-0.0.5" - sources."@graphql-tools/graphql-file-loader-7.5.13" - sources."@graphql-tools/import-6.7.14" - sources."@graphql-tools/json-file-loader-7.4.14" - sources."@graphql-tools/load-7.8.8" - sources."@graphql-tools/merge-8.3.14" - sources."@graphql-tools/schema-9.0.12" - sources."@graphql-tools/url-loader-7.16.28" - sources."@graphql-tools/utils-9.1.3" - sources."@graphql-tools/wrap-9.2.23" + sources."@graphql-tools/batch-execute-8.5.15" + sources."@graphql-tools/delegate-9.0.22" + sources."@graphql-tools/executor-0.0.12" + sources."@graphql-tools/executor-graphql-ws-0.0.6" + sources."@graphql-tools/executor-http-0.1.1" + sources."@graphql-tools/executor-legacy-ws-0.0.6" + sources."@graphql-tools/graphql-file-loader-7.5.14" + sources."@graphql-tools/import-6.7.15" + sources."@graphql-tools/json-file-loader-7.4.15" + sources."@graphql-tools/load-7.8.9" + sources."@graphql-tools/merge-8.3.15" + sources."@graphql-tools/schema-9.0.13" + sources."@graphql-tools/url-loader-7.17.2" + sources."@graphql-tools/utils-9.1.4" + sources."@graphql-tools/wrap-9.3.1" sources."@graphql-typed-document-node/core-3.1.1" sources."@iarna/toml-2.2.5" sources."@nodelib/fs.scandir-2.1.5" @@ -113134,16 +111604,16 @@ in sources."@peculiar/json-schema-1.1.12" sources."@peculiar/webcrypto-1.4.1" sources."@repeaterjs/repeater-3.0.4" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/parse-json-4.0.0" - sources."@types/ws-8.5.3" + sources."@types/ws-8.5.4" sources."@vue/compiler-core-3.2.45" sources."@vue/compiler-dom-3.2.45" sources."@vue/compiler-sfc-3.2.45" sources."@vue/compiler-ssr-3.2.45" sources."@vue/reactivity-transform-3.2.45" sources."@vue/shared-3.2.45" - sources."@whatwg-node/fetch-0.5.3" + sources."@whatwg-node/fetch-0.6.2" sources."abort-controller-3.0.0" sources."ansi-regex-5.0.1" sources."ansi-styles-3.2.1" @@ -113180,7 +111650,7 @@ in sources."event-target-shim-5.0.1" sources."extract-files-11.0.0" sources."fast-glob-3.2.12" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fill-range-7.0.1" sources."form-data-encoder-1.7.2" (sources."formdata-node-4.4.1" // { @@ -113233,8 +111703,8 @@ in sources."nanoid-3.3.4" sources."node-abort-controller-3.0.1" sources."node-domexception-1.0.0" - sources."node-fetch-2.6.7" - sources."node-gyp-build-4.5.0" + sources."node-fetch-2.6.8" + sources."node-gyp-build-4.6.0" sources."normalize-path-2.1.1" sources."nullthrows-1.1.1" sources."once-1.4.0" @@ -113245,7 +111715,7 @@ in sources."path-type-4.0.0" sources."picocolors-1.0.0" sources."picomatch-2.3.1" - sources."postcss-8.4.20" + sources."postcss-8.4.21" sources."pvtsutils-1.3.2" sources."pvutils-1.1.3" sources."queue-microtask-1.2.3" @@ -113272,10 +111742,11 @@ in sources."ts-node-9.1.1" sources."tslib-2.4.1" sources."typescript-4.9.4" - sources."undici-5.14.0" + sources."undici-5.15.0" sources."unixify-1.0.0" - sources."utf-8-validate-5.0.10" - sources."value-or-promise-1.0.11" + sources."urlpattern-polyfill-6.0.2" + sources."utf-8-validate-6.0.0" + sources."value-or-promise-1.0.12" sources."vscode-jsonrpc-8.0.2" sources."vscode-languageserver-8.0.2" sources."vscode-languageserver-protocol-3.17.2" @@ -113293,7 +111764,7 @@ in ]; }) sources."wrappy-1.0.2" - sources."ws-8.11.0" + sources."ws-8.12.0" sources."y18n-5.0.8" sources."yaml-1.10.2" sources."yargs-16.2.0" @@ -113336,83 +111807,36 @@ in }) sources."@cronvel/get-pixels-3.4.1" sources."@cspotcode/source-map-support-0.8.1" - (sources."@graphql-tools/batch-execute-8.5.14" // { + sources."@graphql-tools/batch-execute-8.5.15" + sources."@graphql-tools/delegate-9.0.22" + sources."@graphql-tools/executor-0.0.12" + (sources."@graphql-tools/executor-graphql-ws-0.0.6" // { dependencies = [ - sources."@graphql-tools/utils-9.1.3" - ]; - }) - (sources."@graphql-tools/delegate-9.0.21" // { - dependencies = [ - sources."@graphql-tools/utils-9.1.3" - ]; - }) - (sources."@graphql-tools/executor-0.0.11" // { - dependencies = [ - sources."@graphql-tools/utils-9.1.3" - ]; - }) - (sources."@graphql-tools/executor-graphql-ws-0.0.5" // { - dependencies = [ - sources."@graphql-tools/utils-9.1.3" sources."isomorphic-ws-5.0.0" - sources."ws-8.11.0" + sources."ws-8.12.0" ]; }) - (sources."@graphql-tools/executor-http-0.0.7" // { + sources."@graphql-tools/executor-http-0.1.1" + (sources."@graphql-tools/executor-legacy-ws-0.0.6" // { dependencies = [ - sources."@graphql-tools/utils-9.1.3" - ]; - }) - (sources."@graphql-tools/executor-legacy-ws-0.0.5" // { - dependencies = [ - sources."@graphql-tools/utils-9.1.3" sources."isomorphic-ws-5.0.0" - sources."ws-8.11.0" + sources."ws-8.12.0" ]; }) - (sources."@graphql-tools/graphql-file-loader-7.5.13" // { + sources."@graphql-tools/graphql-file-loader-7.5.14" + sources."@graphql-tools/import-6.7.15" + sources."@graphql-tools/json-file-loader-7.4.15" + sources."@graphql-tools/load-7.8.9" + sources."@graphql-tools/merge-8.3.15" + sources."@graphql-tools/schema-9.0.13" + (sources."@graphql-tools/url-loader-7.17.2" // { dependencies = [ - sources."@graphql-tools/utils-9.1.3" - ]; - }) - (sources."@graphql-tools/import-6.7.14" // { - dependencies = [ - sources."@graphql-tools/utils-9.1.3" - ]; - }) - (sources."@graphql-tools/json-file-loader-7.4.14" // { - dependencies = [ - sources."@graphql-tools/utils-9.1.3" - ]; - }) - (sources."@graphql-tools/load-7.8.8" // { - dependencies = [ - sources."@graphql-tools/utils-9.1.3" - ]; - }) - (sources."@graphql-tools/merge-8.3.14" // { - dependencies = [ - sources."@graphql-tools/utils-9.1.3" - ]; - }) - (sources."@graphql-tools/schema-9.0.12" // { - dependencies = [ - sources."@graphql-tools/utils-9.1.3" - ]; - }) - (sources."@graphql-tools/url-loader-7.16.28" // { - dependencies = [ - sources."@graphql-tools/utils-9.1.3" sources."isomorphic-ws-5.0.0" - sources."ws-8.11.0" - ]; - }) - sources."@graphql-tools/utils-8.13.1" - (sources."@graphql-tools/wrap-9.2.23" // { - dependencies = [ - sources."@graphql-tools/utils-9.1.3" + sources."ws-8.12.0" ]; }) + sources."@graphql-tools/utils-9.1.4" + sources."@graphql-tools/wrap-9.3.1" sources."@graphql-typed-document-node/core-3.1.1" sources."@iarna/toml-2.2.5" sources."@jridgewell/resolve-uri-3.1.0" @@ -113454,27 +111878,26 @@ in sources."@peculiar/json-schema-1.1.12" sources."@peculiar/webcrypto-1.4.1" sources."@repeaterjs/repeater-3.0.4" - sources."@swc/core-1.3.24" - sources."@swc/core-darwin-arm64-1.3.24" - sources."@swc/core-darwin-x64-1.3.24" - sources."@swc/core-linux-arm-gnueabihf-1.3.24" - sources."@swc/core-linux-arm64-gnu-1.3.24" - sources."@swc/core-linux-arm64-musl-1.3.24" - sources."@swc/core-linux-x64-gnu-1.3.24" - sources."@swc/core-linux-x64-musl-1.3.24" - sources."@swc/core-win32-arm64-msvc-1.3.24" - sources."@swc/core-win32-ia32-msvc-1.3.24" - sources."@swc/core-win32-x64-msvc-1.3.24" - sources."@swc/wasm-1.3.24" + sources."@swc/core-1.3.27" + sources."@swc/core-darwin-arm64-1.3.27" + sources."@swc/core-darwin-x64-1.3.27" + sources."@swc/core-linux-arm-gnueabihf-1.3.27" + sources."@swc/core-linux-arm64-gnu-1.3.27" + sources."@swc/core-linux-arm64-musl-1.3.27" + sources."@swc/core-linux-x64-gnu-1.3.27" + sources."@swc/core-linux-x64-musl-1.3.27" + sources."@swc/core-win32-arm64-msvc-1.3.27" + sources."@swc/core-win32-ia32-msvc-1.3.27" + sources."@swc/core-win32-x64-msvc-1.3.27" + sources."@swc/wasm-1.3.27" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" sources."@types/json-schema-7.0.9" - sources."@types/node-18.11.17" - sources."@types/parse-json-4.0.0" - sources."@types/ws-8.5.3" - sources."@whatwg-node/fetch-0.5.3" + sources."@types/node-18.11.18" + sources."@types/ws-8.5.4" + sources."@whatwg-node/fetch-0.6.2" sources."abort-controller-3.0.0" sources."accepts-1.3.8" sources."acorn-8.8.1" @@ -113484,6 +111907,7 @@ in sources."ansi-styles-4.3.0" sources."ansicolors-0.3.2" sources."arg-4.1.3" + sources."argparse-2.0.1" sources."array-flatten-1.1.1" sources."array-union-2.1.0" sources."asn1js-3.0.5" @@ -113532,7 +111956,7 @@ in sources."content-type-1.0.4" sources."cookie-0.3.1" sources."cookie-signature-1.0.6" - sources."cosmiconfig-7.0.1" + sources."cosmiconfig-8.0.0" sources."cosmiconfig-toml-loader-1.0.0" sources."cosmiconfig-typescript-loader-4.3.0" sources."create-require-1.1.1" @@ -113573,7 +111997,7 @@ in sources."extract-files-11.0.0" sources."extract-stack-1.0.0" sources."fast-glob-3.2.12" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fill-range-7.0.1" (sources."finalhandler-1.1.1" // { dependencies = [ @@ -113594,7 +112018,7 @@ in sources."globby-11.1.0" sources."graceful-fs-4.2.10" sources."graphql-15.4.0" - sources."graphql-config-4.3.6" + sources."graphql-config-4.4.0" (sources."graphql-language-service-interface-2.10.2" // { dependencies = [ sources."graphql-16.6.0" @@ -113641,6 +112065,7 @@ in sources."iterall-1.3.0" sources."jpeg-js-0.4.4" sources."js-tokens-4.0.0" + sources."js-yaml-4.1.0" sources."json-parse-even-better-errors-2.3.1" sources."jsonfile-4.0.0" sources."lazyness-1.2.0" @@ -113669,8 +112094,8 @@ in sources."nice-try-1.0.5" sources."node-bitmap-0.0.1" sources."node-domexception-1.0.0" - sources."node-fetch-2.6.7" - sources."node-gyp-build-4.5.0" + sources."node-fetch-2.6.8" + sources."node-gyp-build-4.6.0" sources."normalize-path-2.1.1" sources."nullthrows-1.1.1" sources."omggif-1.0.10" @@ -113752,15 +112177,16 @@ in sources."tslib-2.4.1" sources."type-is-1.6.18" sources."typescript-4.9.4" - sources."undici-5.14.0" + sources."undici-5.15.0" sources."uniq-1.0.1" sources."universalify-0.1.2" sources."unixify-1.0.0" sources."unpipe-1.0.0" - sources."utf-8-validate-5.0.10" + sources."urlpattern-polyfill-6.0.2" + sources."utf-8-validate-6.0.0" sources."utils-merge-1.0.1" sources."v8-compile-cache-lib-3.0.1" - sources."value-or-promise-1.0.11" + sources."value-or-promise-1.0.12" sources."vary-1.1.2" sources."vscode-languageserver-types-3.17.2" sources."web-streams-polyfill-3.2.1" @@ -113771,9 +112197,12 @@ in sources."which-1.3.1" sources."widest-line-3.1.0" sources."wrap-ansi-7.0.0" - sources."ws-7.4.2" + (sources."ws-7.4.2" // { + dependencies = [ + sources."utf-8-validate-5.0.10" + ]; + }) sources."yallist-4.0.0" - sources."yaml-1.10.2" sources."yn-3.1.1" sources."yocto-queue-0.1.0" ]; @@ -113930,7 +112359,7 @@ in sources."minimist-1.2.7" sources."ms-2.0.0" sources."negotiator-0.6.3" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."on-finished-2.4.1" sources."options-0.0.6" sources."parseurl-1.3.3" @@ -114056,7 +112485,7 @@ in sources."isarray-0.0.1" sources."lodash-4.17.21" sources."map-canvas-0.1.5" - sources."marked-4.2.4" + sources."marked-4.2.12" (sources."marked-terminal-5.1.1" // { dependencies = [ sources."chalk-5.2.0" @@ -114087,7 +112516,7 @@ in sources."supports-color-7.2.0" ]; }) - sources."systeminformation-5.16.8" + sources."systeminformation-5.17.3" sources."term-canvas-0.0.5" sources."type-fest-1.4.0" sources."wordwrap-0.0.3" @@ -115016,7 +113445,7 @@ in sources."chalk-4.1.2" sources."color-convert-2.0.1" sources."color-name-1.1.4" - sources."commander-9.4.1" + sources."commander-9.5.0" sources."concat-map-0.0.1" sources."encoding-0.1.13" sources."fs.realpath-1.0.0" @@ -115028,7 +113457,7 @@ in sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."minimatch-3.1.2" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."once-1.4.0" sources."path-is-absolute-1.0.1" sources."safer-buffer-2.1.2" @@ -115084,7 +113513,7 @@ in sources."minimist-1.2.7" sources."mkdirp-0.5.6" sources."ms-2.1.3" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."opener-1.5.2" sources."portfinder-1.0.32" sources."qs-6.11.0" @@ -115143,9 +113572,9 @@ in sources."bufio-1.0.7" sources."bupnp-0.2.6" sources."bval-0.1.6" - sources."bweb-0.1.11" + sources."bweb-0.1.12" sources."goosig-0.10.0" - sources."hs-client-0.0.11" + sources."hs-client-0.0.13" sources."loady-0.0.5" sources."mrmr-0.1.10" sources."n64-0.2.10" @@ -115192,10 +113621,10 @@ in hs-client = nodeEnv.buildNodePackage { name = "hs-client"; packageName = "hs-client"; - version = "0.0.11"; + version = "0.0.13"; src = fetchurl { - url = "https://registry.npmjs.org/hs-client/-/hs-client-0.0.11.tgz"; - sha512 = "DunENysXNxADDs6YvTjIgFG38U+mGnlDpfEhUzHOAOnkHyYwAIm0PwYJEmJqsbLnpY31xg0lPfRV8t+Ugz+Dew=="; + url = "https://registry.npmjs.org/hs-client/-/hs-client-0.0.13.tgz"; + sha512 = "3Vm/4S0TDstbOW+OfdTeP2EQ4dolPNqMulTSr31RihwX8cX1DyT4il1Fc9STXXToXTsZuFro2WD/+1m0MWi5Ag=="; }; dependencies = [ sources."bcfg-0.1.7" @@ -115257,7 +113686,7 @@ in sources."once-1.4.0" sources."path-is-absolute-1.0.1" sources."process-0.11.10" - sources."readable-stream-4.2.0" + sources."readable-stream-4.3.0" sources."sprintf-js-1.0.3" sources."tabula-1.10.0" sources."verror-1.10.1" @@ -115286,7 +113715,7 @@ in sources."@colors/colors-1.5.0" sources."@fast-csv/format-4.3.5" sources."@fast-csv/parse-4.3.6" - sources."@types/node-14.18.35" + sources."@types/node-14.18.36" sources."ajv-6.12.6" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" @@ -115296,9 +113725,9 @@ in sources."async-2.6.4" sources."asynckit-0.4.0" sources."available-typed-arrays-1.0.5" - sources."aws-sdk-2.1281.0" + sources."aws-sdk-2.1296.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."base64-js-1.5.1" sources."bcrypt-pbkdf-1.0.2" sources."bluebird-3.7.2" @@ -115410,7 +113839,7 @@ in sources."lodash.reject-4.6.0" sources."lodash.some-4.6.0" sources."lodash.uniq-4.5.0" - sources."marked-4.2.4" + sources."marked-4.2.12" sources."mime-db-1.52.0" sources."mime-types-2.1.35" sources."minimist-1.2.7" @@ -115461,7 +113890,7 @@ in sources."strip-ansi-6.0.1" (sources."tough-cookie-2.5.0" // { dependencies = [ - sources."punycode-2.1.1" + sources."punycode-2.2.0" ]; }) sources."tunnel-agent-0.6.0" @@ -115470,7 +113899,7 @@ in sources."underscore-1.12.1" (sources."uri-js-4.4.1" // { dependencies = [ - sources."punycode-2.1.1" + sources."punycode-2.2.0" ]; }) sources."url-0.10.3" @@ -115518,7 +113947,7 @@ in sources."jp-kernel-2.0.0" sources."nan-2.17.0" sources."nel-1.3.0" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."uuid-3.4.0" sources."zeromq-5.3.1" ]; @@ -115552,7 +113981,7 @@ in sources."assert-plus-1.0.0" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."bcrypt-pbkdf-1.0.2" sources."boolbase-1.0.0" sources."camelcase-1.2.1" @@ -115684,7 +114113,7 @@ in sources."process-nextick-args-2.0.1" sources."promise-7.3.1" sources."psl-1.9.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."q-1.5.1" sources."qs-6.5.3" sources."rc-1.2.8" @@ -115818,10 +114247,10 @@ in immich = nodeEnv.buildNodePackage { name = "immich"; packageName = "immich"; - version = "0.27.0"; + version = "0.28.0"; src = fetchurl { - url = "https://registry.npmjs.org/immich/-/immich-0.27.0.tgz"; - sha512 = "7y1KBydAq6K3Ra2ABIhRTiHxnA2dl317Mh+s/AKS9FNKkK3lvx/Ro5CrA3gyANcKRxdz+Lipv2u8aoPFo7CbpQ=="; + url = "https://registry.npmjs.org/immich/-/immich-0.28.0.tgz"; + sha512 = "Dz/z1OBeB4r9PJY1Owzk6JQZVHjPja8rx7icUuPIGXaAajohO5mjgE0/j+/846Of5X1P5wQW6aIS3Y3QCA1v8A=="; }; dependencies = [ sources."@ffprobe-installer/darwin-arm64-5.0.1" @@ -115842,7 +114271,7 @@ in sources."color-convert-1.9.3" sources."color-name-1.1.3" sources."combined-stream-1.0.8" - sources."commander-9.4.1" + sources."commander-9.5.0" sources."cross-spawn-7.0.3" sources."delayed-stream-1.0.0" sources."duplexify-4.1.2" @@ -115885,7 +114314,7 @@ in sources."strip-ansi-6.0.1" sources."strip-final-newline-2.0.0" sources."supports-color-5.5.0" - sources."systeminformation-5.16.8" + sources."systeminformation-5.17.3" sources."util-deprecate-1.0.2" sources."which-2.0.2" sources."wrappy-1.0.2" @@ -115915,7 +114344,7 @@ in sources."commander-2.11.0" sources."encoding-0.1.13" sources."iconv-lite-0.6.3" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."safer-buffer-2.1.2" sources."semver-5.7.1" sources."source-map-0.7.4" @@ -115937,56 +114366,42 @@ in insect = nodeEnv.buildNodePackage { name = "insect"; packageName = "insect"; - version = "5.7.0"; + version = "5.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/insect/-/insect-5.7.0.tgz"; - sha512 = "rm3APOoPrf7J66Bo7bHOn0c/k/STonQ+KSdyLid9NQvSM+LTpeL9X8RnOZ3NRlz01/MgXqQ0CGAGh60kSB9Xlw=="; + url = "https://registry.npmjs.org/insect/-/insect-5.8.0.tgz"; + sha512 = "dOu/+glVyQwPh7myO5ClPykijxCdSrsFAX4bOSqvrYiI9puBZ+5U8ljTc+al4KaUrhaI0QdanzYkqL8jzS5sIw=="; }; dependencies = [ sources."@jcubic/lily-0.3.0" - sources."@types/jquery-3.5.14" + sources."@types/jquery-3.5.16" sources."@types/sizzle-2.3.3" sources."ansidec-0.3.4" sources."arch-2.2.0" - sources."balanced-match-1.0.2" - sources."brace-expansion-1.1.11" sources."clipboardy-2.3.0" sources."clone-1.0.4" - sources."concat-map-0.0.1" sources."cross-spawn-6.0.5" - sources."decimal.js-7.5.1" + sources."decimal.js-10.4.3" sources."defaults-1.0.4" sources."end-of-stream-1.4.4" sources."execa-1.0.0" - sources."fs-extra-0.24.0" - sources."fs.realpath-1.0.0" sources."fsevents-2.3.2" sources."get-stream-4.1.0" - sources."glob-7.2.3" - sources."graceful-fs-4.2.10" - sources."historic-readline-1.0.8" sources."iconv-lite-0.6.3" - sources."inflight-1.0.6" - sources."inherits-2.0.4" sources."is-docker-2.2.1" sources."is-stream-1.1.0" sources."is-wsl-2.2.0" sources."isexe-2.0.0" sources."jquery-3.6.3" - sources."jquery.terminal-2.35.0" - sources."jsonfile-2.4.0" + sources."jquery.terminal-2.35.2" sources."keyboardevent-key-polyfill-1.1.0" sources."line-reader-0.4.0" - sources."minimatch-3.1.2" sources."nice-try-1.0.5" sources."npm-run-path-2.0.2" sources."once-1.4.0" sources."p-finally-1.0.0" - sources."path-is-absolute-1.0.1" sources."path-key-2.0.1" sources."prismjs-1.29.0" sources."pump-3.0.0" - sources."rimraf-2.7.1" sources."safer-buffer-2.1.2" sources."semver-5.7.1" sources."shebang-command-1.2.0" @@ -116011,26 +114426,34 @@ in intelephense = nodeEnv.buildNodePackage { name = "intelephense"; packageName = "intelephense"; - version = "1.8.2"; + version = "1.9.4"; src = fetchurl { - url = "https://registry.npmjs.org/intelephense/-/intelephense-1.8.2.tgz"; - sha512 = "u7n8UdvFlZcE8LpGDPpc2miBD0zOd9fBMKajeF04KkVCOX7s6Ua+qK9r+zvQBjQT53O7p9XGSEVAUvB4q98b5w=="; + url = "https://registry.npmjs.org/intelephense/-/intelephense-1.9.4.tgz"; + sha512 = "iRYwXogGCu9NxWHN5UYqaKeAd9u+MDC8Mhvrwt+stRluSYWjyFqwQGVSuPStW0P8pFgSZ80mOthlA933wKRGKA=="; }; dependencies = [ - sources."@bmewburn/js-beautify-1.13.0" - sources."@bmewburn/minidom-1.0.1" - sources."@bmewburn/turndown-5.0.3" - sources."@bmewburn/turndown-plugin-gfm-1.0.2" - (sources."@bmewburn/vscode-html-languageserver-1.3.0" // { + sources."@azure/abort-controller-1.1.0" + sources."@azure/core-auth-1.4.0" + sources."@azure/core-http-2.3.1" + sources."@azure/core-tracing-1.0.0-preview.13" + sources."@azure/core-util-1.1.1" + sources."@azure/logger-1.0.3" + sources."@bmewburn/js-beautify-1.14.7" + sources."@bmewburn/vscode-html-languageserver-1.9.0" + (sources."@mapbox/node-pre-gyp-1.0.10" // { dependencies = [ - sources."vscode-languageserver-7.0.0" - sources."vscode-languageserver-types-3.16.0" - sources."vscode-uri-2.1.2" + sources."nopt-5.0.0" ]; }) + sources."@microsoft/applicationinsights-web-snippet-1.0.1" sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" + sources."@opentelemetry/api-1.4.0" + sources."@opentelemetry/core-1.9.0" + sources."@opentelemetry/resources-1.9.0" + sources."@opentelemetry/sdk-trace-base-1.9.0" + sources."@opentelemetry/semantic-conventions-1.9.0" sources."@protobufjs/aspromise-1.1.2" sources."@protobufjs/base64-1.1.2" sources."@protobufjs/codegen-2.0.4" @@ -116041,12 +114464,23 @@ in sources."@protobufjs/path-1.1.2" sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" - sources."@selderee/plugin-htmlparser2-0.6.0" - sources."@types/long-4.0.2" - sources."@types/node-13.13.52" + sources."@selderee/plugin-htmlparser2-0.10.0" + sources."@types/node-18.11.18" + (sources."@types/node-fetch-2.6.2" // { + dependencies = [ + sources."form-data-3.0.1" + ]; + }) + sources."@types/tunnel-0.0.3" + sources."@vscode/l10n-0.0.10" sources."abbrev-1.1.1" + sources."agent-base-6.0.2" sources."ajv-6.12.6" - sources."applicationinsights-1.8.10" + sources."ansi-regex-5.0.1" + sources."applicationinsights-2.3.6" + sources."applicationinsights-native-metrics-0.0.8" + sources."aproba-2.0.0" + sources."are-we-there-yet-2.0.0" sources."asn1-0.2.6" sources."assert-plus-1.0.0" sources."async-hook-jl-1.7.6" @@ -116056,39 +114490,44 @@ in ]; }) sources."asynckit-0.4.0" - sources."at-least-node-1.0.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."balanced-match-1.0.2" sources."bcrypt-pbkdf-1.0.2" - sources."brace-expansion-1.1.11" + sources."brace-expansion-2.0.1" sources."braces-3.0.2" sources."caseless-0.12.0" + sources."chownr-2.0.0" (sources."cls-hooked-4.2.2" // { dependencies = [ sources."semver-5.7.1" ]; }) + sources."color-support-1.1.3" sources."combined-stream-1.0.8" sources."commander-2.20.3" sources."concat-map-0.0.1" sources."config-chain-1.1.13" + sources."console-control-strings-1.1.0" sources."continuation-local-storage-3.2.1" sources."core-util-is-1.0.2" sources."dashdash-1.14.1" + sources."debug-4.3.4" sources."deepmerge-4.2.2" sources."delayed-stream-1.0.0" - (sources."diagnostic-channel-0.3.1" // { + sources."delegates-1.0.0" + sources."detect-libc-2.0.1" + (sources."diagnostic-channel-1.1.0" // { dependencies = [ sources."semver-5.7.1" ]; }) - sources."diagnostic-channel-publishers-0.4.4" - sources."discontinuous-range-1.0.0" - sources."dom-serializer-1.4.1" + sources."diagnostic-channel-publishers-1.0.5" + sources."dom-serializer-2.0.0" sources."domelementtype-2.3.0" - sources."domhandler-4.3.1" - sources."domutils-2.8.0" + sources."domhandler-5.0.3" + sources."domino-2.1.6" + sources."domutils-3.0.1" sources."ecc-jsbn-0.1.2" (sources."editorconfig-0.15.3" // { dependencies = [ @@ -116097,32 +114536,48 @@ in ]; }) sources."emitter-listener-1.1.2" - sources."entities-2.2.0" + sources."emoji-regex-8.0.0" + sources."encoding-0.1.13" + sources."entities-4.4.0" sources."extend-3.0.2" sources."extsprintf-1.3.0" sources."fast-deep-equal-3.1.3" sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fill-range-7.0.1" sources."forever-agent-0.6.1" - sources."form-data-2.3.3" - sources."fs-extra-9.1.0" + sources."form-data-4.0.0" + (sources."fs-extra-11.1.0" // { + dependencies = [ + sources."universalify-2.0.0" + ]; + }) + (sources."fs-minipass-2.1.0" // { + dependencies = [ + sources."minipass-3.3.6" + sources."yallist-4.0.0" + ]; + }) sources."fs.realpath-1.0.0" + sources."gauge-3.0.2" sources."getpass-0.1.7" - sources."glob-7.2.3" + sources."glob-8.1.0" sources."glob-parent-5.1.2" sources."graceful-fs-4.2.10" sources."har-schema-2.0.0" sources."har-validator-5.1.5" - sources."he-1.2.0" - sources."html-to-text-8.1.1" - sources."htmlparser2-6.1.0" + sources."has-unicode-2.0.1" + sources."html-to-text-9.0.3" + sources."htmlparser2-8.0.1" sources."http-signature-1.2.0" + sources."https-proxy-agent-5.0.1" + sources."iconv-lite-0.6.3" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-1.3.8" sources."is-extglob-2.1.1" + sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."is-typedarray-1.0.0" @@ -116131,88 +114586,132 @@ in sources."json-schema-0.4.0" sources."json-schema-traverse-0.4.1" sources."json-stringify-safe-5.0.1" - sources."jsonfile-6.1.0" - sources."jsprim-1.4.2" - sources."long-4.0.0" - (sources."lru-cache-6.0.0" // { + (sources."jsonfile-6.1.0" // { dependencies = [ - sources."yallist-4.0.0" + sources."universalify-2.0.0" + ]; + }) + sources."jsprim-1.4.2" + sources."leac-0.6.0" + sources."long-5.2.1" + sources."lru-cache-7.14.1" + (sources."make-dir-3.1.0" // { + dependencies = [ + sources."semver-6.3.0" ]; }) sources."merge2-1.4.1" sources."micromatch-4.0.5" sources."mime-db-1.52.0" sources."mime-types-2.1.35" - sources."minimatch-3.1.2" - sources."minimist-1.2.7" + sources."minimatch-5.1.6" + (sources."minipass-4.0.0" // { + dependencies = [ + sources."yallist-4.0.0" + ]; + }) + (sources."minizlib-2.1.2" // { + dependencies = [ + sources."minipass-3.3.6" + sources."yallist-4.0.0" + ]; + }) sources."mkdirp-1.0.4" - sources."moo-0.5.2" - sources."nearley-2.20.1" - sources."nopt-5.0.0" + sources."ms-2.1.2" + sources."nan-2.17.0" + sources."node-fetch-2.6.8" + sources."nopt-6.0.0" + sources."npmlog-5.0.1" sources."oauth-sign-0.9.0" + sources."object-assign-4.1.1" sources."once-1.4.0" - sources."parse5-5.1.1" - sources."parseley-0.7.0" + sources."parseley-0.11.0" sources."path-is-absolute-1.0.1" + sources."peberminta-0.8.0" sources."performance-now-2.1.0" sources."picomatch-2.3.1" + sources."process-0.11.10" sources."proto-list-1.2.4" - sources."protobufjs-6.10.3" + sources."protobufjs-7.1.2" sources."pseudomap-1.0.2" sources."psl-1.9.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.5.3" + sources."querystringify-2.2.0" sources."queue-microtask-1.2.3" - sources."railroad-diagrams-1.0.0" - sources."randexp-0.4.6" - sources."request-2.88.2" - sources."ret-0.1.15" + sources."readable-stream-3.6.0" + (sources."request-2.88.2" // { + dependencies = [ + sources."form-data-2.3.3" + sources."tough-cookie-2.5.0" + sources."uuid-3.4.0" + ]; + }) + sources."requires-port-1.0.0" sources."reusify-1.0.4" + (sources."rimraf-3.0.2" // { + dependencies = [ + sources."brace-expansion-1.1.11" + sources."glob-7.2.3" + sources."minimatch-3.1.2" + ]; + }) sources."run-parallel-1.2.0" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" - sources."selderee-0.6.0" - sources."semver-7.3.8" + sources."sax-1.2.4" + sources."selderee-0.10.0" + (sources."semver-7.3.8" // { + dependencies = [ + sources."lru-cache-6.0.0" + sources."yallist-4.0.0" + ]; + }) + sources."set-blocking-2.0.0" sources."shimmer-1.2.1" sources."sigmund-1.0.1" + sources."signal-exit-3.0.7" sources."sshpk-1.17.0" sources."stack-chain-1.3.7" + sources."string-width-4.2.3" + sources."string_decoder-1.3.0" + sources."strip-ansi-6.0.1" + (sources."tar-6.1.13" // { + dependencies = [ + sources."yallist-4.0.0" + ]; + }) sources."to-regex-range-5.0.1" - sources."tough-cookie-2.5.0" + sources."tough-cookie-4.1.2" + sources."tr46-0.0.3" + sources."tslib-2.4.1" + sources."tunnel-0.0.6" sources."tunnel-agent-0.6.0" + sources."turndown-7.1.1" + sources."turndown-plugin-gfm-1.0.2" sources."tweetnacl-0.14.5" sources."typescript-4.9.4" - sources."universalify-2.0.0" + sources."universalify-0.2.0" sources."uri-js-4.4.1" - sources."uuid-3.4.0" + sources."url-parse-1.5.10" + sources."util-deprecate-1.0.2" + sources."uuid-8.3.2" sources."verror-1.10.0" - (sources."vscode-css-languageservice-5.4.2" // { - dependencies = [ - sources."vscode-languageserver-types-3.17.2" - ]; - }) - (sources."vscode-html-languageservice-4.2.5" // { - dependencies = [ - sources."vscode-languageserver-types-3.17.2" - ]; - }) - sources."vscode-jsonrpc-6.0.0" - (sources."vscode-languageserver-7.1.0-next.4" // { - dependencies = [ - sources."vscode-jsonrpc-6.1.0-next.2" - sources."vscode-languageserver-protocol-3.17.0-next.5" - ]; - }) - (sources."vscode-languageserver-protocol-3.16.0" // { - dependencies = [ - sources."vscode-languageserver-types-3.16.0" - ]; - }) - sources."vscode-languageserver-textdocument-1.0.8" - sources."vscode-languageserver-types-3.17.0-next.1" + sources."vscode-css-languageservice-6.2.1" + sources."vscode-html-languageservice-5.0.3" + sources."vscode-jsonrpc-8.0.2" + sources."vscode-languageserver-8.0.2" + sources."vscode-languageserver-protocol-3.17.2" + sources."vscode-languageserver-textdocument-1.0.9" + sources."vscode-languageserver-types-3.17.2" sources."vscode-nls-5.2.0" sources."vscode-uri-3.0.7" + sources."webidl-conversions-3.0.1" + sources."whatwg-url-5.0.0" + sources."wide-align-1.1.5" sources."wrappy-1.0.2" + sources."xml2js-0.4.23" + sources."xmlbuilder-11.0.1" sources."yallist-2.1.2" ]; buildInputs = globalBuildInputs; @@ -116278,7 +114777,7 @@ in sources."combined-stream-1.0.8" sources."component-emitter-1.3.0" sources."concat-map-0.0.1" - sources."cookiejar-2.1.3" + sources."cookiejar-2.1.4" sources."core-util-is-1.0.3" sources."cross-spawn-7.0.3" sources."data-uri-to-buffer-3.0.1" @@ -116409,13 +114908,13 @@ in sources."mute-stream-0.0.8" sources."netmask-1.0.6" sources."nice-try-1.0.5" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" (sources."npm-run-path-2.0.2" // { dependencies = [ sources."path-key-2.0.1" ]; }) - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."once-1.4.0" sources."onetime-2.0.1" sources."open-7.4.2" @@ -116638,7 +115137,7 @@ in sources."concat-map-0.0.1" (sources."filelist-1.0.4" // { dependencies = [ - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" ]; }) sources."has-flag-4.0.0" @@ -116798,14 +115297,14 @@ in sources."@aws-sdk/abort-controller-3.226.0" sources."@aws-sdk/chunked-blob-reader-3.188.0" sources."@aws-sdk/chunked-blob-reader-native-3.208.0" - (sources."@aws-sdk/client-s3-3.236.0" // { + (sources."@aws-sdk/client-s3-3.252.0" // { dependencies = [ sources."fast-xml-parser-4.0.11" ]; }) - sources."@aws-sdk/client-sso-3.236.0" - sources."@aws-sdk/client-sso-oidc-3.236.0" - (sources."@aws-sdk/client-sts-3.236.0" // { + sources."@aws-sdk/client-sso-3.252.0" + sources."@aws-sdk/client-sso-oidc-3.252.0" + (sources."@aws-sdk/client-sts-3.252.0" // { dependencies = [ sources."fast-xml-parser-4.0.11" ]; @@ -116813,10 +115312,10 @@ in sources."@aws-sdk/config-resolver-3.234.0" sources."@aws-sdk/credential-provider-env-3.226.0" sources."@aws-sdk/credential-provider-imds-3.226.0" - sources."@aws-sdk/credential-provider-ini-3.236.0" - sources."@aws-sdk/credential-provider-node-3.236.0" + sources."@aws-sdk/credential-provider-ini-3.252.0" + sources."@aws-sdk/credential-provider-node-3.252.0" sources."@aws-sdk/credential-provider-process-3.226.0" - sources."@aws-sdk/credential-provider-sso-3.236.0" + sources."@aws-sdk/credential-provider-sso-3.252.0" sources."@aws-sdk/credential-provider-web-identity-3.226.0" sources."@aws-sdk/eventstream-codec-3.226.0" sources."@aws-sdk/eventstream-serde-browser-3.226.0" @@ -116857,14 +115356,14 @@ in sources."@aws-sdk/protocol-http-3.226.0" sources."@aws-sdk/querystring-builder-3.226.0" sources."@aws-sdk/querystring-parser-3.226.0" - sources."@aws-sdk/s3-request-presigner-3.236.0" + sources."@aws-sdk/s3-request-presigner-3.252.0" sources."@aws-sdk/service-error-classification-3.229.0" sources."@aws-sdk/shared-ini-file-loader-3.226.0" sources."@aws-sdk/signature-v4-3.226.0" sources."@aws-sdk/signature-v4-crt-3.226.0" sources."@aws-sdk/signature-v4-multi-region-3.226.0" sources."@aws-sdk/smithy-client-3.234.0" - sources."@aws-sdk/token-providers-3.236.0" + sources."@aws-sdk/token-providers-3.252.0" sources."@aws-sdk/types-3.226.0" sources."@aws-sdk/url-parser-3.226.0" sources."@aws-sdk/util-arn-parser-3.208.0" @@ -116876,7 +115375,7 @@ in sources."@aws-sdk/util-create-request-3.234.0" sources."@aws-sdk/util-defaults-mode-browser-3.234.0" sources."@aws-sdk/util-defaults-mode-node-3.234.0" - sources."@aws-sdk/util-endpoints-3.226.0" + sources."@aws-sdk/util-endpoints-3.245.0" sources."@aws-sdk/util-format-url-3.226.0" sources."@aws-sdk/util-hex-encoding-3.201.0" sources."@aws-sdk/util-locate-window-3.208.0" @@ -116930,7 +115429,7 @@ in sources."gauge-3.0.2" sources."is-fullwidth-code-point-3.0.0" sources."mkdirp-1.0.4" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."npmlog-5.0.1" sources."readable-stream-3.6.0" sources."rimraf-3.0.2" @@ -116956,8 +115455,8 @@ in }) sources."@tootallnate/once-1.1.2" sources."@types/nanoid-3.0.0" - sources."@types/node-18.11.17" - sources."@types/ws-8.5.3" + sources."@types/node-18.11.18" + sources."@types/ws-8.5.4" sources."abab-2.0.6" sources."abbrev-1.1.1" sources."acorn-7.4.1" @@ -116998,13 +115497,13 @@ in sources."asynckit-0.4.0" sources."atob-2.1.2" sources."available-typed-arrays-1.0.5" - (sources."aws-crt-1.15.5" // { + (sources."aws-crt-1.15.7" // { dependencies = [ sources."mkdirp-1.0.4" sources."tar-6.1.13" ]; }) - (sources."aws-sdk-2.1281.0" // { + (sources."aws-sdk-2.1296.0" // { dependencies = [ sources."buffer-4.9.2" sources."ieee754-1.1.13" @@ -117015,7 +115514,7 @@ in ]; }) sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."axios-0.24.0" sources."balanced-match-1.0.2" sources."base-64-0.1.0" @@ -117112,13 +115611,13 @@ in ]; }) sources."cwise-compiler-1.1.3" - sources."d3-7.8.0" + sources."d3-7.8.1" sources."d3-array-3.2.1" sources."d3-axis-3.0.0" sources."d3-brush-3.0.0" sources."d3-chord-3.0.1" sources."d3-color-3.1.0" - sources."d3-contour-4.0.0" + sources."d3-contour-4.0.2" sources."d3-delaunay-6.0.2" sources."d3-dispatch-3.0.1" sources."d3-drag-3.0.0" @@ -117367,6 +115866,7 @@ in sources."jsbn-0.1.1" (sources."jsdom-15.2.1" // { dependencies = [ + sources."utf-8-validate-5.0.10" sources."ws-7.5.9" ]; }) @@ -117496,6 +115996,7 @@ in dependencies = [ sources."duplexify-4.1.2" sources."readable-stream-3.6.0" + sources."utf-8-validate-5.0.10" sources."ws-7.5.9" ]; }) @@ -117511,7 +116012,7 @@ in sources."negotiator-0.6.3" sources."nextgen-events-1.5.3" sources."no-case-2.3.2" - (sources."node-abi-3.30.0" // { + (sources."node-abi-3.31.0" // { dependencies = [ sources."semver-7.3.8" ]; @@ -117537,7 +116038,7 @@ in sources."which-2.0.2" ]; }) - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" (sources."node-notifier-8.0.2" // { dependencies = [ sources."semver-7.3.8" @@ -117600,7 +116101,7 @@ in sources."proper-lockfile-2.0.1" sources."psl-1.9.0" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."q-1.1.2" sources."qs-6.5.3" sources."query-string-4.3.4" @@ -117831,7 +116332,7 @@ in }) sources."url-join-0.0.1" sources."url-parse-1.5.10" - sources."utf-8-validate-5.0.10" + sources."utf-8-validate-6.0.0" sources."util-0.12.5" sources."util-deprecate-1.0.2" sources."uuid-3.4.0" @@ -117859,7 +116360,7 @@ in ]; }) sources."wrappy-1.0.2" - sources."ws-8.11.0" + sources."ws-8.12.0" sources."xml-name-validator-3.0.0" sources."xml2js-0.4.23" sources."xmlbuilder-11.0.1" @@ -117900,12 +116401,12 @@ in sources."config-chain-1.1.13" sources."editorconfig-0.15.3" sources."fs.realpath-1.0.0" - sources."glob-8.0.3" + sources."glob-8.1.0" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-1.3.8" sources."lru-cache-4.1.5" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" sources."nopt-6.0.0" sources."once-1.4.0" sources."proto-list-1.2.4" @@ -117956,7 +116457,7 @@ in }; dependencies = [ sources."@babel/parser-7.20.7" - sources."@jsdoc/salty-0.2.2" + sources."@jsdoc/salty-0.2.3" sources."@types/linkify-it-3.0.2" sources."@types/markdown-it-12.2.3" sources."@types/mdurl-1.0.2" @@ -117972,7 +116473,7 @@ in sources."lodash-4.17.21" sources."markdown-it-12.3.2" sources."markdown-it-anchor-8.6.6" - sources."marked-4.2.4" + sources."marked-4.2.12" sources."mdurl-1.0.1" sources."mkdirp-1.0.4" sources."requizzle-0.2.4" @@ -118122,7 +116623,7 @@ in sources."combined-stream-1.0.8" sources."commander-4.1.1" sources."component-emitter-1.3.0" - sources."cookiejar-2.1.3" + sources."cookiejar-2.1.4" sources."debug-4.3.4" sources."delayed-stream-1.0.0" sources."dezalgo-1.0.4" @@ -118146,10 +116647,10 @@ in sources."mime-types-2.1.35" sources."ms-2.1.2" sources."native-promise-only-0.8.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."once-1.4.0" sources."path-loader-1.0.12" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.11.0" sources."readable-stream-3.6.0" sources."safe-buffer-5.2.1" @@ -118273,7 +116774,7 @@ in sources."nanoid-3.3.4" sources."negotiator-0.6.3" sources."object-assign-4.1.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."on-finished-2.4.1" sources."on-headers-1.0.2" sources."parseurl-1.3.3" @@ -118376,7 +116877,7 @@ in sources."asynckit-0.4.0" sources."atob-2.1.2" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" (sources."base-0.11.2" // { dependencies = [ sources."define-property-1.0.0" @@ -118658,7 +117159,7 @@ in }) ]; }) - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" (sources."object-visit-1.0.1" // { dependencies = [ sources."isobject-3.0.1" @@ -118697,7 +117198,7 @@ in sources."process-nextick-args-2.0.1" sources."proxy-addr-2.0.7" sources."psl-1.9.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.11.0" (sources."randomatic-3.1.1" // { dependencies = [ @@ -118941,10 +117442,10 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@oclif/command-1.8.20" + sources."@oclif/command-1.8.21" sources."@oclif/config-1.18.6" sources."@oclif/errors-1.3.6" - (sources."@oclif/help-1.0.4" // { + (sources."@oclif/help-1.0.5" // { dependencies = [ sources."wrap-ansi-6.2.0" ]; @@ -118963,7 +117464,7 @@ in ]; }) sources."@oclif/screen-1.0.4" - (sources."@putdotio/api-client-8.32.0" // { + (sources."@putdotio/api-client-8.33.0" // { dependencies = [ sources."axios-0.21.4" ]; @@ -119035,7 +117536,7 @@ in sources."fast-deep-equal-3.1.3" sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" - sources."fastq-1.14.0" + sources."fastq-1.15.0" (sources."figures-3.2.0" // { dependencies = [ sources."escape-string-regexp-1.0.5" @@ -119094,7 +117595,7 @@ in sources."next-tick-1.1.0" sources."nice-try-1.0.5" sources."node-downloader-helper-1.0.19" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."object-treeify-1.1.33" sources."onetime-5.1.2" sources."os-tmpdir-1.0.2" @@ -119111,7 +117612,7 @@ in sources."path-type-4.0.0" sources."picomatch-2.3.1" sources."pkg-up-3.1.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.11.0" sources."queue-microtask-1.2.3" sources."redeyed-2.1.1" @@ -119197,7 +117698,7 @@ in sources."@socket.io/component-emitter-3.1.0" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.13" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."accepts-1.3.8" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" @@ -119236,7 +117737,7 @@ in sources."ms-2.1.2" ]; }) - sources."engine.io-parser-5.0.4" + sources."engine.io-parser-5.0.6" sources."ent-2.2.0" sources."escalade-3.1.1" sources."escape-html-1.0.3" @@ -119290,10 +117791,10 @@ in sources."mkdirp-0.5.6" sources."ms-2.0.0" sources."negotiator-0.6.3" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."normalize-path-3.0.0" sources."object-assign-4.1.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."on-finished-2.4.1" sources."once-1.4.0" sources."parseurl-1.3.3" @@ -119326,7 +117827,7 @@ in }) sources."source-map-0.6.1" sources."statuses-2.0.1" - (sources."streamroller-3.1.3" // { + (sources."streamroller-3.1.4" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -119374,8 +117875,8 @@ in sources."@ampproject/remapping-2.2.0" sources."@babel/cli-7.20.7" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.5" - (sources."@babel/core-7.20.7" // { + sources."@babel/compat-data-7.20.10" + (sources."@babel/core-7.20.12" // { dependencies = [ sources."semver-6.3.0" ]; @@ -119395,7 +117896,7 @@ in sources."@babel/helper-function-name-7.19.0" sources."@babel/helper-hoist-variables-7.18.6" sources."@babel/helper-module-imports-7.18.6" - sources."@babel/helper-module-transforms-7.20.7" + sources."@babel/helper-module-transforms-7.20.11" sources."@babel/helper-plugin-utils-7.20.2" sources."@babel/helper-simple-access-7.20.2" sources."@babel/helper-split-export-declaration-7.18.6" @@ -119410,7 +117911,7 @@ in sources."@babel/plugin-transform-react-jsx-7.20.7" sources."@babel/register-7.18.9" sources."@babel/template-7.20.7" - sources."@babel/traverse-7.20.8" + sources."@babel/traverse-7.20.12" sources."@babel/types-7.20.7" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" @@ -119488,6 +117989,7 @@ in sources."asn1js-3.0.5" sources."asynckit-0.4.0" sources."at-least-node-1.0.0" + sources."available-typed-arrays-1.0.5" sources."axios-0.25.0" sources."babel-plugin-jsx-pragmatic-1.0.2" sources."babel-plugin-syntax-jsx-6.18.0" @@ -119514,10 +118016,10 @@ in sources."bufferutil-4.0.7" sources."bytes-3.1.2" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" sources."canvas-2.11.0" sources."chalk-2.4.2" - sources."chardet-1.5.0" + sources."chardet-1.5.1" sources."chownr-2.0.0" sources."cipher-base-1.0.4" sources."cliui-7.0.4" @@ -119536,7 +118038,7 @@ in sources."convert-source-map-1.9.0" sources."cookie-0.5.0" sources."cookie-signature-1.0.6" - sources."core-js-3.26.1" + sources."core-js-3.27.1" sources."core-util-is-1.0.3" sources."cors-2.8.5" sources."create-hash-1.2.0" @@ -119581,8 +118083,9 @@ in sources."encoding-0.1.13" sources."end-of-stream-1.4.4" sources."enquirer-2.3.6" - sources."es-abstract-1.20.5" + sources."es-abstract-1.21.1" sources."es-array-method-boxes-properly-1.0.0" + sources."es-set-tostringtag-2.0.1" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-html-1.0.3" @@ -119603,7 +118106,7 @@ in sources."express-validator-6.14.2" sources."fast-glob-3.2.12" sources."fast-levenshtein-2.0.6" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fill-range-7.0.1" sources."filter-obj-1.1.0" (sources."finalhandler-1.2.0" // { @@ -119615,6 +118118,7 @@ in sources."find-cache-dir-2.1.0" sources."find-up-3.0.0" sources."follow-redirects-1.15.2" + sources."for-each-0.3.3" sources."form-data-3.0.1" sources."forwarded-0.2.0" sources."fresh-0.5.2" @@ -119651,6 +118155,7 @@ in sources."glob-7.2.3" sources."glob-parent-5.1.2" sources."globals-11.12.0" + sources."globalthis-1.0.3" (sources."globby-11.1.0" // { dependencies = [ sources."slash-3.0.0" @@ -119663,6 +118168,7 @@ in sources."has-bigints-1.0.2" sources."has-flag-3.0.0" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-unicode-2.0.1" @@ -119683,6 +118189,7 @@ in sources."ipaddr.js-1.9.1" sources."irc-colors-1.5.0" sources."irc-upd-0.11.0" + sources."is-array-buffer-3.0.1" sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" @@ -119702,6 +118209,7 @@ in sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" + sources."is-typed-array-1.1.10" sources."is-weakref-1.0.2" sources."is-wsl-2.2.0" sources."isarray-1.0.0" @@ -119711,13 +118219,14 @@ in (sources."jsdom-16.7.0" // { dependencies = [ sources."tr46-2.1.0" + sources."utf-8-validate-5.0.10" sources."webidl-conversions-6.1.0" sources."whatwg-url-8.7.0" sources."ws-7.5.9" ]; }) sources."jsesc-2.5.2" - sources."json5-2.2.2" + sources."json5-2.2.3" (sources."jsonfile-6.1.0" // { dependencies = [ sources."universalify-2.0.0" @@ -119765,8 +118274,8 @@ in sources."negotiator-0.6.3" sources."node-abi-2.30.1" sources."node-environment-flags-1.0.6" - sources."node-fetch-2.6.7" - sources."node-gyp-build-4.5.0" + sources."node-fetch-2.6.8" + sources."node-gyp-build-4.6.0" (sources."node-notifier-10.0.1" // { dependencies = [ sources."lru-cache-6.0.0" @@ -119780,7 +118289,7 @@ in sources."number-is-nan-1.0.1" sources."nwsapi-2.2.2" sources."object-assign-4.1.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."object-keys-1.1.1" sources."object.assign-4.1.4" sources."object.getownpropertydescriptors-2.1.5" @@ -119853,7 +118362,7 @@ in sources."proxy-addr-2.0.7" sources."psl-1.9.0" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."pvtsutils-1.3.2" sources."pvutils-1.1.3" sources."qs-6.11.0" @@ -119953,12 +118462,13 @@ in sources."tunnel-agent-0.6.0" sources."type-check-0.3.2" sources."type-is-1.6.18" + sources."typed-array-length-1.0.4" sources."unbox-primitive-1.0.2" sources."universalify-0.2.0" sources."unpipe-1.0.0" sources."update-browserslist-db-1.0.10" sources."url-parse-1.5.10" - sources."utf-8-validate-5.0.10" + sources."utf-8-validate-6.0.0" sources."util-deprecate-1.0.2" sources."utils-merge-1.0.1" sources."uuid-8.3.2" @@ -119979,6 +118489,7 @@ in sources."whatwg-url-5.0.0" sources."which-2.0.2" sources."which-boxed-primitive-1.0.2" + sources."which-typed-array-1.1.9" sources."wide-align-1.1.5" sources."word-wrap-1.2.3" (sources."wrap-ansi-7.0.0" // { @@ -119989,7 +118500,7 @@ in ]; }) sources."wrappy-1.0.2" - sources."ws-8.11.0" + sources."ws-8.12.0" sources."xml-name-validator-3.0.0" sources."xmlchars-2.2.0" sources."y18n-5.0.8" @@ -120029,7 +118540,7 @@ in sources."emoji-regex-8.0.0" sources."escalade-3.1.1" sources."fast-glob-3.2.12" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fill-range-7.0.1" sources."get-caller-file-2.0.5" sources."glob-parent-5.1.2" @@ -120091,7 +118602,7 @@ in sources."async-1.5.2" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."balanced-match-1.0.2" sources."bcrypt-pbkdf-1.0.2" sources."boolbase-1.0.0" @@ -120234,7 +118745,7 @@ in sources."prompt-1.0.0" sources."psl-1.9.0" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.5.3" sources."read-1.0.7" sources."readable-stream-1.1.14" @@ -120352,7 +118863,7 @@ in sources."async-1.5.2" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."balanced-match-1.0.2" sources."bcrypt-pbkdf-1.0.2" sources."boolbase-1.0.0" @@ -120473,7 +118984,7 @@ in sources."prelude-ls-1.1.2" sources."prompt-1.0.0" sources."psl-1.9.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.5.3" sources."read-1.0.7" sources."readable-stream-1.1.14" @@ -120570,10 +119081,10 @@ in lerna = nodeEnv.buildNodePackage { name = "lerna"; packageName = "lerna"; - version = "6.1.0"; + version = "6.4.1"; src = fetchurl { - url = "https://registry.npmjs.org/lerna/-/lerna-6.1.0.tgz"; - sha512 = "3qAjIj8dgBwHtCAiLbq4VU/C1V9D1tvTLm2owZubdGAN72aB5TxuCu2mcw+yeEorOcXuR9YWx7EXIkAf+G0N2w=="; + url = "https://registry.npmjs.org/lerna/-/lerna-6.4.1.tgz"; + sha512 = "0t8TSG4CDAn5+vORjvTFn/ZEGyc4LOEsyBUpzcdIxODHPKM4TVOGvbW9dBs1g40PhOrQfwhHS+3fSx/42j42dQ=="; }; dependencies = [ sources."@babel/code-frame-7.18.6" @@ -120591,39 +119102,39 @@ in sources."@gar/promisify-1.1.3" sources."@hutson/parse-repository-url-3.0.2" sources."@isaacs/string-locale-compare-1.1.0" - sources."@lerna/add-6.1.0" - sources."@lerna/bootstrap-6.1.0" - sources."@lerna/changed-6.1.0" - sources."@lerna/check-working-tree-6.1.0" - sources."@lerna/child-process-6.1.0" - sources."@lerna/clean-6.1.0" - sources."@lerna/cli-6.1.0" - sources."@lerna/collect-uncommitted-6.1.0" - sources."@lerna/collect-updates-6.1.0" - sources."@lerna/command-6.1.0" - sources."@lerna/conventional-commits-6.1.0" - (sources."@lerna/create-6.1.0" // { + sources."@lerna/add-6.4.1" + sources."@lerna/bootstrap-6.4.1" + sources."@lerna/changed-6.4.1" + sources."@lerna/check-working-tree-6.4.1" + sources."@lerna/child-process-6.4.1" + sources."@lerna/clean-6.4.1" + sources."@lerna/cli-6.4.1" + sources."@lerna/collect-uncommitted-6.4.1" + sources."@lerna/collect-updates-6.4.1" + sources."@lerna/command-6.4.1" + sources."@lerna/conventional-commits-6.4.1" + (sources."@lerna/create-6.4.1" // { dependencies = [ sources."builtins-5.0.1" sources."validate-npm-package-name-4.0.0" sources."yargs-parser-20.2.4" ]; }) - sources."@lerna/create-symlink-6.1.0" - sources."@lerna/describe-ref-6.1.0" - sources."@lerna/diff-6.1.0" - sources."@lerna/exec-6.1.0" - sources."@lerna/filter-options-6.1.0" - sources."@lerna/filter-packages-6.1.0" - sources."@lerna/get-npm-exec-opts-6.1.0" - sources."@lerna/get-packed-6.1.0" - sources."@lerna/github-client-6.1.0" - sources."@lerna/gitlab-client-6.1.0" - sources."@lerna/global-options-6.1.0" - sources."@lerna/has-npm-version-6.1.0" - sources."@lerna/import-6.1.0" - sources."@lerna/info-6.1.0" - (sources."@lerna/init-6.1.0" // { + sources."@lerna/create-symlink-6.4.1" + sources."@lerna/describe-ref-6.4.1" + sources."@lerna/diff-6.4.1" + sources."@lerna/exec-6.4.1" + sources."@lerna/filter-options-6.4.1" + sources."@lerna/filter-packages-6.4.1" + sources."@lerna/get-npm-exec-opts-6.4.1" + sources."@lerna/get-packed-6.4.1" + sources."@lerna/github-client-6.4.1" + sources."@lerna/gitlab-client-6.4.1" + sources."@lerna/global-options-6.4.1" + sources."@lerna/has-npm-version-6.4.1" + sources."@lerna/import-6.4.1" + sources."@lerna/info-6.4.1" + (sources."@lerna/init-6.4.1" // { dependencies = [ sources."detect-indent-6.1.0" sources."is-plain-obj-2.1.0" @@ -120634,23 +119145,23 @@ in sources."write-json-file-4.3.0" ]; }) - sources."@lerna/link-6.1.0" - sources."@lerna/list-6.1.0" - sources."@lerna/listable-6.1.0" - sources."@lerna/log-packed-6.1.0" - sources."@lerna/npm-conf-6.1.0" - sources."@lerna/npm-dist-tag-6.1.0" - sources."@lerna/npm-install-6.1.0" - sources."@lerna/npm-publish-6.1.0" - sources."@lerna/npm-run-script-6.1.0" - sources."@lerna/otplease-6.1.0" - sources."@lerna/output-6.1.0" - sources."@lerna/pack-directory-6.1.0" - sources."@lerna/package-6.1.0" - sources."@lerna/package-graph-6.1.0" - sources."@lerna/prerelease-id-from-version-6.1.0" - sources."@lerna/profiler-6.1.0" - (sources."@lerna/project-6.1.0" // { + sources."@lerna/link-6.4.1" + sources."@lerna/list-6.4.1" + sources."@lerna/listable-6.4.1" + sources."@lerna/log-packed-6.4.1" + sources."@lerna/npm-conf-6.4.1" + sources."@lerna/npm-dist-tag-6.4.1" + sources."@lerna/npm-install-6.4.1" + sources."@lerna/npm-publish-6.4.1" + sources."@lerna/npm-run-script-6.4.1" + sources."@lerna/otplease-6.4.1" + sources."@lerna/output-6.4.1" + sources."@lerna/pack-directory-6.4.1" + sources."@lerna/package-6.4.1" + sources."@lerna/package-graph-6.4.1" + sources."@lerna/prerelease-id-from-version-6.4.1" + sources."@lerna/profiler-6.4.1" + (sources."@lerna/project-6.4.1" // { dependencies = [ sources."detect-indent-6.1.0" sources."is-plain-obj-2.1.0" @@ -120661,26 +119172,26 @@ in sources."write-json-file-4.3.0" ]; }) - sources."@lerna/prompt-6.1.0" - sources."@lerna/publish-6.1.0" - sources."@lerna/pulse-till-done-6.1.0" - sources."@lerna/query-graph-6.1.0" - sources."@lerna/resolve-symlink-6.1.0" - sources."@lerna/rimraf-dir-6.1.0" - sources."@lerna/run-6.1.0" - sources."@lerna/run-lifecycle-6.1.0" - sources."@lerna/run-topologically-6.1.0" - sources."@lerna/symlink-binary-6.1.0" - sources."@lerna/symlink-dependencies-6.1.0" - (sources."@lerna/temp-write-6.1.0" // { + sources."@lerna/prompt-6.4.1" + sources."@lerna/publish-6.4.1" + sources."@lerna/pulse-till-done-6.4.1" + sources."@lerna/query-graph-6.4.1" + sources."@lerna/resolve-symlink-6.4.1" + sources."@lerna/rimraf-dir-6.4.1" + sources."@lerna/run-6.4.1" + sources."@lerna/run-lifecycle-6.4.1" + sources."@lerna/run-topologically-6.4.1" + sources."@lerna/symlink-binary-6.4.1" + sources."@lerna/symlink-dependencies-6.4.1" + (sources."@lerna/temp-write-6.4.1" // { dependencies = [ sources."make-dir-3.1.0" sources."semver-6.3.0" ]; }) - sources."@lerna/timer-6.1.0" - sources."@lerna/validation-error-6.1.0" - (sources."@lerna/version-6.1.0" // { + sources."@lerna/timer-6.4.1" + sources."@lerna/validation-error-6.4.1" + (sources."@lerna/version-6.4.1" // { dependencies = [ sources."detect-indent-6.1.0" sources."is-plain-obj-2.1.0" @@ -120694,7 +119205,7 @@ in sources."write-json-file-4.3.0" ]; }) - (sources."@lerna/write-log-file-6.1.0" // { + (sources."@lerna/write-log-file-6.4.1" // { dependencies = [ sources."write-file-atomic-4.0.2" ]; @@ -120722,8 +119233,8 @@ in (sources."@npmcli/map-workspaces-2.0.4" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."glob-8.0.3" - sources."minimatch-5.1.2" + sources."glob-8.1.0" + sources."minimatch-5.1.6" ]; }) sources."@npmcli/metavuln-calculator-3.1.1" @@ -120733,13 +119244,13 @@ in sources."@npmcli/package-json-2.0.0" sources."@npmcli/promise-spawn-3.0.0" sources."@npmcli/run-script-4.2.1" - sources."@nrwl/cli-15.4.0" - (sources."@nrwl/devkit-15.4.0" // { + sources."@nrwl/cli-15.5.2" + (sources."@nrwl/devkit-15.5.2" // { dependencies = [ sources."semver-7.3.4" ]; }) - sources."@nrwl/tao-15.4.0" + sources."@nrwl/tao-15.5.2" sources."@octokit/auth-token-3.0.2" sources."@octokit/core-4.1.0" (sources."@octokit/endpoint-7.0.3" // { @@ -120760,31 +119271,30 @@ in }) sources."@octokit/request-error-3.0.2" sources."@octokit/rest-19.0.5" - sources."@octokit/types-8.0.0" + sources."@octokit/types-8.1.1" sources."@parcel/watcher-2.0.4" sources."@phenomnomnominal/tsquery-4.1.1" - sources."@swc-node/core-1.9.1" - sources."@swc-node/register-1.5.4" - sources."@swc-node/sourcemap-support-0.2.2" - sources."@swc/core-1.3.24" - sources."@swc/core-darwin-arm64-1.3.24" - sources."@swc/core-darwin-x64-1.3.24" - sources."@swc/core-linux-arm-gnueabihf-1.3.24" - sources."@swc/core-linux-arm64-gnu-1.3.24" - sources."@swc/core-linux-arm64-musl-1.3.24" - sources."@swc/core-linux-x64-gnu-1.3.24" - sources."@swc/core-linux-x64-musl-1.3.24" - sources."@swc/core-win32-arm64-msvc-1.3.24" - sources."@swc/core-win32-ia32-msvc-1.3.24" - sources."@swc/core-win32-x64-msvc-1.3.24" + sources."@swc-node/core-1.9.2" + sources."@swc-node/register-1.5.5" + sources."@swc-node/sourcemap-support-0.2.3" + sources."@swc/core-1.3.27" + sources."@swc/core-darwin-arm64-1.3.27" + sources."@swc/core-darwin-x64-1.3.27" + sources."@swc/core-linux-arm-gnueabihf-1.3.27" + sources."@swc/core-linux-arm64-gnu-1.3.27" + sources."@swc/core-linux-arm64-musl-1.3.27" + sources."@swc/core-linux-x64-gnu-1.3.27" + sources."@swc/core-linux-x64-musl-1.3.27" + sources."@swc/core-win32-arm64-msvc-1.3.27" + sources."@swc/core-win32-ia32-msvc-1.3.27" + sources."@swc/core-win32-x64-msvc-1.3.27" sources."@tootallnate/once-2.0.0" - sources."@types/json5-0.0.29" sources."@types/minimatch-3.0.5" sources."@types/minimist-1.2.2" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."@yarnpkg/lockfile-1.1.0" - (sources."@yarnpkg/parsers-3.0.0-rc.34" // { + (sources."@yarnpkg/parsers-3.0.0-rc.35" // { dependencies = [ sources."argparse-1.0.10" sources."js-yaml-3.14.1" @@ -120805,7 +119315,6 @@ in }) sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" - sources."anymatch-3.1.3" sources."aproba-2.0.0" sources."are-we-there-yet-3.0.1" sources."argparse-2.0.1" @@ -120817,7 +119326,7 @@ in sources."async-3.2.4" sources."asynckit-0.4.0" sources."at-least-node-1.0.0" - sources."axios-1.2.1" + sources."axios-1.2.3" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" sources."before-after-hook-2.2.3" @@ -120827,7 +119336,6 @@ in sources."write-file-atomic-4.0.2" ]; }) - sources."binary-extensions-2.2.0" sources."bl-4.1.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" @@ -120838,9 +119346,9 @@ in (sources."cacache-16.1.3" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."glob-8.0.3" + sources."glob-8.1.0" sources."lru-cache-7.14.1" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" ]; }) sources."callsites-3.1.0" @@ -120848,7 +119356,6 @@ in sources."camelcase-keys-6.2.2" sources."chalk-4.1.2" sources."chardet-0.7.0" - sources."chokidar-3.5.3" sources."chownr-2.0.0" sources."ci-info-2.0.0" sources."clean-stack-2.2.0" @@ -120939,12 +119446,12 @@ in ]; }) sources."fast-glob-3.2.12" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."figures-3.2.0" (sources."filelist-1.0.4" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" ]; }) sources."fill-range-7.0.1" @@ -120956,7 +119463,6 @@ in sources."fs-extra-9.1.0" sources."fs-minipass-2.1.0" sources."fs.realpath-1.0.0" - sources."fsevents-2.3.2" sources."function-bind-1.1.1" sources."gauge-4.0.4" sources."get-caller-file-2.0.5" @@ -121006,7 +119512,7 @@ in (sources."ignore-walk-5.0.1" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" ]; }) (sources."import-fresh-3.3.0" // { @@ -121033,7 +119539,6 @@ in sources."inquirer-8.2.5" sources."ip-2.0.0" sources."is-arrayish-0.2.1" - sources."is-binary-path-2.1.0" sources."is-ci-2.0.0" sources."is-core-module-2.11.0" sources."is-docker-2.2.1" @@ -121062,7 +119567,7 @@ in sources."json-parse-even-better-errors-2.3.1" sources."json-stringify-nice-1.1.4" sources."json-stringify-safe-5.0.1" - sources."json5-1.0.1" + sources."json5-2.2.3" sources."jsonc-parser-3.2.0" sources."jsonfile-6.1.0" sources."jsonparse-1.3.1" @@ -121161,9 +119666,9 @@ in sources."negotiator-0.6.3" sources."neo-async-2.6.2" sources."node-addon-api-3.2.1" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."node-gyp-9.3.1" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."nopt-6.0.0" (sources."normalize-package-data-4.0.1" // { dependencies = [ @@ -121171,7 +119676,6 @@ in sources."lru-cache-7.14.1" ]; }) - sources."normalize-path-3.0.0" sources."npm-bundled-1.1.2" sources."npm-install-checks-5.0.0" sources."npm-normalize-package-bin-1.0.1" @@ -121179,8 +119683,8 @@ in (sources."npm-packlist-5.1.3" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."glob-8.0.3" - sources."minimatch-5.1.2" + sources."glob-8.1.0" + sources."minimatch-5.1.6" sources."npm-bundled-2.0.1" sources."npm-normalize-package-bin-2.0.0" ]; @@ -121206,13 +119710,13 @@ in }) sources."npm-run-path-4.0.1" sources."npmlog-6.0.2" - (sources."nx-15.4.0" // { + (sources."nx-15.5.2" // { dependencies = [ - sources."chalk-4.1.0" sources."cli-spinners-2.6.1" sources."fast-glob-3.2.7" - sources."fs-extra-10.1.0" + sources."fs-extra-11.1.0" sources."glob-7.1.4" + sources."lines-and-columns-2.0.3" sources."minimatch-3.0.5" sources."semver-7.3.4" sources."tmp-0.2.1" @@ -121281,8 +119785,8 @@ in (sources."read-package-json-5.0.2" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."glob-8.0.3" - sources."minimatch-5.1.2" + sources."glob-8.1.0" + sources."minimatch-5.1.6" sources."npm-normalize-package-bin-2.0.0" ]; }) @@ -121311,7 +119815,6 @@ in }) sources."readable-stream-3.6.0" sources."readdir-scoped-modules-1.1.0" - sources."readdirp-3.6.0" sources."redent-3.0.0" sources."require-directory-2.1.1" sources."resolve-1.22.1" @@ -121371,7 +119874,7 @@ in sources."tr46-0.0.3" sources."treeverse-2.0.0" sources."trim-newlines-3.0.1" - (sources."tsconfig-paths-3.14.1" // { + (sources."tsconfig-paths-4.1.2" // { dependencies = [ sources."strip-bom-3.0.0" ]; @@ -121847,7 +120350,7 @@ in sources."asynckit-0.4.0" sources."atob-2.1.2" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."backo2-1.0.2" (sources."base-0.11.2" // { dependencies = [ @@ -122080,7 +120583,7 @@ in ]; }) sources."negotiator-0.6.3" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."normalize-path-2.1.1" sources."oauth-sign-0.9.0" (sources."object-copy-0.1.0" // { @@ -122095,7 +120598,7 @@ in }) ]; }) - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" (sources."object-visit-1.0.1" // { dependencies = [ sources."isobject-3.0.1" @@ -122122,7 +120625,7 @@ in sources."process-nextick-args-2.0.1" sources."proxy-addr-2.0.7" sources."psl-1.9.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.11.0" (sources."randomatic-3.1.1" // { dependencies = [ @@ -122409,7 +120912,7 @@ in sources."@types/commander-2.12.2" sources."@types/diff-3.5.5" sources."@types/get-stdin-5.0.1" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."commander-2.20.3" sources."diff-3.5.0" sources."get-stdin-5.0.1" @@ -122480,10 +120983,10 @@ in manta = nodeEnv.buildNodePackage { name = "manta"; packageName = "manta"; - version = "5.3.1"; + version = "5.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/manta/-/manta-5.3.1.tgz"; - sha512 = "dmDJIOPe+2NbouJXfuVYMbdLD8BqBPNC83D4RDXbLxhI4Cn6szoHp9OnU1jusHoftZcgMultmzTh4xFaMqtjFA=="; + url = "https://registry.npmjs.org/manta/-/manta-5.3.2.tgz"; + sha512 = "Vsgmc7hZbra1oicuHH9e5UNkcVyRJiH+Y4uvpTW3OQ60NhUAbv3V+re3ZtyN51MH3QJ9WNgkMAfR8dZ3Sv5gCw=="; }; dependencies = [ sources."ansi-regex-4.1.1" @@ -122672,10 +121175,10 @@ in markdownlint-cli = nodeEnv.buildNodePackage { name = "markdownlint-cli"; packageName = "markdownlint-cli"; - version = "0.32.2"; + version = "0.33.0"; src = fetchurl { - url = "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.32.2.tgz"; - sha512 = "xmJT1rGueUgT4yGNwk6D0oqQr90UJ7nMyakXtqjgswAkEhYYqjHew9RY8wDbOmh2R270IWjuKSeZzHDEGPAUkQ=="; + url = "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.33.0.tgz"; + sha512 = "zMK1oHpjYkhjO+94+ngARiBBrRDEUMzooDHBAHtmEIJ9oYddd9l3chCReY2mPlecwH7gflQp1ApilTo+o0zopQ=="; }; dependencies = [ sources."argparse-2.0.1" @@ -122692,13 +121195,12 @@ in sources."inherits-2.0.4" sources."ini-3.0.1" sources."js-yaml-4.1.0" - sources."jsonc-parser-3.1.0" + sources."jsonc-parser-3.2.0" sources."linkify-it-4.0.1" sources."markdown-it-13.0.1" - sources."markdownlint-0.26.2" - sources."markdownlint-rule-helpers-0.17.2" + sources."markdownlint-0.27.0" sources."mdurl-1.0.1" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" sources."minimist-1.2.7" sources."once-1.4.0" sources."run-con-1.2.11" @@ -122719,10 +121221,10 @@ in markdownlint-cli2 = nodeEnv.buildNodePackage { name = "markdownlint-cli2"; packageName = "markdownlint-cli2"; - version = "0.5.1"; + version = "0.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/markdownlint-cli2/-/markdownlint-cli2-0.5.1.tgz"; - sha512 = "f3Nb1GF/c8YSrV/FntsCWzpa5mLFJRlO+wzEgv+lkNQjU6MZflUwc2FbyEDPTo6oVhP2VyUOkK0GkFgfuktl1w=="; + url = "https://registry.npmjs.org/markdownlint-cli2/-/markdownlint-cli2-0.6.0.tgz"; + sha512 = "Bv20r6WGdcHMWi8QvAFZ3CBunf4i4aYmVdTfpAvXODI/1k3f09DZZ0i0LcX9ZMhlVxjoOzbVDz1NWyKc5hwTqg=="; }; dependencies = [ sources."@nodelib/fs.scandir-2.1.5" @@ -122733,18 +121235,18 @@ in sources."dir-glob-3.0.1" sources."entities-3.0.1" sources."fast-glob-3.2.12" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fill-range-7.0.1" sources."glob-parent-5.1.2" - sources."globby-13.1.2" + sources."globby-13.1.3" sources."ignore-5.2.4" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" sources."is-number-7.0.0" sources."linkify-it-4.0.1" sources."markdown-it-13.0.1" - sources."markdownlint-0.26.2" - sources."markdownlint-cli2-0.5.1" + sources."markdownlint-0.27.0" + sources."markdownlint-cli2-0.6.0" sources."markdownlint-cli2-formatter-default-0.0.3" sources."mdurl-1.0.1" sources."merge2-1.4.1" @@ -122758,7 +121260,7 @@ in sources."strip-json-comments-5.0.0" sources."to-regex-range-5.0.1" sources."uc.micro-1.0.6" - sources."yaml-2.1.1" + sources."yaml-2.2.1" ]; buildInputs = globalBuildInputs; meta = { @@ -122806,14 +121308,14 @@ in sources."link-check-5.2.0" sources."lodash-4.17.21" sources."markdown-link-extractor-3.1.0" - sources."marked-4.2.4" + sources."marked-4.2.12" sources."ms-2.1.3" sources."needle-3.2.0" sources."nth-check-2.1.1" sources."parse5-7.1.2" sources."parse5-htmlparser2-tree-adapter-7.0.0" sources."progress-2.0.3" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."safer-buffer-2.1.2" sources."sax-1.2.4" sources."supports-color-7.2.0" @@ -122835,7 +121337,7 @@ in src = ../../applications/editors/vim/plugins/markdown-preview-nvim; dependencies = [ sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.5" + sources."@babel/compat-data-7.20.10" (sources."@babel/core-7.0.0" // { dependencies = [ sources."debug-3.2.7" @@ -122860,7 +121362,7 @@ in sources."@babel/helper-hoist-variables-7.18.6" sources."@babel/helper-member-expression-to-functions-7.20.7" sources."@babel/helper-module-imports-7.18.6" - (sources."@babel/helper-module-transforms-7.20.7" // { + (sources."@babel/helper-module-transforms-7.20.11" // { dependencies = [ sources."@babel/template-7.20.7" ]; @@ -122907,7 +121409,7 @@ in sources."@babel/plugin-transform-arrow-functions-7.20.7" sources."@babel/plugin-transform-async-to-generator-7.20.7" sources."@babel/plugin-transform-block-scoped-functions-7.18.6" - sources."@babel/plugin-transform-block-scoping-7.20.8" + sources."@babel/plugin-transform-block-scoping-7.20.11" sources."@babel/plugin-transform-classes-7.20.7" (sources."@babel/plugin-transform-computed-properties-7.20.7" // { dependencies = [ @@ -122921,9 +121423,9 @@ in sources."@babel/plugin-transform-for-of-7.18.8" sources."@babel/plugin-transform-function-name-7.18.9" sources."@babel/plugin-transform-literals-7.18.9" - sources."@babel/plugin-transform-modules-amd-7.20.7" - sources."@babel/plugin-transform-modules-commonjs-7.20.7" - sources."@babel/plugin-transform-modules-systemjs-7.19.6" + sources."@babel/plugin-transform-modules-amd-7.20.11" + sources."@babel/plugin-transform-modules-commonjs-7.20.11" + sources."@babel/plugin-transform-modules-systemjs-7.20.11" sources."@babel/plugin-transform-modules-umd-7.18.6" sources."@babel/plugin-transform-new-target-7.18.6" sources."@babel/plugin-transform-object-super-7.18.6" @@ -122957,7 +121459,7 @@ in ]; }) sources."@babel/template-7.0.0" - sources."@babel/traverse-7.20.8" + sources."@babel/traverse-7.20.12" sources."@babel/types-7.20.7" sources."@chemzqm/msgpack-lite-0.1.29" sources."@chemzqm/neovim-5.9.5" @@ -123033,6 +121535,7 @@ in sources."pkg-dir-2.0.0" ]; }) + sources."available-typed-arrays-1.0.5" sources."babel-core-7.0.0-bridge.0" (sources."babel-loader-8.0.2" // { dependencies = [ @@ -123100,7 +121603,7 @@ in }) sources."cache-base-1.0.1" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" sources."case-sensitive-paths-webpack-plugin-2.1.2" sources."chalk-2.4.2" sources."chart.js-2.9.4" @@ -123218,8 +121721,9 @@ in sources."errno-0.1.8" sources."error-ex-1.3.2" sources."error-stack-parser-2.1.4" - sources."es-abstract-1.20.5" + sources."es-abstract-1.21.1" sources."es-array-method-boxes-properly-1.0.0" + sources."es-set-tostringtag-2.0.1" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-html-1.0.3" @@ -123316,6 +121820,7 @@ in sources."glob-7.1.2" sources."glob-parent-5.1.2" sources."globals-11.12.0" + sources."globalthis-1.0.3" (sources."globby-6.1.0" // { dependencies = [ sources."pify-2.3.0" @@ -123334,6 +121839,7 @@ in sources."has-cors-1.1.0" sources."has-flag-3.0.0" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-value-1.0.0" @@ -123372,6 +121878,7 @@ in sources."internal-slot-1.0.4" sources."invariant-2.2.4" sources."is-accessor-descriptor-1.0.0" + sources."is-array-buffer-3.0.1" sources."is-arrayish-0.2.1" sources."is-bigint-1.0.4" sources."is-binary-path-2.1.0" @@ -123402,6 +121909,7 @@ in sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" + sources."is-typed-array-1.1.10" sources."is-weakref-1.0.2" sources."is-windows-1.0.2" sources."isarray-1.0.0" @@ -123488,7 +121996,7 @@ in sources."neo-async-2.6.2" sources."next-7.0.3" sources."next-routes-1.4.2" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" (sources."node-libs-browser-2.2.1" // { dependencies = [ sources."punycode-1.4.1" @@ -123515,7 +122023,7 @@ in sources."kind-of-3.2.2" ]; }) - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."object-keys-1.1.1" sources."object-visit-1.0.1" sources."object.assign-4.1.4" @@ -123581,7 +122089,7 @@ in sources."pump-2.0.1" ]; }) - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."querystring-0.2.0" sources."querystring-es3-0.2.1" sources."randombytes-2.1.0" @@ -123754,7 +122262,7 @@ in sources."stream-each-1.2.3" sources."stream-http-2.8.3" sources."stream-shift-1.0.1" - sources."streamroller-3.1.3" + sources."streamroller-3.1.4" sources."string-hash-1.1.3" (sources."string-width-2.1.1" // { dependencies = [ @@ -123798,6 +122306,7 @@ in sources."to-regex-range-2.1.1" sources."tslib-1.14.1" sources."tty-browserify-0.0.0" + sources."typed-array-length-1.0.4" sources."typedarray-0.0.6" sources."uc.micro-1.0.6" (sources."uglify-es-3.3.10" // { @@ -123898,6 +122407,7 @@ in sources."webpackbar-2.6.3" sources."which-1.3.1" sources."which-boxed-primitive-1.0.2" + sources."which-typed-array-1.1.9" sources."worker-farm-1.5.2" (sources."wrap-ansi-3.0.1" // { dependencies = [ @@ -123956,7 +122466,7 @@ in sources."assert-plus-1.0.0" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."babel-code-frame-6.26.0" sources."balanced-match-1.0.2" sources."bcrypt-pbkdf-1.0.2" @@ -124146,7 +122656,7 @@ in sources."process-nextick-args-2.0.1" sources."progress-1.1.8" sources."psl-1.9.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.5.3" sources."readable-stream-2.3.7" sources."readline-1.3.0" @@ -124286,10 +122796,10 @@ in "@mermaid-js/mermaid-cli" = nodeEnv.buildNodePackage { name = "_at_mermaid-js_slash_mermaid-cli"; packageName = "@mermaid-js/mermaid-cli"; - version = "9.2.2"; + version = "9.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/@mermaid-js/mermaid-cli/-/mermaid-cli-9.2.2.tgz"; - sha512 = "Bb0eKH9zA7AKcnjfTeCAVBsZv53ZwgBeIMM/kEqht8+9Fw29nxflGgq1vQOZoLQYsHZzIhB6cWTthx7ahNOi+g=="; + url = "https://registry.npmjs.org/@mermaid-js/mermaid-cli/-/mermaid-cli-9.3.0.tgz"; + sha512 = "mjMGQTJys6HfUICwESbQhdNqbJA5JiW8Fp/QvOVnlz9bwRJPVJCW85bumEYu+eyE2sDuXszCu+T6yn+Lwjbw/w=="; }; dependencies = [ sources."@babel/code-frame-7.18.6" @@ -124299,7 +122809,7 @@ in sources."chalk-2.4.2" ]; }) - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/yauzl-2.10.0" sources."agent-base-6.0.2" sources."ansi-styles-3.2.1" @@ -124316,7 +122826,7 @@ in sources."chownr-1.1.4" sources."color-convert-1.9.3" sources."color-name-1.1.3" - sources."commander-9.4.1" + sources."commander-9.5.0" sources."concat-map-0.0.1" sources."cosmiconfig-8.0.0" sources."cross-fetch-3.1.5" @@ -124348,7 +122858,7 @@ in sources."mkdirp-classic-0.5.3" sources."ms-2.1.2" sources."node-fetch-2.6.7" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."once-1.4.0" sources."parent-module-1.0.1" sources."parse-json-5.2.0" @@ -124358,8 +122868,8 @@ in sources."progress-2.0.3" sources."proxy-from-env-1.1.0" sources."pump-3.0.0" - sources."puppeteer-19.4.1" - sources."puppeteer-core-19.4.1" + sources."puppeteer-19.5.2" + sources."puppeteer-core-19.5.2" sources."readable-stream-3.6.0" sources."resolve-from-4.0.0" sources."rimraf-3.0.2" @@ -124515,7 +123025,7 @@ in sources."combined-stream-1.0.8" sources."commander-2.20.3" sources."component-emitter-1.3.0" - sources."cookiejar-2.1.3" + sources."cookiejar-2.1.4" sources."debug-4.3.4" sources."delayed-stream-1.0.0" sources."dezalgo-1.0.4" @@ -124544,10 +123054,10 @@ in sources."mime-types-2.1.35" sources."ms-2.1.2" sources."native-promise-only-0.8.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."once-1.4.0" sources."path-loader-1.0.12" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.11.0" sources."readable-stream-3.6.0" sources."safe-buffer-5.2.1" @@ -124619,7 +123129,7 @@ in sources."log-symbols-4.1.0" sources."mimic-fn-2.1.0" sources."mute-stream-0.0.8" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."onetime-5.1.2" sources."ora-5.4.1" sources."os-tmpdir-1.0.2" @@ -124679,22 +123189,11 @@ in sources."@jest/environment-27.5.1" sources."@jest/fake-timers-27.5.1" sources."@jest/types-27.5.1" - sources."@ledgerhq/devices-7.0.6" - sources."@ledgerhq/errors-6.12.2" - sources."@ledgerhq/hw-transport-6.27.9" - sources."@ledgerhq/hw-transport-node-hid-6.27.9" - (sources."@ledgerhq/hw-transport-node-hid-noevents-6.27.9" // { - dependencies = [ - sources."decompress-response-4.2.1" - sources."detect-libc-1.0.3" - sources."mimic-response-2.1.0" - sources."node-abi-2.30.1" - sources."node-hid-2.1.1" - sources."prebuild-install-6.1.4" - sources."semver-5.7.1" - sources."simple-get-3.1.1" - ]; - }) + sources."@ledgerhq/devices-7.0.7" + sources."@ledgerhq/errors-6.12.3" + sources."@ledgerhq/hw-transport-6.27.10" + sources."@ledgerhq/hw-transport-node-hid-6.27.10" + sources."@ledgerhq/hw-transport-node-hid-noevents-6.27.10" (sources."@ledgerhq/hw-transport-u2f-5.36.0-deprecated" // { dependencies = [ sources."@ledgerhq/devices-5.51.1" @@ -124728,22 +123227,14 @@ in sources."@types/istanbul-lib-coverage-2.0.4" sources."@types/istanbul-lib-report-3.0.0" sources."@types/istanbul-reports-3.0.1" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/stack-utils-2.0.1" - sources."@types/yargs-16.0.4" + sources."@types/yargs-16.0.5" sources."@types/yargs-parser-21.0.0" sources."analytics-node-6.2.0" sources."ansi-align-3.0.1" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" - sources."aproba-1.2.0" - (sources."are-we-there-yet-1.1.7" // { - dependencies = [ - sources."readable-stream-2.3.7" - sources."safe-buffer-5.1.2" - sources."string_decoder-1.1.1" - ]; - }) sources."ascii-table-0.0.9" sources."asynckit-0.4.0" sources."axios-0.27.2" @@ -124782,15 +123273,12 @@ in sources."cli-boxes-2.2.1" sources."cliui-7.0.4" sources."clone-response-1.0.3" - sources."code-point-at-1.1.0" sources."color-convert-2.0.1" sources."color-name-1.1.4" sources."combined-stream-1.0.8" sources."component-type-1.2.1" sources."concat-map-0.0.1" sources."configstore-5.0.1" - sources."console-control-strings-1.1.0" - sources."core-util-is-1.0.3" sources."create-hash-1.2.0" sources."create-hmac-1.1.7" sources."crypt-0.0.2" @@ -124806,7 +123294,6 @@ in sources."defer-to-connect-1.1.3" sources."define-lazy-prop-2.0.0" sources."delayed-stream-1.0.0" - sources."delegates-1.0.0" sources."depd-2.0.0" sources."detect-libc-2.0.1" sources."dot-prop-5.3.0" @@ -124827,14 +123314,6 @@ in sources."form-data-4.0.0" sources."fs-constants-1.0.0" sources."fs.realpath-1.0.0" - (sources."gauge-2.7.4" // { - dependencies = [ - sources."ansi-regex-2.1.1" - sources."is-fullwidth-code-point-1.0.0" - sources."string-width-1.0.2" - sources."strip-ansi-3.0.1" - ]; - }) sources."get-caller-file-2.0.5" sources."get-stream-4.1.0" sources."github-from-package-0.0.0" @@ -124843,7 +123322,6 @@ in sources."got-9.6.0" sources."graceful-fs-4.2.10" sources."has-flag-4.0.0" - sources."has-unicode-2.0.1" sources."has-yarn-2.1.0" sources."hash-base-3.1.0" sources."homedir-polyfill-1.0.3" @@ -124876,13 +123354,12 @@ in sources."is-wsl-2.2.0" sources."is-yarn-global-0.3.0" sources."is2-2.0.9" - sources."isarray-1.0.0" sources."jest-environment-node-27.5.1" sources."jest-message-util-27.5.1" sources."jest-mock-27.5.1" (sources."jest-util-27.5.1" // { dependencies = [ - sources."ci-info-3.7.0" + sources."ci-info-3.7.1" ]; }) sources."join-component-1.1.0" @@ -124921,16 +123398,13 @@ in sources."near-hd-key-1.2.1" sources."near-ledger-js-0.2.1" sources."near-seed-phrase-0.2.0" - sources."node-abi-3.30.0" + sources."node-abi-3.31.0" sources."node-addon-api-3.2.1" - sources."node-fetch-2.6.7" - sources."node-gyp-build-4.5.0" + sources."node-fetch-2.6.8" + sources."node-gyp-build-4.6.0" sources."node-hid-2.1.2" sources."normalize-url-4.5.1" - sources."npmlog-4.1.2" - sources."number-is-nan-1.0.1" sources."o3-1.0.3" - sources."object-assign-4.1.1" sources."once-1.4.0" sources."open-8.4.0" sources."p-cancelable-1.1.0" @@ -124951,7 +123425,6 @@ in sources."ansi-styles-5.2.0" ]; }) - sources."process-nextick-args-2.0.1" sources."pump-3.0.0" sources."pupa-2.1.1" sources."randombytes-2.1.0" @@ -124978,7 +123451,6 @@ in sources."semver-6.3.0" ]; }) - sources."set-blocking-2.0.0" sources."setprototypeof-1.2.0" sources."sha.js-2.4.11" sources."signal-exit-3.0.7" @@ -125031,7 +123503,6 @@ in sources."v8flags-3.2.0" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" - sources."wide-align-1.1.5" sources."widest-line-3.1.0" sources."wrap-ansi-7.0.0" sources."wrappy-1.0.2" @@ -125083,7 +123554,7 @@ in sources."one-time-1.0.0" sources."readable-stream-3.6.0" sources."safe-buffer-5.2.1" - sources."safe-stable-stringify-2.4.1" + sources."safe-stable-stringify-2.4.2" sources."semver-7.3.8" sources."simple-swizzle-0.2.2" sources."stack-trace-0.0.10" @@ -125152,8 +123623,8 @@ in (sources."cacache-16.1.3" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."glob-8.0.3" - sources."minimatch-5.1.2" + sources."glob-8.1.0" + sources."minimatch-5.1.6" ]; }) sources."chownr-2.0.0" @@ -125253,10 +123724,10 @@ in node-gyp-build = nodeEnv.buildNodePackage { name = "node-gyp-build"; packageName = "node-gyp-build"; - version = "4.5.0"; + version = "4.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz"; - sha512 = "2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg=="; + url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.6.0.tgz"; + sha512 = "NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -125291,7 +123762,7 @@ in sources."async-0.9.2" sources."asynckit-0.4.0" sources."aws-sign2-0.6.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."balanced-match-1.0.2" sources."base64-js-0.0.8" sources."bcrypt-pbkdf-1.0.2" @@ -125432,7 +123903,7 @@ in sources."number-is-nan-1.0.1" sources."oauth-sign-0.8.2" sources."object-assign-4.1.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."on-finished-2.4.1" sources."once-1.4.0" sources."options-0.0.6" @@ -125698,7 +124169,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."accepts-1.3.8" @@ -125938,8 +124409,8 @@ in sources."mute-stream-0.0.8" sources."negotiator-0.6.3" sources."node-addon-api-3.2.1" - sources."node-fetch-2.6.7" - sources."node-gyp-build-4.5.0" + sources."node-fetch-2.6.8" + sources."node-gyp-build-4.6.0" sources."node-red-admin-3.0.0" sources."node-watch-0.7.3" sources."nopt-5.0.0" @@ -125954,7 +124425,7 @@ in }) sources."oauth2orize-1.11.1" sources."object-assign-4.1.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."on-finished-2.4.1" sources."on-headers-1.0.2" sources."once-1.4.0" @@ -125974,7 +124445,7 @@ in sources."pseudomap-1.0.2" sources."psl-1.9.0" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.10.3" sources."quick-lru-5.1.1" sources."random-bytes-1.0.0" @@ -126089,7 +124560,7 @@ in sources."assert-plus-1.0.0" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" sources."bcrypt-pbkdf-1.0.2" @@ -126202,7 +124673,7 @@ in sources."process-nextick-args-2.0.1" sources."proto-list-1.2.4" sources."psl-1.9.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.5.3" (sources."readable-stream-2.3.7" // { dependencies = [ @@ -126333,10 +124804,10 @@ in np = nodeEnv.buildNodePackage { name = "np"; packageName = "np"; - version = "7.6.2"; + version = "7.6.3"; src = fetchurl { - url = "https://registry.npmjs.org/np/-/np-7.6.2.tgz"; - sha512 = "gExmKGKixh7ITc4Q+Lv7nfCby0CVKvzri9zN8970oKD8976T4L5dw8QWUtMcXcIjhFF6h5lbvztao/NurDbmxQ=="; + url = "https://registry.npmjs.org/np/-/np-7.6.3.tgz"; + sha512 = "GTFNvIhu/cZqzUhil/AlISCiipYeAUVx0JtyjtmumFJvWogSewUSAshFi5MSMc6BOj9C98s8NAFZiqlHb2wQPQ=="; }; dependencies = [ sources."@babel/code-frame-7.18.6" @@ -126366,7 +124837,7 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" sources."@types/minimist-1.2.2" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" sources."@types/responselike-1.0.0" @@ -126454,7 +124925,7 @@ in sources."execa-5.1.1" sources."external-editor-3.1.0" sources."fast-glob-3.2.12" - sources."fastq-1.14.0" + sources."fastq-1.15.0" (sources."figures-3.2.0" // { dependencies = [ sources."escape-string-regexp-1.0.5" @@ -126860,10 +125331,10 @@ in npm = nodeEnv.buildNodePackage { name = "npm"; packageName = "npm"; - version = "9.2.0"; + version = "9.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/npm/-/npm-9.2.0.tgz"; - sha512 = "oypVdaWGHDuV79RXLvp+B9gh6gDyAmoHKrQ0/JBYTWWx5D8/+AAxFdZC84fSIiyDdyW4qfrSyYGKhekxDOaMXQ=="; + url = "https://registry.npmjs.org/npm/-/npm-9.3.1.tgz"; + sha512 = "ydRVmnWEVXmc3DCM+F9BjiNj3IHkZ3Mwz5VbJYS2BpY/6d4PcKxNW+Xb0vzGeE6PkVhLcPxwhoIi+RFV2fSfEA=="; }; buildInputs = globalBuildInputs; meta = { @@ -126928,23 +125399,23 @@ in (sources."cacache-17.0.4" // { dependencies = [ sources."@npmcli/fs-3.1.0" - sources."glob-8.0.3" + sources."glob-8.1.0" sources."unique-filename-3.0.0" sources."unique-slug-4.0.0" ]; }) sources."cacheable-lookup-7.0.0" - sources."cacheable-request-10.2.3" + sources."cacheable-request-10.2.5" sources."camelcase-7.0.1" sources."chalk-5.2.0" sources."chownr-2.0.0" - sources."ci-info-3.7.0" + sources."ci-info-3.7.1" sources."clean-stack-2.2.0" sources."cli-boxes-3.0.0" sources."cli-table-0.3.11" sources."color-support-1.1.3" sources."colors-1.0.3" - sources."commander-9.4.1" + sources."commander-9.5.0" sources."concat-map-0.0.1" (sources."config-chain-1.1.13" // { dependencies = [ @@ -126983,7 +125454,7 @@ in sources."escape-goat-4.0.0" sources."fast-glob-3.2.12" sources."fast-memoize-2.5.2" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fill-range-7.0.1" sources."find-up-5.0.0" sources."form-data-encoder-2.1.4" @@ -127048,7 +125519,7 @@ in sources."json-buffer-3.0.1" sources."json-parse-even-better-errors-3.0.0" sources."json-parse-helpfulerror-1.0.3" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."jsonlines-0.1.1" sources."jsonparse-1.3.1" sources."keyv-4.5.2" @@ -127062,7 +125533,7 @@ in dependencies = [ sources."cacache-16.1.3" sources."fs-minipass-2.1.0" - sources."glob-8.0.3" + sources."glob-8.1.0" sources."minipass-3.3.6" sources."ssri-9.0.1" ]; @@ -127070,7 +125541,7 @@ in sources."merge2-1.4.1" sources."micromatch-4.0.5" sources."mimic-response-4.0.0" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" sources."minimist-1.2.7" sources."minipass-4.0.0" (sources."minipass-collect-1.0.2" // { @@ -127167,10 +125638,10 @@ in sources."ini-1.3.8" ]; }) - sources."rc-config-loader-4.1.1" + sources."rc-config-loader-4.1.2" (sources."read-package-json-6.0.0" // { dependencies = [ - sources."glob-8.0.3" + sources."glob-8.1.0" ]; }) sources."read-package-json-fast-3.0.2" @@ -127257,7 +125728,7 @@ in sources."write-file-atomic-3.0.3" sources."xdg-basedir-5.1.0" sources."yallist-4.0.0" - sources."yaml-2.2.0" + sources."yaml-2.2.1" sources."yocto-queue-0.1.0" ]; buildInputs = globalBuildInputs; @@ -127303,7 +125774,7 @@ in sources."async-1.5.2" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."bcrypt-pbkdf-1.0.2" sources."caseless-0.12.0" sources."combined-stream-1.0.8" @@ -127342,7 +125813,7 @@ in sources."open-8.4.0" sources."performance-now-2.1.0" sources."psl-1.9.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.5.3" sources."request-2.88.2" sources."safe-buffer-5.2.1" @@ -127410,10 +125881,10 @@ in orval = nodeEnv.buildNodePackage { name = "orval"; packageName = "orval"; - version = "6.10.3"; + version = "6.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/orval/-/orval-6.10.3.tgz"; - sha512 = "gct7wGGacGIj3cRKqfioRK2/TRDAK11LbpghRgTMeNWWF+JBCyZGA8H9ehhfdCOuhXIb4me61aNphiusrlz7jQ=="; + url = "https://registry.npmjs.org/orval/-/orval-6.11.0.tgz"; + sha512 = "oABYZWFKW4PtEv0Kb3Zqg0mIi75J3gMvq9Km8fjo+Ku0gzpdXhUKkeQUisvJXBPsRBTGkWBDRtCuRhqakCNH4w=="; }; dependencies = [ sources."@apidevtools/json-schema-ref-parser-9.0.6" @@ -127431,6 +125902,12 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" + sources."@orval/angular-6.11.0" + sources."@orval/axios-6.11.0" + sources."@orval/core-6.11.0" + sources."@orval/msw-6.11.0" + sources."@orval/query-6.11.0" + sources."@orval/swr-6.11.0" sources."@rollup/plugin-commonjs-22.0.2" (sources."@rollup/pluginutils-3.1.0" // { dependencies = [ @@ -127476,17 +125953,17 @@ in sources."@types/es-aggregate-error-1.0.2" sources."@types/estree-0.0.39" sources."@types/json-schema-7.0.11" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/urijs-1.19.19" sources."abort-controller-3.0.0" sources."acorn-8.8.1" sources."acorn-walk-8.2.0" sources."agent-base-6.0.2" - sources."ajv-8.11.2" + sources."ajv-8.12.0" sources."ajv-draft-04-1.0.0" sources."ajv-errors-3.0.0" sources."ajv-formats-2.1.1" - sources."ansi-escapes-4.3.2" + sources."ansi-colors-4.1.3" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."anymatch-3.1.3" @@ -127495,30 +125972,19 @@ in sources."as-table-1.0.55" sources."ast-types-0.14.2" sources."astring-1.8.4" + sources."available-typed-arrays-1.0.5" sources."backslash-0.2.0" sources."balanced-match-1.0.2" - sources."base64-js-1.5.1" sources."binary-extensions-2.2.0" - (sources."bl-4.1.0" // { - dependencies = [ - sources."readable-stream-3.6.0" - sources."string_decoder-1.3.0" - ]; - }) sources."brace-expansion-1.1.11" sources."braces-3.0.2" - sources."buffer-5.7.1" sources."builtins-1.0.3" sources."bytes-3.1.2" sources."cac-6.7.14" sources."call-bind-1.0.2" sources."call-me-maybe-1.0.2" sources."chalk-4.1.2" - sources."chardet-0.7.0" sources."chokidar-3.5.3" - sources."cli-cursor-3.1.0" - sources."cli-spinners-2.7.0" - sources."cli-width-3.0.0" sources."cliui-7.0.4" sources."clone-1.0.4" sources."color-convert-2.0.1" @@ -127546,9 +126012,11 @@ in sources."dir-glob-3.0.1" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" + sources."enquirer-2.3.6" sources."eol-0.9.1" - sources."es-abstract-1.20.5" + sources."es-abstract-1.21.1" sources."es-aggregate-error-1.0.9" + sources."es-set-tostringtag-2.0.1" sources."es-to-primitive-1.2.1" sources."es6-promise-3.3.1" sources."esbuild-0.15.18" @@ -127581,23 +126049,30 @@ in sources."esutils-2.0.3" sources."event-target-shim-5.0.1" sources."execa-5.1.1" - (sources."external-editor-3.1.0" // { - dependencies = [ - sources."iconv-lite-0.4.24" - ]; - }) sources."fast-deep-equal-3.1.3" sources."fast-glob-3.2.12" sources."fast-levenshtein-2.0.6" sources."fast-memoize-2.5.2" sources."fast-safe-stringify-2.1.1" - sources."fastq-1.14.0" - sources."figures-3.2.0" + sources."fastq-1.15.0" sources."file-uri-to-path-2.0.0" sources."fill-range-7.0.1" - sources."find-up-5.0.0" + (sources."find-up-5.0.0" // { + dependencies = [ + sources."locate-path-6.0.0" + sources."p-limit-3.1.0" + sources."p-locate-5.0.0" + sources."path-exists-4.0.0" + ]; + }) + sources."for-each-0.3.3" sources."format-util-1.0.5" - sources."fs-extra-10.1.0" + (sources."fs-extra-10.1.0" // { + dependencies = [ + sources."jsonfile-6.1.0" + sources."universalify-2.0.0" + ]; + }) sources."fs.realpath-1.0.0" sources."fsevents-2.3.2" sources."ftp-0.3.10" @@ -127616,8 +126091,6 @@ in (sources."get-uri-3.0.2" // { dependencies = [ sources."fs-extra-8.1.0" - sources."jsonfile-4.0.0" - sources."universalify-0.1.2" ]; }) sources."glob-7.2.3" @@ -127630,6 +126103,7 @@ in sources."has-bigints-1.0.2" sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."http-errors-2.0.0" @@ -127640,21 +126114,16 @@ in (sources."ibm-openapi-validator-0.88.3" // { dependencies = [ sources."find-up-3.0.0" - sources."locate-path-3.0.0" - sources."p-limit-2.3.0" - sources."p-locate-3.0.0" - sources."path-exists-3.0.0" ]; }) sources."iconv-lite-0.6.3" - sources."ieee754-1.2.1" sources."ignore-5.2.4" - sources."immer-9.0.16" + sources."immer-9.0.18" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."inquirer-8.2.5" sources."internal-slot-1.0.4" sources."ip-1.1.8" + sources."is-array-buffer-3.0.1" sources."is-bigint-1.0.4" sources."is-binary-path-2.1.0" sources."is-boolean-object-1.1.2" @@ -127664,7 +126133,6 @@ in sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.3" - sources."is-interactive-1.0.0" sources."is-negative-zero-2.0.2" sources."is-number-7.0.0" sources."is-number-object-1.0.7" @@ -127674,7 +126142,7 @@ in sources."is-stream-2.0.1" sources."is-string-1.0.7" sources."is-symbol-1.0.4" - sources."is-unicode-supported-0.1.0" + sources."is-typed-array-1.1.10" sources."is-weakref-1.0.2" sources."isarray-0.0.1" sources."isexe-2.0.0" @@ -127688,22 +126156,22 @@ in }) sources."json-schema-traverse-1.0.0" sources."jsonc-parser-2.2.1" - sources."jsonfile-6.1.0" + sources."jsonfile-4.0.0" sources."jsonpath-plus-7.1.0" sources."jsonpointer-5.0.1" sources."jsonschema-1.4.1" sources."leven-3.1.0" sources."levn-0.3.0" - sources."locate-path-6.0.0" + sources."locate-path-3.0.0" sources."lodash-4.17.21" sources."lodash.get-4.4.2" + sources."lodash.isempty-4.4.0" sources."lodash.omit-4.5.0" sources."lodash.omitby-4.6.0" sources."lodash.topath-4.5.2" sources."lodash.uniq-4.5.0" sources."lodash.uniqby-4.7.0" sources."lodash.uniqwith-4.5.0" - sources."log-symbols-4.1.0" sources."lru-cache-5.1.1" sources."magic-string-0.25.9" sources."matcher-1.1.1" @@ -127713,53 +126181,42 @@ in sources."mimic-fn-2.1.0" sources."minimatch-3.1.2" sources."ms-2.1.2" - sources."mute-stream-0.0.8" sources."netmask-2.0.2" (sources."nimma-0.2.2" // { dependencies = [ sources."jsonpath-plus-6.0.1" ]; }) - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."node-fetch-h2-2.3.0" sources."node-readfiles-0.2.0" sources."normalize-path-3.0.0" sources."npm-run-path-4.0.1" sources."oas-kit-common-1.0.8" - (sources."oas-linter-3.2.2" // { - dependencies = [ - sources."yaml-1.10.2" - ]; - }) - (sources."oas-resolver-2.5.6" // { - dependencies = [ - sources."yaml-1.10.2" - ]; - }) + sources."oas-linter-3.2.2" + sources."oas-resolver-2.5.6" sources."oas-schema-walker-1.1.5" - (sources."oas-validator-5.0.8" // { - dependencies = [ - sources."yaml-1.10.2" - ]; - }) - sources."object-inspect-1.12.2" + sources."oas-validator-5.0.8" + sources."object-inspect-1.12.3" sources."object-keys-1.1.1" sources."object.assign-4.1.4" sources."once-1.4.0" sources."onetime-5.1.2" sources."ono-4.0.11" sources."openapi-types-12.1.0" - sources."openapi3-ts-3.1.2" + (sources."openapi3-ts-3.1.2" // { + dependencies = [ + sources."yaml-2.2.1" + ]; + }) sources."optionator-0.8.3" - sources."ora-5.4.1" - sources."os-tmpdir-1.0.2" - sources."p-limit-3.1.0" - sources."p-locate-5.0.0" + sources."p-limit-2.3.0" + sources."p-locate-3.0.0" sources."p-try-2.2.0" sources."pac-proxy-agent-5.0.0" sources."pac-resolver-5.0.1" sources."pad-2.3.0" - sources."path-exists-4.0.0" + sources."path-exists-3.0.0" sources."path-is-absolute-1.0.1" sources."path-key-3.1.1" sources."path-parse-1.0.7" @@ -127770,7 +126227,7 @@ in sources."printable-characters-1.0.42" sources."proxy-agent-5.0.0" sources."proxy-from-env-1.1.0" - sources."punycode-2.1.1" + sources."punycode-1.3.2" sources."querystring-0.2.0" sources."queue-microtask-1.2.3" (sources."raw-body-2.5.1" // { @@ -127787,13 +126244,9 @@ in sources."require-from-string-2.0.2" sources."reserved-0.1.2" sources."resolve-1.22.1" - sources."restore-cursor-3.1.0" sources."reusify-1.0.4" sources."rollup-2.79.1" - sources."run-async-2.4.1" sources."run-parallel-1.2.0" - sources."rxjs-7.8.0" - sources."safe-buffer-5.2.1" sources."safe-regex-test-1.0.0" sources."safe-stable-stringify-1.1.1" sources."safer-buffer-2.1.2" @@ -127832,34 +126285,26 @@ in sources."strip-final-newline-2.0.0" sources."supports-color-7.2.0" sources."supports-preserve-symlinks-flag-1.0.0" - (sources."swagger2openapi-7.0.8" // { - dependencies = [ - sources."yaml-1.10.2" - ]; - }) + sources."swagger2openapi-7.0.8" sources."text-table-0.2.0" - sources."through-2.3.8" - sources."tmp-0.0.33" sources."to-regex-range-5.0.1" sources."toidentifier-1.0.1" sources."tr46-0.0.3" sources."tsconfck-2.0.2" sources."tslib-2.4.1" sources."type-check-0.3.2" - sources."type-fest-0.21.3" + sources."typed-array-length-1.0.4" sources."typescript-4.9.4" sources."unbox-primitive-1.0.2" - sources."universalify-2.0.0" + sources."universalify-0.1.2" sources."unpipe-1.0.0" - sources."upath-2.0.1" - sources."uri-js-4.4.1" - sources."urijs-1.19.11" - (sources."url-0.11.0" // { + (sources."uri-js-4.4.1" // { dependencies = [ - sources."punycode-1.3.2" + sources."punycode-2.2.0" ]; }) - sources."util-deprecate-1.0.2" + sources."urijs-1.19.11" + sources."url-0.11.0" sources."utility-types-3.10.0" sources."validate-npm-package-name-3.0.0" sources."validator-13.7.0" @@ -127869,13 +126314,14 @@ in sources."whatwg-url-5.0.0" sources."which-2.0.2" sources."which-boxed-primitive-1.0.2" + sources."which-typed-array-1.1.9" sources."word-wrap-1.2.3" sources."wrap-ansi-7.0.0" sources."wrappy-1.0.2" sources."xregexp-2.0.0" sources."y18n-5.0.8" sources."yallist-3.1.1" - sources."yaml-2.2.0" + sources."yaml-1.10.2" sources."yaml-js-0.2.3" sources."yargs-17.3.1" sources."yargs-parser-21.1.1" @@ -127902,10 +126348,10 @@ in dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.5" - (sources."@babel/core-7.20.7" // { + sources."@babel/compat-data-7.20.10" + (sources."@babel/core-7.20.12" // { dependencies = [ - sources."json5-2.2.2" + sources."json5-2.2.3" sources."semver-6.3.0" ]; }) @@ -127921,7 +126367,7 @@ in sources."semver-6.3.0" ]; }) - sources."@babel/helper-create-class-features-plugin-7.20.7" + sources."@babel/helper-create-class-features-plugin-7.20.12" sources."@babel/helper-create-regexp-features-plugin-7.20.5" (sources."@babel/helper-define-polyfill-provider-0.3.3" // { dependencies = [ @@ -127934,7 +126380,7 @@ in sources."@babel/helper-hoist-variables-7.18.6" sources."@babel/helper-member-expression-to-functions-7.20.7" sources."@babel/helper-module-imports-7.18.6" - sources."@babel/helper-module-transforms-7.20.7" + sources."@babel/helper-module-transforms-7.20.11" sources."@babel/helper-optimise-call-expression-7.18.6" sources."@babel/helper-plugin-utils-7.20.2" sources."@babel/helper-remap-async-to-generator-7.18.9" @@ -127986,7 +126432,7 @@ in sources."@babel/plugin-transform-arrow-functions-7.20.7" sources."@babel/plugin-transform-async-to-generator-7.20.7" sources."@babel/plugin-transform-block-scoped-functions-7.18.6" - sources."@babel/plugin-transform-block-scoping-7.20.8" + sources."@babel/plugin-transform-block-scoping-7.20.11" sources."@babel/plugin-transform-classes-7.20.7" sources."@babel/plugin-transform-computed-properties-7.20.7" sources."@babel/plugin-transform-destructuring-7.20.7" @@ -127998,9 +126444,9 @@ in sources."@babel/plugin-transform-function-name-7.18.9" sources."@babel/plugin-transform-literals-7.18.9" sources."@babel/plugin-transform-member-expression-literals-7.18.6" - sources."@babel/plugin-transform-modules-amd-7.20.7" - sources."@babel/plugin-transform-modules-commonjs-7.20.7" - sources."@babel/plugin-transform-modules-systemjs-7.19.6" + sources."@babel/plugin-transform-modules-amd-7.20.11" + sources."@babel/plugin-transform-modules-commonjs-7.20.11" + sources."@babel/plugin-transform-modules-systemjs-7.20.11" sources."@babel/plugin-transform-modules-umd-7.18.6" sources."@babel/plugin-transform-named-capturing-groups-regex-7.20.5" sources."@babel/plugin-transform-new-target-7.18.6" @@ -128025,7 +126471,7 @@ in sources."@babel/preset-modules-0.1.5" sources."@babel/runtime-7.20.7" sources."@babel/template-7.20.7" - sources."@babel/traverse-7.20.8" + sources."@babel/traverse-7.20.12" sources."@babel/types-7.20.7" sources."@iarna/toml-2.2.5" sources."@jridgewell/gen-mapping-0.1.1" @@ -128089,8 +126535,9 @@ in sources."async-limiter-1.0.1" sources."asynckit-0.4.0" sources."atob-2.1.2" + sources."available-typed-arrays-1.0.5" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" (sources."babel-plugin-polyfill-corejs2-0.3.3" // { dependencies = [ sources."semver-6.3.0" @@ -128158,7 +126605,7 @@ in sources."caller-path-2.0.0" sources."callsites-2.0.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" sources."caseless-0.12.0" sources."chalk-2.4.2" sources."chokidar-2.1.8" @@ -128184,7 +126631,7 @@ in sources."convert-source-map-1.9.0" sources."copy-descriptor-0.1.1" sources."core-js-2.6.12" - sources."core-js-compat-3.26.1" + sources."core-js-compat-3.27.1" sources."core-util-is-1.0.3" sources."cosmiconfig-5.2.1" (sources."create-ecdh-4.0.4" // { @@ -128301,12 +126748,13 @@ in sources."entities-2.2.0" sources."envinfo-7.8.1" sources."error-ex-1.3.2" - (sources."es-abstract-1.20.5" // { + (sources."es-abstract-1.21.1" // { dependencies = [ - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" ]; }) sources."es-array-method-boxes-properly-1.0.0" + sources."es-set-tostringtag-2.0.1" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-html-1.0.3" @@ -128341,6 +126789,7 @@ in sources."file-uri-to-path-1.0.0" sources."filesize-3.6.1" sources."fill-range-4.0.0" + sources."for-each-0.3.3" sources."for-in-1.0.2" sources."forever-agent-0.6.1" sources."form-data-2.3.3" @@ -128365,6 +126814,7 @@ in }) sources."glob-to-regexp-0.3.0" sources."globals-11.12.0" + sources."globalthis-1.0.3" sources."gopd-1.0.1" sources."graceful-fs-4.2.10" sources."grapheme-breaker-0.3.2" @@ -128379,6 +126829,7 @@ in sources."has-bigints-1.0.2" sources."has-flag-3.0.0" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."has-value-1.0.0" @@ -128432,6 +126883,7 @@ in sources."kind-of-6.0.3" ]; }) + sources."is-array-buffer-3.0.1" sources."is-arrayish-0.2.1" sources."is-bigint-1.0.4" sources."is-binary-path-1.0.1" @@ -128466,6 +126918,7 @@ in sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" + sources."is-typed-array-1.1.10" sources."is-typedarray-1.0.0" sources."is-url-1.2.4" sources."is-weakref-1.0.2" @@ -128495,7 +126948,7 @@ in sources."json-schema-0.4.0" sources."json-schema-traverse-0.4.1" sources."json-stringify-safe-5.0.1" - sources."json5-1.0.1" + sources."json5-1.0.2" sources."jsprim-1.4.2" sources."kind-of-3.2.2" sources."levn-0.3.0" @@ -128687,7 +127140,7 @@ in sources."bn.js-4.12.0" ]; }) - sources."punycode-2.1.1" + sources."punycode-2.2.0" (sources."purgecss-2.3.0" // { dependencies = [ sources."commander-5.1.0" @@ -128771,7 +127224,7 @@ in sources."shebang-regex-1.0.0" (sources."side-channel-1.0.4" // { dependencies = [ - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" ]; }) sources."signal-exit-3.0.7" @@ -128855,6 +127308,7 @@ in sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" sources."type-check-0.3.2" + sources."typed-array-length-1.0.4" sources."typedarray-0.0.6" sources."unbox-primitive-1.0.2" (sources."uncss-0.17.3" // { @@ -128919,6 +127373,7 @@ in sources."whatwg-url-7.1.0" sources."which-1.3.1" sources."which-boxed-primitive-1.0.2" + sources."which-typed-array-1.1.9" sources."word-wrap-1.2.3" sources."wrappy-1.0.2" sources."ws-5.2.3" @@ -129035,7 +127490,7 @@ in }) sources."@parcel/types-2.8.2" sources."@parcel/utils-2.8.2" - (sources."@parcel/watcher-2.0.7" // { + (sources."@parcel/watcher-2.1.0" // { dependencies = [ sources."node-addon-api-3.2.1" ]; @@ -129061,18 +127516,19 @@ in sources."async-limiter-1.0.1" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."balanced-match-1.0.2" sources."base-x-3.0.9" sources."bcrypt-pbkdf-1.0.2" sources."boolbase-1.0.0" sources."brace-expansion-2.0.1" + sources."braces-3.0.2" sources."browser-process-hrtime-1.0.0" sources."browserslist-4.21.4" sources."buffer-from-1.1.2" sources."callsites-3.1.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" sources."caseless-0.12.0" (sources."chalk-4.1.2" // { dependencies = [ @@ -129135,12 +127591,13 @@ in sources."fast-deep-equal-3.1.3" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" + sources."fill-range-7.0.1" sources."forever-agent-0.6.1" sources."form-data-2.3.3" sources."fs.realpath-1.0.0" sources."get-port-4.2.0" sources."getpass-0.1.7" - sources."glob-8.0.3" + sources."glob-8.1.0" sources."globals-13.19.0" sources."har-schema-2.0.0" sources."har-validator-5.1.5" @@ -129157,8 +127614,11 @@ in sources."inherits-2.0.4" sources."is-absolute-url-3.0.3" sources."is-arrayish-0.2.1" + sources."is-extglob-2.1.1" + sources."is-glob-4.0.3" sources."is-html-1.1.0" sources."is-json-2.0.1" + sources."is-number-7.0.0" sources."is-typedarray-1.0.0" sources."isstream-0.1.2" sources."js-tokens-4.0.0" @@ -129172,18 +127632,18 @@ in sources."json-schema-0.4.0" sources."json-schema-traverse-0.4.1" sources."json-stringify-safe-5.0.1" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."jsprim-1.4.2" sources."levn-0.3.0" - sources."lightningcss-1.17.1" - sources."lightningcss-darwin-arm64-1.17.1" - sources."lightningcss-darwin-x64-1.17.1" - sources."lightningcss-linux-arm-gnueabihf-1.17.1" - sources."lightningcss-linux-arm64-gnu-1.17.1" - sources."lightningcss-linux-arm64-musl-1.17.1" - sources."lightningcss-linux-x64-gnu-1.17.1" - sources."lightningcss-linux-x64-musl-1.17.1" - sources."lightningcss-win32-x64-msvc-1.17.1" + sources."lightningcss-1.18.0" + sources."lightningcss-darwin-arm64-1.18.0" + sources."lightningcss-darwin-x64-1.18.0" + sources."lightningcss-linux-arm-gnueabihf-1.18.0" + sources."lightningcss-linux-arm64-gnu-1.18.0" + sources."lightningcss-linux-arm64-musl-1.18.0" + sources."lightningcss-linux-x64-gnu-1.18.0" + sources."lightningcss-linux-x64-musl-1.18.0" + sources."lightningcss-win32-x64-msvc-1.18.0" sources."lilconfig-2.0.6" sources."lines-and-columns-1.2.4" sources."lmdb-2.5.2" @@ -129192,14 +127652,15 @@ in sources."lodash.sortby-4.7.0" sources."lodash.uniq-4.5.0" sources."mdn-data-2.0.14" + sources."micromatch-4.0.5" sources."mime-db-1.52.0" sources."mime-types-2.1.35" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" sources."msgpackr-1.8.1" sources."msgpackr-extract-2.2.0" sources."nanoid-3.3.4" sources."node-addon-api-4.3.0" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."node-gyp-build-optional-packages-5.0.3" sources."node-releases-2.0.8" sources."normalize-url-6.1.0" @@ -129217,8 +127678,9 @@ in sources."path-type-4.0.0" sources."performance-now-2.1.0" sources."picocolors-1.0.0" + sources."picomatch-2.3.1" sources."pn-1.1.0" - sources."postcss-8.4.20" + sources."postcss-8.4.21" sources."postcss-calc-8.2.4" sources."postcss-colormin-5.3.0" sources."postcss-convert-values-5.1.3" @@ -129253,10 +127715,10 @@ in sources."posthtml-render-3.0.0" sources."prelude-ls-1.1.2" sources."psl-1.9.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" (sources."purgecss-5.0.0" // { dependencies = [ - sources."commander-9.4.1" + sources."commander-9.5.0" ]; }) sources."qs-6.5.3" @@ -129290,6 +127752,7 @@ in ]; }) sources."timsort-0.3.0" + sources."to-regex-range-5.0.1" sources."tough-cookie-2.5.0" sources."tr46-1.0.1" sources."tslib-2.4.1" @@ -129366,7 +127829,7 @@ in sources."async-0.9.2" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."babybird-0.0.1" sources."balanced-match-1.0.2" sources."bcrypt-pbkdf-1.0.2" @@ -129511,7 +127974,7 @@ in sources."negotiator-git+https://github.com/arlolra/negotiator.git#full-parse-access" sources."neo-async-2.6.2" sources."oauth-sign-0.9.0" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."object-keys-1.1.1" sources."object.assign-4.1.4" sources."on-finished-2.4.1" @@ -129533,7 +127996,7 @@ in sources."proxy-addr-2.0.7" sources."prr-1.0.1" sources."psl-1.9.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.11.0" sources."range-parser-1.2.1" (sources."raw-body-2.5.1" // { @@ -129637,14 +128100,15 @@ in patch-package = nodeEnv.buildNodePackage { name = "patch-package"; packageName = "patch-package"; - version = "6.5.0"; + version = "6.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/patch-package/-/patch-package-6.5.0.tgz"; - sha512 = "tC3EqJmo74yKqfsMzELaFwxOAu6FH6t+FzFOsnWAuARm7/n2xB5AOeOueE221eM9gtMuIKMKpF9tBy/X2mNP0Q=="; + url = "https://registry.npmjs.org/patch-package/-/patch-package-6.5.1.tgz"; + sha512 = "I/4Zsalfhc6bphmJTlrLoOcAF87jcxko4q0qsv4bGcurbr8IskEOtdnt9iCmsQVGL1B+iUhSQqweyTLJfCF9rA=="; }; dependencies = [ sources."@yarnpkg/lockfile-1.1.0" sources."ansi-styles-4.3.0" + sources."at-least-node-1.0.0" sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" sources."braces-3.0.2" @@ -129656,7 +128120,7 @@ in sources."cross-spawn-6.0.5" sources."fill-range-7.0.1" sources."find-yarn-workspace-root-2.0.0" - sources."fs-extra-7.0.1" + sources."fs-extra-9.1.0" sources."fs.realpath-1.0.0" sources."glob-7.2.3" sources."graceful-fs-4.2.10" @@ -129668,7 +128132,7 @@ in sources."is-number-7.0.0" sources."is-wsl-2.2.0" sources."isexe-2.0.0" - sources."jsonfile-4.0.0" + sources."jsonfile-6.1.0" sources."klaw-sync-6.0.0" sources."micromatch-4.0.5" sources."minimatch-3.1.2" @@ -129688,7 +128152,7 @@ in sources."supports-color-7.2.0" sources."tmp-0.0.33" sources."to-regex-range-5.0.1" - sources."universalify-0.1.2" + sources."universalify-2.0.0" sources."which-1.3.1" sources."wrappy-1.0.2" sources."yaml-1.10.2" @@ -130047,7 +128511,7 @@ in sources."async-2.6.4" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."backo2-1.0.2" sources."balanced-match-1.0.2" sources."base64-arraybuffer-0.1.4" @@ -130253,10 +128717,10 @@ in ]; }) sources."negotiator-0.6.3" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."normalize-path-3.0.0" sources."oauth-sign-0.9.0" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."on-finished-2.4.1" sources."on-headers-1.0.2" sources."once-1.4.0" @@ -130286,7 +128750,7 @@ in sources."proxy-addr-2.0.7" sources."psl-1.9.0" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.11.0" sources."queue-microtask-1.2.3" sources."queue-tick-1.0.1" @@ -130417,1711 +128881,6 @@ in bypassCache = true; reconstructLock = true; }; - "photoprism-frontend-../../servers/photoprism" = nodeEnv.buildNodePackage { - name = "photoprism"; - packageName = "photoprism"; - version = "1.0.0"; - src = ../../servers/photoprism; - dependencies = [ - sources."@ampproject/remapping-2.2.0" - sources."@babel/cli-7.20.7" - sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.5" - (sources."@babel/core-7.20.7" // { - dependencies = [ - sources."semver-6.3.0" - ]; - }) - (sources."@babel/eslint-parser-7.19.1" // { - dependencies = [ - sources."semver-6.3.0" - ]; - }) - (sources."@babel/generator-7.20.7" // { - dependencies = [ - sources."@jridgewell/gen-mapping-0.3.2" - ]; - }) - sources."@babel/helper-annotate-as-pure-7.18.6" - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.18.9" - (sources."@babel/helper-compilation-targets-7.20.7" // { - dependencies = [ - sources."semver-6.3.0" - ]; - }) - sources."@babel/helper-create-class-features-plugin-7.20.7" - sources."@babel/helper-create-regexp-features-plugin-7.20.5" - (sources."@babel/helper-define-polyfill-provider-0.3.3" // { - dependencies = [ - sources."semver-6.3.0" - ]; - }) - sources."@babel/helper-environment-visitor-7.18.9" - sources."@babel/helper-explode-assignable-expression-7.18.6" - sources."@babel/helper-function-name-7.19.0" - sources."@babel/helper-hoist-variables-7.18.6" - sources."@babel/helper-member-expression-to-functions-7.20.7" - sources."@babel/helper-module-imports-7.18.6" - sources."@babel/helper-module-transforms-7.20.7" - sources."@babel/helper-optimise-call-expression-7.18.6" - sources."@babel/helper-plugin-utils-7.20.2" - sources."@babel/helper-remap-async-to-generator-7.18.9" - sources."@babel/helper-replace-supers-7.20.7" - sources."@babel/helper-simple-access-7.20.2" - sources."@babel/helper-skip-transparent-expression-wrappers-7.20.0" - sources."@babel/helper-split-export-declaration-7.18.6" - sources."@babel/helper-string-parser-7.19.4" - sources."@babel/helper-validator-identifier-7.19.1" - sources."@babel/helper-validator-option-7.18.6" - sources."@babel/helper-wrap-function-7.20.5" - sources."@babel/helpers-7.20.7" - sources."@babel/highlight-7.18.6" - sources."@babel/parser-7.20.7" - sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6" - sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7" - sources."@babel/plugin-proposal-async-generator-functions-7.20.7" - sources."@babel/plugin-proposal-class-properties-7.18.6" - sources."@babel/plugin-proposal-class-static-block-7.20.7" - sources."@babel/plugin-proposal-dynamic-import-7.18.6" - sources."@babel/plugin-proposal-export-namespace-from-7.18.9" - sources."@babel/plugin-proposal-json-strings-7.18.6" - sources."@babel/plugin-proposal-logical-assignment-operators-7.20.7" - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.18.6" - sources."@babel/plugin-proposal-numeric-separator-7.18.6" - sources."@babel/plugin-proposal-object-rest-spread-7.20.7" - sources."@babel/plugin-proposal-optional-catch-binding-7.18.6" - sources."@babel/plugin-proposal-optional-chaining-7.20.7" - sources."@babel/plugin-proposal-private-methods-7.18.6" - sources."@babel/plugin-proposal-private-property-in-object-7.20.5" - sources."@babel/plugin-proposal-unicode-property-regex-7.18.6" - sources."@babel/plugin-syntax-async-generators-7.8.4" - sources."@babel/plugin-syntax-class-properties-7.12.13" - sources."@babel/plugin-syntax-class-static-block-7.14.5" - sources."@babel/plugin-syntax-dynamic-import-7.8.3" - sources."@babel/plugin-syntax-export-namespace-from-7.8.3" - sources."@babel/plugin-syntax-import-assertions-7.20.0" - sources."@babel/plugin-syntax-json-strings-7.8.3" - sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4" - sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3" - sources."@babel/plugin-syntax-numeric-separator-7.10.4" - sources."@babel/plugin-syntax-object-rest-spread-7.8.3" - sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" - sources."@babel/plugin-syntax-optional-chaining-7.8.3" - sources."@babel/plugin-syntax-private-property-in-object-7.14.5" - sources."@babel/plugin-syntax-top-level-await-7.14.5" - sources."@babel/plugin-transform-arrow-functions-7.20.7" - sources."@babel/plugin-transform-async-to-generator-7.20.7" - sources."@babel/plugin-transform-block-scoped-functions-7.18.6" - sources."@babel/plugin-transform-block-scoping-7.20.8" - sources."@babel/plugin-transform-classes-7.20.7" - sources."@babel/plugin-transform-computed-properties-7.20.7" - sources."@babel/plugin-transform-destructuring-7.20.7" - sources."@babel/plugin-transform-dotall-regex-7.18.6" - sources."@babel/plugin-transform-duplicate-keys-7.18.9" - sources."@babel/plugin-transform-exponentiation-operator-7.18.6" - sources."@babel/plugin-transform-for-of-7.18.8" - sources."@babel/plugin-transform-function-name-7.18.9" - sources."@babel/plugin-transform-literals-7.18.9" - sources."@babel/plugin-transform-member-expression-literals-7.18.6" - sources."@babel/plugin-transform-modules-amd-7.20.7" - sources."@babel/plugin-transform-modules-commonjs-7.20.7" - sources."@babel/plugin-transform-modules-systemjs-7.19.6" - sources."@babel/plugin-transform-modules-umd-7.18.6" - sources."@babel/plugin-transform-named-capturing-groups-regex-7.20.5" - sources."@babel/plugin-transform-new-target-7.18.6" - sources."@babel/plugin-transform-object-super-7.18.6" - sources."@babel/plugin-transform-parameters-7.20.7" - sources."@babel/plugin-transform-property-literals-7.18.6" - sources."@babel/plugin-transform-regenerator-7.20.5" - sources."@babel/plugin-transform-reserved-words-7.18.6" - (sources."@babel/plugin-transform-runtime-7.19.6" // { - dependencies = [ - sources."semver-6.3.0" - ]; - }) - sources."@babel/plugin-transform-shorthand-properties-7.18.6" - sources."@babel/plugin-transform-spread-7.20.7" - sources."@babel/plugin-transform-sticky-regex-7.18.6" - sources."@babel/plugin-transform-template-literals-7.18.9" - sources."@babel/plugin-transform-typeof-symbol-7.18.9" - sources."@babel/plugin-transform-unicode-escapes-7.18.10" - sources."@babel/plugin-transform-unicode-regex-7.18.6" - (sources."@babel/preset-env-7.20.2" // { - dependencies = [ - sources."semver-6.3.0" - ]; - }) - sources."@babel/preset-modules-0.1.5" - sources."@babel/register-7.18.9" - sources."@babel/runtime-7.20.7" - sources."@babel/template-7.20.7" - sources."@babel/traverse-7.20.8" - sources."@babel/types-7.20.7" - sources."@colors/colors-1.5.0" - sources."@csstools/postcss-cascade-layers-1.1.1" - sources."@csstools/postcss-color-function-1.1.1" - sources."@csstools/postcss-font-format-keywords-1.0.1" - sources."@csstools/postcss-hwb-function-1.0.2" - sources."@csstools/postcss-ic-unit-1.0.1" - sources."@csstools/postcss-is-pseudo-class-2.0.7" - sources."@csstools/postcss-nested-calc-1.0.0" - sources."@csstools/postcss-normalize-display-values-1.0.1" - sources."@csstools/postcss-oklab-function-1.1.1" - sources."@csstools/postcss-progressive-custom-properties-1.3.0" - sources."@csstools/postcss-stepped-value-functions-1.0.1" - sources."@csstools/postcss-text-decoration-shorthand-1.0.0" - sources."@csstools/postcss-trigonometric-functions-1.0.2" - sources."@csstools/postcss-unset-value-1.0.2" - sources."@csstools/selector-specificity-2.0.2" - sources."@discoveryjs/json-ext-0.5.7" - (sources."@eslint/eslintrc-1.4.0" // { - dependencies = [ - sources."argparse-2.0.1" - sources."globals-13.19.0" - sources."js-yaml-4.1.0" - ]; - }) - sources."@gar/promisify-1.1.3" - sources."@humanwhocodes/config-array-0.11.8" - sources."@humanwhocodes/module-importer-1.0.1" - sources."@humanwhocodes/object-schema-1.2.1" - sources."@ioredis/commands-1.2.0" - (sources."@istanbuljs/load-nyc-config-1.1.0" // { - dependencies = [ - sources."find-up-4.1.0" - sources."locate-path-5.0.0" - sources."p-locate-4.1.0" - sources."path-exists-4.0.0" - ]; - }) - sources."@istanbuljs/schema-0.1.3" - sources."@jridgewell/gen-mapping-0.1.1" - sources."@jridgewell/resolve-uri-3.1.0" - sources."@jridgewell/set-array-1.1.2" - (sources."@jridgewell/source-map-0.3.2" // { - dependencies = [ - sources."@jridgewell/gen-mapping-0.3.2" - ]; - }) - sources."@jridgewell/sourcemap-codec-1.4.14" - sources."@jridgewell/trace-mapping-0.3.17" - (sources."@lcdp/offline-plugin-5.1.1" // { - dependencies = [ - sources."slash-1.0.0" - ]; - }) - sources."@mapbox/geojson-rewind-0.5.2" - sources."@mapbox/jsonlint-lines-primitives-2.0.2" - sources."@mapbox/mapbox-gl-supported-2.0.1" - sources."@mapbox/point-geometry-0.1.0" - sources."@mapbox/tiny-sdf-2.0.5" - sources."@mapbox/unitbezier-0.0.1" - sources."@mapbox/vector-tile-1.3.1" - sources."@mapbox/whoots-js-3.1.0" - sources."@nicolo-ribaudo/eslint-scope-5-internals-5.1.1-v1" - sources."@nodelib/fs.scandir-2.1.5" - sources."@nodelib/fs.stat-2.0.5" - sources."@nodelib/fs.walk-1.2.8" - (sources."@npmcli/fs-2.1.2" // { - dependencies = [ - sources."lru-cache-6.0.0" - sources."semver-7.3.8" - sources."yallist-4.0.0" - ]; - }) - (sources."@npmcli/move-file-2.0.1" // { - dependencies = [ - sources."mkdirp-1.0.4" - ]; - }) - sources."@polka/url-1.0.0-next.21" - sources."@socket.io/component-emitter-3.1.0" - sources."@tootallnate/once-2.0.0" - sources."@trysound/sax-0.2.0" - sources."@types/cookie-0.4.1" - sources."@types/cors-2.8.13" - sources."@types/eslint-7.29.0" - sources."@types/eslint-scope-3.7.4" - sources."@types/estree-1.0.0" - sources."@types/geojson-7946.0.10" - sources."@types/json-schema-7.0.11" - sources."@types/json5-0.0.29" - sources."@types/mapbox__point-geometry-0.1.2" - sources."@types/mapbox__vector-tile-1.3.0" - sources."@types/minimist-1.2.2" - sources."@types/node-18.11.17" - sources."@types/normalize-package-data-2.4.1" - sources."@types/parse-json-4.0.0" - sources."@types/pbf-3.0.2" - sources."@vue/compiler-core-3.2.45" - sources."@vue/compiler-dom-3.2.45" - sources."@vue/compiler-sfc-3.2.45" - sources."@vue/compiler-ssr-3.2.45" - (sources."@vue/component-compiler-utils-3.3.0" // { - dependencies = [ - sources."lru-cache-4.1.5" - sources."picocolors-0.2.1" - sources."postcss-7.0.39" - sources."yallist-2.1.2" - ]; - }) - sources."@vue/reactivity-transform-3.2.45" - sources."@vue/shared-3.2.45" - sources."@vvo/tzdb-6.84.0" - sources."@webassemblyjs/ast-1.11.1" - sources."@webassemblyjs/floating-point-hex-parser-1.11.1" - sources."@webassemblyjs/helper-api-error-1.11.1" - sources."@webassemblyjs/helper-buffer-1.11.1" - sources."@webassemblyjs/helper-numbers-1.11.1" - sources."@webassemblyjs/helper-wasm-bytecode-1.11.1" - sources."@webassemblyjs/helper-wasm-section-1.11.1" - sources."@webassemblyjs/ieee754-1.11.1" - sources."@webassemblyjs/leb128-1.11.1" - sources."@webassemblyjs/utf8-1.11.1" - sources."@webassemblyjs/wasm-edit-1.11.1" - sources."@webassemblyjs/wasm-gen-1.11.1" - sources."@webassemblyjs/wasm-opt-1.11.1" - sources."@webassemblyjs/wasm-parser-1.11.1" - sources."@webassemblyjs/wast-printer-1.11.1" - sources."@webpack-cli/configtest-1.2.0" - sources."@webpack-cli/info-1.5.0" - sources."@webpack-cli/serve-1.7.0" - sources."@xtuc/ieee754-1.2.0" - sources."@xtuc/long-4.2.2" - sources."abbrev-1.1.1" - sources."accepts-1.3.8" - sources."acorn-7.4.1" - sources."acorn-class-fields-0.3.7" - (sources."acorn-import-assertions-1.8.0" // { - dependencies = [ - sources."acorn-8.8.1" - ]; - }) - sources."acorn-jsx-5.3.2" - sources."acorn-private-class-elements-0.2.7" - sources."acorn-private-methods-0.3.3" - sources."acorn-stage3-4.0.0" - sources."acorn-static-class-features-0.2.4" - sources."acorn-walk-8.2.0" - (sources."adjust-sourcemap-loader-4.0.0" // { - dependencies = [ - sources."big.js-5.2.2" - sources."emojis-list-3.0.0" - sources."loader-utils-2.0.4" - ]; - }) - sources."agent-base-6.0.2" - (sources."agentkeepalive-4.2.1" // { - dependencies = [ - sources."depd-1.1.2" - ]; - }) - sources."aggregate-error-3.1.0" - sources."ajv-6.12.6" - (sources."ajv-formats-2.1.1" // { - dependencies = [ - sources."ajv-8.11.2" - sources."json-schema-traverse-1.0.0" - ]; - }) - sources."ajv-keywords-3.5.2" - sources."ansi-colors-4.1.1" - (sources."ansi-escapes-4.3.2" // { - dependencies = [ - sources."type-fest-0.21.3" - ]; - }) - sources."ansi-html-community-0.0.8" - sources."ansi-regex-5.0.1" - sources."ansi-styles-3.2.1" - sources."any-promise-1.3.0" - sources."anymatch-3.1.3" - sources."app-module-path-2.2.0" - sources."aproba-2.0.0" - sources."are-we-there-yet-3.0.1" - sources."argparse-1.0.10" - sources."array-flatten-1.1.1" - sources."array-includes-3.1.6" - sources."array.prototype.flat-1.3.1" - sources."arrify-1.0.1" - sources."asap-2.0.6" - sources."assert-never-1.2.1" - sources."assertion-error-1.1.0" - sources."async-3.2.4" - sources."async-foreach-0.1.3" - sources."asynckit-0.4.0" - sources."autoprefixer-10.4.13" - sources."available-typed-arrays-1.0.5" - sources."axios-0.27.2" - sources."axios-mock-adapter-1.21.2" - (sources."babel-loader-8.3.0" // { - dependencies = [ - sources."big.js-5.2.2" - sources."emojis-list-3.0.0" - sources."find-cache-dir-3.3.2" - sources."find-up-4.1.0" - sources."loader-utils-2.0.4" - sources."locate-path-5.0.0" - sources."make-dir-3.1.0" - sources."p-locate-4.1.0" - sources."path-exists-4.0.0" - sources."pkg-dir-4.2.0" - sources."semver-6.3.0" - ]; - }) - sources."babel-plugin-istanbul-6.1.1" - (sources."babel-plugin-polyfill-corejs2-0.3.3" // { - dependencies = [ - sources."semver-6.3.0" - ]; - }) - sources."babel-plugin-polyfill-corejs3-0.6.0" - sources."babel-plugin-polyfill-regenerator-0.4.1" - sources."babel-walk-3.0.0-canary-5" - sources."balanced-match-1.0.2" - sources."base64id-2.0.0" - sources."batch-0.6.1" - sources."big.js-3.2.0" - sources."binary-extensions-2.2.0" - sources."bluebird-3.7.2" - (sources."body-parser-1.20.1" // { - dependencies = [ - sources."debug-2.6.9" - sources."ms-2.0.0" - ]; - }) - sources."boolbase-1.0.0" - sources."brace-expansion-1.1.11" - sources."braces-3.0.2" - sources."browser-stdout-1.3.1" - sources."browserslist-4.21.4" - sources."buffer-builder-0.2.0" - sources."buffer-from-1.1.2" - sources."bufferutil-4.0.7" - (sources."builtins-5.0.1" // { - dependencies = [ - sources."lru-cache-6.0.0" - sources."semver-7.3.8" - sources."yallist-4.0.0" - ]; - }) - sources."buntis-0.2.1" - sources."bytes-3.1.2" - (sources."cacache-16.1.3" // { - dependencies = [ - sources."brace-expansion-2.0.1" - sources."glob-8.0.3" - sources."lru-cache-7.14.1" - sources."minimatch-5.1.2" - sources."mkdirp-1.0.4" - ]; - }) - sources."call-bind-1.0.2" - sources."callsites-3.1.0" - sources."camelcase-5.3.1" - sources."camelcase-keys-6.2.2" - sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001441" - sources."chai-4.3.7" - sources."chalk-2.4.2" - sources."character-parser-2.2.0" - sources."charenc-0.0.2" - sources."check-error-1.0.2" - sources."cheerio-1.0.0-rc.10" - sources."cheerio-select-1.6.0" - (sources."chokidar-3.5.3" // { - dependencies = [ - sources."glob-parent-5.1.2" - ]; - }) - sources."chownr-2.0.0" - sources."chrome-finder-1.0.7" - sources."chrome-trace-event-1.0.3" - sources."clean-stack-2.2.0" - sources."cliui-7.0.4" - sources."clone-deep-4.0.1" - sources."cluster-key-slot-1.1.2" - sources."color-convert-1.9.3" - sources."color-name-1.1.3" - sources."color-support-1.1.3" - sources."colord-2.9.3" - sources."colorette-2.0.19" - sources."colors-1.4.0" - sources."combined-stream-1.0.8" - sources."commander-4.1.1" - sources."commondir-1.0.1" - sources."compressible-2.0.18" - (sources."compression-1.7.4" // { - dependencies = [ - sources."bytes-3.0.0" - sources."debug-2.6.9" - sources."ms-2.0.0" - sources."safe-buffer-5.1.2" - ]; - }) - sources."concat-map-0.0.1" - (sources."connect-3.7.0" // { - dependencies = [ - sources."debug-2.6.9" - sources."ms-2.0.0" - ]; - }) - sources."connect-redis-6.1.3" - sources."console-control-strings-1.1.0" - sources."consolidate-0.15.1" - sources."constantinople-4.0.1" - sources."content-disposition-0.5.4" - sources."content-type-1.0.4" - sources."convert-source-map-1.9.0" - sources."cookie-0.4.2" - (sources."cookie-parser-1.4.6" // { - dependencies = [ - sources."cookie-0.4.1" - ]; - }) - sources."cookie-signature-1.0.6" - sources."core-js-3.26.1" - sources."core-js-compat-3.26.1" - sources."core-util-is-1.0.3" - sources."cors-2.8.5" - sources."cosmiconfig-7.1.0" - sources."cross-env-7.0.3" - sources."cross-spawn-7.0.3" - sources."crypt-0.0.2" - sources."csrf-3.1.0" - sources."css-blank-pseudo-3.0.3" - sources."css-declaration-sorter-6.3.1" - sources."css-has-pseudo-3.0.4" - (sources."css-loader-6.7.3" // { - dependencies = [ - sources."lru-cache-6.0.0" - sources."semver-7.3.8" - sources."yallist-4.0.0" - ]; - }) - sources."css-prefers-color-scheme-6.0.3" - sources."css-select-4.3.0" - sources."css-tree-1.1.3" - sources."css-what-6.1.0" - sources."csscolorparser-1.0.3" - sources."cssdb-7.2.0" - sources."cssesc-3.0.0" - sources."cssnano-5.1.14" - sources."cssnano-preset-default-5.2.13" - sources."cssnano-utils-3.1.0" - sources."csso-4.2.0" - sources."csstype-3.1.1" - (sources."csurf-1.11.0" // { - dependencies = [ - sources."cookie-0.4.0" - sources."depd-1.1.2" - sources."http-errors-1.7.3" - sources."setprototypeof-1.1.1" - sources."statuses-1.5.0" - sources."toidentifier-1.0.0" - ]; - }) - sources."cuint-0.2.2" - sources."custom-event-1.0.1" - sources."date-format-4.0.14" - sources."de-indent-1.0.2" - sources."debug-4.3.4" - sources."decamelize-4.0.0" - (sources."decamelize-keys-1.1.1" // { - dependencies = [ - sources."decamelize-1.2.0" - sources."map-obj-1.0.1" - ]; - }) - sources."deep-eql-4.1.3" - sources."deep-extend-0.5.1" - sources."deep-is-0.1.4" - sources."define-properties-1.1.4" - sources."delayed-stream-1.0.0" - sources."delegates-1.0.0" - sources."denque-2.1.0" - sources."depd-2.0.0" - sources."destroy-1.2.0" - sources."detect-libc-1.0.3" - sources."dezalgo-1.0.4" - sources."di-0.0.1" - sources."diff-5.0.0" - sources."doctrine-3.0.0" - sources."doctypes-1.1.0" - (sources."dom-serialize-2.2.1" // { - dependencies = [ - sources."void-elements-2.0.1" - ]; - }) - sources."dom-serializer-1.4.1" - sources."domelementtype-2.3.0" - sources."domhandler-4.3.1" - sources."domutils-2.8.0" - sources."dotenv-16.0.3" - sources."duplexer-0.1.2" - sources."earcut-2.2.4" - sources."easygettext-2.17.0" - sources."ee-first-1.1.1" - sources."ejs-3.1.8" - sources."electron-to-chromium-1.4.284" - sources."emoji-regex-8.0.0" - sources."emojis-list-2.1.0" - sources."encodeurl-1.0.2" - (sources."encoding-0.1.13" // { - dependencies = [ - sources."iconv-lite-0.6.3" - ]; - }) - sources."engine.io-6.2.1" - sources."engine.io-parser-5.0.4" - sources."enhanced-resolve-5.12.0" - sources."ent-2.2.0" - sources."entities-2.2.0" - sources."env-paths-2.2.1" - sources."envinfo-7.8.1" - sources."err-code-2.0.3" - sources."error-ex-1.3.2" - sources."es-abstract-1.20.5" - sources."es-module-lexer-0.9.3" - sources."es-shim-unscopables-1.0.0" - sources."es-to-primitive-1.2.1" - sources."escalade-3.1.1" - sources."escape-html-1.0.3" - sources."escape-string-regexp-1.0.5" - (sources."eslint-8.30.0" // { - dependencies = [ - sources."ansi-styles-4.3.0" - sources."argparse-2.0.1" - sources."chalk-4.1.2" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."escape-string-regexp-4.0.0" - sources."eslint-scope-7.1.1" - sources."eslint-visitor-keys-3.3.0" - sources."estraverse-5.3.0" - sources."find-up-5.0.0" - sources."globals-13.19.0" - sources."has-flag-4.0.0" - sources."js-yaml-4.1.0" - sources."locate-path-6.0.0" - sources."p-limit-3.1.0" - sources."p-locate-5.0.0" - sources."path-exists-4.0.0" - sources."supports-color-7.2.0" - ]; - }) - sources."eslint-config-prettier-8.5.0" - sources."eslint-config-standard-17.0.0" - (sources."eslint-formatter-pretty-4.1.0" // { - dependencies = [ - sources."ansi-styles-4.3.0" - sources."chalk-4.1.2" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."has-flag-4.0.0" - sources."supports-color-7.2.0" - ]; - }) - (sources."eslint-import-resolver-node-0.3.6" // { - dependencies = [ - sources."debug-3.2.7" - ]; - }) - (sources."eslint-module-utils-2.7.4" // { - dependencies = [ - sources."debug-3.2.7" - ]; - }) - (sources."eslint-plugin-es-4.1.0" // { - dependencies = [ - sources."eslint-utils-2.1.0" - sources."eslint-visitor-keys-1.3.0" - ]; - }) - (sources."eslint-plugin-html-7.1.0" // { - dependencies = [ - sources."dom-serializer-2.0.0" - sources."domhandler-5.0.3" - sources."domutils-3.0.1" - sources."entities-4.4.0" - sources."htmlparser2-8.0.1" - ]; - }) - (sources."eslint-plugin-import-2.26.0" // { - dependencies = [ - sources."debug-2.6.9" - sources."doctrine-2.1.0" - sources."ms-2.0.0" - ]; - }) - (sources."eslint-plugin-n-15.6.0" // { - dependencies = [ - sources."lru-cache-6.0.0" - sources."semver-7.3.8" - sources."yallist-4.0.0" - ]; - }) - (sources."eslint-plugin-node-11.1.0" // { - dependencies = [ - sources."eslint-plugin-es-3.0.1" - sources."eslint-utils-2.1.0" - sources."eslint-visitor-keys-1.3.0" - sources."semver-6.3.0" - ]; - }) - (sources."eslint-plugin-prettier-vue-4.2.0" // { - dependencies = [ - sources."ansi-styles-4.3.0" - sources."chalk-4.1.2" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."has-flag-4.0.0" - sources."supports-color-7.2.0" - ]; - }) - sources."eslint-plugin-promise-6.1.1" - (sources."eslint-plugin-vue-9.8.0" // { - dependencies = [ - sources."lru-cache-6.0.0" - sources."semver-7.3.8" - sources."yallist-4.0.0" - ]; - }) - sources."eslint-rule-docs-1.1.235" - sources."eslint-scope-5.1.1" - sources."eslint-utils-3.0.0" - sources."eslint-visitor-keys-2.1.0" - (sources."eslint-webpack-plugin-3.2.0" // { - dependencies = [ - sources."ajv-8.11.2" - sources."ajv-keywords-5.1.0" - sources."json-schema-traverse-1.0.0" - sources."schema-utils-4.0.0" - ]; - }) - (sources."espree-9.4.1" // { - dependencies = [ - sources."acorn-8.8.1" - sources."eslint-visitor-keys-3.3.0" - ]; - }) - sources."esprima-4.0.1" - (sources."esquery-1.4.0" // { - dependencies = [ - sources."estraverse-5.3.0" - ]; - }) - (sources."esrecurse-4.3.0" // { - dependencies = [ - sources."estraverse-5.3.0" - ]; - }) - sources."estraverse-4.3.0" - sources."estree-walker-2.0.2" - sources."esutils-2.0.3" - sources."etag-1.8.1" - sources."eventemitter3-4.0.7" - sources."events-3.3.0" - sources."eventsource-polyfill-0.9.6" - (sources."express-4.18.2" // { - dependencies = [ - sources."cookie-0.5.0" - sources."debug-2.6.9" - sources."finalhandler-1.2.0" - sources."ms-2.0.0" - sources."path-to-regexp-0.1.7" - ]; - }) - (sources."express-session-1.17.3" // { - dependencies = [ - sources."debug-2.6.9" - sources."ms-2.0.0" - ]; - }) - sources."extend-3.0.2" - sources."fast-deep-equal-3.1.3" - sources."fast-diff-1.2.0" - sources."fast-json-stable-stringify-2.1.0" - sources."fast-levenshtein-2.0.6" - sources."fastest-levenshtein-1.0.16" - sources."fastq-1.14.0" - sources."fibers-5.0.3" - sources."file-entry-cache-6.0.1" - (sources."file-loader-6.2.0" // { - dependencies = [ - sources."big.js-5.2.2" - sources."emojis-list-3.0.0" - sources."loader-utils-2.0.4" - sources."schema-utils-3.1.1" - ]; - }) - sources."file-saver-2.0.5" - (sources."filelist-1.0.4" // { - dependencies = [ - sources."brace-expansion-2.0.1" - sources."minimatch-5.1.2" - ]; - }) - sources."fill-range-7.0.1" - (sources."finalhandler-1.1.2" // { - dependencies = [ - sources."debug-2.6.9" - sources."ms-2.0.0" - sources."on-finished-2.3.0" - sources."statuses-1.5.0" - ]; - }) - sources."find-cache-dir-2.1.0" - sources."find-up-3.0.0" - sources."flat-5.0.2" - sources."flat-cache-3.0.4" - sources."flatted-3.2.7" - sources."flow-parser-0.196.3" - (sources."flow-remove-types-2.196.3" // { - dependencies = [ - sources."pirates-3.0.2" - ]; - }) - sources."follow-redirects-1.15.2" - sources."for-each-0.3.3" - sources."foreachasync-3.0.0" - sources."form-data-4.0.0" - sources."formidable-2.1.2" - sources."forwarded-0.2.0" - sources."fraction.js-4.2.0" - sources."fresh-0.5.2" - sources."fs-extra-8.1.0" - sources."fs-minipass-2.1.0" - sources."fs-readdir-recursive-1.1.0" - sources."fs.realpath-1.0.0" - sources."fsevents-2.3.2" - sources."function-bind-1.1.1" - sources."function.prototype.name-1.1.5" - sources."functions-have-names-1.2.3" - sources."gauge-4.0.4" - sources."gaze-1.1.3" - sources."gensync-1.0.0-beta.2" - sources."geojson-vt-3.2.1" - sources."get-caller-file-2.0.5" - sources."get-func-name-2.0.0" - sources."get-intrinsic-1.1.3" - sources."get-package-type-0.1.0" - sources."get-stdin-4.0.1" - sources."get-stream-6.0.1" - sources."get-symbol-description-1.0.0" - sources."gl-matrix-3.4.3" - sources."glob-7.2.3" - sources."glob-parent-6.0.2" - sources."glob-to-regexp-0.4.1" - (sources."global-prefix-3.0.0" // { - dependencies = [ - sources."which-1.3.1" - ]; - }) - sources."globals-11.12.0" - (sources."globule-1.3.4" // { - dependencies = [ - sources."glob-7.1.7" - sources."minimatch-3.0.8" - ]; - }) - sources."google-protobuf-3.21.2" - sources."gopd-1.0.1" - sources."graceful-fs-4.2.10" - sources."grapheme-splitter-1.0.4" - sources."gzip-size-6.0.0" - sources."handlebars-4.7.7" - sources."hard-rejection-2.1.0" - sources."has-1.0.3" - sources."has-bigints-1.0.2" - sources."has-flag-3.0.0" - sources."has-property-descriptors-1.0.0" - sources."has-symbols-1.0.3" - sources."has-tostringtag-1.0.0" - sources."has-unicode-2.0.1" - sources."hash-sum-1.0.2" - sources."hbs-4.2.0" - sources."he-1.2.0" - sources."helmet-6.0.1" - sources."hexoid-1.0.0" - sources."hls.js-1.2.9" - (sources."hosted-git-info-4.1.0" // { - dependencies = [ - sources."lru-cache-6.0.0" - sources."yallist-4.0.0" - ]; - }) - sources."html-entities-2.3.3" - sources."html-escaper-2.0.2" - sources."htmlparser2-6.1.0" - sources."http-cache-semantics-4.1.0" - sources."http-errors-2.0.0" - sources."http-proxy-1.18.1" - sources."http-proxy-agent-5.0.0" - sources."https-proxy-agent-5.0.1" - sources."humanize-ms-1.2.1" - sources."i-0.3.7" - sources."iconv-lite-0.4.24" - sources."icss-utils-5.1.0" - sources."ieee754-1.2.1" - sources."ignore-5.2.4" - sources."immutable-4.2.0" - (sources."import-fresh-3.3.0" // { - dependencies = [ - sources."resolve-from-4.0.0" - ]; - }) - (sources."import-local-3.1.0" // { - dependencies = [ - sources."find-up-4.1.0" - sources."locate-path-5.0.0" - sources."p-locate-4.1.0" - sources."path-exists-4.0.0" - sources."pkg-dir-4.2.0" - ]; - }) - sources."imurmurhash-0.1.4" - sources."indent-string-4.0.0" - sources."infer-owner-1.0.4" - sources."inflight-1.0.6" - sources."inherits-2.0.4" - sources."ini-1.3.8" - sources."internal-slot-1.0.4" - sources."interpret-2.2.0" - sources."ioredis-5.2.4" - sources."ip-2.0.0" - sources."ipaddr.js-1.9.1" - sources."irregular-plurals-3.3.0" - sources."is-arguments-1.1.1" - sources."is-arrayish-0.2.1" - sources."is-bigint-1.0.4" - sources."is-binary-path-2.1.0" - sources."is-boolean-object-1.1.2" - sources."is-buffer-2.0.5" - sources."is-callable-1.2.7" - sources."is-core-module-2.11.0" - sources."is-date-object-1.0.5" - sources."is-expression-4.0.0" - sources."is-extglob-2.1.1" - sources."is-fullwidth-code-point-3.0.0" - sources."is-generator-function-1.0.10" - sources."is-glob-4.0.3" - sources."is-lambda-1.0.1" - sources."is-negative-zero-2.0.2" - sources."is-number-7.0.0" - sources."is-number-object-1.0.7" - sources."is-path-inside-3.0.3" - sources."is-plain-obj-2.1.0" - sources."is-plain-object-2.0.4" - sources."is-promise-2.2.2" - sources."is-regex-1.1.4" - sources."is-shared-array-buffer-1.0.2" - sources."is-string-1.0.7" - sources."is-symbol-1.0.4" - sources."is-typed-array-1.1.10" - sources."is-unicode-supported-0.1.0" - sources."is-weakref-1.0.2" - sources."isarray-1.0.0" - sources."isbinaryfile-4.0.10" - sources."isexe-2.0.0" - sources."isobject-3.0.1" - sources."istanbul-lib-coverage-3.2.0" - (sources."istanbul-lib-instrument-5.2.1" // { - dependencies = [ - sources."semver-6.3.0" - ]; - }) - (sources."istanbul-lib-report-3.0.0" // { - dependencies = [ - sources."has-flag-4.0.0" - sources."make-dir-3.1.0" - sources."semver-6.3.0" - sources."supports-color-7.2.0" - ]; - }) - (sources."istanbul-lib-source-maps-3.0.6" // { - dependencies = [ - sources."istanbul-lib-coverage-2.0.5" - sources."rimraf-2.7.1" - ]; - }) - sources."istanbul-reports-3.1.5" - (sources."jake-10.8.5" // { - dependencies = [ - sources."ansi-styles-4.3.0" - sources."chalk-4.1.2" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."has-flag-4.0.0" - sources."supports-color-7.2.0" - ]; - }) - (sources."jest-worker-28.1.3" // { - dependencies = [ - sources."has-flag-4.0.0" - sources."supports-color-8.1.1" - ]; - }) - sources."js-base64-2.6.4" - sources."js-sdsl-4.2.0" - sources."js-stringify-1.0.2" - sources."js-tokens-4.0.0" - sources."js-yaml-3.14.1" - sources."jsesc-2.5.2" - sources."json-parse-even-better-errors-2.3.1" - sources."json-schema-traverse-0.4.1" - sources."json-stable-stringify-without-jsonify-1.0.1" - sources."json5-2.2.2" - sources."jsonfile-4.0.0" - sources."jstransformer-1.0.0" - sources."karma-6.4.1" - (sources."karma-chrome-launcher-3.1.1" // { - dependencies = [ - sources."which-1.3.1" - ]; - }) - sources."karma-coverage-istanbul-reporter-3.0.3" - sources."karma-htmlfile-reporter-0.3.8" - sources."karma-mocha-2.0.1" - sources."karma-verbose-reporter-0.0.8" - (sources."karma-webpack-5.0.0" // { - dependencies = [ - sources."webpack-merge-4.2.2" - ]; - }) - sources."kdbush-3.0.0" - sources."kind-of-6.0.3" - sources."klona-2.0.5" - sources."levn-0.4.1" - sources."lilconfig-2.0.6" - sources."lines-and-columns-1.2.4" - sources."loader-runner-4.3.0" - (sources."loader-utils-0.2.17" // { - dependencies = [ - sources."json5-0.5.1" - ]; - }) - sources."loadware-2.0.0" - sources."locate-path-3.0.0" - sources."lodash-4.17.21" - sources."lodash.debounce-4.0.8" - sources."lodash.defaults-4.2.0" - sources."lodash.isarguments-3.1.0" - sources."lodash.memoize-4.1.2" - sources."lodash.merge-4.6.2" - sources."lodash.uniq-4.5.0" - (sources."log-symbols-4.1.0" // { - dependencies = [ - sources."ansi-styles-4.3.0" - sources."chalk-4.1.2" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."has-flag-4.0.0" - sources."supports-color-7.2.0" - ]; - }) - sources."log4js-6.7.1" - sources."loupe-2.3.6" - sources."lru-cache-5.1.1" - sources."luxon-3.1.1" - sources."magic-string-0.25.9" - sources."make-dir-2.1.0" - (sources."make-fetch-happen-10.2.1" // { - dependencies = [ - sources."lru-cache-7.14.1" - ]; - }) - sources."map-obj-4.3.0" - sources."maplibre-gl-2.4.0" - (sources."md5-2.3.0" // { - dependencies = [ - sources."is-buffer-1.1.6" - ]; - }) - sources."mdn-data-2.0.14" - sources."media-typer-0.3.0" - sources."memoize-one-6.0.0" - (sources."meow-9.0.0" // { - dependencies = [ - sources."decamelize-1.2.0" - sources."type-fest-0.18.1" - ]; - }) - sources."merge-descriptors-1.0.1" - sources."merge-source-map-1.1.0" - sources."merge-stream-2.0.0" - (sources."method-override-3.0.0" // { - dependencies = [ - sources."debug-3.1.0" - sources."ms-2.0.0" - ]; - }) - sources."methods-1.1.2" - sources."micromatch-4.0.5" - sources."mime-2.6.0" - sources."mime-db-1.52.0" - sources."mime-types-2.1.35" - sources."min-indent-1.0.1" - (sources."mini-css-extract-plugin-2.7.2" // { - dependencies = [ - sources."ajv-8.11.2" - sources."ajv-keywords-5.1.0" - sources."json-schema-traverse-1.0.0" - sources."schema-utils-4.0.0" - ]; - }) - sources."minimatch-3.1.2" - sources."minimist-1.2.7" - (sources."minimist-options-4.1.0" // { - dependencies = [ - sources."is-plain-obj-1.1.0" - ]; - }) - (sources."minipass-3.3.6" // { - dependencies = [ - sources."yallist-4.0.0" - ]; - }) - sources."minipass-collect-1.0.2" - sources."minipass-fetch-2.1.2" - sources."minipass-flush-1.0.5" - sources."minipass-pipeline-1.2.4" - sources."minipass-sized-1.0.3" - (sources."minizlib-2.1.2" // { - dependencies = [ - sources."yallist-4.0.0" - ]; - }) - sources."mkdirp-0.5.6" - (sources."mocha-10.2.0" // { - dependencies = [ - sources."argparse-2.0.1" - sources."brace-expansion-2.0.1" - sources."escape-string-regexp-4.0.0" - sources."find-up-5.0.0" - (sources."glob-7.2.0" // { - dependencies = [ - sources."minimatch-3.1.2" - ]; - }) - sources."has-flag-4.0.0" - sources."js-yaml-4.1.0" - sources."locate-path-6.0.0" - sources."minimatch-5.0.1" - sources."ms-2.1.3" - sources."p-limit-3.1.0" - sources."p-locate-5.0.0" - sources."path-exists-4.0.0" - sources."supports-color-8.1.1" - sources."yargs-parser-20.2.4" - ]; - }) - sources."mrmime-1.0.1" - sources."ms-2.1.2" - sources."murmurhash-js-1.0.0" - sources."mz-2.7.0" - sources."nan-2.17.0" - sources."nanoid-3.3.3" - sources."natural-compare-1.4.0" - sources."negotiator-0.6.3" - sources."neo-async-2.6.2" - (sources."node-gyp-8.4.1" // { - dependencies = [ - sources."@npmcli/fs-1.1.1" - sources."@npmcli/move-file-1.1.2" - sources."@tootallnate/once-1.1.2" - sources."cacache-15.3.0" - sources."http-proxy-agent-4.0.1" - sources."lru-cache-6.0.0" - sources."make-fetch-happen-9.1.0" - sources."minipass-fetch-1.4.1" - sources."mkdirp-1.0.4" - sources."semver-7.3.8" - sources."socks-proxy-agent-6.2.1" - sources."ssri-8.0.1" - sources."unique-filename-1.1.1" - sources."unique-slug-2.0.2" - sources."yallist-4.0.0" - ]; - }) - sources."node-gyp-build-4.5.0" - sources."node-modules-regexp-1.0.0" - sources."node-releases-2.0.8" - (sources."node-sass-8.0.0" // { - dependencies = [ - sources."ansi-styles-4.3.0" - sources."chalk-4.1.2" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."has-flag-4.0.0" - sources."supports-color-7.2.0" - ]; - }) - sources."node-storage-shim-2.0.1" - sources."nopt-5.0.0" - (sources."normalize-package-data-3.0.3" // { - dependencies = [ - sources."lru-cache-6.0.0" - sources."semver-7.3.8" - sources."yallist-4.0.0" - ]; - }) - sources."normalize-path-3.0.0" - sources."normalize-range-0.1.2" - sources."normalize-url-6.1.0" - sources."npmlog-6.0.2" - sources."nth-check-2.1.1" - sources."object-assign-4.1.1" - sources."object-inspect-1.12.2" - sources."object-keys-1.1.1" - sources."object.assign-4.1.4" - sources."object.values-1.1.6" - sources."on-finished-2.4.1" - sources."on-headers-1.0.2" - sources."once-1.4.0" - sources."opener-1.5.2" - sources."optionator-0.9.1" - sources."p-limit-2.3.0" - sources."p-locate-3.0.0" - sources."p-map-4.0.0" - sources."p-try-2.2.0" - sources."parent-module-1.0.1" - sources."parse-json-5.2.0" - sources."parse5-6.0.1" - sources."parse5-htmlparser2-tree-adapter-6.0.1" - sources."parseurl-1.3.3" - sources."path-exists-3.0.0" - sources."path-is-absolute-1.0.1" - sources."path-key-3.1.1" - sources."path-parse-1.0.7" - sources."path-to-regexp-6.2.1" - sources."path-type-4.0.0" - sources."pathval-1.1.1" - sources."pbf-3.2.1" - sources."photoswipe-4.1.3" - sources."picocolors-1.0.0" - sources."picomatch-2.3.1" - sources."pify-4.0.1" - sources."pirates-4.0.5" - sources."pkg-dir-3.0.0" - sources."plur-4.0.0" - sources."pofile-1.1.4" - (sources."postcss-8.4.20" // { - dependencies = [ - sources."nanoid-3.3.4" - ]; - }) - sources."postcss-attribute-case-insensitive-5.0.2" - sources."postcss-calc-8.2.4" - sources."postcss-clamp-4.1.0" - sources."postcss-color-functional-notation-4.2.4" - sources."postcss-color-hex-alpha-8.0.4" - sources."postcss-color-rebeccapurple-7.1.1" - sources."postcss-colormin-5.3.0" - sources."postcss-convert-values-5.1.3" - sources."postcss-custom-media-8.0.2" - sources."postcss-custom-properties-12.1.11" - sources."postcss-custom-selectors-6.0.3" - sources."postcss-dir-pseudo-class-6.0.5" - sources."postcss-discard-comments-5.1.2" - sources."postcss-discard-duplicates-5.1.0" - sources."postcss-discard-empty-5.1.1" - sources."postcss-discard-overridden-5.1.0" - sources."postcss-double-position-gradients-3.1.2" - sources."postcss-env-function-4.0.6" - sources."postcss-focus-visible-6.0.4" - sources."postcss-focus-within-5.0.4" - sources."postcss-font-variant-5.0.0" - sources."postcss-gap-properties-3.0.5" - sources."postcss-image-set-function-4.0.7" - sources."postcss-import-15.1.0" - sources."postcss-initial-4.0.1" - sources."postcss-lab-function-4.2.1" - (sources."postcss-loader-7.0.2" // { - dependencies = [ - sources."lru-cache-6.0.0" - sources."semver-7.3.8" - sources."yallist-4.0.0" - ]; - }) - sources."postcss-logical-5.0.4" - sources."postcss-media-minmax-5.0.0" - sources."postcss-merge-longhand-5.1.7" - sources."postcss-merge-rules-5.1.3" - sources."postcss-minify-font-values-5.1.0" - sources."postcss-minify-gradients-5.1.1" - sources."postcss-minify-params-5.1.4" - sources."postcss-minify-selectors-5.2.1" - sources."postcss-modules-extract-imports-3.0.0" - sources."postcss-modules-local-by-default-4.0.0" - sources."postcss-modules-scope-3.0.0" - sources."postcss-modules-values-4.0.0" - sources."postcss-nesting-10.2.0" - sources."postcss-normalize-charset-5.1.0" - sources."postcss-normalize-display-values-5.1.0" - sources."postcss-normalize-positions-5.1.1" - sources."postcss-normalize-repeat-style-5.1.1" - sources."postcss-normalize-string-5.1.0" - sources."postcss-normalize-timing-functions-5.1.0" - sources."postcss-normalize-unicode-5.1.1" - sources."postcss-normalize-url-5.1.0" - sources."postcss-normalize-whitespace-5.1.1" - sources."postcss-opacity-percentage-1.1.3" - sources."postcss-ordered-values-5.1.3" - sources."postcss-overflow-shorthand-3.0.4" - sources."postcss-page-break-3.0.4" - sources."postcss-place-7.0.5" - sources."postcss-preset-env-7.8.3" - sources."postcss-pseudo-class-any-link-7.1.6" - sources."postcss-reduce-initial-5.1.1" - sources."postcss-reduce-transforms-5.1.0" - sources."postcss-replace-overflow-wrap-4.0.0" - sources."postcss-reporter-7.0.5" - sources."postcss-selector-not-6.0.1" - sources."postcss-selector-parser-6.0.11" - sources."postcss-svgo-5.1.0" - sources."postcss-unique-selectors-5.1.1" - (sources."postcss-url-10.1.3" // { - dependencies = [ - sources."make-dir-3.1.0" - sources."mime-2.5.2" - sources."minimatch-3.0.8" - sources."semver-6.3.0" - ]; - }) - sources."postcss-value-parser-4.2.0" - sources."potpack-1.0.2" - sources."prelude-ls-1.2.1" - sources."prettier-2.8.1" - sources."prettier-linter-helpers-1.0.0" - sources."process-nextick-args-2.0.1" - sources."promise-7.3.1" - sources."promise-inflight-1.0.1" - sources."promise-retry-2.0.1" - sources."protocol-buffers-schema-3.6.0" - sources."proxy-addr-2.0.7" - sources."pseudomap-1.0.2" - sources."pubsub-js-1.9.4" - sources."pug-3.0.2" - sources."pug-attrs-3.0.0" - sources."pug-code-gen-3.0.2" - sources."pug-error-2.0.0" - sources."pug-filters-4.0.0" - sources."pug-lexer-5.0.1" - sources."pug-linker-4.0.0" - sources."pug-load-3.0.0" - sources."pug-parser-6.0.0" - sources."pug-runtime-3.0.1" - sources."pug-strip-comments-2.0.0" - sources."pug-walk-2.0.0" - sources."punycode-2.1.1" - sources."qjobs-1.2.0" - sources."qs-6.11.0" - sources."queue-microtask-1.2.3" - sources."quick-lru-4.0.1" - sources."quickselect-2.0.0" - sources."random-bytes-1.0.0" - sources."randombytes-2.1.0" - sources."range-parser-1.2.1" - sources."raw-body-2.5.1" - (sources."read-cache-1.0.0" // { - dependencies = [ - sources."pify-2.3.0" - ]; - }) - (sources."read-pkg-5.2.0" // { - dependencies = [ - sources."hosted-git-info-2.8.9" - sources."normalize-package-data-2.5.0" - sources."type-fest-0.6.0" - ]; - }) - (sources."read-pkg-up-7.0.1" // { - dependencies = [ - sources."find-up-4.1.0" - sources."locate-path-5.0.0" - sources."p-locate-4.1.0" - sources."path-exists-4.0.0" - sources."type-fest-0.8.1" - ]; - }) - sources."readable-stream-3.6.0" - sources."readdirp-3.6.0" - sources."rechoir-0.7.1" - sources."redent-3.0.0" - sources."redis-errors-1.2.0" - sources."redis-parser-3.0.0" - sources."regenerate-1.4.2" - sources."regenerate-unicode-properties-10.1.0" - sources."regenerator-runtime-0.13.11" - sources."regenerator-transform-0.15.1" - sources."regex-parser-2.2.11" - sources."regexp.prototype.flags-1.4.3" - sources."regexpp-3.2.0" - sources."regexpu-core-5.2.2" - sources."regjsgen-0.7.1" - (sources."regjsparser-0.9.1" // { - dependencies = [ - sources."jsesc-0.5.0" - ]; - }) - sources."require-directory-2.1.1" - sources."require-from-string-2.0.2" - sources."requires-port-1.0.0" - sources."resolve-1.22.1" - sources."resolve-cwd-3.0.0" - sources."resolve-from-5.0.0" - sources."resolve-protobuf-schema-2.1.0" - (sources."resolve-url-loader-5.0.0" // { - dependencies = [ - sources."big.js-5.2.2" - sources."emojis-list-3.0.0" - sources."loader-utils-2.0.4" - ]; - }) - (sources."response-time-2.3.2" // { - dependencies = [ - sources."depd-1.1.2" - ]; - }) - sources."retry-0.12.0" - sources."reusify-1.0.4" - sources."rfdc-1.3.0" - sources."rimraf-3.0.2" - sources."rndm-1.2.0" - sources."run-parallel-1.2.0" - sources."rxjs-7.8.0" - sources."safe-buffer-5.2.1" - sources."safe-regex-test-1.0.0" - sources."safer-buffer-2.1.2" - sources."sass-1.57.1" - (sources."sass-embedded-1.57.1" // { - dependencies = [ - sources."has-flag-4.0.0" - sources."supports-color-8.1.1" - ]; - }) - sources."sass-embedded-darwin-arm64-1.57.1" - sources."sass-embedded-darwin-x64-1.57.1" - sources."sass-embedded-linux-arm-1.57.1" - sources."sass-embedded-linux-arm64-1.57.1" - sources."sass-embedded-linux-ia32-1.57.1" - sources."sass-embedded-linux-x64-1.57.1" - sources."sass-embedded-win32-ia32-1.57.1" - sources."sass-embedded-win32-x64-1.57.1" - (sources."sass-graph-4.0.1" // { - dependencies = [ - sources."cliui-8.0.1" - sources."yargs-17.6.2" - sources."yargs-parser-21.1.1" - ]; - }) - sources."sass-loader-13.2.0" - sources."schema-utils-2.7.1" - sources."screenfull-5.2.0" - (sources."scss-tokenizer-0.4.3" // { - dependencies = [ - sources."source-map-0.7.4" - ]; - }) - sources."semver-5.7.1" - (sources."send-0.18.0" // { - dependencies = [ - (sources."debug-2.6.9" // { - dependencies = [ - sources."ms-2.0.0" - ]; - }) - sources."mime-1.6.0" - sources."ms-2.1.3" - ]; - }) - sources."serialize-javascript-6.0.0" - (sources."serve-favicon-2.5.0" // { - dependencies = [ - sources."ms-2.1.1" - sources."safe-buffer-5.1.1" - ]; - }) - (sources."serve-index-1.9.1" // { - dependencies = [ - sources."debug-2.6.9" - sources."depd-1.1.2" - sources."http-errors-1.6.3" - sources."inherits-2.0.3" - sources."ms-2.0.0" - sources."setprototypeof-1.1.0" - sources."statuses-1.5.0" - ]; - }) - sources."serve-static-1.15.0" - sources."server-1.0.38" - sources."set-blocking-2.0.0" - sources."setprototypeof-1.2.0" - sources."shallow-clone-3.0.1" - sources."shebang-command-2.0.0" - sources."shebang-regex-3.0.0" - sources."side-channel-1.0.4" - sources."signal-exit-3.0.7" - sources."sirv-1.0.19" - sources."slash-2.0.0" - sources."smart-buffer-4.2.0" - sources."socket.io-4.5.4" - sources."socket.io-adapter-2.4.0" - sources."socket.io-parser-4.2.1" - sources."sockette-2.0.6" - sources."socks-2.7.1" - sources."socks-proxy-agent-7.0.0" - sources."source-list-map-2.0.1" - sources."source-map-0.6.1" - sources."source-map-js-1.0.2" - sources."source-map-support-0.5.21" - sources."sourcemap-codec-1.4.8" - sources."spdx-correct-3.1.1" - sources."spdx-exceptions-2.3.0" - sources."spdx-expression-parse-3.0.1" - sources."spdx-license-ids-3.0.12" - sources."sprintf-js-1.0.3" - sources."ssri-9.0.1" - sources."stable-0.1.8" - sources."standard-as-callback-2.1.0" - sources."statuses-2.0.1" - (sources."stdout-stream-1.4.1" // { - dependencies = [ - sources."readable-stream-2.3.7" - sources."safe-buffer-5.1.2" - sources."string_decoder-1.1.1" - ]; - }) - sources."streamroller-3.1.3" - sources."string-width-4.2.3" - sources."string.prototype.trimend-1.0.6" - sources."string.prototype.trimstart-1.0.6" - sources."string_decoder-1.3.0" - sources."strip-ansi-6.0.1" - sources."strip-bom-3.0.0" - sources."strip-indent-3.0.0" - sources."strip-json-comments-3.1.1" - sources."style-loader-3.3.1" - sources."stylehacks-5.1.1" - sources."supercluster-7.1.5" - sources."supports-color-5.5.0" - (sources."supports-hyperlinks-2.3.0" // { - dependencies = [ - sources."has-flag-4.0.0" - sources."supports-color-7.2.0" - ]; - }) - sources."supports-preserve-symlinks-flag-1.0.0" - sources."svg-url-loader-8.0.0" - (sources."svgo-2.8.0" // { - dependencies = [ - sources."commander-7.2.0" - ]; - }) - sources."tapable-2.2.1" - (sources."tar-6.1.13" // { - dependencies = [ - sources."minipass-4.0.0" - sources."mkdirp-1.0.4" - sources."yallist-4.0.0" - ]; - }) - (sources."terser-5.16.1" // { - dependencies = [ - sources."acorn-8.8.1" - sources."commander-2.20.3" - ]; - }) - (sources."terser-webpack-plugin-5.3.6" // { - dependencies = [ - sources."has-flag-4.0.0" - sources."jest-worker-27.5.1" - sources."schema-utils-3.1.1" - sources."supports-color-8.1.1" - ]; - }) - sources."test-exclude-6.0.0" - sources."text-table-0.2.0" - sources."thenby-1.3.4" - sources."thenify-3.3.1" - sources."thenify-all-1.6.0" - sources."tinyqueue-2.0.3" - sources."tmp-0.2.1" - sources."to-fast-properties-2.0.0" - sources."to-regex-range-5.0.1" - sources."toidentifier-1.0.1" - sources."token-stream-1.0.0" - sources."totalist-1.1.0" - sources."trim-newlines-3.0.1" - sources."true-case-path-2.2.1" - (sources."tsconfig-paths-3.14.1" // { - dependencies = [ - sources."json5-1.0.1" - ]; - }) - sources."tslib-2.4.1" - sources."tsscmp-1.0.6" - sources."type-check-0.4.0" - sources."type-detect-4.0.8" - sources."type-fest-0.20.2" - sources."type-is-1.6.18" - sources."ua-parser-js-0.7.32" - sources."uglify-js-3.17.4" - sources."uid-safe-2.1.5" - sources."unbox-primitive-1.0.2" - sources."unicode-canonical-property-names-ecmascript-2.0.0" - sources."unicode-match-property-ecmascript-2.0.0" - sources."unicode-match-property-value-ecmascript-2.1.0" - sources."unicode-property-aliases-ecmascript-2.1.0" - sources."unique-filename-2.0.1" - sources."unique-slug-3.0.0" - sources."universalify-0.1.2" - sources."unpipe-1.0.0" - sources."update-browserslist-db-1.0.10" - sources."upload-files-express-0.4.0" - sources."uri-js-4.4.1" - (sources."url-loader-4.1.1" // { - dependencies = [ - sources."big.js-5.2.2" - sources."emojis-list-3.0.0" - sources."loader-utils-2.0.4" - sources."schema-utils-3.1.1" - ]; - }) - sources."utf-8-validate-5.0.10" - sources."util-0.12.5" - sources."util-deprecate-1.0.2" - sources."utils-merge-1.0.1" - sources."validate-npm-package-license-3.0.4" - sources."vary-1.1.2" - sources."vlq-0.2.3" - sources."void-elements-3.1.0" - sources."vt-pbf-3.1.3" - (sources."vue-2.7.14" // { - dependencies = [ - sources."@vue/compiler-sfc-2.7.14" - ]; - }) - (sources."vue-eslint-parser-9.1.0" // { - dependencies = [ - sources."eslint-scope-7.1.1" - sources."eslint-visitor-keys-3.3.0" - sources."estraverse-5.3.0" - sources."lru-cache-6.0.0" - sources."semver-7.3.8" - sources."yallist-4.0.0" - ]; - }) - sources."vue-fullscreen-2.6.1" - sources."vue-gettext-2.1.12" - sources."vue-hot-reload-api-2.3.4" - sources."vue-infinite-scroll-2.0.2" - (sources."vue-loader-15.10.1" // { - dependencies = [ - sources."big.js-5.2.2" - sources."emojis-list-3.0.0" - sources."json5-1.0.1" - sources."loader-utils-1.4.2" - ]; - }) - sources."vue-loader-plugin-1.3.0" - (sources."vue-luxon-0.10.0" // { - dependencies = [ - sources."luxon-1.28.0" - ]; - }) - sources."vue-router-3.6.5" - (sources."vue-style-loader-4.1.3" // { - dependencies = [ - sources."big.js-5.2.2" - sources."emojis-list-3.0.0" - sources."json5-1.0.1" - sources."loader-utils-1.4.2" - ]; - }) - sources."vue-template-compiler-2.7.14" - sources."vue-template-es2015-compiler-1.9.1" - sources."vue2-filters-0.14.0" - sources."vuetify-1.5.24" - sources."walk-2.3.15" - sources."watchpack-2.4.0" - (sources."webpack-5.75.0" // { - dependencies = [ - sources."@types/estree-0.0.51" - sources."acorn-8.8.1" - sources."schema-utils-3.1.1" - ]; - }) - (sources."webpack-bundle-analyzer-4.7.0" // { - dependencies = [ - sources."acorn-8.8.1" - sources."ansi-styles-4.3.0" - sources."chalk-4.1.2" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - sources."commander-7.2.0" - sources."has-flag-4.0.0" - sources."supports-color-7.2.0" - sources."ws-7.5.9" - ]; - }) - (sources."webpack-cli-4.10.0" // { - dependencies = [ - sources."commander-7.2.0" - ]; - }) - sources."webpack-hot-middleware-2.25.3" - (sources."webpack-manifest-plugin-5.0.0" // { - dependencies = [ - sources."webpack-sources-2.3.1" - ]; - }) - sources."webpack-md5-hash-0.0.6" - sources."webpack-merge-5.8.0" - sources."webpack-sources-3.2.3" - sources."which-2.0.2" - sources."which-boxed-primitive-1.0.2" - sources."which-typed-array-1.1.9" - sources."wide-align-1.1.5" - sources."wildcard-2.0.0" - sources."with-7.0.2" - sources."word-wrap-1.2.3" - sources."wordwrap-1.0.0" - sources."workerpool-6.2.1" - (sources."wrap-ansi-7.0.0" // { - dependencies = [ - sources."ansi-styles-4.3.0" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" - ]; - }) - sources."wrappy-1.0.2" - sources."ws-8.2.3" - sources."xml-name-validator-4.0.0" - sources."xmlbuilder-10.1.1" - sources."xxhashjs-0.2.2" - sources."y18n-5.0.8" - sources."yallist-3.1.1" - sources."yaml-1.10.2" - sources."yargs-16.2.0" - sources."yargs-parser-20.2.9" - (sources."yargs-unparser-2.0.0" // { - dependencies = [ - sources."camelcase-6.3.0" - ]; - }) - sources."yocto-queue-0.1.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "AI-Powered Photos App"; - license = "AGPL-3.0"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; pkg = nodeEnv.buildNodePackage { name = "pkg"; packageName = "pkg"; @@ -132178,7 +128937,7 @@ in sources."escalade-3.1.1" sources."expand-template-2.0.3" sources."fast-glob-3.2.12" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fill-range-7.0.1" sources."from2-2.3.0" sources."fs-constants-1.0.0" @@ -132237,7 +128996,7 @@ in sources."semver-5.7.1" ]; }) - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."node-notifier-10.0.1" sources."npmlog-4.1.2" sources."number-is-nan-1.0.1" @@ -132459,7 +129218,7 @@ in ]; }) sources."netmask-2.0.2" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."normalize-path-3.0.0" (sources."nssocket-0.6.0" // { dependencies = [ @@ -132521,7 +129280,7 @@ in sources."string_decoder-0.10.31" sources."supports-color-7.2.0" sources."supports-preserve-symlinks-flag-1.0.0" - sources."systeminformation-5.16.8" + sources."systeminformation-5.17.3" sources."to-regex-range-5.0.1" sources."toidentifier-1.0.1" sources."tslib-2.4.1" @@ -132558,10 +129317,10 @@ in pnpm = nodeEnv.buildNodePackage { name = "pnpm"; packageName = "pnpm"; - version = "7.24.3"; + version = "7.25.0"; src = fetchurl { - url = "https://registry.npmjs.org/pnpm/-/pnpm-7.24.3.tgz"; - sha512 = "0fpP1l16xOY8YwsATSLodNNBa7bitV1cNY475fioVLR7Thx5tkCtdp3xIlvZYX8ZoPtedLhGn3fICC409HQSNQ=="; + url = "https://registry.npmjs.org/pnpm/-/pnpm-7.25.0.tgz"; + sha512 = "FGFQUON8kJ6ma39elJ8lyD8wPIfgp3opGJD9sX0TgIJk4zSr556qCgC8AN+3BFHe4yuRkEauf4JVLW2RKyyEcA=="; }; buildInputs = globalBuildInputs; meta = { @@ -132604,10 +129363,10 @@ in postcss = nodeEnv.buildNodePackage { name = "postcss"; packageName = "postcss"; - version = "8.4.20"; + version = "8.4.21"; src = fetchurl { - url = "https://registry.npmjs.org/postcss/-/postcss-8.4.20.tgz"; - sha512 = "6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g=="; + url = "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz"; + sha512 = "tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg=="; }; dependencies = [ sources."nanoid-3.3.4" @@ -132640,23 +129399,23 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.24" - sources."@swc/core-darwin-arm64-1.3.24" - sources."@swc/core-darwin-x64-1.3.24" - sources."@swc/core-linux-arm-gnueabihf-1.3.24" - sources."@swc/core-linux-arm64-gnu-1.3.24" - sources."@swc/core-linux-arm64-musl-1.3.24" - sources."@swc/core-linux-x64-gnu-1.3.24" - sources."@swc/core-linux-x64-musl-1.3.24" - sources."@swc/core-win32-arm64-msvc-1.3.24" - sources."@swc/core-win32-ia32-msvc-1.3.24" - sources."@swc/core-win32-x64-msvc-1.3.24" - sources."@swc/wasm-1.3.24" + sources."@swc/core-1.3.27" + sources."@swc/core-darwin-arm64-1.3.27" + sources."@swc/core-darwin-x64-1.3.27" + sources."@swc/core-linux-arm-gnueabihf-1.3.27" + sources."@swc/core-linux-arm64-gnu-1.3.27" + sources."@swc/core-linux-arm64-musl-1.3.27" + sources."@swc/core-linux-x64-gnu-1.3.27" + sources."@swc/core-linux-x64-musl-1.3.27" + sources."@swc/core-win32-arm64-msvc-1.3.27" + sources."@swc/core-win32-ia32-msvc-1.3.27" + sources."@swc/core-win32-x64-msvc-1.3.27" + sources."@swc/wasm-1.3.27" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."acorn-8.8.1" sources."acorn-walk-8.2.0" sources."ansi-regex-5.0.1" @@ -132676,7 +129435,7 @@ in sources."emoji-regex-8.0.0" sources."escalade-3.1.1" sources."fast-glob-3.2.12" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fill-range-7.0.1" sources."fs-extra-11.1.0" sources."fsevents-2.3.2" @@ -132706,7 +129465,7 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-2.3.0" - sources."postcss-8.4.20" + sources."postcss-8.4.21" sources."postcss-load-config-4.0.1" sources."postcss-reporter-7.0.5" sources."pretty-hrtime-1.0.3" @@ -132728,7 +129487,7 @@ in sources."v8-compile-cache-lib-3.0.1" sources."wrap-ansi-7.0.0" sources."y18n-5.0.8" - sources."yaml-2.2.0" + sources."yaml-2.2.1" sources."yargs-17.6.2" sources."yargs-parser-21.1.1" sources."yn-3.1.1" @@ -132771,7 +129530,7 @@ in sources."minimist-1.2.7" sources."mkdirp-classic-0.5.3" sources."napi-build-utils-1.0.2" - sources."node-abi-3.30.0" + sources."node-abi-3.31.0" sources."once-1.4.0" sources."pump-3.0.0" sources."rc-1.2.8" @@ -132802,10 +129561,10 @@ in prettier = nodeEnv.buildNodePackage { name = "prettier"; packageName = "prettier"; - version = "2.8.1"; + version = "2.8.3"; src = fetchurl { - url = "https://registry.npmjs.org/prettier/-/prettier-2.8.1.tgz"; - sha512 = "lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg=="; + url = "https://registry.npmjs.org/prettier/-/prettier-2.8.3.tgz"; + sha512 = "tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw=="; }; buildInputs = globalBuildInputs; meta = { @@ -132835,7 +129594,7 @@ in sources."minimist-1.2.7" sources."nanolru-1.0.0" sources."path-parse-1.0.7" - sources."prettier-2.8.1" + sources."prettier-2.8.3" sources."resolve-1.22.1" sources."supports-color-8.1.1" sources."supports-preserve-symlinks-flag-1.0.0" @@ -132877,13 +129636,13 @@ in prisma = nodeEnv.buildNodePackage { name = "prisma"; packageName = "prisma"; - version = "4.8.0"; + version = "4.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/prisma/-/prisma-4.8.0.tgz"; - sha512 = "DWIhxvxt8f4h6MDd35mz7BJff+fu7HItW3WPDIEpCR3RzcOWyiHBbLQW5/DOgmf+pRLTjwXQob7kuTZVYUAw5w=="; + url = "https://registry.npmjs.org/prisma/-/prisma-4.9.0.tgz"; + sha512 = "bS96oZ5oDFXYgoF2l7PJ3Mp1wWWfLOo8B/jAfbA2Pn0Wm5Z/owBHzaMQKS3i1CzVBDWWPVnOohmbJmjvkcHS5w=="; }; dependencies = [ - sources."@prisma/engines-4.8.0" + sources."@prisma/engines-4.9.0" ]; buildInputs = globalBuildInputs; meta = { @@ -132898,16 +129657,16 @@ in "@prisma/language-server" = nodeEnv.buildNodePackage { name = "_at_prisma_slash_language-server"; packageName = "@prisma/language-server"; - version = "4.8.0"; + version = "4.9.0"; src = fetchurl { - url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-4.8.0.tgz"; - sha512 = "R9pvIqFrFjJdpstDiJAJ9RK0bt4M+WI7Nhd+VGXguzJO3CdGzrHs7U+FWB2B889uOH4ypN3Hs3cosD5voCDyJg=="; + url = "https://registry.npmjs.org/@prisma/language-server/-/language-server-4.9.0.tgz"; + sha512 = "Q1KS0GoQG0284hI5CqAdfyq+oLKC7SnB9N6g6ldA7Jqs96rlFVe2Te0UW8bvA9AyG3uljmB0MjlEQDLWPFo8+A=="; }; dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.5" - sources."@babel/core-7.20.7" + sources."@babel/compat-data-7.20.10" + sources."@babel/core-7.20.12" (sources."@babel/generator-7.20.7" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" @@ -132918,7 +129677,7 @@ in sources."@babel/helper-function-name-7.19.0" sources."@babel/helper-hoist-variables-7.18.6" sources."@babel/helper-module-imports-7.18.6" - sources."@babel/helper-module-transforms-7.20.7" + sources."@babel/helper-module-transforms-7.20.11" sources."@babel/helper-simple-access-7.20.2" sources."@babel/helper-split-export-declaration-7.18.6" sources."@babel/helper-string-parser-7.19.4" @@ -132928,7 +129687,7 @@ in sources."@babel/highlight-7.18.6" sources."@babel/parser-7.20.7" sources."@babel/template-7.20.7" - sources."@babel/traverse-7.20.8" + sources."@babel/traverse-7.20.12" sources."@babel/types-7.20.7" sources."@istanbuljs/load-nyc-config-1.1.0" sources."@istanbuljs/schema-0.1.3" @@ -132937,7 +129696,7 @@ in sources."@jridgewell/set-array-1.1.2" sources."@jridgewell/sourcemap-codec-1.4.14" sources."@jridgewell/trace-mapping-0.3.17" - sources."@prisma/prisma-fmt-wasm-4.8.0-61.d6e67a83f971b175a593ccc12e15c4a757f93ffe" + sources."@prisma/prisma-fmt-wasm-4.9.0-42.ceb5c99003b99c9ee2c1d2e618e359c14aef2ea5" sources."@types/js-levenshtein-1.1.1" sources."aggregate-error-3.1.0" sources."ansi-regex-5.0.1" @@ -132950,7 +129709,7 @@ in sources."browserslist-4.21.4" sources."caching-transform-4.0.0" sources."camelcase-5.3.1" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" sources."chalk-2.4.2" sources."clean-stack-2.2.0" sources."cliui-6.0.0" @@ -133008,8 +129767,8 @@ in sources."js-tokens-4.0.0" sources."js-yaml-3.14.1" sources."jsesc-2.5.2" - sources."json5-2.2.2" - sources."klona-2.0.5" + sources."json5-2.2.3" + sources."klona-2.0.6" sources."locate-path-5.0.0" sources."lodash.flattendeep-4.4.0" sources."lru-cache-5.1.1" @@ -133419,7 +130178,7 @@ in sources."vscode-jsonrpc-8.0.2" sources."vscode-languageserver-8.0.2" sources."vscode-languageserver-protocol-3.17.2" - sources."vscode-languageserver-textdocument-1.0.8" + sources."vscode-languageserver-textdocument-1.0.9" sources."vscode-languageserver-types-3.17.2" sources."vscode-uri-2.1.2" sources."which-2.0.2" @@ -133536,7 +130295,7 @@ in sources."ip-2.0.0" sources."is-docker-2.2.1" sources."is-wsl-2.2.0" - sources."js-base64-3.7.3" + sources."js-base64-3.7.4" sources."json-buffer-3.0.0" sources."jsonfile-6.1.0" sources."keyv-3.1.0" @@ -133550,7 +130309,7 @@ in sources."ms-2.1.2" sources."node-abort-controller-3.0.1" sources."normalize-url-4.5.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."once-1.4.0" sources."open-8.4.0" sources."p-cancelable-1.1.0" @@ -133596,10 +130355,10 @@ in pyright = nodeEnv.buildNodePackage { name = "pyright"; packageName = "pyright"; - version = "1.1.285"; + version = "1.1.290"; src = fetchurl { - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.285.tgz"; - sha512 = "z+KJyaguJyVfEVxzVlyannjYtD13LGMdGTcQJuiq975f1nTHZ4oSwd9SrAZWP+rDHW/NVQCOz0CBlsMeNA/2sg=="; + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.290.tgz"; + sha512 = "iHT8G2+R/GUfYWxxd4ud5Lj/0H0bE1eWVR0avKKgPtkBeLkUz3sorjKpfuaJdsuJNrunzMtZsmYPD366t39klg=="; }; buildInputs = globalBuildInputs; meta = { @@ -133614,223 +130373,163 @@ in quicktype = nodeEnv.buildNodePackage { name = "quicktype"; packageName = "quicktype"; - version = "15.1.0"; + version = "20.0.26"; src = fetchurl { - url = "https://registry.npmjs.org/quicktype/-/quicktype-15.1.0.tgz"; - sha512 = "hhOXV+XxOlA8UPmjRLEEjkfOcGvKiIXE5dlxv6byz+zx7BHXsYXKZGjgkDweJYf7ta0cGixKlo1qJdZSQOljiA=="; + url = "https://registry.npmjs.org/quicktype/-/quicktype-20.0.26.tgz"; + sha512 = "q0pOSWfVgGEATW96fvbAOEe9od48EqMCGpv86XNt9aznVngdB4eJRyPK1Z0Jvl10/cWDze2bvzPT2b+LChSfAQ=="; }; dependencies = [ - sources."@mark.probst/typescript-json-schema-0.32.0" - sources."@mark.probst/unicode-properties-1.1.0" - sources."acorn-7.4.1" - sources."ansi-regex-3.0.1" - sources."ansi-styles-3.2.1" - sources."array-back-2.0.0" + sources."@cspotcode/source-map-support-0.8.1" + sources."@glideapps/ts-necessities-2.1.2" + sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/sourcemap-codec-1.4.14" + sources."@jridgewell/trace-mapping-0.3.9" + sources."@mark.probst/typescript-json-schema-0.55.0" + sources."@swc/core-1.3.27" + sources."@swc/core-darwin-arm64-1.3.27" + sources."@swc/core-darwin-x64-1.3.27" + sources."@swc/core-linux-arm-gnueabihf-1.3.27" + sources."@swc/core-linux-arm64-gnu-1.3.27" + sources."@swc/core-linux-arm64-musl-1.3.27" + sources."@swc/core-linux-x64-gnu-1.3.27" + sources."@swc/core-linux-x64-musl-1.3.27" + sources."@swc/core-win32-arm64-msvc-1.3.27" + sources."@swc/core-win32-ia32-msvc-1.3.27" + sources."@swc/core-win32-x64-msvc-1.3.27" + sources."@swc/wasm-1.3.27" + sources."@tsconfig/node10-1.0.9" + sources."@tsconfig/node12-1.0.11" + sources."@tsconfig/node14-1.0.3" + sources."@tsconfig/node16-1.0.3" + sources."@types/json-schema-7.0.11" + sources."@types/node-16.18.11" + sources."@types/urijs-1.19.19" + sources."abort-controller-3.0.0" + sources."acorn-8.8.1" + sources."acorn-walk-8.2.0" + sources."ansi-regex-5.0.1" + sources."ansi-styles-4.3.0" + sources."arg-4.1.3" + sources."array-back-3.1.0" sources."balanced-match-1.0.2" + sources."base64-js-1.5.1" sources."brace-expansion-1.1.11" - sources."brfs-1.6.1" - sources."browser-or-node-1.3.0" - sources."buffer-equal-0.0.1" - sources."buffer-from-1.1.2" - sources."camelcase-5.3.1" - sources."chalk-2.4.2" - sources."cliui-4.1.0" - sources."code-point-at-1.1.0" + sources."browser-or-node-2.1.1" + sources."buffer-6.0.3" + sources."chalk-4.1.2" + sources."cliui-8.0.1" sources."collection-utils-1.0.1" - sources."color-convert-1.9.3" - sources."color-name-1.1.3" - sources."command-line-args-4.0.7" - sources."command-line-usage-5.0.5" - sources."concat-map-0.0.1" - sources."concat-stream-1.6.2" - sources."convert-source-map-1.9.0" - sources."core-util-is-1.0.3" - sources."cross-spawn-6.0.5" - sources."decamelize-1.2.0" - sources."deep-extend-0.6.0" - sources."deep-is-0.1.4" - sources."duplexer2-0.1.4" - sources."encoding-0.1.13" - sources."end-of-stream-1.4.4" - sources."escape-string-regexp-1.0.5" - sources."escodegen-1.9.1" - sources."esprima-3.1.3" - sources."estraverse-4.3.0" - sources."esutils-2.0.3" - sources."execa-1.0.0" - sources."falafel-2.2.5" - sources."fast-levenshtein-2.0.6" - (sources."find-replace-1.0.3" // { + sources."color-convert-2.0.1" + sources."color-name-1.1.4" + sources."command-line-args-5.2.1" + (sources."command-line-usage-6.1.3" // { dependencies = [ - sources."array-back-1.0.4" + sources."ansi-styles-3.2.1" + sources."array-back-4.0.2" + sources."chalk-2.4.2" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."has-flag-3.0.0" + sources."supports-color-5.5.0" + sources."typical-5.2.0" ]; }) - sources."find-up-3.0.0" + sources."concat-map-0.0.1" + sources."create-require-1.1.1" + sources."cross-fetch-3.1.5" + sources."deep-extend-0.6.0" + sources."diff-4.0.2" + sources."emoji-regex-8.0.0" + sources."encoding-0.1.13" + sources."escalade-3.1.1" + sources."escape-string-regexp-1.0.5" + sources."event-target-shim-5.0.1" + sources."events-3.3.0" + sources."find-replace-3.0.0" sources."fs.realpath-1.0.0" - sources."function-bind-1.1.1" - sources."get-caller-file-1.0.3" - sources."get-stream-4.1.0" - sources."glob-7.1.7" + sources."get-caller-file-2.0.5" + sources."glob-7.2.3" sources."graphql-0.11.7" - sources."has-1.0.3" - sources."has-flag-3.0.0" + sources."has-flag-4.0.0" sources."iconv-lite-0.6.3" + sources."ieee754-1.2.1" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."invert-kv-2.0.0" - sources."is-core-module-2.11.0" - sources."is-fullwidth-code-point-1.0.0" - sources."is-stream-1.1.0" + sources."is-fullwidth-code-point-3.0.0" sources."is-url-1.2.4" - sources."isarray-2.0.5" - sources."isexe-2.0.0" - (sources."isomorphic-fetch-2.2.1" // { - dependencies = [ - sources."node-fetch-1.7.3" - ]; - }) sources."iterall-1.1.3" sources."js-base64-2.6.4" - sources."json-stable-stringify-1.0.2" - sources."jsonify-0.0.1" - sources."lcid-2.0.0" - sources."levn-0.3.0" - sources."locate-path-3.0.0" sources."lodash-4.17.21" - sources."lodash.padend-4.6.1" - sources."magic-string-0.22.5" - sources."map-age-cleaner-0.1.3" - sources."mem-4.3.0" - (sources."merge-source-map-1.0.4" // { - dependencies = [ - sources."source-map-0.5.7" - ]; - }) - sources."mimic-fn-2.1.0" + sources."lodash.camelcase-4.3.0" + sources."make-error-1.3.6" sources."minimatch-3.1.2" - sources."minimist-1.2.7" sources."moment-2.29.4" - sources."nice-try-1.0.5" sources."node-fetch-2.6.7" - sources."npm-run-path-2.0.2" - sources."number-is-nan-1.0.1" - sources."object-inspect-1.4.1" sources."once-1.4.0" - sources."optionator-0.8.3" - sources."os-locale-3.1.0" - sources."p-defer-1.0.0" - sources."p-finally-1.0.0" - sources."p-is-promise-2.1.0" - sources."p-limit-2.3.0" - sources."p-locate-3.0.0" - sources."p-try-2.2.0" sources."pako-1.0.11" - sources."path-exists-3.0.0" + sources."path-equal-1.2.5" sources."path-is-absolute-1.0.1" - sources."path-key-2.0.1" - sources."path-parse-1.0.7" - sources."pluralize-7.0.0" - sources."prelude-ls-1.1.2" - sources."process-nextick-args-2.0.1" - sources."pump-3.0.0" - sources."quote-stream-1.0.2" - (sources."readable-stream-2.3.0" // { - dependencies = [ - sources."isarray-1.0.0" - sources."process-nextick-args-1.0.7" - sources."string_decoder-1.0.3" - ]; - }) - sources."reduce-flatten-1.0.1" + sources."pluralize-8.0.0" + sources."process-0.11.10" + sources."quicktype-core-20.0.26" + sources."quicktype-graphql-input-20.0.26" + sources."quicktype-typescript-input-20.0.26" + sources."readable-stream-4.3.0" + sources."reduce-flatten-2.0.0" sources."require-directory-2.1.1" - sources."require-main-filename-1.0.1" - sources."resolve-1.22.1" - sources."safe-buffer-5.1.2" + sources."safe-buffer-5.2.1" + sources."safe-stable-stringify-2.4.2" sources."safer-buffer-2.1.2" - sources."semver-5.7.1" - sources."set-blocking-2.0.0" - sources."shallow-copy-0.0.1" - sources."shebang-command-1.2.0" - sources."shebang-regex-1.0.0" - sources."signal-exit-3.0.7" - sources."source-map-0.6.1" - (sources."static-eval-2.1.0" // { - dependencies = [ - sources."escodegen-1.14.3" - sources."esprima-4.0.1" - ]; - }) - (sources."static-module-2.2.5" // { - dependencies = [ - sources."isarray-1.0.0" - sources."readable-stream-2.3.7" - ]; - }) sources."stream-chain-2.2.5" - sources."stream-json-1.1.3" - sources."string-to-stream-1.1.1" - (sources."string-width-2.1.1" // { + sources."stream-json-1.7.5" + (sources."string-to-stream-3.0.1" // { dependencies = [ - sources."is-fullwidth-code-point-2.0.0" + sources."readable-stream-3.6.0" ]; }) - sources."string_decoder-1.1.1" - sources."strip-ansi-4.0.0" - sources."strip-eof-1.0.0" - sources."supports-color-5.5.0" - sources."supports-preserve-symlinks-flag-1.0.0" - sources."table-layout-0.4.5" - (sources."test-value-2.1.0" // { + sources."string-width-4.2.3" + sources."string_decoder-1.3.0" + sources."strip-ansi-6.0.1" + sources."supports-color-7.2.0" + (sources."table-layout-1.0.2" // { dependencies = [ - sources."array-back-1.0.4" - ]; - }) - (sources."through2-2.0.5" // { - dependencies = [ - sources."isarray-1.0.0" - sources."readable-stream-2.3.7" + sources."array-back-4.0.2" + sources."typical-5.2.0" ]; }) sources."tiny-inflate-1.0.3" sources."tr46-0.0.3" - sources."type-check-0.3.2" - sources."typedarray-0.0.6" - sources."typescript-3.2.4" - sources."typical-2.6.1" - (sources."unicode-trie-0.3.1" // { + sources."ts-node-10.9.1" + sources."typescript-4.9.4" + sources."typical-4.0.0" + sources."unicode-properties-1.4.1" + (sources."unicode-trie-2.0.0" // { dependencies = [ sources."pako-0.2.9" ]; }) sources."urijs-1.19.11" sources."util-deprecate-1.0.2" - sources."uuid-3.4.0" - sources."vlq-0.2.3" + sources."v8-compile-cache-lib-3.0.1" sources."webidl-conversions-3.0.1" - sources."whatwg-fetch-3.6.2" sources."whatwg-url-5.0.0" - sources."which-1.3.1" - sources."which-module-2.0.0" - sources."word-wrap-1.2.3" sources."wordwrap-1.0.0" - sources."wordwrapjs-3.0.0" - (sources."wrap-ansi-2.1.0" // { + (sources."wordwrapjs-4.0.1" // { dependencies = [ - sources."ansi-regex-2.1.1" - sources."string-width-1.0.2" - sources."strip-ansi-3.0.1" + sources."typical-5.2.0" ]; }) + sources."wrap-ansi-7.0.0" sources."wrappy-1.0.2" - sources."xtend-4.0.2" - sources."y18n-4.0.3" - sources."yaml-1.10.2" - sources."yargs-12.0.5" - sources."yargs-parser-11.1.1" + sources."y18n-5.0.8" + sources."yaml-2.2.1" + sources."yargs-17.6.2" + sources."yargs-parser-21.1.1" + sources."yn-3.1.1" ]; buildInputs = globalBuildInputs; meta = { - description = "![](https://raw.githubusercontent.com/quicktype/quicktype/master/quicktype-logo.svg?sanitize=true)"; + description = "![](https://raw.githubusercontent.com/quicktype/quicktype/master/media/quicktype-logo.svg?sanitize=true)"; homepage = "https://github.com/quicktype/quicktype#readme"; license = "Apache-2.0"; }; @@ -133858,9 +130557,9 @@ in sources."colors-0.6.2" sources."concat-map-0.0.1" sources."cycle-1.0.3" - sources."deep-equal-2.1.0" + sources."deep-equal-2.2.0" sources."define-properties-1.1.4" - sources."es-get-iterator-1.1.2" + sources."es-get-iterator-1.1.3" sources."escape-string-regexp-1.0.5" sources."eyes-0.1.8" sources."for-each-0.3.3" @@ -133879,7 +130578,9 @@ in sources."i-0.3.7" sources."inflight-1.0.6" sources."inherits-2.0.4" + sources."internal-slot-1.0.4" sources."is-arguments-1.1.1" + sources."is-array-buffer-3.0.1" sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" @@ -133888,6 +130589,7 @@ in sources."is-number-object-1.0.7" sources."is-regex-1.1.4" sources."is-set-2.0.2" + sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" sources."is-typed-array-1.1.10" @@ -133900,7 +130602,7 @@ in sources."mkdirp-0.5.6" sources."mute-stream-0.0.8" sources."ncp-0.4.2" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."object-is-1.1.5" sources."object-keys-1.1.1" sources."object.assign-4.1.4" @@ -133915,6 +130617,7 @@ in sources."semver-5.7.1" sources."side-channel-1.0.4" sources."stack-trace-0.0.10" + sources."stop-iteration-iterator-1.0.0" sources."strip-ansi-3.0.1" sources."supports-color-2.0.0" sources."utile-0.2.1" @@ -133950,8 +130653,8 @@ in sources."@ampproject/remapping-2.2.0" sources."@babel/cli-7.20.7" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.5" - (sources."@babel/core-7.20.7" // { + sources."@babel/compat-data-7.20.10" + (sources."@babel/core-7.20.12" // { dependencies = [ sources."semver-6.3.0" ]; @@ -133968,7 +130671,7 @@ in sources."semver-6.3.0" ]; }) - sources."@babel/helper-create-class-features-plugin-7.20.7" + sources."@babel/helper-create-class-features-plugin-7.20.12" sources."@babel/helper-create-regexp-features-plugin-7.20.5" (sources."@babel/helper-define-polyfill-provider-0.3.3" // { dependencies = [ @@ -133981,7 +130684,7 @@ in sources."@babel/helper-hoist-variables-7.18.6" sources."@babel/helper-member-expression-to-functions-7.20.7" sources."@babel/helper-module-imports-7.18.6" - sources."@babel/helper-module-transforms-7.20.7" + sources."@babel/helper-module-transforms-7.20.11" sources."@babel/helper-optimise-call-expression-7.18.6" sources."@babel/helper-plugin-utils-7.20.2" sources."@babel/helper-remap-async-to-generator-7.18.9" @@ -134034,7 +130737,7 @@ in sources."@babel/plugin-transform-arrow-functions-7.20.7" sources."@babel/plugin-transform-async-to-generator-7.20.7" sources."@babel/plugin-transform-block-scoped-functions-7.18.6" - sources."@babel/plugin-transform-block-scoping-7.20.8" + sources."@babel/plugin-transform-block-scoping-7.20.11" sources."@babel/plugin-transform-classes-7.20.7" sources."@babel/plugin-transform-computed-properties-7.20.7" sources."@babel/plugin-transform-destructuring-7.20.7" @@ -134045,9 +130748,9 @@ in sources."@babel/plugin-transform-function-name-7.18.9" sources."@babel/plugin-transform-literals-7.18.9" sources."@babel/plugin-transform-member-expression-literals-7.18.6" - sources."@babel/plugin-transform-modules-amd-7.20.7" - sources."@babel/plugin-transform-modules-commonjs-7.20.7" - sources."@babel/plugin-transform-modules-systemjs-7.19.6" + sources."@babel/plugin-transform-modules-amd-7.20.11" + sources."@babel/plugin-transform-modules-commonjs-7.20.11" + sources."@babel/plugin-transform-modules-systemjs-7.20.11" sources."@babel/plugin-transform-modules-umd-7.18.6" sources."@babel/plugin-transform-named-capturing-groups-regex-7.20.5" sources."@babel/plugin-transform-new-target-7.18.6" @@ -134083,7 +130786,7 @@ in sources."@babel/register-7.18.9" sources."@babel/runtime-7.20.7" sources."@babel/template-7.20.7" - sources."@babel/traverse-7.20.8" + sources."@babel/traverse-7.20.12" sources."@babel/types-7.20.7" sources."@jridgewell/gen-mapping-0.1.1" sources."@jridgewell/resolve-uri-3.1.0" @@ -134095,7 +130798,7 @@ in sources."@types/glob-7.2.0" sources."@types/json-schema-7.0.11" sources."@types/minimatch-5.1.2" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/parse-json-4.0.0" sources."@types/prop-types-15.7.5" sources."@types/q-1.5.5" @@ -134176,6 +130879,7 @@ in sources."picocolors-0.2.1" ]; }) + sources."available-typed-arrays-1.0.5" sources."axios-0.21.4" sources."babel-core-7.0.0-bridge.0" (sources."babel-loader-8.3.0" // { @@ -134285,7 +130989,7 @@ in sources."camel-case-3.0.0" sources."camelcase-5.3.1" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" sources."case-sensitive-paths-webpack-plugin-2.4.0" sources."caw-2.0.1" sources."chalk-2.4.2" @@ -134362,7 +131066,7 @@ in sources."copy-concurrently-1.0.5" sources."copy-descriptor-0.1.1" sources."core-js-2.6.12" - sources."core-js-compat-3.26.1" + sources."core-js-compat-3.27.1" sources."core-util-is-1.0.3" sources."cors-2.8.5" sources."cosmiconfig-6.0.0" @@ -134385,7 +131089,7 @@ in sources."css-declaration-sorter-4.0.1" (sources."css-loader-2.1.1" // { dependencies = [ - sources."json5-1.0.1" + sources."json5-1.0.2" sources."loader-utils-1.4.2" sources."postcss-value-parser-3.3.1" sources."schema-utils-1.0.0" @@ -134537,8 +131241,9 @@ in sources."entities-2.2.0" sources."errno-0.1.8" sources."error-ex-1.3.2" - sources."es-abstract-1.20.5" + sources."es-abstract-1.21.1" sources."es-array-method-boxes-properly-1.0.0" + sources."es-set-tostringtag-2.0.1" sources."es-to-primitive-1.2.1" sources."escalade-3.1.1" sources."escape-html-1.0.3" @@ -134623,7 +131328,7 @@ in sources."figures-2.0.0" (sources."file-loader-3.0.1" // { dependencies = [ - sources."json5-1.0.1" + sources."json5-1.0.2" sources."loader-utils-1.4.2" sources."schema-utils-1.0.0" ]; @@ -134644,6 +131349,7 @@ in sources."find-up-3.0.0" sources."flush-write-stream-1.1.1" sources."follow-redirects-1.15.2" + sources."for-each-0.3.3" sources."for-in-1.0.2" sources."forwarded-0.2.0" sources."fragment-cache-0.2.1" @@ -134671,6 +131377,7 @@ in sources."glob-parent-5.1.2" sources."global-4.4.0" sources."globals-11.12.0" + sources."globalthis-1.0.3" (sources."globby-6.1.0" // { dependencies = [ sources."pify-2.3.0" @@ -134697,6 +131404,7 @@ in sources."has-cors-1.1.0" sources."has-flag-3.0.0" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbol-support-x-1.4.2" sources."has-symbols-1.0.3" sources."has-to-string-tag-x-1.4.1" @@ -134802,6 +131510,7 @@ in sources."is-absolute-url-2.1.0" sources."is-accessor-descriptor-1.0.0" sources."is-arguments-1.1.1" + sources."is-array-buffer-3.0.1" sources."is-arrayish-0.2.1" sources."is-bigint-1.0.4" sources."is-binary-path-2.1.0" @@ -134838,6 +131547,7 @@ in sources."is-stream-1.1.0" sources."is-string-1.0.7" sources."is-symbol-1.0.4" + sources."is-typed-array-1.1.10" sources."is-weakref-1.0.2" sources."is-windows-1.0.2" sources."is-wsl-1.1.0" @@ -134852,7 +131562,7 @@ in sources."json-parse-better-errors-1.0.2" sources."json-parse-even-better-errors-2.3.1" sources."json-schema-traverse-0.4.1" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."jsonfile-4.0.0" sources."keyv-3.0.0" sources."killable-1.0.1" @@ -134941,7 +131651,7 @@ in sources."nice-try-1.0.5" sources."no-case-2.3.2" sources."node-forge-0.10.0" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" (sources."node-libs-browser-2.2.1" // { dependencies = [ sources."browserify-zlib-0.2.0" @@ -134980,7 +131690,7 @@ in sources."kind-of-3.2.2" ]; }) - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."object-is-1.1.5" sources."object-keys-1.1.1" sources."object-visit-1.0.1" @@ -135075,7 +131785,7 @@ in }) (sources."postcss-loader-3.0.0" // { dependencies = [ - sources."json5-1.0.1" + sources."json5-1.0.2" sources."loader-utils-1.4.2" sources."schema-utils-1.0.0" ]; @@ -135197,7 +131907,7 @@ in }) sources."pump-2.0.1" sources."pumpify-1.5.1" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."q-1.5.1" sources."qs-6.11.0" sources."query-string-5.1.1" @@ -135215,7 +131925,7 @@ in }) (sources."raw-loader-3.1.0" // { dependencies = [ - sources."json5-1.0.1" + sources."json5-1.0.2" sources."loader-utils-1.4.2" ]; }) @@ -135490,7 +132200,7 @@ in sources."strip-outer-1.0.1" (sources."style-loader-0.23.1" // { dependencies = [ - sources."json5-1.0.1" + sources."json5-1.0.2" sources."loader-utils-1.4.2" sources."schema-utils-1.0.0" ]; @@ -135552,6 +132262,7 @@ in sources."tunnel-agent-0.6.0" sources."type-fest-0.21.3" sources."type-is-1.6.18" + sources."typed-array-length-1.0.4" sources."typedarray-0.0.6" (sources."uglify-js-3.4.10" // { dependencies = [ @@ -135595,7 +132306,7 @@ in }) (sources."url-loader-2.3.0" // { dependencies = [ - sources."json5-1.0.1" + sources."json5-1.0.2" sources."loader-utils-1.4.2" ]; }) @@ -135641,7 +132352,7 @@ in sources."wbuf-1.7.3" (sources."webpack-4.46.0" // { dependencies = [ - sources."json5-1.0.1" + sources."json5-1.0.2" sources."loader-utils-1.4.2" sources."schema-utils-1.0.0" ]; @@ -135704,6 +132415,7 @@ in sources."which-1.3.1" sources."which-boxed-primitive-1.0.2" sources."which-module-2.0.0" + sources."which-typed-array-1.1.9" sources."widest-line-2.0.1" sources."worker-farm-1.7.0" (sources."wrap-ansi-5.1.0" // { @@ -135850,7 +132562,7 @@ in sources."delegates-1.0.0" sources."detect-libc-2.0.1" sources."domexception-4.0.0" - sources."dompurify-2.4.1" + sources."dompurify-2.4.3" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" sources."escalade-3.1.1" @@ -135899,14 +132611,14 @@ in sources."mkdirp-1.0.4" sources."ms-2.1.2" sources."nan-2.17.0" - (sources."node-fetch-2.6.7" // { + (sources."node-fetch-2.6.8" // { dependencies = [ sources."tr46-0.0.3" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" ]; }) - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."nopt-5.0.0" sources."npmlog-5.0.1" sources."nwsapi-2.2.2" @@ -135917,7 +132629,7 @@ in sources."path-is-absolute-1.0.1" sources."prelude-ls-1.1.2" sources."psl-1.9.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."querystringify-2.2.0" sources."readable-stream-3.6.0" sources."require-directory-2.1.1" @@ -135942,7 +132654,7 @@ in sources."type-check-0.3.2" sources."universalify-0.2.0" sources."url-parse-1.5.10" - sources."utf-8-validate-5.0.10" + sources."utf-8-validate-6.0.0" sources."util-deprecate-1.0.2" sources."w3c-hr-time-1.0.2" sources."w3c-xmlserializer-3.0.0" @@ -135954,7 +132666,7 @@ in sources."word-wrap-1.2.3" sources."wrap-ansi-7.0.0" sources."wrappy-1.0.2" - sources."ws-8.11.0" + sources."ws-8.12.0" sources."xml-name-validator-4.0.0" sources."xmlchars-2.2.0" sources."y18n-5.0.8" @@ -135995,7 +132707,7 @@ in sources."@babel/parser-7.20.7" sources."@babel/runtime-7.20.7" sources."@babel/template-7.20.7" - sources."@babel/traverse-7.20.8" + sources."@babel/traverse-7.20.12" sources."@babel/types-7.20.7" sources."@emotion/is-prop-valid-1.2.0" sources."@emotion/memoize-0.8.0" @@ -136009,14 +132721,14 @@ in sources."@jridgewell/sourcemap-codec-1.4.14" sources."@jridgewell/trace-mapping-0.3.17" sources."@redocly/ajv-8.11.0" - sources."@redocly/openapi-core-1.0.0-beta.117" + sources."@redocly/openapi-core-1.0.0-beta.120" sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" sources."@types/eslint-8.4.10" sources."@types/eslint-scope-3.7.4" sources."@types/estree-0.0.51" sources."@types/json-schema-7.0.11" - sources."@types/node-14.18.35" + sources."@types/node-14.18.36" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -136104,7 +132816,7 @@ in sources."call-me-maybe-1.0.2" sources."camelcase-6.3.0" sources."camelize-1.0.1" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" (sources."chalk-2.4.2" // { dependencies = [ sources."has-flag-3.0.0" @@ -136127,7 +132839,7 @@ in sources."configstore-5.0.1" sources."console-browserify-1.2.0" sources."constants-browserify-1.0.0" - sources."core-js-3.26.1" + sources."core-js-3.27.1" sources."core-util-is-1.0.3" (sources."create-ecdh-4.0.4" // { dependencies = [ @@ -136139,7 +132851,7 @@ in sources."crypto-browserify-3.12.0" sources."crypto-random-string-2.0.0" sources."css-color-keywords-1.0.0" - sources."css-to-react-native-3.0.0" + sources."css-to-react-native-3.1.0" sources."debug-4.3.4" sources."decko-1.2.0" sources."decompress-response-3.3.0" @@ -136152,7 +132864,7 @@ in ]; }) sources."domain-browser-1.2.0" - sources."dompurify-2.4.1" + sources."dompurify-2.4.3" sources."dot-prop-5.3.0" sources."duplexer3-0.1.5" sources."electron-to-chromium-1.4.284" @@ -136257,7 +132969,7 @@ in ]; }) sources."mark.js-8.11.1" - sources."marked-4.2.4" + sources."marked-4.2.12" sources."md5.js-1.3.5" sources."merge-stream-2.0.0" (sources."miller-rabin-4.0.1" // { @@ -136270,7 +132982,7 @@ in sources."mimic-response-1.0.1" sources."minimalistic-assert-1.0.1" sources."minimalistic-crypto-utils-1.0.1" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" sources."minimist-1.2.7" sources."mkdirp-1.0.4" sources."mobx-6.7.0" @@ -136278,7 +132990,7 @@ in sources."mobx-react-lite-3.4.0" sources."ms-2.1.2" sources."neo-async-2.6.2" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."node-fetch-h2-2.3.0" sources."node-libs-browser-2.2.1" sources."node-readfiles-0.2.0" @@ -136292,7 +133004,7 @@ in sources."oas-validator-5.0.8" sources."object-assign-4.1.1" sources."once-1.4.0" - sources."openapi-sampler-1.3.0" + sources."openapi-sampler-1.3.1" sources."os-browserify-0.3.0" sources."p-cancelable-1.1.0" (sources."package-json-6.5.0" // { @@ -136368,7 +133080,7 @@ in sources."semver-6.3.0" ]; }) - sources."serialize-javascript-6.0.0" + sources."serialize-javascript-6.0.1" sources."setimmediate-1.0.5" sources."sha.js-2.4.11" sources."shallowequal-1.1.0" @@ -136424,7 +133136,7 @@ in }) (sources."uri-js-4.4.1" // { dependencies = [ - sources."punycode-2.1.1" + sources."punycode-2.2.0" ]; }) (sources."url-0.11.0" // { @@ -136807,16 +133519,16 @@ in sources."mime-db-1.52.0" sources."mime-types-2.1.35" sources."mimic-response-1.0.1" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" sources."minimist-1.2.7" sources."mkdirp-0.5.6" sources."ms-2.1.2" sources."mustache-4.2.0" sources."negotiator-0.6.3" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."normalize-path-3.0.0" sources."normalize-url-4.5.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."on-finished-2.4.1" sources."once-1.4.0" sources."open-8.4.0" @@ -136950,24 +133662,11 @@ in rimraf = nodeEnv.buildNodePackage { name = "rimraf"; packageName = "rimraf"; - version = "3.0.2"; + version = "4.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz"; - sha512 = "JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="; + url = "https://registry.npmjs.org/rimraf/-/rimraf-4.1.1.tgz"; + sha512 = "Z4Y81w8atcvaJuJuBB88VpADRH66okZAuEm+Jtaufa+s7rZmIz+Hik2G53kGaNytE7lsfXyWktTmfVz0H9xuDg=="; }; - dependencies = [ - sources."balanced-match-1.0.2" - sources."brace-expansion-1.1.11" - sources."concat-map-0.0.1" - sources."fs.realpath-1.0.0" - sources."glob-7.2.3" - sources."inflight-1.0.6" - sources."inherits-2.0.4" - sources."minimatch-3.1.2" - sources."once-1.4.0" - sources."path-is-absolute-1.0.1" - sources."wrappy-1.0.2" - ]; buildInputs = globalBuildInputs; meta = { description = "A deep deletion module for node (like `rm -rf`)"; @@ -136981,10 +133680,10 @@ in rollup = nodeEnv.buildNodePackage { name = "rollup"; packageName = "rollup"; - version = "3.8.0"; + version = "3.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-3.8.0.tgz"; - sha512 = "+UR6PnUslneJNiJfLSzy4XH6R50ZGF0MS7UCv20ftXrktF/TkvZDwiBtXX65esblLR5p8w6LmXgPwt2f2B8SoQ=="; + url = "https://registry.npmjs.org/rollup/-/rollup-3.10.0.tgz"; + sha512 = "JmRYz44NjC1MjVF2VKxc0M1a97vn+cDxeqWmnwyAF4FvpjK8YFdHpaqvQB+3IxCvX05vJxKZkoMDU8TShhmJVA=="; }; dependencies = [ sources."fsevents-2.3.2" @@ -137005,7 +133704,7 @@ in version = "0.3.1059"; src = ../../applications/editors/vscode/extensions/rust-analyzer/build-deps; dependencies = [ - sources."@eslint/eslintrc-1.4.0" + sources."@eslint/eslintrc-1.4.1" sources."@hpcc-js/wasm-1.16.6" sources."@humanwhocodes/config-array-0.11.8" sources."@humanwhocodes/module-importer-1.0.1" @@ -137018,15 +133717,15 @@ in sources."@types/node-14.17.34" sources."@types/semver-7.3.13" sources."@types/vscode-1.66.0" - sources."@typescript-eslint/eslint-plugin-5.47.0" - sources."@typescript-eslint/parser-5.47.0" - sources."@typescript-eslint/scope-manager-5.47.0" - sources."@typescript-eslint/type-utils-5.47.0" - sources."@typescript-eslint/types-5.47.0" - sources."@typescript-eslint/typescript-estree-5.47.0" - sources."@typescript-eslint/utils-5.47.0" - sources."@typescript-eslint/visitor-keys-5.47.0" - sources."@vscode/test-electron-2.2.1" + sources."@typescript-eslint/eslint-plugin-5.48.2" + sources."@typescript-eslint/parser-5.48.2" + sources."@typescript-eslint/scope-manager-5.48.2" + sources."@typescript-eslint/type-utils-5.48.2" + sources."@typescript-eslint/types-5.48.2" + sources."@typescript-eslint/typescript-estree-5.48.2" + sources."@typescript-eslint/utils-5.48.2" + sources."@typescript-eslint/visitor-keys-5.48.2" + sources."@vscode/test-electron-2.2.2" sources."acorn-8.8.1" sources."acorn-jsx-5.3.2" sources."agent-base-6.0.2" @@ -137071,13 +133770,13 @@ in sources."cross-spawn-7.0.3" sources."css-select-5.1.0" sources."css-what-6.1.0" - sources."d3-7.8.0" + sources."d3-7.8.1" sources."d3-array-3.2.1" sources."d3-axis-3.0.0" sources."d3-brush-3.0.0" sources."d3-chord-3.0.1" sources."d3-color-3.1.0" - sources."d3-contour-4.0.0" + sources."d3-contour-4.0.2" sources."d3-delaunay-6.0.2" sources."d3-dispatch-3.0.1" sources."d3-drag-3.0.0" @@ -137143,7 +133842,7 @@ in sources."entities-4.4.0" sources."escalade-3.1.1" sources."escape-string-regexp-4.0.0" - (sources."eslint-8.30.0" // { + (sources."eslint-8.32.0" // { dependencies = [ sources."eslint-scope-7.1.1" sources."estraverse-5.3.0" @@ -137175,7 +133874,7 @@ in sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fd-slicer-1.1.0" sources."file-entry-cache-6.0.1" sources."fill-range-7.0.1" @@ -137253,10 +133952,10 @@ in sources."napi-build-utils-1.0.2" sources."natural-compare-1.4.0" sources."natural-compare-lite-1.4.0" - sources."node-abi-3.30.0" + sources."node-abi-3.31.0" sources."node-addon-api-4.3.0" sources."nth-check-2.1.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."once-1.4.0" sources."optionator-0.9.1" sources."p-limit-3.1.0" @@ -137280,7 +133979,7 @@ in sources."process-nextick-args-2.0.1" sources."pseudomap-1.0.2" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.11.0" sources."queue-microtask-1.2.3" (sources."rc-1.2.8" // { @@ -137394,7 +134093,7 @@ in sources."escalade-3.1.1" sources."nanoid-3.3.4" sources."picocolors-1.0.0" - sources."postcss-8.4.20" + sources."postcss-8.4.21" sources."source-map-js-1.0.2" sources."strip-json-comments-3.1.1" ]; @@ -137474,7 +134173,7 @@ in sources."node-uuid-1.4.1" sources."node-wsfederation-0.1.1" sources."oauth-https://github.com/ciaranj/node-oauth/tarball/master" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" (sources."openid-2.0.10" // { dependencies = [ sources."qs-6.11.0" @@ -137520,7 +134219,7 @@ in sources."fill-range-7.0.1" sources."fsevents-2.3.2" sources."glob-parent-5.1.2" - sources."immutable-4.2.0" + sources."immutable-4.2.2" sources."is-binary-path-2.1.0" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" @@ -137641,7 +134340,7 @@ in sources."path-is-inside-1.0.2" sources."path-key-3.1.1" sources."path-to-regexp-2.2.1" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."range-parser-1.2.0" sources."rc-1.2.8" sources."registry-auth-token-3.3.2" @@ -137732,11 +134431,11 @@ in sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" sources."@types/lodash-4.14.191" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/responselike-1.0.0" sources."adm-zip-0.5.10" sources."agent-base-6.0.2" - sources."ajv-8.11.2" + sources."ajv-8.12.0" sources."ajv-formats-2.1.1" sources."ansi-escapes-4.3.2" sources."ansi-regex-5.0.1" @@ -137760,7 +134459,7 @@ in sources."asynckit-0.4.0" sources."at-least-node-1.0.0" sources."available-typed-arrays-1.0.5" - (sources."aws-sdk-2.1281.0" // { + (sources."aws-sdk-2.1296.0" // { dependencies = [ sources."buffer-4.9.2" sources."ieee754-1.1.13" @@ -137806,7 +134505,7 @@ in sources."child-process-ext-2.1.1" sources."chokidar-3.5.3" sources."chownr-2.0.0" - sources."ci-info-3.7.0" + sources."ci-info-3.7.1" sources."cli-color-2.0.3" sources."cli-cursor-3.1.0" sources."cli-progress-footer-2.3.2" @@ -137835,7 +134534,7 @@ in sources."safe-buffer-5.2.1" ]; }) - sources."cookiejar-2.1.3" + sources."cookiejar-2.1.4" sources."core-util-is-1.0.3" sources."crc-32-1.2.2" (sources."crc32-stream-4.0.2" // { @@ -137928,7 +134627,7 @@ in sources."fast-glob-3.2.12" sources."fast-safe-stringify-2.1.1" sources."fastest-levenshtein-1.0.16" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fd-slicer-1.1.0" sources."figures-3.2.0" sources."file-type-16.5.4" @@ -138057,18 +134756,18 @@ in sources."ms-2.1.2" sources."mute-stream-0.0.8" sources."native-promise-only-0.8.1" - sources."ncjsm-4.3.1" + sources."ncjsm-4.3.2" sources."next-tick-1.1.0" sources."nice-try-1.0.5" sources."node-dir-0.1.17" - sources."node-fetch-2.6.7" - sources."node-gyp-build-4.5.0" + sources."node-fetch-2.6.8" + sources."node-gyp-build-4.6.0" sources."normalize-path-3.0.0" sources."normalize-url-6.1.0" sources."npm-registry-utilities-1.0.0" sources."object-assign-4.1.1" sources."object-hash-3.0.0" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."once-1.4.0" sources."onetime-5.1.2" sources."open-8.4.0" @@ -138094,7 +134793,7 @@ in sources."process-utils-4.0.0" sources."promise-queue-2.2.5" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.11.0" sources."querystring-0.2.1" sources."queue-microtask-1.2.3" @@ -138108,7 +134807,7 @@ in (sources."readdir-glob-1.1.2" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" ]; }) sources."readdirp-3.6.0" @@ -138131,7 +134830,7 @@ in sources."shebang-regex-1.0.0" sources."side-channel-1.0.4" sources."signal-exit-3.0.7" - sources."simple-git-3.15.1" + sources."simple-git-3.16.0" sources."slash-3.0.0" sources."sort-keys-1.1.2" sources."sort-keys-length-1.0.1" @@ -138246,7 +134945,7 @@ in sources."assert-plus-1.0.0" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."base64-arraybuffer-0.1.2" sources."base64id-0.1.0" sources."bcrypt-nodejs-0.0.3" @@ -138363,7 +135062,7 @@ in sources."negotiator-0.6.3" sources."oauth-sign-0.9.0" sources."object-component-0.0.3" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."on-finished-2.4.1" sources."options-0.0.6" sources."parsejson-0.0.1" @@ -138375,7 +135074,7 @@ in sources."performance-now-2.1.0" sources."proxy-addr-2.0.7" sources."psl-1.9.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.11.0" sources."range-parser-1.2.1" sources."raw-body-2.5.1" @@ -138861,10 +135560,10 @@ in snyk = nodeEnv.buildNodePackage { name = "snyk"; packageName = "snyk"; - version = "1.1076.0"; + version = "1.1087.0"; src = fetchurl { - url = "https://registry.npmjs.org/snyk/-/snyk-1.1076.0.tgz"; - sha512 = "6lnsbGHwq1e9yryHSIUEtZXlfGWK6FD8hxFD39YTL10XbyQEbvMYVHE9GIZ16r4ezf0znNE8KoDojpjSNPJ0sg=="; + url = "https://registry.npmjs.org/snyk/-/snyk-1.1087.0.tgz"; + sha512 = "4Ap2O59+qHCKmzeJu0Kq6S74M409UwRer3ss3wLCNO7vwj8hpfi4wvA+bZc8ywwKv028X9nLhw8hzcJ7bmsavQ=="; }; buildInputs = globalBuildInputs; meta = { @@ -138887,7 +135586,7 @@ in sources."@socket.io/component-emitter-3.1.0" sources."@types/cookie-0.4.1" sources."@types/cors-2.8.13" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."accepts-1.3.8" sources."base64id-2.0.0" sources."bufferutil-4.0.7" @@ -138895,12 +135594,12 @@ in sources."cors-2.8.5" sources."debug-4.3.4" sources."engine.io-6.2.1" - sources."engine.io-parser-5.0.4" + sources."engine.io-parser-5.0.6" sources."mime-db-1.52.0" sources."mime-types-2.1.35" sources."ms-2.1.2" sources."negotiator-0.6.3" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."object-assign-4.1.1" sources."socket.io-adapter-2.4.0" sources."socket.io-parser-4.2.1" @@ -139083,10 +135782,10 @@ in sql-formatter = nodeEnv.buildNodePackage { name = "sql-formatter"; packageName = "sql-formatter"; - version = "12.0.4"; + version = "12.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/sql-formatter/-/sql-formatter-12.0.4.tgz"; - sha512 = "uyaLYIYe+e8tIpMiWCf2drSVWUQ6Ln8RC5L96ELVPHX4e3jNvvAz7nKSZKSan0rMyHpimc+D8HaiMQ94eFriEQ=="; + url = "https://registry.npmjs.org/sql-formatter/-/sql-formatter-12.0.5.tgz"; + sha512 = "nKils1bIf99WyDqr7252W6NhHjgJoL2mw7bvWb79uDzVd1xZceZ8zyy05behD92+xJIUzEibNMXwTuDFMwrHyg=="; }; dependencies = [ sources."argparse-2.0.1" @@ -139275,12 +135974,13 @@ in }) sources."epidemic-broadcast-trees-7.0.0" sources."errno-0.1.8" - sources."es-abstract-1.20.5" - (sources."es-get-iterator-1.1.2" // { + sources."es-abstract-1.21.1" + (sources."es-get-iterator-1.1.3" // { dependencies = [ sources."isarray-2.0.5" ]; }) + sources."es-set-tostringtag-2.0.1" sources."es-to-primitive-1.2.1" sources."escape-string-regexp-1.0.5" sources."events-3.3.0" @@ -139313,7 +136013,7 @@ in sources."flumeview-level-3.0.14" (sources."flumeview-links-1.0.1" // { dependencies = [ - sources."deep-equal-2.1.0" + sources."deep-equal-2.2.0" sources."isarray-2.0.5" sources."map-filter-reduce-3.2.2" ]; @@ -139353,6 +136053,7 @@ in sources."glob-6.0.4" sources."glob-base-0.3.0" sources."glob-parent-2.0.0" + sources."globalthis-1.0.3" sources."globby-4.1.0" sources."gopd-1.0.1" sources."gossip-query-2.0.2" @@ -139362,6 +136063,7 @@ in sources."has-bigints-1.0.2" sources."has-network-0.0.1" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" (sources."has-value-1.0.0" // { @@ -139402,6 +136104,7 @@ in sources."is-alphabetical-1.0.4" sources."is-alphanumerical-1.0.4" sources."is-arguments-1.1.1" + sources."is-array-buffer-3.0.1" sources."is-bigint-1.0.4" sources."is-binary-path-1.0.1" sources."is-boolean-object-1.1.2" @@ -139557,7 +136260,7 @@ in sources."next-tick-1.1.0" sources."nice-try-1.0.5" sources."node-bindgen-loader-1.0.1" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."non-private-ip-2.2.0" sources."normalize-path-2.1.1" sources."normalize-uri-1.1.3" @@ -139576,7 +136279,7 @@ in }) ]; }) - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."object-is-1.1.5" sources."object-keys-1.1.1" (sources."object-visit-1.0.1" // { @@ -139966,6 +136669,7 @@ in ]; }) sources."statistics-3.3.0" + sources."stop-iteration-iterator-1.0.0" (sources."stream-to-pull-stream-1.7.3" // { dependencies = [ sources."looper-3.0.0" @@ -139981,7 +136685,7 @@ in sources."strip-json-comments-2.0.1" sources."supports-color-2.0.0" sources."supports-preserve-symlinks-flag-1.0.0" - (sources."tape-4.16.1" // { + (sources."tape-4.16.2" // { dependencies = [ sources."glob-7.2.3" ]; @@ -140007,6 +136711,7 @@ in sources."truncate-utf8-bytes-1.0.2" sources."tweetnacl-0.14.5" sources."tweetnacl-auth-0.3.1" + sources."typed-array-length-1.0.4" sources."typedarray-0.0.6" sources."typedarray-to-buffer-4.0.0" sources."typedfastbitset-0.2.1" @@ -140151,13 +136856,13 @@ in sources."async-limiter-1.0.1" sources."asynckit-0.4.0" sources."available-typed-arrays-1.0.5" - (sources."aws-sdk-2.1281.0" // { + (sources."aws-sdk-2.1296.0" // { dependencies = [ sources."uuid-8.0.0" ]; }) sources."aws-sign2-0.6.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."axios-0.21.4" sources."babel-runtime-6.26.0" sources."babel-types-6.26.0" @@ -140243,7 +136948,7 @@ in ]; }) sources."cookie-signature-1.0.6" - sources."cookiejar-2.1.3" + sources."cookiejar-2.1.4" sources."cookies-0.8.0" sources."core-js-2.6.12" sources."core-util-is-1.0.2" @@ -140448,7 +137153,7 @@ in dependencies = [ sources."esprima-4.0.1" sources."js-yaml-3.14.1" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."uri-js-3.0.2" ]; }) @@ -140456,7 +137161,7 @@ in sources."json-schema-faker-0.2.16" sources."json-schema-traverse-0.4.1" sources."json-stringify-safe-5.0.1" - sources."json5-1.0.1" + sources."json5-1.0.2" sources."jsonpointer-5.0.1" sources."jspath-0.3.4" (sources."jsprim-1.4.2" // { @@ -140545,7 +137250,7 @@ in sources."negotiator-0.6.3" sources."nice-try-1.0.5" sources."node-forge-0.7.6" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."node-uuid-1.4.8" sources."normalize-package-data-2.5.0" sources."npm-run-path-2.0.2" @@ -140554,7 +137259,7 @@ in sources."oauth-sign-0.8.2" sources."object-assign-4.1.1" sources."object-hash-0.3.0" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."on-finished-2.4.1" sources."on-headers-1.0.2" sources."once-1.4.0" @@ -140657,7 +137362,7 @@ in sources."har-validator-5.1.5" sources."http-signature-1.2.0" sources."oauth-sign-0.9.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.5.3" sources."tough-cookie-2.5.0" sources."tunnel-agent-0.6.0" @@ -140835,7 +137540,7 @@ in sources."unpipe-1.0.0" (sources."uri-js-4.4.1" // { dependencies = [ - sources."punycode-2.1.1" + sources."punycode-2.2.0" ]; }) (sources."url-0.10.3" // { @@ -140950,10 +137655,10 @@ in stylelint = nodeEnv.buildNodePackage { name = "stylelint"; packageName = "stylelint"; - version = "14.16.0"; + version = "14.16.1"; src = fetchurl { - url = "https://registry.npmjs.org/stylelint/-/stylelint-14.16.0.tgz"; - sha512 = "X6uTi9DcxjzLV8ZUAjit1vsRtSwcls0nl07c9rqOPzvpA8IvTX/xWEkBRowS0ffevRrqkHa/ThDEu86u73FQDg=="; + url = "https://registry.npmjs.org/stylelint/-/stylelint-14.16.1.tgz"; + sha512 = "ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A=="; }; dependencies = [ sources."@babel/code-frame-7.18.6" @@ -140966,7 +137671,7 @@ in sources."@types/minimist-1.2.2" sources."@types/normalize-package-data-2.4.1" sources."@types/parse-json-4.0.0" - sources."ajv-8.11.2" + sources."ajv-8.12.0" sources."ansi-regex-5.0.1" sources."ansi-styles-3.2.1" sources."array-union-2.1.0" @@ -141004,7 +137709,7 @@ in sources."fast-deep-equal-3.1.3" sources."fast-glob-3.2.12" sources."fastest-levenshtein-1.0.16" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."file-entry-cache-6.0.1" sources."fill-range-7.0.1" sources."find-up-4.1.0" @@ -141077,13 +137782,13 @@ in sources."path-type-4.0.0" sources."picocolors-1.0.0" sources."picomatch-2.3.1" - sources."postcss-8.4.20" + sources."postcss-8.4.21" sources."postcss-media-query-parser-0.2.3" sources."postcss-resolve-nested-selector-0.1.1" sources."postcss-safe-parser-6.0.0" sources."postcss-selector-parser-6.0.11" sources."postcss-value-parser-4.2.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."queue-microtask-1.2.3" sources."quick-lru-4.0.1" (sources."read-pkg-5.2.0" // { @@ -141176,7 +137881,7 @@ in sources."assert-plus-1.0.0" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."balanced-match-1.0.2" sources."bcrypt-pbkdf-1.0.2" sources."block-stream-0.0.9" @@ -141255,7 +137960,7 @@ in sources."performance-now-2.1.0" sources."progress-1.1.8" sources."psl-1.9.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.5.3" sources."read-1.0.5" sources."request-2.88.2" @@ -141299,16 +138004,16 @@ in svelte-check = nodeEnv.buildNodePackage { name = "svelte-check"; packageName = "svelte-check"; - version = "3.0.1"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/svelte-check/-/svelte-check-3.0.1.tgz"; - sha512 = "7YpHYWv6V2qhcvVeAlXixUPAlpLCXB1nZEQK0EItB3PtuYmENhKclbc5uKSJTodTwWR1y+4stKGcbH30k6A3Yw=="; + url = "https://registry.npmjs.org/svelte-check/-/svelte-check-3.0.2.tgz"; + sha512 = "DkhKhV0Jt0gh7q9DBB26+J2Vfb9y4/4JWxnbkXBZha7542LOhwvj3edJFjyJ+xjdaXyInZ+YRRYc3V6wytP2ew=="; }; dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.5" - sources."@babel/core-7.20.7" + sources."@babel/compat-data-7.20.10" + sources."@babel/core-7.20.12" (sources."@babel/generator-7.20.7" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" @@ -141319,7 +138024,7 @@ in sources."@babel/helper-function-name-7.19.0" sources."@babel/helper-hoist-variables-7.18.6" sources."@babel/helper-module-imports-7.18.6" - sources."@babel/helper-module-transforms-7.20.7" + sources."@babel/helper-module-transforms-7.20.11" sources."@babel/helper-simple-access-7.20.2" sources."@babel/helper-split-export-declaration-7.18.6" sources."@babel/helper-string-parser-7.19.4" @@ -141329,7 +138034,7 @@ in sources."@babel/highlight-7.18.6" sources."@babel/parser-7.20.7" sources."@babel/template-7.20.7" - sources."@babel/traverse-7.20.8" + sources."@babel/traverse-7.20.12" sources."@babel/types-7.20.7" (sources."@cspotcode/source-map-support-0.8.1" // { dependencies = [ @@ -141344,23 +138049,23 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.24" - sources."@swc/core-darwin-arm64-1.3.24" - sources."@swc/core-darwin-x64-1.3.24" - sources."@swc/core-linux-arm-gnueabihf-1.3.24" - sources."@swc/core-linux-arm64-gnu-1.3.24" - sources."@swc/core-linux-arm64-musl-1.3.24" - sources."@swc/core-linux-x64-gnu-1.3.24" - sources."@swc/core-linux-x64-musl-1.3.24" - sources."@swc/core-win32-arm64-msvc-1.3.24" - sources."@swc/core-win32-ia32-msvc-1.3.24" - sources."@swc/core-win32-x64-msvc-1.3.24" - sources."@swc/wasm-1.3.24" + sources."@swc/core-1.3.27" + sources."@swc/core-darwin-arm64-1.3.27" + sources."@swc/core-darwin-x64-1.3.27" + sources."@swc/core-linux-arm-gnueabihf-1.3.27" + sources."@swc/core-linux-arm64-gnu-1.3.27" + sources."@swc/core-linux-arm64-musl-1.3.27" + sources."@swc/core-linux-x64-gnu-1.3.27" + sources."@swc/core-linux-x64-musl-1.3.27" + sources."@swc/core-win32-arm64-msvc-1.3.27" + sources."@swc/core-win32-ia32-msvc-1.3.27" + sources."@swc/core-win32-x64-msvc-1.3.27" + sources."@swc/wasm-1.3.27" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/pug-2.0.6" sources."@types/sass-1.43.1" sources."acorn-8.8.1" @@ -141380,7 +138085,7 @@ in sources."buffer-crc32-0.2.13" sources."call-bind-1.0.2" sources."callsites-3.1.0" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" sources."chalk-2.4.2" sources."character-parser-2.2.0" sources."chokidar-3.5.3" @@ -141404,7 +138109,7 @@ in sources."escalade-3.1.1" sources."escape-string-regexp-1.0.5" sources."fast-glob-3.2.12" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fill-range-7.0.1" sources."fs.realpath-1.0.0" sources."fsevents-2.3.2" @@ -141421,7 +138126,7 @@ in sources."has-tostringtag-1.0.0" sources."iconv-lite-0.6.3" sources."image-size-0.5.5" - sources."immutable-4.2.0" + sources."immutable-4.2.2" sources."import-fresh-3.3.0" sources."inflight-1.0.6" sources."inherits-2.0.4" @@ -141441,7 +138146,7 @@ in sources."js-stringify-1.0.2" sources."js-tokens-4.0.0" sources."jsesc-2.5.2" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."jstransformer-1.0.0" sources."less-4.1.3" sources."lilconfig-2.0.6" @@ -141479,7 +138184,7 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-4.0.1" - sources."postcss-8.4.20" + sources."postcss-8.4.21" sources."postcss-load-config-4.0.1" sources."promise-7.3.1" sources."prr-1.0.1" @@ -141525,7 +138230,7 @@ in sources."sugarss-4.0.1" sources."supports-color-5.5.0" sources."supports-preserve-symlinks-flag-1.0.0" - sources."svelte-3.55.0" + sources."svelte-3.55.1" sources."svelte-preprocess-5.0.0" sources."to-fast-properties-2.0.0" sources."to-regex-range-5.0.1" @@ -141539,7 +138244,7 @@ in sources."with-7.0.2" sources."wrappy-1.0.2" sources."yallist-3.1.1" - sources."yaml-2.2.0" + sources."yaml-2.2.1" sources."yn-3.1.1" ]; buildInputs = globalBuildInputs; @@ -141555,16 +138260,16 @@ in svelte-language-server = nodeEnv.buildNodePackage { name = "svelte-language-server"; packageName = "svelte-language-server"; - version = "0.15.0"; + version = "0.15.2"; src = fetchurl { - url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.15.0.tgz"; - sha512 = "/yUUHBWGL1mGIkw9Q0WFs1QEwJ8OnVYZ4MA2KOK/1XeIRH5HEIVGQiGorLLphBGa3+ETzrQutL+uD5YuXtM6lA=="; + url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.15.2.tgz"; + sha512 = "U8V3ZBx6IQbTfCkyf1Hss+xNmDTJJ2KyLLo7hv+JxBJpqZzBdfWkyJpCTrvN9FP10X4LFKbb3vIl558fKl9Meg=="; }; dependencies = [ sources."@ampproject/remapping-2.2.0" sources."@babel/code-frame-7.18.6" - sources."@babel/compat-data-7.20.5" - sources."@babel/core-7.20.7" + sources."@babel/compat-data-7.20.10" + sources."@babel/core-7.20.12" (sources."@babel/generator-7.20.7" // { dependencies = [ sources."@jridgewell/gen-mapping-0.3.2" @@ -141575,7 +138280,7 @@ in sources."@babel/helper-function-name-7.19.0" sources."@babel/helper-hoist-variables-7.18.6" sources."@babel/helper-module-imports-7.18.6" - sources."@babel/helper-module-transforms-7.20.7" + sources."@babel/helper-module-transforms-7.20.11" sources."@babel/helper-simple-access-7.20.2" sources."@babel/helper-split-export-declaration-7.18.6" sources."@babel/helper-string-parser-7.19.4" @@ -141585,7 +138290,7 @@ in sources."@babel/highlight-7.18.6" sources."@babel/parser-7.20.7" sources."@babel/template-7.20.7" - sources."@babel/traverse-7.20.8" + sources."@babel/traverse-7.20.12" sources."@babel/types-7.20.7" (sources."@cspotcode/source-map-support-0.8.1" // { dependencies = [ @@ -141603,26 +138308,26 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.24" - sources."@swc/core-darwin-arm64-1.3.24" - sources."@swc/core-darwin-x64-1.3.24" - sources."@swc/core-linux-arm-gnueabihf-1.3.24" - sources."@swc/core-linux-arm64-gnu-1.3.24" - sources."@swc/core-linux-arm64-musl-1.3.24" - sources."@swc/core-linux-x64-gnu-1.3.24" - sources."@swc/core-linux-x64-musl-1.3.24" - sources."@swc/core-win32-arm64-msvc-1.3.24" - sources."@swc/core-win32-ia32-msvc-1.3.24" - sources."@swc/core-win32-x64-msvc-1.3.24" - sources."@swc/wasm-1.3.24" + sources."@swc/core-1.3.27" + sources."@swc/core-darwin-arm64-1.3.27" + sources."@swc/core-darwin-x64-1.3.27" + sources."@swc/core-linux-arm-gnueabihf-1.3.27" + sources."@swc/core-linux-arm64-gnu-1.3.27" + sources."@swc/core-linux-arm64-musl-1.3.27" + sources."@swc/core-linux-x64-gnu-1.3.27" + sources."@swc/core-linux-x64-musl-1.3.27" + sources."@swc/core-win32-arm64-msvc-1.3.27" + sources."@swc/core-win32-ia32-msvc-1.3.27" + sources."@swc/core-win32-x64-msvc-1.3.27" + sources."@swc/wasm-1.3.27" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/pug-2.0.6" sources."@types/sass-1.43.1" - (sources."@vscode/emmet-helper-2.8.4" // { + (sources."@vscode/emmet-helper-2.8.6" // { dependencies = [ sources."vscode-uri-2.1.2" ]; @@ -141644,7 +138349,7 @@ in sources."browserslist-4.21.4" sources."buffer-crc32-0.2.13" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" sources."chalk-2.4.2" sources."character-parser-2.2.0" sources."chokidar-3.5.3" @@ -141671,7 +138376,7 @@ in sources."escape-string-regexp-1.0.5" sources."estree-walker-2.0.2" sources."fast-glob-3.2.12" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fill-range-7.0.1" sources."fs.realpath-1.0.0" sources."fsevents-2.3.2" @@ -141688,7 +138393,7 @@ in sources."has-tostringtag-1.0.0" sources."iconv-lite-0.6.3" sources."image-size-0.5.5" - sources."immutable-4.2.0" + sources."immutable-4.2.2" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."is-binary-path-2.1.0" @@ -141707,7 +138412,7 @@ in sources."js-stringify-1.0.2" sources."js-tokens-4.0.0" sources."jsesc-2.5.2" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."jsonc-parser-2.3.1" sources."jstransformer-1.0.0" sources."less-4.1.3" @@ -141748,7 +138453,7 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-4.0.1" - sources."postcss-8.4.20" + sources."postcss-8.4.21" sources."postcss-load-config-4.0.1" sources."prettier-2.8.1" sources."prettier-plugin-svelte-2.9.0" @@ -141794,7 +138499,7 @@ in sources."sugarss-4.0.1" sources."supports-color-5.5.0" sources."supports-preserve-symlinks-flag-1.0.0" - sources."svelte-3.55.0" + sources."svelte-3.55.1" sources."svelte-preprocess-5.0.0" sources."svelte2tsx-0.6.0" sources."to-fast-properties-2.0.0" @@ -141811,14 +138516,13 @@ in sources."vscode-jsonrpc-8.0.2" sources."vscode-languageserver-8.0.2" sources."vscode-languageserver-protocol-3.17.2" - sources."vscode-languageserver-textdocument-1.0.8" + sources."vscode-languageserver-textdocument-1.0.9" sources."vscode-languageserver-types-3.17.2" - sources."vscode-nls-5.2.0" sources."vscode-uri-3.0.7" sources."with-7.0.2" sources."wrappy-1.0.2" sources."yallist-3.1.1" - sources."yaml-2.2.0" + sources."yaml-2.2.1" sources."yn-3.1.1" ]; buildInputs = globalBuildInputs; @@ -141986,7 +138690,7 @@ in sources."configstore-3.1.5" sources."connect-3.7.0" sources."content-type-1.0.4" - sources."cookiejar-2.1.3" + sources."cookiejar-2.1.4" sources."copy-descriptor-0.1.1" sources."core-js-2.6.12" sources."core-util-is-1.0.3" @@ -142272,7 +138976,7 @@ in sources."kind-of-3.2.2" ]; }) - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."object-visit-1.0.1" sources."object.pick-1.3.0" sources."on-finished-2.3.0" @@ -142310,7 +139014,7 @@ in sources."process-nextick-args-2.0.1" sources."pseudomap-1.0.2" sources."pstree.remy-1.1.8" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-4.0.0" sources."range-parser-1.2.1" (sources."raw-body-2.0.2" // { @@ -142547,23 +139251,23 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@swc/core-1.3.24" - sources."@swc/core-darwin-arm64-1.3.24" - sources."@swc/core-darwin-x64-1.3.24" - sources."@swc/core-linux-arm-gnueabihf-1.3.24" - sources."@swc/core-linux-arm64-gnu-1.3.24" - sources."@swc/core-linux-arm64-musl-1.3.24" - sources."@swc/core-linux-x64-gnu-1.3.24" - sources."@swc/core-linux-x64-musl-1.3.24" - sources."@swc/core-win32-arm64-msvc-1.3.24" - sources."@swc/core-win32-ia32-msvc-1.3.24" - sources."@swc/core-win32-x64-msvc-1.3.24" - sources."@swc/wasm-1.3.24" + sources."@swc/core-1.3.27" + sources."@swc/core-darwin-arm64-1.3.27" + sources."@swc/core-darwin-x64-1.3.27" + sources."@swc/core-linux-arm-gnueabihf-1.3.27" + sources."@swc/core-linux-arm64-gnu-1.3.27" + sources."@swc/core-linux-arm64-musl-1.3.27" + sources."@swc/core-linux-x64-gnu-1.3.27" + sources."@swc/core-linux-x64-musl-1.3.27" + sources."@swc/core-win32-arm64-msvc-1.3.27" + sources."@swc/core-win32-ia32-msvc-1.3.27" + sources."@swc/core-win32-x64-msvc-1.3.27" + sources."@swc/wasm-1.3.27" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."acorn-7.4.1" sources."acorn-node-1.8.2" sources."acorn-walk-7.2.0" @@ -142590,7 +139294,7 @@ in sources."glob-parent-5.1.2" ]; }) - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fill-range-7.0.1" sources."fsevents-2.3.2" sources."function-bind-1.1.1" @@ -142613,7 +139317,7 @@ in sources."picocolors-1.0.0" sources."picomatch-2.3.1" sources."pify-2.3.0" - sources."postcss-8.4.20" + sources."postcss-8.4.21" sources."postcss-import-14.1.0" sources."postcss-js-4.0.0" sources."postcss-load-config-3.1.4" @@ -142678,7 +139382,7 @@ in sources."async-limiter-1.0.1" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."balanced-match-1.0.2" (sources."bcrypt-pbkdf-1.0.2" // { dependencies = [ @@ -142775,8 +139479,8 @@ in sources."nan-2.17.0" sources."needle-2.9.1" sources."node-addon-api-2.0.2" - sources."node-fetch-2.6.7" - sources."node-gyp-build-4.5.0" + sources."node-fetch-2.6.8" + sources."node-gyp-build-4.6.0" (sources."node-opus-0.2.9" // { dependencies = [ sources."bindings-1.2.1" @@ -142806,7 +139510,7 @@ in sources."prism-media-0.0.4" sources."process-nextick-args-2.0.1" sources."psl-1.9.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.5.3" sources."ramda-0.25.0" sources."rc-1.2.8" @@ -142916,7 +139620,7 @@ in }; dependencies = [ sources."node-addon-api-4.3.0" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."q-1.5.1" sources."usb-1.9.2" ]; @@ -143013,35 +139717,45 @@ in textlint = nodeEnv.buildNodePackage { name = "textlint"; packageName = "textlint"; - version = "12.2.4"; + version = "12.5.1"; src = fetchurl { - url = "https://registry.npmjs.org/textlint/-/textlint-12.2.4.tgz"; - sha512 = "IlBJL4bR9RuqYV+YkQQvOznhmfClGGkuOyxiUaQ4qUj2IaJu2/rXei71x3JAIJF4SLEK7SbMoLVqXIerqIbhGA=="; + url = "https://registry.npmjs.org/textlint/-/textlint-12.5.1.tgz"; + sha512 = "LoFU1yBIm/gxM++jDdvdfS2diW14NBHsimRyChi8Kb5h5pUHcG0rGfW2PflUzfYcHF0XykgW9WBdPd1WWnyS7Q=="; }; dependencies = [ sources."@azu/format-text-1.0.1" sources."@azu/style-format-1.0.0" - sources."@textlint/ast-node-types-12.2.2" - sources."@textlint/ast-tester-12.2.3" - sources."@textlint/ast-traverse-12.2.3" - sources."@textlint/feature-flag-12.2.3" - sources."@textlint/fixer-formatter-12.2.3" - sources."@textlint/kernel-12.2.3" - sources."@textlint/linter-formatter-12.2.4" - sources."@textlint/markdown-to-ast-12.2.3" - sources."@textlint/module-interop-12.2.3" - sources."@textlint/source-code-fixer-12.2.3" - sources."@textlint/text-to-ast-12.2.3" - sources."@textlint/textlint-plugin-markdown-12.2.3" - sources."@textlint/textlint-plugin-text-12.2.3" - sources."@textlint/types-12.2.3" - sources."@textlint/utils-12.2.3" + sources."@textlint/ast-node-types-12.3.0" + sources."@textlint/ast-tester-12.5.0" + sources."@textlint/ast-traverse-12.5.0" + (sources."@textlint/config-loader-12.5.0" // { + dependencies = [ + sources."rc-config-loader-4.1.2" + ]; + }) + sources."@textlint/feature-flag-12.5.0" + sources."@textlint/fixer-formatter-12.5.1" + sources."@textlint/kernel-12.5.0" + (sources."@textlint/linter-formatter-12.5.0" // { + dependencies = [ + sources."argparse-1.0.10" + sources."js-yaml-3.14.1" + ]; + }) + sources."@textlint/markdown-to-ast-12.5.0" + sources."@textlint/module-interop-12.5.0" + sources."@textlint/source-code-fixer-12.5.0" + sources."@textlint/text-to-ast-12.5.0" + sources."@textlint/textlint-plugin-markdown-12.5.0" + sources."@textlint/textlint-plugin-text-12.5.0" + sources."@textlint/types-12.5.0" + sources."@textlint/utils-12.5.0" sources."@types/mdast-3.0.10" sources."@types/unist-2.0.6" - sources."ajv-8.11.2" + sources."ajv-8.12.0" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" - sources."argparse-1.0.10" + sources."argparse-2.0.1" sources."astral-regex-2.0.0" sources."bail-1.0.5" sources."balanced-match-1.0.2" @@ -143105,10 +139819,10 @@ in sources."is-plain-obj-2.1.0" sources."is-regex-1.1.4" sources."is-utf8-0.2.1" - sources."js-yaml-3.14.1" + sources."js-yaml-4.1.0" sources."json-parse-better-errors-1.0.2" sources."json-schema-traverse-1.0.0" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."levn-0.4.1" sources."load-json-file-1.1.0" sources."locate-path-2.0.0" @@ -143165,8 +139879,13 @@ in sources."pinkie-promise-2.0.1" sources."pluralize-2.0.0" sources."prelude-ls-1.2.1" - sources."punycode-2.1.1" - sources."rc-config-loader-3.0.0" + sources."punycode-2.2.0" + (sources."rc-config-loader-3.0.0" // { + dependencies = [ + sources."argparse-1.0.10" + sources."js-yaml-3.14.1" + ]; + }) sources."read-pkg-1.1.0" (sources."read-pkg-up-3.0.0" // { dependencies = [ @@ -143297,8 +140016,7 @@ in sources."@babel/highlight-7.18.6" sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" - sources."@textlint/ast-node-types-12.2.2" - sources."@textlint/types-12.2.3" + sources."@textlint/ast-node-types-12.3.0" sources."@types/hast-2.3.4" sources."@types/minimist-1.2.2" sources."@types/normalize-package-data-2.4.1" @@ -143313,7 +140031,7 @@ in sources."arrify-1.0.1" sources."bail-1.0.5" sources."balanced-match-1.0.2" - sources."boundary-1.0.1" + sources."boundary-2.0.0" (sources."boxen-4.2.0" // { dependencies = [ sources."ansi-styles-4.3.0" @@ -143596,11 +140314,11 @@ in sources."strip-ansi-6.0.1" sources."strip-indent-3.0.0" sources."strip-json-comments-2.0.1" - sources."structured-source-3.0.2" + sources."structured-source-4.0.0" sources."supports-color-5.5.0" sources."supports-preserve-symlinks-flag-1.0.0" sources."term-size-2.2.1" - sources."textlint-rule-helper-2.2.3" + sources."textlint-rule-helper-2.2.4" sources."through-2.3.8" (sources."through2-2.0.0" // { dependencies = [ @@ -143741,52 +140459,61 @@ in sources."@azu/format-text-1.0.1" sources."@azu/style-format-1.0.0" sources."@textlint/ast-node-types-4.4.3" - (sources."@textlint/ast-tester-12.2.3" // { + (sources."@textlint/ast-tester-12.5.0" // { dependencies = [ - sources."@textlint/ast-node-types-12.2.2" + sources."@textlint/ast-node-types-12.3.0" ]; }) - (sources."@textlint/ast-traverse-12.2.3" // { + (sources."@textlint/ast-traverse-12.5.0" // { dependencies = [ - sources."@textlint/ast-node-types-12.2.2" + sources."@textlint/ast-node-types-12.3.0" ]; }) - sources."@textlint/feature-flag-12.2.3" - sources."@textlint/fixer-formatter-12.2.3" - (sources."@textlint/kernel-12.2.3" // { + (sources."@textlint/config-loader-12.5.0" // { dependencies = [ - sources."@textlint/ast-node-types-12.2.2" + sources."rc-config-loader-4.1.2" ]; }) - sources."@textlint/linter-formatter-12.2.4" - (sources."@textlint/markdown-to-ast-12.2.3" // { + sources."@textlint/feature-flag-12.5.0" + sources."@textlint/fixer-formatter-12.5.1" + (sources."@textlint/kernel-12.5.0" // { dependencies = [ - sources."@textlint/ast-node-types-12.2.2" - sources."unified-9.2.2" + sources."@textlint/ast-node-types-12.3.0" ]; }) - sources."@textlint/module-interop-12.2.3" - sources."@textlint/source-code-fixer-12.2.3" - (sources."@textlint/text-to-ast-12.2.3" // { + (sources."@textlint/linter-formatter-12.5.0" // { dependencies = [ - sources."@textlint/ast-node-types-12.2.2" + sources."argparse-1.0.10" + sources."js-yaml-3.14.1" ]; }) - sources."@textlint/textlint-plugin-markdown-12.2.3" - sources."@textlint/textlint-plugin-text-12.2.3" - (sources."@textlint/types-12.2.3" // { + (sources."@textlint/markdown-to-ast-12.5.0" // { dependencies = [ - sources."@textlint/ast-node-types-12.2.2" + sources."@textlint/ast-node-types-12.3.0" ]; }) - sources."@textlint/utils-12.2.3" + sources."@textlint/module-interop-12.5.0" + sources."@textlint/source-code-fixer-12.5.0" + (sources."@textlint/text-to-ast-12.5.0" // { + dependencies = [ + sources."@textlint/ast-node-types-12.3.0" + ]; + }) + sources."@textlint/textlint-plugin-markdown-12.5.0" + sources."@textlint/textlint-plugin-text-12.5.0" + (sources."@textlint/types-12.5.0" // { + dependencies = [ + sources."@textlint/ast-node-types-12.3.0" + ]; + }) + sources."@textlint/utils-12.5.0" sources."@types/mdast-3.0.10" sources."@types/structured-source-3.0.0" sources."@types/unist-2.0.6" - sources."ajv-8.11.2" + sources."ajv-8.12.0" sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" - sources."argparse-1.0.10" + sources."argparse-2.0.1" sources."astral-regex-2.0.0" sources."bail-1.0.5" sources."balanced-match-1.0.2" @@ -143856,10 +140583,10 @@ in sources."is-plain-obj-2.1.0" sources."is-regex-1.1.4" sources."is-utf8-0.2.1" - sources."js-yaml-3.14.1" + sources."js-yaml-4.1.0" sources."json-parse-better-errors-1.0.2" sources."json-schema-traverse-1.0.0" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."levn-0.4.1" sources."load-json-file-1.1.0" sources."locate-path-2.0.0" @@ -143920,8 +140647,13 @@ in sources."pluralize-2.0.0" sources."prelude-ls-1.2.1" sources."property-information-5.6.0" - sources."punycode-2.1.1" - sources."rc-config-loader-3.0.0" + sources."punycode-2.2.0" + (sources."rc-config-loader-3.0.0" // { + dependencies = [ + sources."argparse-1.0.10" + sources."js-yaml-3.14.1" + ]; + }) sources."read-pkg-1.1.0" (sources."read-pkg-up-3.0.0" // { dependencies = [ @@ -143963,19 +140695,23 @@ in sources."supports-preserve-symlinks-flag-1.0.0" sources."table-6.8.1" sources."text-table-0.2.0" - (sources."textlint-12.2.4" // { + (sources."textlint-12.5.1" // { dependencies = [ - sources."@textlint/ast-node-types-12.2.2" + sources."@textlint/ast-node-types-12.3.0" + ]; + }) + sources."textlint-tester-12.5.0" + (sources."textlint-util-to-string-3.1.1" // { + dependencies = [ + sources."unified-8.4.2" ]; }) - sources."textlint-tester-12.2.4" - sources."textlint-util-to-string-3.1.1" sources."traverse-0.6.7" sources."trough-1.0.5" sources."try-resolve-1.0.1" sources."type-check-0.4.0" sources."typedarray-0.0.6" - sources."unified-8.4.2" + sources."unified-9.2.2" sources."unique-concat-0.2.2" sources."unist-util-is-4.1.0" sources."unist-util-map-1.0.5" @@ -144071,11 +140807,6 @@ in }; dependencies = [ sources."@textlint/ast-node-types-4.4.3" - (sources."@textlint/types-12.2.3" // { - dependencies = [ - sources."@textlint/ast-node-types-12.2.2" - ]; - }) sources."@types/unist-2.0.6" sources."boundary-1.0.1" sources."buffer-from-1.1.2" @@ -144088,9 +140819,11 @@ in sources."sentence-splitter-3.2.2" sources."string_decoder-1.3.0" sources."structured-source-3.0.2" - (sources."textlint-rule-helper-2.2.3" // { + (sources."textlint-rule-helper-2.2.4" // { dependencies = [ - sources."@textlint/ast-node-types-12.2.2" + sources."@textlint/ast-node-types-12.3.0" + sources."boundary-2.0.0" + sources."structured-source-4.0.0" ]; }) sources."typedarray-0.0.6" @@ -144112,13 +140845,13 @@ in textlint-rule-period-in-list-item = nodeEnv.buildNodePackage { name = "textlint-rule-period-in-list-item"; packageName = "textlint-rule-period-in-list-item"; - version = "0.3.3"; + version = "1.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/textlint-rule-period-in-list-item/-/textlint-rule-period-in-list-item-0.3.3.tgz"; - sha512 = "XVm7E2riBggmyMPiLPQZwXxwFngi5WozWrZqctjN43uz9GykOyrqaHACGsLou2cJqa6nwQxqxewl2OOf/G64eA=="; + url = "https://registry.npmjs.org/textlint-rule-period-in-list-item/-/textlint-rule-period-in-list-item-1.0.1.tgz"; + sha512 = "dNPa4WzePcgsz8A+CxFGQgKNZCEvjjwMCu3DFcpYB4eKuhcSISEiS/mvEO42oGAALJluYdYVZxN3yMD6XzkLBA=="; }; dependencies = [ - sources."check-ends-with-period-2.0.1" + sources."check-ends-with-period-3.0.2" sources."emoji-regex-10.2.1" ]; buildInputs = globalBuildInputs; @@ -144140,14 +140873,13 @@ in sha512 = "gO4N3OnPLvE6+fvJ1Y5m8MzDVrqMEWzW8pTGMXjL8VAXmQkD6YQ9eDMbsVN0/DzEe8tcsBqNgA/iIrQ64oECuQ=="; }; dependencies = [ - sources."@textlint/ast-node-types-12.2.2" - sources."@textlint/types-12.2.3" + sources."@textlint/ast-node-types-12.3.0" sources."@types/unist-2.0.6" - sources."boundary-1.0.1" + sources."boundary-2.0.0" sources."lodash-4.17.21" sources."split-lines-2.1.0" - sources."structured-source-3.0.2" - sources."textlint-rule-helper-2.2.3" + sources."structured-source-4.0.0" + sources."textlint-rule-helper-2.2.4" sources."unist-util-is-4.1.0" sources."unist-util-visit-2.0.3" sources."unist-util-visit-parents-3.1.1" @@ -144171,14 +140903,13 @@ in sha512 = "obQ3y0hqX6OWCrM8K5K6WSJGE4BOyNfGF6hUGPet56taTm/xzkRu8XA6vpn2GFr4zom/oMa0sBJ3OtDWCgrS/g=="; }; dependencies = [ - sources."@textlint/ast-node-types-12.2.2" - sources."@textlint/types-12.2.3" + sources."@textlint/ast-node-types-12.3.0" sources."@types/unist-2.0.6" - sources."boundary-1.0.1" + sources."boundary-2.0.0" sources."lodash-4.17.21" sources."strip-json-comments-3.1.1" - sources."structured-source-3.0.2" - sources."textlint-rule-helper-2.2.3" + sources."structured-source-4.0.0" + sources."textlint-rule-helper-2.2.4" sources."unist-util-is-4.1.0" sources."unist-util-visit-2.0.3" sources."unist-util-visit-parents-3.1.1" @@ -144203,22 +140934,28 @@ in }; dependencies = [ sources."array-includes-3.1.6" + sources."available-typed-arrays-1.0.5" sources."call-bind-1.0.2" sources."define-properties-1.1.4" - sources."es-abstract-1.20.5" + sources."es-abstract-1.21.1" + sources."es-set-tostringtag-2.0.1" sources."es-to-primitive-1.2.1" + sources."for-each-0.3.3" sources."function-bind-1.1.1" sources."function.prototype.name-1.1.5" sources."functions-have-names-1.2.3" sources."get-intrinsic-1.1.3" sources."get-symbol-description-1.0.0" + sources."globalthis-1.0.3" sources."gopd-1.0.1" sources."has-1.0.3" sources."has-bigints-1.0.2" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."internal-slot-1.0.4" + sources."is-array-buffer-3.0.1" sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" @@ -144230,8 +140967,9 @@ in sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" + sources."is-typed-array-1.1.10" sources."is-weakref-1.0.2" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."object-keys-1.1.1" sources."object.assign-4.1.4" sources."regexp.prototype.flags-1.4.3" @@ -144239,8 +140977,10 @@ in sources."side-channel-1.0.4" sources."string.prototype.trimend-1.0.6" sources."string.prototype.trimstart-1.0.6" + sources."typed-array-length-1.0.4" sources."unbox-primitive-1.0.2" sources."which-boxed-primitive-1.0.2" + sources."which-typed-array-1.1.9" ]; buildInputs = globalBuildInputs; meta = { @@ -144262,8 +141002,7 @@ in }; dependencies = [ sources."@babel/runtime-7.20.7" - sources."@babel/runtime-corejs3-7.20.7" - (sources."@eslint/eslintrc-1.4.0" // { + (sources."@eslint/eslintrc-1.4.1" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -144280,8 +141019,7 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@textlint/ast-node-types-12.2.2" - sources."@textlint/types-12.2.3" + sources."@textlint/ast-node-types-12.3.0" sources."@types/json5-0.0.29" sources."@types/unist-2.0.6" sources."acorn-8.8.1" @@ -144291,16 +141029,17 @@ in sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."argparse-2.0.1" - sources."aria-query-4.2.2" + sources."aria-query-5.1.3" sources."array-includes-3.1.6" sources."array.prototype.flat-1.3.1" sources."array.prototype.flatmap-1.3.1" sources."array.prototype.tosorted-1.1.1" sources."ast-types-flow-0.0.7" - sources."axe-core-4.6.1" - sources."axobject-query-2.2.0" + sources."available-typed-arrays-1.0.5" + sources."axe-core-4.6.2" + sources."axobject-query-3.1.1" sources."balanced-match-1.0.2" - sources."boundary-1.0.1" + sources."boundary-2.0.0" sources."brace-expansion-1.1.11" sources."call-bind-1.0.2" sources."callsites-3.1.0" @@ -144309,41 +141048,33 @@ in sources."color-name-1.1.4" sources."commander-2.20.3" sources."concat-map-0.0.1" - sources."core-js-pure-3.26.1" sources."cross-spawn-7.0.3" sources."damerau-levenshtein-1.0.8" - sources."debug-2.6.9" + sources."debug-3.2.7" + sources."deep-equal-2.2.0" sources."deep-is-0.1.4" sources."define-properties-1.1.4" sources."doctrine-2.1.0" sources."e-prime-0.10.4" sources."emoji-regex-9.2.2" - sources."es-abstract-1.20.5" + sources."es-abstract-1.21.1" + sources."es-get-iterator-1.1.3" + sources."es-set-tostringtag-2.0.1" sources."es-shim-unscopables-1.0.0" sources."es-to-primitive-1.2.1" sources."escape-string-regexp-4.0.0" - (sources."eslint-8.30.0" // { + (sources."eslint-8.32.0" // { dependencies = [ sources."debug-4.3.4" sources."doctrine-3.0.0" sources."ms-2.1.2" ]; }) - (sources."eslint-import-resolver-node-0.3.6" // { - dependencies = [ - sources."debug-3.2.7" - sources."ms-2.1.3" - ]; - }) - (sources."eslint-module-utils-2.7.4" // { - dependencies = [ - sources."debug-3.2.7" - sources."ms-2.1.3" - ]; - }) - sources."eslint-plugin-import-2.26.0" - sources."eslint-plugin-jsx-a11y-6.6.1" - (sources."eslint-plugin-react-7.31.11" // { + sources."eslint-import-resolver-node-0.3.7" + sources."eslint-module-utils-2.7.4" + sources."eslint-plugin-import-2.27.5" + sources."eslint-plugin-jsx-a11y-6.7.1" + (sources."eslint-plugin-react-7.32.1" // { dependencies = [ sources."resolve-2.0.0-next.4" ]; @@ -144364,11 +141095,12 @@ in sources."fast-deep-equal-3.1.3" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."file-entry-cache-6.0.1" sources."find-up-5.0.0" sources."flat-cache-3.0.4" sources."flatted-3.2.7" + sources."for-each-0.3.3" sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" sources."function.prototype.name-1.1.5" @@ -144378,12 +141110,14 @@ in sources."glob-7.2.3" sources."glob-parent-6.0.2" sources."globals-13.19.0" + sources."globalthis-1.0.3" sources."gopd-1.0.1" sources."grapheme-splitter-1.0.4" sources."has-1.0.3" sources."has-bigints-1.0.2" sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."ignore-5.2.4" @@ -144392,6 +141126,8 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."internal-slot-1.0.4" + sources."is-arguments-1.1.1" + sources."is-array-buffer-3.0.1" sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" @@ -144399,35 +141135,42 @@ in sources."is-date-object-1.0.5" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" + sources."is-map-2.0.2" sources."is-negative-zero-2.0.2" sources."is-number-object-1.0.7" sources."is-path-inside-3.0.3" sources."is-regex-1.1.4" + sources."is-set-2.0.2" sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" + sources."is-typed-array-1.1.10" + sources."is-weakmap-2.0.1" sources."is-weakref-1.0.2" + sources."is-weakset-2.0.2" + sources."isarray-2.0.5" sources."isexe-2.0.0" sources."js-sdsl-4.2.0" sources."js-tokens-4.0.0" sources."js-yaml-4.1.0" sources."json-schema-traverse-0.4.1" sources."json-stable-stringify-without-jsonify-1.0.1" - sources."json5-1.0.1" + sources."json5-1.0.2" sources."jsx-ast-utils-3.3.3" sources."language-subtag-registry-0.3.22" - sources."language-tags-1.0.7" + sources."language-tags-1.0.5" sources."levn-0.4.1" sources."locate-path-6.0.0" sources."lodash.merge-4.6.2" sources."loose-envify-1.4.0" sources."minimatch-3.1.2" sources."minimist-1.2.7" - sources."ms-2.0.0" + sources."ms-2.1.3" sources."natural-compare-1.4.0" sources."no-cliches-0.3.4" sources."object-assign-4.1.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" + sources."object-is-1.1.5" sources."object-keys-1.1.1" sources."object.assign-4.1.4" sources."object.entries-1.1.6" @@ -144446,7 +141189,7 @@ in sources."path-parse-1.0.7" sources."prelude-ls-1.2.1" sources."prop-types-15.8.1" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."queue-microtask-1.2.3" sources."react-is-16.13.1" sources."regenerator-runtime-0.13.11" @@ -144462,21 +141205,23 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."side-channel-1.0.4" + sources."stop-iteration-iterator-1.0.0" sources."string.prototype.matchall-4.0.8" sources."string.prototype.trimend-1.0.6" sources."string.prototype.trimstart-1.0.6" sources."strip-ansi-6.0.1" sources."strip-bom-3.0.0" sources."strip-json-comments-3.1.1" - sources."structured-source-3.0.2" + sources."structured-source-4.0.0" sources."supports-color-7.2.0" sources."supports-preserve-symlinks-flag-1.0.0" sources."text-table-0.2.0" - sources."textlint-rule-helper-2.2.3" + sources."textlint-rule-helper-2.2.4" sources."too-wordy-0.3.4" sources."tsconfig-paths-3.14.1" sources."type-check-0.4.0" sources."type-fest-0.20.2" + sources."typed-array-length-1.0.4" sources."unbox-primitive-1.0.2" sources."unist-util-is-4.1.0" sources."unist-util-visit-2.0.3" @@ -144485,6 +141230,8 @@ in sources."weasel-words-0.1.1" sources."which-2.0.2" sources."which-boxed-primitive-1.0.2" + sources."which-collection-1.0.1" + sources."which-typed-array-1.1.9" sources."word-wrap-1.2.3" sources."wrappy-1.0.2" sources."write-good-1.0.8" @@ -144520,7 +141267,7 @@ in sources."@types/cors-2.8.13" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -144543,7 +141290,7 @@ in sources."asynckit-0.4.0" sources."available-typed-arrays-1.0.5" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."backoff-2.5.0" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" @@ -144580,7 +141327,7 @@ in sources."content-type-1.0.4" sources."cookie-0.4.2" sources."cookie-signature-1.0.6" - sources."core-js-3.26.1" + sources."core-js-3.27.1" sources."core-util-is-1.0.2" sources."cors-2.8.5" sources."css-select-4.3.0" @@ -144620,7 +141367,7 @@ in sources."ms-2.1.2" ]; }) - sources."engine.io-parser-5.0.4" + sources."engine.io-parser-5.0.6" sources."entities-2.2.0" sources."env-paths-2.2.1" sources."escape-html-1.0.3" @@ -144747,7 +141494,7 @@ in sources."mute-stream-0.0.8" sources."negotiator-0.6.3" sources."node-addon-api-4.3.0" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."node-forge-1.3.0" (sources."node-gyp-7.1.2" // { dependencies = [ @@ -144764,7 +141511,7 @@ in sources."strip-ansi-3.0.1" ]; }) - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."nopt-5.0.0" sources."normalize-url-6.1.0" sources."npmlog-5.0.1" @@ -144791,7 +141538,7 @@ in sources."proxy-addr-2.0.7" sources."psl-1.9.0" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.9.7" sources."quick-lru-5.1.1" sources."range-parser-1.2.1" @@ -144922,7 +141669,7 @@ in sources."@types/cors-2.8.13" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -144945,7 +141692,7 @@ in sources."asynckit-0.4.0" sources."available-typed-arrays-1.0.5" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."backoff-2.5.0" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" @@ -144982,7 +141729,7 @@ in sources."content-type-1.0.4" sources."cookie-0.4.2" sources."cookie-signature-1.0.6" - sources."core-js-3.26.1" + sources."core-js-3.27.1" sources."core-util-is-1.0.2" sources."cors-2.8.5" sources."css-select-4.3.0" @@ -145022,7 +141769,7 @@ in sources."ms-2.1.2" ]; }) - sources."engine.io-parser-5.0.4" + sources."engine.io-parser-5.0.6" sources."entities-2.2.0" sources."env-paths-2.2.1" sources."escape-html-1.0.3" @@ -145149,7 +141896,7 @@ in sources."mute-stream-0.0.8" sources."negotiator-0.6.3" sources."node-addon-api-4.3.0" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."node-forge-1.3.0" (sources."node-gyp-7.1.2" // { dependencies = [ @@ -145166,7 +141913,7 @@ in sources."strip-ansi-3.0.1" ]; }) - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."nopt-5.0.0" sources."normalize-url-6.1.0" sources."npmlog-5.0.1" @@ -145193,7 +141940,7 @@ in sources."proxy-addr-2.0.7" sources."psl-1.9.0" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.9.7" sources."quick-lru-5.1.1" sources."range-parser-1.2.1" @@ -145345,7 +142092,7 @@ in sources."async-limiter-1.0.1" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."axios-0.19.2" sources."backo2-1.0.2" sources."backoff-2.5.0" @@ -145400,7 +142147,7 @@ in sources."content-type-1.0.4" sources."cookie-0.4.0" sources."cookie-signature-1.0.6" - sources."core-js-3.26.1" + sources."core-js-3.27.1" sources."core-util-is-1.0.2" sources."css-select-1.2.0" sources."css-what-2.1.3" @@ -145577,7 +142324,7 @@ in ]; }) sources."negotiator-0.6.3" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" (sources."node-pre-gyp-0.11.0" // { dependencies = [ sources."semver-5.7.1" @@ -145594,7 +142341,7 @@ in sources."oauth-sign-0.9.0" sources."object-assign-4.1.1" sources."object-component-0.0.3" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."on-finished-2.3.0" sources."once-1.4.0" sources."os-homedir-1.0.2" @@ -145617,7 +142364,7 @@ in sources."proxy-addr-2.0.7" sources."psl-1.9.0" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.11.0" sources."range-parser-1.2.1" sources."raw-body-2.4.0" @@ -145964,10 +142711,10 @@ in thelounge-theme-dracula-official = nodeEnv.buildNodePackage { name = "thelounge-theme-dracula-official"; packageName = "thelounge-theme-dracula-official"; - version = "1.0.4"; + version = "1.0.6"; src = fetchurl { - url = "https://registry.npmjs.org/thelounge-theme-dracula-official/-/thelounge-theme-dracula-official-1.0.4.tgz"; - sha512 = "JrnsvHIOcDBNHI4uJDoy3+H34hvfXivFWuUjIlyYd9pzUBWSny8YCiUstm+fem45kwgbPSMTgUdh5LS6OZNoFA=="; + url = "https://registry.npmjs.org/thelounge-theme-dracula-official/-/thelounge-theme-dracula-official-1.0.6.tgz"; + sha512 = "qE766FfvCWm35vRWx686/C0RU2cbWiwKWkAZoW0BOrVarg1P+G3Dq6neQPbAE/pJTwSyAXz8N9oCdvr7knYZKw=="; }; buildInputs = globalBuildInputs; meta = { @@ -145994,7 +142741,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -146030,7 +142777,7 @@ in sources."async-limiter-1.0.1" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."backo2-1.0.2" sources."backoff-2.5.0" sources."balanced-match-1.0.2" @@ -146075,7 +142822,7 @@ in sources."content-type-1.0.4" sources."cookie-0.4.0" sources."cookie-signature-1.0.6" - sources."core-js-3.26.1" + sources."core-js-3.27.1" sources."core-util-is-1.0.2" sources."css-select-1.2.0" sources."css-what-2.1.3" @@ -146251,7 +142998,7 @@ in sources."tar-2.2.2" ]; }) - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" (sources."node-pre-gyp-0.11.0" // { dependencies = [ sources."semver-5.7.1" @@ -146314,7 +143061,7 @@ in sources."proxy-addr-2.0.7" sources."psl-1.9.0" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.7.0" sources."quick-lru-5.1.1" sources."range-parser-1.2.1" @@ -146462,7 +143209,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/responselike-1.0.0" sources."abbrev-1.1.1" sources."abstract-logging-2.0.1" @@ -146498,7 +143245,7 @@ in sources."async-limiter-1.0.1" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."backo2-1.0.2" sources."backoff-2.5.0" sources."balanced-match-1.0.2" @@ -146543,7 +143290,7 @@ in sources."content-type-1.0.4" sources."cookie-0.4.0" sources."cookie-signature-1.0.6" - sources."core-js-3.26.1" + sources."core-js-3.27.1" sources."core-util-is-1.0.2" sources."css-select-1.2.0" sources."css-what-2.1.3" @@ -146719,7 +143466,7 @@ in sources."tar-2.2.2" ]; }) - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" (sources."node-pre-gyp-0.11.0" // { dependencies = [ sources."semver-5.7.1" @@ -146782,7 +143529,7 @@ in sources."proxy-addr-2.0.7" sources."psl-1.9.0" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.7.0" sources."quick-lru-5.1.1" sources."range-parser-1.2.1" @@ -147361,7 +144108,7 @@ in sources."@types/cacheable-request-6.0.3" sources."@types/http-cache-semantics-4.0.1" sources."@types/keyv-3.1.4" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/responselike-1.0.0" sources."@xmldom/xmldom-0.8.6" sources."ajv-6.12.6" @@ -147371,7 +144118,7 @@ in sources."asynckit-0.4.0" sources."at-least-node-1.0.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."balanced-match-1.0.2" sources."bcrypt-pbkdf-1.0.2" sources."brace-expansion-1.1.11" @@ -147452,7 +144199,7 @@ in sources."performance-now-2.1.0" sources."psl-1.9.0" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.5.3" sources."quick-lru-5.1.1" (sources."request-2.88.2" // { @@ -147766,23 +144513,23 @@ in sources."@jridgewell/resolve-uri-3.1.0" sources."@jridgewell/sourcemap-codec-1.4.14" sources."@jridgewell/trace-mapping-0.3.9" - sources."@swc/core-1.3.24" - sources."@swc/core-darwin-arm64-1.3.24" - sources."@swc/core-darwin-x64-1.3.24" - sources."@swc/core-linux-arm-gnueabihf-1.3.24" - sources."@swc/core-linux-arm64-gnu-1.3.24" - sources."@swc/core-linux-arm64-musl-1.3.24" - sources."@swc/core-linux-x64-gnu-1.3.24" - sources."@swc/core-linux-x64-musl-1.3.24" - sources."@swc/core-win32-arm64-msvc-1.3.24" - sources."@swc/core-win32-ia32-msvc-1.3.24" - sources."@swc/core-win32-x64-msvc-1.3.24" - sources."@swc/wasm-1.3.24" + sources."@swc/core-1.3.27" + sources."@swc/core-darwin-arm64-1.3.27" + sources."@swc/core-darwin-x64-1.3.27" + sources."@swc/core-linux-arm-gnueabihf-1.3.27" + sources."@swc/core-linux-arm64-gnu-1.3.27" + sources."@swc/core-linux-arm64-musl-1.3.27" + sources."@swc/core-linux-x64-gnu-1.3.27" + sources."@swc/core-linux-x64-musl-1.3.27" + sources."@swc/core-win32-arm64-msvc-1.3.27" + sources."@swc/core-win32-ia32-msvc-1.3.27" + sources."@swc/core-win32-x64-msvc-1.3.27" + sources."@swc/wasm-1.3.27" sources."@tsconfig/node10-1.0.9" sources."@tsconfig/node12-1.0.11" sources."@tsconfig/node14-1.0.3" sources."@tsconfig/node16-1.0.3" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."acorn-8.8.1" sources."acorn-walk-8.2.0" sources."arg-4.1.3" @@ -147845,48 +144592,11 @@ in typescript-language-server = nodeEnv.buildNodePackage { name = "typescript-language-server"; packageName = "typescript-language-server"; - version = "2.2.0"; + version = "3.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/typescript-language-server/-/typescript-language-server-2.2.0.tgz"; - sha512 = "VHMBXzXZiyypn6rUtIC+1U8owmJu9bjVIceORVDZlJd+kFLZ45mk4OFIFKHN8TZN6VrcPyc1Eol4WHb7CqHWhg=="; + url = "https://registry.npmjs.org/typescript-language-server/-/typescript-language-server-3.0.2.tgz"; + sha512 = "KJ5kdKzdlNO0mfHbnb9nDKiL244fEd/fqW+b8trVchaLcCFo1aAd0sGX/vP563tdstBew/P1TzKLTnYa17/b8A=="; }; - dependencies = [ - sources."commander-9.4.1" - (sources."crypto-random-string-4.0.0" // { - dependencies = [ - sources."type-fest-1.4.0" - ]; - }) - sources."deepmerge-4.2.2" - sources."find-up-6.3.0" - sources."fs-extra-11.1.0" - sources."graceful-fs-4.2.10" - sources."is-stream-3.0.0" - sources."isexe-2.0.0" - sources."jsonfile-6.1.0" - sources."locate-path-7.1.1" - sources."lru-cache-6.0.0" - sources."p-debounce-4.0.0" - sources."p-limit-4.0.0" - sources."p-locate-6.0.0" - sources."path-exists-5.0.0" - sources."pkg-up-4.0.0" - sources."semver-7.3.8" - sources."temp-dir-2.0.0" - sources."tempy-3.0.0" - sources."type-fest-2.19.0" - sources."unique-string-3.0.0" - sources."universalify-2.0.0" - sources."vscode-jsonrpc-8.0.2" - sources."vscode-languageserver-8.0.2" - sources."vscode-languageserver-protocol-3.17.2" - sources."vscode-languageserver-textdocument-1.0.8" - sources."vscode-languageserver-types-3.17.2" - sources."vscode-uri-3.0.7" - sources."which-3.0.0" - sources."yallist-4.0.0" - sources."yocto-queue-1.0.0" - ]; buildInputs = globalBuildInputs; meta = { description = "Language Server Protocol (LSP) implementation for TypeScript using tsserver"; @@ -147952,7 +144662,7 @@ in sources."@types/cookie-0.4.1" sources."@types/cors-2.8.13" sources."@types/http-cache-semantics-4.0.1" - sources."@types/node-16.18.10" + sources."@types/node-16.18.11" sources."JSONStream-1.3.5" sources."abbrev-1.1.1" sources."accepts-1.3.8" @@ -148010,7 +144720,7 @@ in sources."builtin-status-codes-3.0.0" sources."bytes-3.1.2" sources."cacheable-lookup-7.0.0" - sources."cacheable-request-10.2.3" + sources."cacheable-request-10.2.5" sources."cached-path-relative-1.1.0" sources."call-bind-1.0.2" sources."cipher-base-1.0.4" @@ -148065,7 +144775,7 @@ in sources."destroy-1.2.0" sources."detective-5.2.1" sources."diff-5.1.0" - sources."diff2html-3.4.22" + sources."diff2html-3.4.29" (sources."diffie-hellman-5.0.3" // { dependencies = [ sources."bn.js-4.12.0" @@ -148089,7 +144799,7 @@ in sources."ms-2.1.2" ]; }) - sources."engine.io-parser-5.0.4" + sources."engine.io-parser-5.0.6" sources."error-ex-1.3.2" sources."escalade-3.1.1" sources."escape-html-1.0.3" @@ -148218,13 +144928,13 @@ in sources."ms-2.0.0" sources."negotiator-0.6.3" sources."node-cache-5.1.2" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."node-watch-0.7.3" sources."nopt-1.0.10" sources."normalize-url-8.0.0" sources."nprogress-0.2.0" sources."object-assign-4.1.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."on-finished-2.4.1" sources."on-headers-1.0.2" sources."once-1.4.0" @@ -148286,7 +144996,7 @@ in sources."rimraf-3.0.2" sources."ripemd160-2.0.2" sources."safe-buffer-5.2.1" - sources."safe-stable-stringify-2.4.1" + sources."safe-stable-stringify-2.4.2" sources."safer-buffer-2.1.2" (sources."semver-7.3.8" // { dependencies = [ @@ -148433,14 +145143,14 @@ in sources."@babel/code-frame-7.18.6" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" - sources."@npmcli/config-6.1.0" + sources."@npmcli/config-6.1.1" sources."@npmcli/map-workspaces-3.0.1" sources."@npmcli/name-from-folder-2.0.0" sources."@types/concat-stream-2.0.0" sources."@types/debug-4.1.7" sources."@types/is-empty-1.2.1" sources."@types/ms-0.7.31" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/supports-color-8.1.1" sources."@types/unist-2.0.6" sources."abbrev-2.0.0" @@ -148462,10 +145172,10 @@ in sources."find-up-6.3.0" sources."format-0.2.2" sources."fs.realpath-1.0.0" - sources."glob-8.0.3" + sources."glob-8.1.0" sources."has-flag-3.0.0" sources."ignore-5.2.4" - sources."import-meta-resolve-2.2.0" + sources."import-meta-resolve-2.2.1" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-3.0.1" @@ -148479,7 +145189,7 @@ in sources."load-plugin-5.1.0" sources."locate-path-7.1.1" sources."lru-cache-6.0.0" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" sources."ms-2.1.2" sources."nopt-7.0.0" sources."npm-normalize-package-bin-3.0.0" @@ -148520,12 +145230,12 @@ in sources."vscode-jsonrpc-8.0.2" sources."vscode-languageserver-8.0.2" sources."vscode-languageserver-protocol-3.17.2" - sources."vscode-languageserver-textdocument-1.0.8" + sources."vscode-languageserver-textdocument-1.0.9" sources."vscode-languageserver-types-3.17.2" sources."walk-up-path-1.0.0" sources."wrappy-1.0.2" sources."yallist-4.0.0" - sources."yaml-2.2.0" + sources."yaml-2.2.1" sources."yocto-queue-1.0.0" ]; buildInputs = globalBuildInputs; @@ -148625,7 +145335,7 @@ in sources."mkdirp-1.0.4" sources."ms-2.1.2" sources."nan-2.17.0" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."nopt-5.0.0" sources."npmlog-5.0.1" sources."object-assign-4.1.1" @@ -148755,7 +145465,7 @@ in sources."internmap-2.0.3" sources."is-fullwidth-code-point-3.0.0" sources."json-stringify-pretty-compact-3.0.0" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."require-directory-2.1.1" sources."robust-predicates-3.0.1" sources."rw-1.3.3" @@ -148823,15 +145533,19 @@ in vercel = nodeEnv.buildNodePackage { name = "vercel"; packageName = "vercel"; - version = "28.10.0"; + version = "28.12.6"; src = fetchurl { - url = "https://registry.npmjs.org/vercel/-/vercel-28.10.0.tgz"; - sha512 = "SuiKHaVCQYHg8TfsTBDwDqR5aCPNUOefUrGlkRRfM1pLXntFfJo0PhSX7Jm6Za9nUA9LaL8i+W9i3tA9ONjPqg=="; + url = "https://registry.npmjs.org/vercel/-/vercel-28.12.6.tgz"; + sha512 = "hDR6CfEu2kp5QNbQwS7tS87t7BTYkkF62lIlDx5KXSD/1OniYmVr8P1fyWNmkQ1biRjMNMa6/MMHT/md5b7Qlg=="; }; dependencies = [ + sources."@cspotcode/source-map-support-0.8.1" sources."@edge-runtime/format-1.1.0" sources."@edge-runtime/primitives-2.0.0" sources."@edge-runtime/vm-2.0.0" + sources."@jridgewell/resolve-uri-3.1.0" + sources."@jridgewell/sourcemap-codec-1.4.14" + sources."@jridgewell/trace-mapping-0.3.9" (sources."@mapbox/node-pre-gyp-1.0.10" // { dependencies = [ sources."semver-7.3.8" @@ -148840,81 +145554,73 @@ in sources."@nodelib/fs.scandir-2.1.5" sources."@nodelib/fs.stat-2.0.5" sources."@nodelib/fs.walk-1.2.8" - sources."@sindresorhus/is-0.14.0" - sources."@szmarczak/http-timer-1.1.2" + sources."@rollup/pluginutils-4.2.1" + sources."@swc/core-1.3.27" + sources."@swc/core-darwin-arm64-1.3.27" + sources."@swc/core-darwin-x64-1.3.27" + sources."@swc/core-linux-arm-gnueabihf-1.3.27" + sources."@swc/core-linux-arm64-gnu-1.3.27" + sources."@swc/core-linux-arm64-musl-1.3.27" + sources."@swc/core-linux-x64-gnu-1.3.27" + sources."@swc/core-linux-x64-musl-1.3.27" + sources."@swc/core-win32-arm64-msvc-1.3.27" + sources."@swc/core-win32-ia32-msvc-1.3.27" + sources."@swc/core-win32-x64-msvc-1.3.27" + sources."@swc/wasm-1.3.27" sources."@ts-morph/common-0.11.1" + sources."@tsconfig/node10-1.0.9" + sources."@tsconfig/node12-1.0.11" + sources."@tsconfig/node14-1.0.3" + sources."@tsconfig/node16-1.0.3" sources."@types/json-schema-7.0.11" sources."@types/node-14.18.33" - sources."@vercel/build-utils-5.7.1" - sources."@vercel/go-2.2.20" - sources."@vercel/hydrogen-0.0.34" - sources."@vercel/next-3.3.4" - sources."@vercel/nft-0.22.1" - sources."@vercel/node-2.8.1" - sources."@vercel/node-bridge-3.1.2" - sources."@vercel/python-3.1.30" - sources."@vercel/redwood-1.0.40" - sources."@vercel/remix-1.1.2" - (sources."@vercel/routing-utils-2.1.3" // { + sources."@vercel/build-utils-5.9.0" + sources."@vercel/go-2.2.30" + sources."@vercel/hydrogen-0.0.44" + sources."@vercel/next-3.3.15" + sources."@vercel/nft-0.22.5" + sources."@vercel/node-2.8.13" + sources."@vercel/node-bridge-3.1.9" + sources."@vercel/python-3.1.40" + sources."@vercel/redwood-1.0.51" + sources."@vercel/remix-1.2.5" + (sources."@vercel/routing-utils-2.1.8" // { dependencies = [ sources."ajv-6.12.6" sources."json-schema-traverse-0.4.1" ]; }) - sources."@vercel/ruby-1.3.46" - sources."@vercel/static-build-1.0.43" - sources."@vercel/static-config-2.0.6" + sources."@vercel/ruby-1.3.56" + sources."@vercel/static-build-1.1.7" + sources."@vercel/static-config-2.0.11" sources."abbrev-1.1.1" sources."acorn-8.8.1" + sources."acorn-walk-8.2.0" sources."agent-base-6.0.2" sources."ajv-8.6.3" - sources."ansi-align-3.0.1" sources."ansi-regex-5.0.1" - sources."ansi-styles-4.3.0" sources."aproba-2.0.0" sources."are-we-there-yet-2.0.0" sources."arg-4.1.3" sources."async-sema-3.1.1" sources."balanced-match-1.0.2" sources."bindings-1.5.0" - sources."boxen-5.1.2" sources."brace-expansion-1.1.11" sources."braces-3.0.2" - sources."buffer-from-1.1.2" - (sources."cacheable-request-6.1.0" // { - dependencies = [ - sources."get-stream-5.2.0" - sources."lowercase-keys-2.0.0" - ]; - }) - sources."camelcase-6.3.0" - sources."chalk-4.1.2" sources."chownr-2.0.0" - sources."ci-info-2.0.0" - sources."cli-boxes-2.2.1" - sources."clone-response-1.0.3" sources."code-block-writer-10.1.1" - sources."color-convert-2.0.1" - sources."color-name-1.1.4" sources."color-support-1.1.3" sources."concat-map-0.0.1" - sources."configstore-5.0.1" sources."console-control-strings-1.1.0" sources."convert-hrtime-3.0.0" - sources."crypto-random-string-2.0.0" + sources."create-require-1.1.1" sources."debug-4.3.4" - sources."decompress-response-3.3.0" - sources."deep-extend-0.6.0" - sources."defer-to-connect-1.1.3" sources."delegates-1.0.0" sources."detect-libc-2.0.1" sources."diff-4.0.2" - sources."dot-prop-5.3.0" - sources."duplexer3-0.1.5" sources."edge-runtime-2.0.0" sources."emoji-regex-8.0.0" sources."encoding-0.1.13" - sources."end-of-stream-1.4.4" sources."esbuild-0.14.47" sources."esbuild-android-64-0.14.47" sources."esbuild-android-arm64-0.14.47" @@ -148936,13 +145642,12 @@ in sources."esbuild-windows-32-0.14.47" sources."esbuild-windows-64-0.14.47" sources."esbuild-windows-arm64-0.14.47" - sources."escape-goat-2.1.1" sources."estree-walker-2.0.2" sources."exit-hook-2.2.1" sources."fast-deep-equal-3.1.3" sources."fast-glob-3.2.12" sources."fast-json-stable-stringify-2.1.0" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."file-uri-to-path-1.0.0" sources."fill-range-7.0.1" (sources."fs-minipass-2.1.0" // { @@ -148952,49 +145657,27 @@ in }) sources."fs.realpath-1.0.0" sources."gauge-3.0.2" - sources."get-stream-4.1.0" sources."glob-7.2.3" sources."glob-parent-5.1.2" - sources."global-dirs-3.0.1" - sources."got-9.6.0" sources."graceful-fs-4.2.10" - sources."has-flag-4.0.0" sources."has-unicode-2.0.1" - sources."has-yarn-2.1.0" - sources."http-cache-semantics-4.1.0" sources."http-status-1.5.3" sources."https-proxy-agent-5.0.1" sources."iconv-lite-0.6.3" - sources."import-lazy-2.1.0" - sources."imurmurhash-0.1.4" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."ini-2.0.0" - sources."is-ci-2.0.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-3.0.0" sources."is-glob-4.0.3" - sources."is-installed-globally-0.4.0" - sources."is-npm-5.0.0" sources."is-number-7.0.0" - sources."is-obj-2.0.0" - sources."is-path-inside-3.0.3" - sources."is-typedarray-1.0.0" - sources."is-yarn-global-0.3.0" - sources."json-buffer-3.0.0" sources."json-schema-to-ts-1.6.4" sources."json-schema-traverse-1.0.0" - sources."keyv-3.1.0" - sources."latest-version-5.1.0" - sources."lowercase-keys-1.0.1" sources."lru-cache-6.0.0" sources."make-dir-3.1.0" sources."make-error-1.3.6" sources."merge2-1.4.1" sources."micromatch-4.0.5" - sources."mimic-response-1.0.1" sources."minimatch-3.1.2" - sources."minimist-1.2.7" sources."minipass-4.0.0" (sources."minizlib-2.1.2" // { dependencies = [ @@ -149005,95 +145688,50 @@ in sources."mri-1.2.0" sources."ms-2.1.2" sources."node-fetch-2.6.7" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."nopt-5.0.0" - sources."normalize-url-4.5.1" sources."npmlog-5.0.1" sources."object-assign-4.1.1" sources."once-1.4.0" - sources."p-cancelable-1.1.0" - (sources."package-json-6.5.0" // { - dependencies = [ - sources."semver-6.3.0" - ]; - }) sources."parse-ms-2.1.0" sources."path-browserify-1.0.1" sources."path-is-absolute-1.0.1" sources."path-to-regexp-6.1.0" sources."picocolors-1.0.0" sources."picomatch-2.3.1" - sources."prepend-http-2.0.0" sources."pretty-bytes-5.6.0" sources."pretty-ms-7.0.1" - sources."pump-3.0.0" - sources."punycode-2.1.1" - sources."pupa-2.1.1" + sources."punycode-2.2.0" sources."queue-microtask-1.2.3" - (sources."rc-1.2.8" // { - dependencies = [ - sources."ini-1.3.8" - ]; - }) sources."readable-stream-3.6.0" - sources."registry-auth-token-4.2.2" - sources."registry-url-5.1.0" sources."require-from-string-2.0.2" sources."resolve-from-5.0.0" - sources."responselike-1.0.2" sources."reusify-1.0.4" sources."rimraf-3.0.2" - (sources."rollup-pluginutils-2.8.2" // { - dependencies = [ - sources."estree-walker-0.6.1" - ]; - }) sources."run-parallel-1.2.0" sources."safe-buffer-5.2.1" sources."safer-buffer-2.1.2" sources."semver-6.1.1" - (sources."semver-diff-3.1.1" // { - dependencies = [ - sources."semver-6.3.0" - ]; - }) sources."set-blocking-2.0.0" sources."signal-exit-3.0.7" - sources."source-map-0.6.1" - sources."source-map-support-0.5.21" sources."string-width-4.2.3" sources."string_decoder-1.3.0" sources."strip-ansi-6.0.1" - sources."strip-json-comments-2.0.1" - sources."supports-color-7.2.0" sources."tar-6.1.13" sources."time-span-4.0.0" - sources."to-readable-stream-1.0.0" sources."to-regex-range-5.0.1" sources."tr46-0.0.3" sources."ts-morph-12.0.0" - sources."ts-node-8.9.1" + sources."ts-node-10.9.1" sources."ts-toolbelt-6.15.5" - sources."type-fest-0.20.2" - sources."typedarray-to-buffer-3.1.5" sources."typescript-4.3.4" - sources."unique-string-2.0.0" - (sources."update-notifier-5.1.0" // { - dependencies = [ - sources."semver-7.3.8" - ]; - }) sources."uri-js-4.4.1" - sources."url-parse-lax-3.0.0" sources."util-deprecate-1.0.2" + sources."v8-compile-cache-lib-3.0.1" sources."webidl-conversions-3.0.1" sources."whatwg-url-5.0.0" sources."wide-align-1.1.5" - sources."widest-line-3.1.0" - sources."wrap-ansi-7.0.0" sources."wrappy-1.0.2" - sources."write-file-atomic-3.0.3" - sources."xdg-basedir-4.0.0" sources."yallist-4.0.0" sources."yn-3.1.1" ]; @@ -149262,11 +145900,11 @@ in sources."path-key-3.1.1" sources."path-parse-1.0.7" sources."prelude-ls-1.2.1" - sources."prettier-2.8.1" + sources."prettier-2.8.3" sources."progress-2.0.3" sources."pug-error-2.0.0" sources."pug-lexer-5.0.1" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."regexpp-3.2.0" sources."require-from-string-2.0.2" sources."resolve-1.22.1" @@ -149290,7 +145928,7 @@ in sources."supports-preserve-symlinks-flag-1.0.0" (sources."table-6.8.1" // { dependencies = [ - sources."ajv-8.11.2" + sources."ajv-8.12.0" sources."json-schema-traverse-1.0.0" ]; }) @@ -149427,7 +146065,7 @@ in sources."vscode-languageserver-types-3.16.0" ]; }) - sources."vscode-languageserver-textdocument-1.0.8" + sources."vscode-languageserver-textdocument-1.0.9" sources."vscode-languageserver-types-3.17.2" sources."vscode-nls-4.1.2" sources."vscode-uri-3.0.7" @@ -149477,7 +146115,7 @@ in sources."vscode-languageserver-types-3.5.0" ]; }) - sources."vscode-languageserver-textdocument-1.0.8" + sources."vscode-languageserver-textdocument-1.0.9" sources."vscode-languageserver-types-3.16.0-next.2" sources."vscode-nls-2.0.2" sources."vscode-uri-1.0.8" @@ -149502,7 +146140,7 @@ in }; dependencies = [ sources."@vscode/l10n-0.0.10" - sources."core-js-3.26.1" + sources."core-js-3.27.1" sources."jsonc-parser-3.2.0" sources."picomatch-2.3.1" sources."regenerator-runtime-0.13.11" @@ -149511,14 +146149,14 @@ in sources."vscode-css-languageservice-6.2.1" sources."vscode-html-languageservice-5.0.3" sources."vscode-json-languageservice-5.1.3" - sources."vscode-jsonrpc-8.1.0-next.5" - sources."vscode-languageserver-8.1.0-next.4" - (sources."vscode-languageserver-protocol-3.17.3-next.4" // { + sources."vscode-jsonrpc-8.1.0-next.7" + sources."vscode-languageserver-8.1.0-next.6" + (sources."vscode-languageserver-protocol-3.17.3-next.6" // { dependencies = [ - sources."vscode-languageserver-types-3.17.3-next.1" + sources."vscode-languageserver-types-3.17.3-next.3" ]; }) - sources."vscode-languageserver-textdocument-1.0.8" + sources."vscode-languageserver-textdocument-1.0.9" sources."vscode-languageserver-types-3.17.2" sources."vscode-markdown-languageservice-0.2.0" sources."vscode-nls-5.2.0" @@ -149557,7 +146195,7 @@ in sources."async-2.6.4" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" sources."bcrypt-pbkdf-1.0.2" @@ -149722,7 +146360,7 @@ in sources."process-nextick-args-2.0.1" sources."proto-list-1.2.4" sources."psl-1.9.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.5.3" sources."read-metadata-1.0.0" (sources."readable-stream-2.3.7" // { @@ -149822,7 +146460,7 @@ in sha512 = "/dd2bJLxOmX8Ie0EPTlmU+F8cxAekn/1m8K9OAFoijm4fc8SdHznFUUEKuz2RMMhsaL5+rccj8xLFAJELYNbaA=="; }; dependencies = [ - sources."@adobe/css-tools-4.0.1" + sources."@adobe/css-tools-4.0.2" sources."@babel/code-frame-7.18.6" sources."@babel/helper-validator-identifier-7.19.1" sources."@babel/highlight-7.18.6" @@ -149841,7 +146479,7 @@ in sources."@starptech/rehype-webparser-0.10.0" sources."@starptech/webparser-0.10.0" sources."@szmarczak/http-timer-1.1.2" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/unist-2.0.6" sources."@types/vfile-3.0.2" sources."@types/vfile-message-2.0.0" @@ -150239,8 +146877,8 @@ in (sources."js-beautify-1.14.7" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."glob-8.0.3" - sources."minimatch-5.1.2" + sources."glob-8.1.0" + sources."minimatch-5.1.6" ]; }) sources."js-tokens-4.0.0" @@ -150249,7 +146887,7 @@ in sources."json-parse-better-errors-1.0.2" sources."json-schema-traverse-0.4.1" sources."json-stable-stringify-without-jsonify-1.0.1" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."jsonc-parser-1.0.3" sources."keyv-3.1.0" sources."kind-of-6.0.3" @@ -150427,7 +147065,7 @@ in sources."proto-list-1.2.4" sources."pseudomap-1.0.2" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."quick-lru-1.1.0" sources."rc-1.2.8" sources."read-pkg-3.0.0" @@ -150597,14 +147235,14 @@ in sources."source-map-0.7.4" ]; }) - (sources."stylus-supremacy-2.17.3" // { + (sources."stylus-supremacy-2.17.5" // { dependencies = [ sources."argparse-2.0.1" sources."brace-expansion-2.0.1" sources."debug-4.3.4" - sources."glob-8.0.3" + sources."glob-8.1.0" sources."js-yaml-4.1.0" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" sources."ms-2.1.2" sources."source-map-0.7.4" (sources."stylus-0.59.0" // { @@ -150736,7 +147374,7 @@ in sources."vscode-jsonrpc-8.0.2" sources."vscode-languageserver-5.3.0-next.10" sources."vscode-languageserver-protocol-3.17.2" - sources."vscode-languageserver-textdocument-1.0.8" + sources."vscode-languageserver-textdocument-1.0.9" sources."vscode-languageserver-types-3.17.2" sources."vscode-nls-5.2.0" sources."vscode-textbuffer-1.0.0" @@ -150818,7 +147456,7 @@ in sources."asynckit-0.4.0" sources."atob-2.1.2" sources."balanced-match-1.0.2" - sources."bit-field-1.6.0" + sources."bit-field-1.7.0" sources."brace-expansion-1.1.11" sources."browser-process-hrtime-1.0.0" sources."btoa-1.2.1" @@ -150833,7 +147471,7 @@ in sources."combined-stream-1.0.8" sources."concat-map-0.0.1" sources."console-control-strings-1.1.0" - sources."core-js-pure-3.26.1" + sources."core-js-pure-3.27.1" sources."cssom-0.4.4" (sources."cssstyle-2.3.0" // { dependencies = [ @@ -150895,7 +147533,7 @@ in sources."whatwg-url-8.7.0" ]; }) - sources."json5-2.2.2" + sources."json5-2.2.3" sources."jsonfile-6.1.0" sources."levn-0.3.0" sources."lodash-4.17.21" @@ -150919,8 +147557,8 @@ in sources."mkdirp-1.0.4" sources."ms-2.1.2" sources."nan-2.17.0" - sources."node-fetch-2.6.7" - sources."node-gyp-build-4.5.0" + sources."node-fetch-2.6.8" + sources."node-gyp-build-4.6.0" sources."nopt-5.0.0" sources."npmlog-5.0.1" sources."nwsapi-2.2.2" @@ -150933,7 +147571,7 @@ in sources."performance-now-2.1.0" sources."prelude-ls-1.1.2" sources."psl-1.9.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."querystringify-2.2.0" sources."raf-3.4.1" sources."readable-stream-3.6.0" @@ -151031,7 +147669,7 @@ in sources."@devicefarmer/adbkit-3.2.3" sources."@devicefarmer/adbkit-logcat-2.1.2" sources."@devicefarmer/adbkit-monkey-1.2.1" - (sources."@eslint/eslintrc-1.4.0" // { + (sources."@eslint/eslintrc-1.4.1" // { dependencies = [ sources."ajv-6.12.6" sources."json-schema-traverse-0.4.1" @@ -151051,7 +147689,7 @@ in sources."@szmarczak/http-timer-5.0.1" sources."@types/http-cache-semantics-4.0.1" sources."@types/minimatch-3.0.5" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/yauzl-2.10.0" sources."abort-controller-3.0.0" sources."accepts-1.3.8" @@ -151086,7 +147724,7 @@ in sources."at-least-node-1.0.0" sources."atomic-sleep-1.0.0" sources."aws-sign2-0.7.0" - sources."aws4-1.11.0" + sources."aws4-1.12.0" sources."balanced-match-1.0.2" sources."base64-js-1.5.1" sources."bcrypt-pbkdf-1.0.2" @@ -151116,7 +147754,7 @@ in sources."bunyan-1.8.15" sources."bytes-3.1.2" sources."cacheable-lookup-7.0.0" - (sources."cacheable-request-10.2.3" // { + (sources."cacheable-request-10.2.5" // { dependencies = [ sources."get-stream-6.0.1" ]; @@ -151129,7 +147767,7 @@ in sources."cheerio-1.0.0-rc.12" sources."cheerio-select-2.1.0" sources."chrome-launcher-0.15.1" - sources."ci-info-3.7.0" + sources."ci-info-3.7.1" sources."cli-boxes-3.0.0" (sources."cliui-8.0.1" // { dependencies = [ @@ -151142,7 +147780,7 @@ in sources."color-name-1.1.4" sources."columnify-1.6.0" sources."combined-stream-1.0.8" - sources."commander-9.4.1" + sources."commander-9.5.0" sources."common-tags-1.8.2" sources."concat-map-0.0.1" (sources."concat-stream-1.6.2" // { @@ -151172,7 +147810,7 @@ in sources."css-select-5.1.0" sources."css-what-6.1.0" sources."dashdash-1.14.1" - sources."data-uri-to-buffer-4.0.0" + sources."data-uri-to-buffer-4.0.1" sources."debounce-1.2.1" sources."debug-4.3.4" sources."decamelize-6.0.0" @@ -151260,7 +147898,7 @@ in sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" sources."fast-redact-3.1.2" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fd-slicer-1.1.0" sources."fetch-blob-3.2.0" sources."file-entry-cache-6.0.1" @@ -151307,7 +147945,7 @@ in (sources."glob-8.0.3" // { dependencies = [ sources."brace-expansion-2.0.1" - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" ]; }) sources."glob-parent-6.0.2" @@ -151464,14 +148102,14 @@ in sources."node-domexception-1.0.0" sources."node-fetch-3.3.0" sources."node-forge-1.3.1" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."node-notifier-10.0.1" sources."normalize-url-8.0.0" sources."npm-run-path-4.0.1" sources."nth-check-2.1.1" sources."oauth-sign-0.9.0" sources."object-assign-4.1.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."on-exit-leak-free-2.1.0" sources."on-finished-2.4.1" sources."once-1.4.0" @@ -151501,7 +148139,7 @@ in sources."picocolors-1.0.0" sources."pino-8.7.0" sources."pino-abstract-transport-1.0.0" - sources."pino-std-serializers-6.0.0" + sources."pino-std-serializers-6.1.0" sources."postcss-8.4.19" sources."prelude-ls-1.2.1" sources."process-0.11.10" @@ -151512,7 +148150,7 @@ in sources."proxy-addr-2.0.7" sources."psl-1.9.0" sources."pump-3.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."pupa-3.1.0" sources."qs-6.11.0" sources."queue-6.0.2" @@ -151527,7 +148165,7 @@ in sources."strip-json-comments-2.0.1" ]; }) - sources."readable-stream-4.2.0" + sources."readable-stream-4.3.0" sources."real-require-0.2.0" sources."regenerator-runtime-0.13.11" sources."regexpp-3.2.0" @@ -151566,7 +148204,7 @@ in sources."safe-buffer-5.2.1" sources."safe-compare-1.1.4" sources."safe-json-stringify-1.2.0" - sources."safe-stable-stringify-2.4.1" + sources."safe-stable-stringify-2.4.2" sources."safer-buffer-2.1.2" sources."sax-1.2.4" sources."semver-7.3.8" @@ -151625,7 +148263,7 @@ in sources."text-table-0.2.0" sources."thenify-3.3.1" sources."thenify-all-1.6.0" - sources."thread-stream-2.2.0" + sources."thread-stream-2.3.0" sources."through-2.3.8" sources."tmp-0.2.1" sources."toidentifier-1.0.1" @@ -151724,7 +148362,7 @@ in sources."@types/eslint-scope-3.7.4" sources."@types/estree-0.0.51" sources."@types/json-schema-7.0.11" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -151748,7 +148386,7 @@ in sources."ajv-keywords-3.5.2" sources."browserslist-4.21.4" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" sources."electron-to-chromium-1.4.284" @@ -151778,11 +148416,11 @@ in sources."neo-async-2.6.2" sources."node-releases-2.0.8" sources."picocolors-1.0.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."randombytes-2.1.0" sources."safe-buffer-5.2.1" sources."schema-utils-3.1.1" - sources."serialize-javascript-6.0.0" + sources."serialize-javascript-6.0.1" sources."source-map-0.6.1" sources."source-map-support-0.5.21" sources."supports-color-8.1.1" @@ -151825,7 +148463,7 @@ in sources."@types/eslint-scope-3.7.4" sources."@types/estree-0.0.51" sources."@types/json-schema-7.0.11" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -151852,11 +148490,11 @@ in sources."ajv-keywords-3.5.2" sources."browserslist-4.21.4" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" sources."chrome-trace-event-1.0.3" sources."clone-deep-4.0.1" sources."colorette-2.0.19" - sources."commander-9.4.1" + sources."commander-9.5.0" sources."cross-spawn-7.0.3" sources."electron-to-chromium-1.4.284" sources."enhanced-resolve-5.12.0" @@ -151905,7 +148543,7 @@ in sources."path-parse-1.0.7" sources."picocolors-1.0.0" sources."pkg-dir-4.2.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."randombytes-2.1.0" sources."rechoir-0.8.0" sources."resolve-1.22.1" @@ -151913,7 +148551,7 @@ in sources."resolve-from-5.0.0" sources."safe-buffer-5.2.1" sources."schema-utils-3.1.1" - sources."serialize-javascript-6.0.0" + sources."serialize-javascript-6.0.1" sources."shallow-clone-3.0.1" sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" @@ -151972,18 +148610,18 @@ in sources."@types/eslint-scope-3.7.4" sources."@types/estree-0.0.51" sources."@types/express-4.17.15" - sources."@types/express-serve-static-core-4.17.31" + sources."@types/express-serve-static-core-4.17.32" sources."@types/http-proxy-1.17.9" sources."@types/json-schema-7.0.11" sources."@types/mime-3.0.1" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/qs-6.9.7" sources."@types/range-parser-1.2.4" sources."@types/retry-0.12.0" sources."@types/serve-index-1.9.1" sources."@types/serve-static-1.15.0" sources."@types/sockjs-0.3.33" - sources."@types/ws-8.5.3" + sources."@types/ws-8.5.4" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -152004,7 +148642,7 @@ in sources."accepts-1.3.8" sources."acorn-8.8.1" sources."acorn-import-assertions-1.8.0" - sources."ajv-8.11.2" + sources."ajv-8.12.0" sources."ajv-formats-2.1.1" sources."ajv-keywords-5.1.0" sources."ansi-html-community-0.0.8" @@ -152018,7 +148656,7 @@ in sources."bytes-3.1.2" ]; }) - sources."bonjour-service-1.0.14" + sources."bonjour-service-1.1.0" sources."brace-expansion-1.1.11" sources."braces-3.0.2" sources."browserslist-4.21.4" @@ -152026,7 +148664,7 @@ in sources."bufferutil-4.0.7" sources."bytes-3.0.0" sources."call-bind-1.0.2" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" sources."chokidar-3.5.3" sources."chrome-trace-event-1.0.3" sources."colorette-2.0.19" @@ -152130,7 +148768,7 @@ in sources."json-schema-traverse-1.0.0" sources."loader-runner-4.3.0" sources."media-typer-0.3.0" - sources."memfs-3.4.12" + sources."memfs-3.4.13" sources."merge-descriptors-1.0.1" sources."merge-stream-2.0.0" sources."methods-1.1.2" @@ -152146,11 +148784,11 @@ in sources."negotiator-0.6.3" sources."neo-async-2.6.2" sources."node-forge-1.3.1" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."node-releases-2.0.8" sources."normalize-path-3.0.0" sources."npm-run-path-4.0.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" sources."obuf-1.1.2" sources."on-finished-2.4.1" sources."on-headers-1.0.2" @@ -152170,7 +148808,7 @@ in sources."ipaddr.js-1.9.1" ]; }) - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."qs-6.11.0" sources."randombytes-2.1.0" sources."range-parser-1.2.1" @@ -152195,7 +148833,7 @@ in sources."ms-2.1.3" ]; }) - sources."serialize-javascript-6.0.0" + sources."serialize-javascript-6.0.1" (sources."serve-index-1.9.1" // { dependencies = [ sources."depd-1.1.2" @@ -152247,7 +148885,7 @@ in sources."unpipe-1.0.0" sources."update-browserslist-db-1.0.10" sources."uri-js-4.4.1" - sources."utf-8-validate-5.0.10" + sources."utf-8-validate-6.0.0" sources."util-deprecate-1.0.2" sources."utils-merge-1.0.1" sources."uuid-8.3.2" @@ -152268,7 +148906,7 @@ in sources."websocket-extensions-0.1.4" sources."which-2.0.2" sources."wrappy-1.0.2" - sources."ws-8.11.0" + sources."ws-8.12.0" ]; buildInputs = globalBuildInputs; meta = { @@ -152302,7 +148940,7 @@ in sources."@types/eslint-scope-3.7.4" sources."@types/estree-0.0.51" sources."@types/json-schema-7.0.11" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@webassemblyjs/ast-1.11.1" sources."@webassemblyjs/floating-point-hex-parser-1.11.1" sources."@webassemblyjs/helper-api-error-1.11.1" @@ -152322,13 +148960,13 @@ in sources."@xtuc/long-4.2.2" sources."acorn-8.8.1" sources."acorn-import-assertions-1.8.0" - sources."ajv-8.11.2" + sources."ajv-8.12.0" sources."ajv-formats-2.1.1" sources."ajv-keywords-5.1.0" sources."braces-3.0.2" sources."browserslist-4.21.4" sources."buffer-from-1.1.2" - sources."caniuse-lite-1.0.30001441" + sources."caniuse-lite-1.0.30001445" sources."chrome-trace-event-1.0.3" sources."commander-2.20.3" sources."dir-glob-3.0.1" @@ -152351,7 +148989,7 @@ in ]; }) sources."fast-json-stable-stringify-2.1.0" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fill-range-7.0.1" sources."glob-parent-6.0.2" sources."glob-to-regexp-0.4.1" @@ -152377,7 +149015,7 @@ in sources."path-type-4.0.0" sources."picocolors-1.0.0" sources."picomatch-2.3.1" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."queue-microtask-1.2.3" sources."randombytes-2.1.0" sources."require-from-string-2.0.2" @@ -152385,7 +149023,7 @@ in sources."run-parallel-1.2.0" sources."safe-buffer-5.2.1" sources."schema-utils-4.0.0" - sources."serialize-javascript-6.0.0" + sources."serialize-javascript-6.0.1" sources."slash-4.0.0" sources."source-map-0.6.1" sources."source-map-support-0.5.21" @@ -152445,7 +149083,7 @@ in sources."@protobufjs/pool-1.1.0" sources."@protobufjs/utf8-1.1.0" sources."@types/long-4.0.2" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@webtorrent/http-node-1.3.0" sources."addr-to-ip-port-1.5.4" sources."airplay-js-0.3.0" @@ -152656,11 +149294,11 @@ in ]; }) sources."mute-stream-0.0.8" - sources."napi-macros-2.1.1" + sources."napi-macros-2.2.2" sources."netmask-2.0.2" sources."network-address-1.1.2" sources."next-event-1.0.0" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."node-ssdp-2.9.1" sources."nodebmc-0.0.7" sources."on-finished-2.4.1" @@ -152752,7 +149390,7 @@ in sources."stream-to-blob-2.0.1" sources."stream-to-blob-url-3.0.2" sources."stream-with-known-length-to-buffer-1.0.4" - sources."streamx-2.13.0" + sources."streamx-2.13.2" sources."string-width-4.2.3" sources."string2compact-1.3.2" sources."string_decoder-1.1.1" @@ -152798,7 +149436,7 @@ in sources."videostream-3.2.2" sources."vlc-command-1.2.0" sources."wcwidth-1.0.1" - (sources."webtorrent-1.9.6" // { + (sources."webtorrent-1.9.7" // { dependencies = [ sources."debug-4.3.4" sources."decompress-response-6.0.0" @@ -152870,7 +149508,7 @@ in sources."kleur-3.0.3" sources."lru-cache-6.0.0" sources."minimatch-3.1.2" - sources."node-fetch-2.6.7" + sources."node-fetch-2.6.8" sources."once-1.4.0" sources."open-8.4.0" sources."path-is-absolute-1.0.1" @@ -152910,37 +149548,37 @@ in wrangler = nodeEnv.buildNodePackage { name = "wrangler"; packageName = "wrangler"; - version = "2.6.2"; + version = "2.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/wrangler/-/wrangler-2.6.2.tgz"; - sha512 = "+in4oEQXDs6+vE+1c6niBd3IrW1DMRTbauR6G0u3TpD6UaXOLwLdBxRLEbN3m82dN+WNm7l1MbFZrKc/TnWjhw=="; + url = "https://registry.npmjs.org/wrangler/-/wrangler-2.8.0.tgz"; + sha512 = "CAhjoeTnVFB65HPmOSquXbQ37lc2X77iOirX4tRMuRNKQng2NztHOfo++6BZdlV29E4IPD9boTRXck3R+O8mrg=="; }; dependencies = [ sources."@cloudflare/kv-asset-handler-0.2.0" sources."@esbuild-plugins/node-globals-polyfill-0.1.1" sources."@esbuild-plugins/node-modules-polyfill-0.1.4" sources."@iarna/toml-2.2.5" - sources."@miniflare/cache-2.10.0" - sources."@miniflare/cli-parser-2.10.0" - sources."@miniflare/core-2.10.0" - sources."@miniflare/d1-2.10.0" - sources."@miniflare/durable-objects-2.10.0" - sources."@miniflare/html-rewriter-2.10.0" - sources."@miniflare/http-server-2.10.0" - sources."@miniflare/kv-2.10.0" - sources."@miniflare/queues-2.10.0" - sources."@miniflare/r2-2.10.0" - sources."@miniflare/runner-vm-2.10.0" - sources."@miniflare/scheduler-2.10.0" - sources."@miniflare/shared-2.10.0" - sources."@miniflare/sites-2.10.0" - sources."@miniflare/storage-file-2.10.0" - sources."@miniflare/storage-memory-2.10.0" - sources."@miniflare/storage-redis-2.10.0" - sources."@miniflare/watcher-2.10.0" - sources."@miniflare/web-sockets-2.10.0" + sources."@miniflare/cache-2.11.0" + sources."@miniflare/cli-parser-2.11.0" + sources."@miniflare/core-2.11.0" + sources."@miniflare/d1-2.11.0" + sources."@miniflare/durable-objects-2.11.0" + sources."@miniflare/html-rewriter-2.11.0" + sources."@miniflare/http-server-2.11.0" + sources."@miniflare/kv-2.11.0" + sources."@miniflare/queues-2.11.0" + sources."@miniflare/r2-2.11.0" + sources."@miniflare/runner-vm-2.11.0" + sources."@miniflare/scheduler-2.11.0" + sources."@miniflare/shared-2.11.0" + sources."@miniflare/sites-2.11.0" + sources."@miniflare/storage-file-2.11.0" + sources."@miniflare/storage-memory-2.11.0" + sources."@miniflare/storage-redis-2.11.0" + sources."@miniflare/watcher-2.11.0" + sources."@miniflare/web-sockets-2.11.0" sources."@types/better-sqlite3-7.6.3" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/stack-trace-0.0.29" sources."anymatch-3.1.3" sources."binary-extensions-2.2.0" @@ -153005,12 +149643,12 @@ in sources."merge-stream-2.0.0" sources."mime-3.0.0" sources."mimic-fn-4.0.0" - sources."miniflare-2.10.0" + sources."miniflare-2.11.0" sources."ms-2.1.2" sources."mustache-4.2.0" sources."nanoid-3.3.4" sources."node-forge-1.3.1" - sources."node-gyp-build-4.5.0" + sources."node-gyp-build-4.6.0" sources."normalize-path-3.0.0" (sources."npm-run-path-5.1.0" // { dependencies = [ @@ -153052,10 +149690,10 @@ in sources."to-regex-range-5.0.1" sources."undici-5.9.1" sources."urlpattern-polyfill-4.0.3" - sources."utf-8-validate-5.0.10" + sources."utf-8-validate-6.0.0" sources."validate-npm-package-name-4.0.0" sources."which-2.0.2" - sources."ws-8.11.0" + sources."ws-8.12.0" sources."xxhash-wasm-1.0.2" sources."yallist-4.0.0" sources."youch-2.2.2" @@ -153098,8 +149736,7 @@ in }; dependencies = [ sources."@babel/runtime-7.20.7" - sources."@babel/runtime-corejs3-7.20.7" - (sources."@eslint/eslintrc-1.4.0" // { + (sources."@eslint/eslintrc-1.4.1" // { dependencies = [ sources."debug-4.3.4" sources."ms-2.1.2" @@ -153124,14 +149761,15 @@ in sources."ansi-regex-5.0.1" sources."ansi-styles-4.3.0" sources."argparse-2.0.1" - sources."aria-query-4.2.2" + sources."aria-query-5.1.3" sources."array-includes-3.1.6" sources."array.prototype.flat-1.3.1" sources."array.prototype.flatmap-1.3.1" sources."array.prototype.tosorted-1.1.1" sources."ast-types-flow-0.0.7" - sources."axe-core-4.6.1" - sources."axobject-query-2.2.0" + sources."available-typed-arrays-1.0.5" + sources."axe-core-4.6.2" + sources."axobject-query-3.1.1" sources."balanced-match-1.0.2" sources."brace-expansion-1.1.11" sources."call-bind-1.0.2" @@ -153141,41 +149779,33 @@ in sources."color-name-1.1.4" sources."commander-2.20.3" sources."concat-map-0.0.1" - sources."core-js-pure-3.26.1" sources."cross-spawn-7.0.3" sources."damerau-levenshtein-1.0.8" - sources."debug-2.6.9" + sources."debug-3.2.7" + sources."deep-equal-2.2.0" sources."deep-is-0.1.4" sources."define-properties-1.1.4" sources."doctrine-2.1.0" sources."e-prime-0.10.4" sources."emoji-regex-9.2.2" - sources."es-abstract-1.20.5" + sources."es-abstract-1.21.1" + sources."es-get-iterator-1.1.3" + sources."es-set-tostringtag-2.0.1" sources."es-shim-unscopables-1.0.0" sources."es-to-primitive-1.2.1" sources."escape-string-regexp-4.0.0" - (sources."eslint-8.30.0" // { + (sources."eslint-8.32.0" // { dependencies = [ sources."debug-4.3.4" sources."doctrine-3.0.0" sources."ms-2.1.2" ]; }) - (sources."eslint-import-resolver-node-0.3.6" // { - dependencies = [ - sources."debug-3.2.7" - sources."ms-2.1.3" - ]; - }) - (sources."eslint-module-utils-2.7.4" // { - dependencies = [ - sources."debug-3.2.7" - sources."ms-2.1.3" - ]; - }) - sources."eslint-plugin-import-2.26.0" - sources."eslint-plugin-jsx-a11y-6.6.1" - (sources."eslint-plugin-react-7.31.11" // { + sources."eslint-import-resolver-node-0.3.7" + sources."eslint-module-utils-2.7.4" + sources."eslint-plugin-import-2.27.5" + sources."eslint-plugin-jsx-a11y-6.7.1" + (sources."eslint-plugin-react-7.32.1" // { dependencies = [ sources."resolve-2.0.0-next.4" ]; @@ -153196,11 +149826,12 @@ in sources."fast-deep-equal-3.1.3" sources."fast-json-stable-stringify-2.1.0" sources."fast-levenshtein-2.0.6" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."file-entry-cache-6.0.1" sources."find-up-5.0.0" sources."flat-cache-3.0.4" sources."flatted-3.2.7" + sources."for-each-0.3.3" sources."fs.realpath-1.0.0" sources."function-bind-1.1.1" sources."function.prototype.name-1.1.5" @@ -153210,12 +149841,14 @@ in sources."glob-7.2.3" sources."glob-parent-6.0.2" sources."globals-13.19.0" + sources."globalthis-1.0.3" sources."gopd-1.0.1" sources."grapheme-splitter-1.0.4" sources."has-1.0.3" sources."has-bigints-1.0.2" sources."has-flag-4.0.0" sources."has-property-descriptors-1.0.0" + sources."has-proto-1.0.1" sources."has-symbols-1.0.3" sources."has-tostringtag-1.0.0" sources."ignore-5.2.4" @@ -153224,6 +149857,8 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."internal-slot-1.0.4" + sources."is-arguments-1.1.1" + sources."is-array-buffer-3.0.1" sources."is-bigint-1.0.4" sources."is-boolean-object-1.1.2" sources."is-callable-1.2.7" @@ -153231,35 +149866,42 @@ in sources."is-date-object-1.0.5" sources."is-extglob-2.1.1" sources."is-glob-4.0.3" + sources."is-map-2.0.2" sources."is-negative-zero-2.0.2" sources."is-number-object-1.0.7" sources."is-path-inside-3.0.3" sources."is-regex-1.1.4" + sources."is-set-2.0.2" sources."is-shared-array-buffer-1.0.2" sources."is-string-1.0.7" sources."is-symbol-1.0.4" + sources."is-typed-array-1.1.10" + sources."is-weakmap-2.0.1" sources."is-weakref-1.0.2" + sources."is-weakset-2.0.2" + sources."isarray-2.0.5" sources."isexe-2.0.0" sources."js-sdsl-4.2.0" sources."js-tokens-4.0.0" sources."js-yaml-4.1.0" sources."json-schema-traverse-0.4.1" sources."json-stable-stringify-without-jsonify-1.0.1" - sources."json5-1.0.1" + sources."json5-1.0.2" sources."jsx-ast-utils-3.3.3" sources."language-subtag-registry-0.3.22" - sources."language-tags-1.0.7" + sources."language-tags-1.0.5" sources."levn-0.4.1" sources."locate-path-6.0.0" sources."lodash.merge-4.6.2" sources."loose-envify-1.4.0" sources."minimatch-3.1.2" sources."minimist-1.2.7" - sources."ms-2.0.0" + sources."ms-2.1.3" sources."natural-compare-1.4.0" sources."no-cliches-0.3.4" sources."object-assign-4.1.1" - sources."object-inspect-1.12.2" + sources."object-inspect-1.12.3" + sources."object-is-1.1.5" sources."object-keys-1.1.1" sources."object.assign-4.1.4" sources."object.entries-1.1.6" @@ -153278,7 +149920,7 @@ in sources."path-parse-1.0.7" sources."prelude-ls-1.2.1" sources."prop-types-15.8.1" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."queue-microtask-1.2.3" sources."react-is-16.13.1" sources."regenerator-runtime-0.13.11" @@ -153294,6 +149936,7 @@ in sources."shebang-command-2.0.0" sources."shebang-regex-3.0.0" sources."side-channel-1.0.4" + sources."stop-iteration-iterator-1.0.0" sources."string.prototype.matchall-4.0.8" sources."string.prototype.trimend-1.0.6" sources."string.prototype.trimstart-1.0.6" @@ -153307,11 +149950,14 @@ in sources."tsconfig-paths-3.14.1" sources."type-check-0.4.0" sources."type-fest-0.20.2" + sources."typed-array-length-1.0.4" sources."unbox-primitive-1.0.2" sources."uri-js-4.4.1" sources."weasel-words-0.1.1" sources."which-2.0.2" sources."which-boxed-primitive-1.0.2" + sources."which-collection-1.0.1" + sources."which-typed-array-1.1.9" sources."word-wrap-1.2.3" sources."wrappy-1.0.2" sources."yocto-queue-0.1.0" @@ -153347,17 +149993,17 @@ in yaml-language-server = nodeEnv.buildNodePackage { name = "yaml-language-server"; packageName = "yaml-language-server"; - version = "1.10.0"; + version = "1.11.0"; src = fetchurl { - url = "https://registry.npmjs.org/yaml-language-server/-/yaml-language-server-1.10.0.tgz"; - sha512 = "bGE5lObc8PBXDQ8QKEWUVFw85/g1R3TVbtLPswNY+YXR2fLb1RF6PW3CKNI0gshXTSKleywhAyORrXi7fjwpzg=="; + url = "https://registry.npmjs.org/yaml-language-server/-/yaml-language-server-1.11.0.tgz"; + sha512 = "1TBlhK1nMSpDiq3iZfAyDOg4xwagozZAnqr0AOrZG5UteMt3zbfhOVqhRuAunRIZ8kktfGMjsKxDjO+utGAJaA=="; }; dependencies = [ - sources."ajv-8.11.2" + sources."ajv-8.12.0" sources."fast-deep-equal-3.1.3" sources."json-schema-traverse-1.0.0" sources."jsonc-parser-3.2.0" - sources."punycode-2.1.1" + sources."punycode-2.2.0" sources."request-light-0.5.8" sources."require-from-string-2.0.2" sources."uri-js-4.4.1" @@ -153369,7 +150015,7 @@ in sources."vscode-languageserver-types-3.16.0" ]; }) - sources."vscode-languageserver-textdocument-1.0.8" + sources."vscode-languageserver-textdocument-1.0.9" sources."vscode-languageserver-types-3.17.2" sources."vscode-nls-5.2.0" sources."vscode-uri-3.0.7" @@ -153509,7 +150155,7 @@ in sources."@npmcli/installed-package-contents-1.0.7" (sources."@npmcli/map-workspaces-2.0.4" // { dependencies = [ - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" ]; }) (sources."@npmcli/metavuln-calculator-2.0.0" // { @@ -153655,7 +150301,7 @@ in sources."config-chain-1.1.13" sources."configstore-5.0.1" sources."console-control-strings-1.1.0" - sources."core-js-3.26.1" + sources."core-js-3.27.1" sources."core-util-is-1.0.3" sources."create-error-class-3.0.2" sources."cross-spawn-7.0.3" @@ -153721,11 +150367,11 @@ in sources."extend-3.0.2" sources."external-editor-3.1.0" sources."fast-glob-3.2.12" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."figures-3.2.0" (sources."filelist-1.0.4" // { dependencies = [ - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" ]; }) sources."fill-range-7.0.1" @@ -153744,9 +150390,9 @@ in sources."get-intrinsic-1.1.3" sources."get-stdin-4.0.1" sources."get-stream-4.1.0" - (sources."glob-8.0.3" // { + (sources."glob-8.1.0" // { dependencies = [ - sources."minimatch-5.1.2" + sources."minimatch-5.1.6" ]; }) sources."glob-parent-5.1.2" @@ -154476,7 +151122,7 @@ in sources."@colors/colors-1.5.0" sources."@dabh/diagnostics-2.0.3" sources."@esm2cjs/cacheable-lookup-7.0.0" - sources."@esm2cjs/cacheable-request-10.2.3" + sources."@esm2cjs/cacheable-request-10.2.5" sources."@esm2cjs/form-data-encoder-2.1.4" sources."@esm2cjs/got-12.5.3" sources."@esm2cjs/http-timer-5.0.1" @@ -154489,23 +151135,23 @@ in sources."@esm2cjs/p-timeout-5.1.0" sources."@esm2cjs/responselike-3.0.0" sources."@homebridge/ciao-1.1.5" - (sources."@sentry/core-7.28.1" // { + (sources."@sentry/core-7.31.1" // { dependencies = [ sources."tslib-1.14.1" ]; }) - (sources."@sentry/integrations-7.28.1" // { + (sources."@sentry/integrations-7.31.1" // { dependencies = [ sources."tslib-1.14.1" ]; }) - (sources."@sentry/node-7.28.1" // { + (sources."@sentry/node-7.31.1" // { dependencies = [ sources."tslib-1.14.1" ]; }) - sources."@sentry/types-7.28.1" - (sources."@sentry/utils-7.28.1" // { + sources."@sentry/types-7.31.1" + (sources."@sentry/utils-7.31.1" // { dependencies = [ sources."tslib-1.14.1" ]; @@ -154525,14 +151171,14 @@ in sources."@serialport/parser-spacepacket-10.5.0" sources."@serialport/stream-10.5.0" sources."@types/http-cache-semantics-4.0.1" - sources."@zwave-js/cc-10.3.1" - sources."@zwave-js/config-10.3.1" - sources."@zwave-js/core-10.3.0" - sources."@zwave-js/host-10.3.1" - sources."@zwave-js/nvmedit-10.3.0" - sources."@zwave-js/serial-10.3.1" - sources."@zwave-js/shared-10.3.0" - sources."@zwave-js/testing-10.3.1" + sources."@zwave-js/cc-10.4.0" + sources."@zwave-js/config-10.4.0" + sources."@zwave-js/core-10.4.0" + sources."@zwave-js/host-10.4.0" + sources."@zwave-js/nvmedit-10.4.0" + sources."@zwave-js/serial-10.4.0" + sources."@zwave-js/shared-10.4.0" + sources."@zwave-js/testing-10.4.0" sources."agent-base-6.0.2" sources."alcalzone-shared-4.0.8" sources."ansi-colors-4.1.3" @@ -154585,7 +151231,7 @@ in sources."isexe-2.0.0" sources."json-buffer-3.0.1" sources."json-logic-js-2.0.2" - sources."json5-2.2.2" + sources."json5-2.2.3" sources."jsonfile-6.1.0" sources."keyv-4.5.2" sources."kuler-2.0.0" @@ -154601,8 +151247,8 @@ in sources."minimist-1.2.7" sources."moment-2.29.4" sources."ms-2.1.2" - sources."node-addon-api-5.0.0" - sources."node-gyp-build-4.5.0" + sources."node-addon-api-5.1.0" + sources."node-gyp-build-4.6.0" sources."npm-run-path-4.0.1" sources."nrf-intel-hex-1.3.0" sources."object-hash-2.2.0" @@ -154618,7 +151264,7 @@ in sources."responselike-3.0.0" sources."retry-0.12.0" sources."safe-buffer-5.2.1" - sources."safe-stable-stringify-2.4.1" + sources."safe-stable-stringify-2.4.2" sources."semver-7.3.8" sources."serialport-10.5.0" sources."shebang-command-2.0.0" @@ -154636,20 +151282,20 @@ in sources."triple-beam-1.3.0" sources."tslib-2.4.1" sources."universalify-2.0.0" - sources."utf-8-validate-5.0.10" + sources."utf-8-validate-6.0.0" sources."util-deprecate-1.0.2" sources."which-2.0.2" sources."winston-3.8.2" sources."winston-daily-rotate-file-4.7.1" sources."winston-transport-4.5.0" sources."wrap-ansi-7.0.0" - sources."ws-8.11.0" + sources."ws-8.12.0" sources."xstate-4.29.0" sources."y18n-5.0.8" sources."yallist-4.0.0" sources."yargs-17.6.2" sources."yargs-parser-21.1.1" - sources."zwave-js-10.3.1" + sources."zwave-js-10.4.0" ]; buildInputs = globalBuildInputs; meta = { @@ -154675,17 +151321,17 @@ in sources."@nodelib/fs.walk-1.2.8" sources."@types/fs-extra-9.0.13" sources."@types/minimist-1.2.2" - sources."@types/node-18.11.17" + sources."@types/node-18.11.18" sources."@types/ps-tree-1.1.2" sources."@types/which-2.0.1" sources."braces-3.0.2" sources."chalk-5.2.0" - sources."data-uri-to-buffer-4.0.0" + sources."data-uri-to-buffer-4.0.1" sources."dir-glob-3.0.1" sources."duplexer-0.1.2" sources."event-stream-3.3.4" sources."fast-glob-3.2.12" - sources."fastq-1.14.0" + sources."fastq-1.15.0" sources."fetch-blob-3.2.0" sources."fill-range-7.0.1" sources."formdata-polyfill-4.0.10" @@ -154721,7 +151367,7 @@ in sources."universalify-2.0.0" sources."web-streams-polyfill-3.2.1" sources."which-2.0.2" - sources."yaml-2.2.0" + sources."yaml-2.2.1" ]; buildInputs = globalBuildInputs; meta = { diff --git a/pkgs/servers/photoprism/backend.nix b/pkgs/servers/photoprism/backend.nix index 23f39890bd37..2a728b058cde 100644 --- a/pkgs/servers/photoprism/backend.nix +++ b/pkgs/servers/photoprism/backend.nix @@ -19,7 +19,7 @@ buildGoModule rec { substituteInPlace internal/commands/passwd.go --replace '/bin/stty' "${coreutils}/bin/stty" ''; - vendorSha256 = "sha256-x1WfBxjGg4HKnzN0xEY43hgwdS6yf1AFo3GlW8e7nrM="; + vendorSha256 = "sha256-59ZwijPCcmhMPeh7v8EdqzraqRx+HhK6VnUk0JvAbbU="; subPackages = [ "cmd/photoprism" ]; diff --git a/pkgs/servers/photoprism/default.nix b/pkgs/servers/photoprism/default.nix index a33d3d183004..1c9303ff4c53 100644 --- a/pkgs/servers/photoprism/default.nix +++ b/pkgs/servers/photoprism/default.nix @@ -1,14 +1,14 @@ { pkgs, lib, stdenv, fetchFromGitHub, fetchzip, darktable, rawtherapee, ffmpeg, libheif, exiftool, makeWrapper, testers }: let - version = "221102-905925b4d"; + version = "221118-e58fee0fb"; pname = "photoprism"; src = fetchFromGitHub { owner = pname; repo = pname; rev = version; - sha256 = "sha256-xyyV16yYlKIMINmVDtiQJmnbEQ12wjzn6p90f4+GpWk="; + sha256 = "sha256-Bx9SJLK97uZ/k09LIj8dHwmRetg6krI5iO7mtojV3PU="; }; libtensorflow = pkgs.callPackage ./libtensorflow.nix { }; diff --git a/pkgs/servers/photoprism/frontend.nix b/pkgs/servers/photoprism/frontend.nix index 08822eb0c56a..9bf0fc57348c 100644 --- a/pkgs/servers/photoprism/frontend.nix +++ b/pkgs/servers/photoprism/frontend.nix @@ -8,7 +8,7 @@ buildNpmPackage { cd frontend ''; - npmDepsHash = "sha256-NAtZ85WjiQn9w0B9Y78XL+tSsshHlaXS8+WtojFJmGg="; + npmDepsHash = "sha256-NAtZ85WjiQn9w0B9Y78XL+tSsshHlaXS8+WtojFJmGg"; installPhase = '' runHook preInstall