From 8b721f85ea5f3892a7952d356ad40b22a7a61c1b Mon Sep 17 00:00:00 2001 From: David Kaplan Date: Tue, 12 Nov 2024 12:05:56 -0500 Subject: [PATCH] chore(utxo-staking): rename module to utxo-staking TICKET: BTC-1579 --- CODEOWNERS | 2 +- Dockerfile | 1 + modules/utxo-coredao/README.md | 3 - .../.eslintignore | 0 .../.mocharc.yml | 0 .../{utxo-coredao => utxo-staking}/.npmignore | 0 .../.prettierignore | 0 .../.prettierrc.yml | 0 .../CHANGELOG.md | 0 modules/utxo-staking/README.md | 3 + .../package.json | 6 +- .../src/descriptor.ts | 0 .../src/index.ts | 0 .../src/opReturn.ts | 0 .../test/fixtures/descriptor/sh-2of2-asm.txt | 0 .../test/fixtures/descriptor/sh-2of2-ast.json | 0 .../fixtures/descriptor/sh-2of2-string.txt | 0 .../test/fixtures/descriptor/sh-2of2-tx.txt | 0 .../test/fixtures/descriptor/sh-3of3-asm.txt | 0 .../test/fixtures/descriptor/sh-3of3-ast.json | 0 .../fixtures/descriptor/sh-3of3-string.txt | 0 .../test/fixtures/descriptor/sh-3of3-tx.txt | 0 .../fixtures/descriptor/sh-wsh-2of2-asm.txt | 0 .../fixtures/descriptor/sh-wsh-2of2-ast.json | 0 .../descriptor/sh-wsh-2of2-string.txt | 0 .../fixtures/descriptor/sh-wsh-2of2-tx.txt | 0 ...bca514f33920c54d4af63ed46a903793115d5.json | 0 ...2bca514f33920c54d4af63ed46a903793115d5.txt | 0 .../test/fixtures/opReturn/documentation.txt | 0 .../test/unit/descriptor.ts | 0 .../test/unit/opReturn.ts | 0 .../test/unit/utils.ts | 0 .../tsconfig.json | 0 yarn.lock | 286 +++++++++++------- 34 files changed, 181 insertions(+), 120 deletions(-) delete mode 100644 modules/utxo-coredao/README.md rename modules/{utxo-coredao => utxo-staking}/.eslintignore (100%) rename modules/{utxo-coredao => utxo-staking}/.mocharc.yml (100%) rename modules/{utxo-coredao => utxo-staking}/.npmignore (100%) rename modules/{utxo-coredao => utxo-staking}/.prettierignore (100%) rename modules/{utxo-coredao => utxo-staking}/.prettierrc.yml (100%) rename modules/{utxo-coredao => utxo-staking}/CHANGELOG.md (100%) create mode 100644 modules/utxo-staking/README.md rename modules/{utxo-coredao => utxo-staking}/package.json (87%) rename modules/{utxo-coredao => utxo-staking}/src/descriptor.ts (100%) rename modules/{utxo-coredao => utxo-staking}/src/index.ts (100%) rename modules/{utxo-coredao => utxo-staking}/src/opReturn.ts (100%) rename modules/{utxo-coredao => utxo-staking}/test/fixtures/descriptor/sh-2of2-asm.txt (100%) rename modules/{utxo-coredao => utxo-staking}/test/fixtures/descriptor/sh-2of2-ast.json (100%) rename modules/{utxo-coredao => utxo-staking}/test/fixtures/descriptor/sh-2of2-string.txt (100%) rename modules/{utxo-coredao => utxo-staking}/test/fixtures/descriptor/sh-2of2-tx.txt (100%) rename modules/{utxo-coredao => utxo-staking}/test/fixtures/descriptor/sh-3of3-asm.txt (100%) rename modules/{utxo-coredao => utxo-staking}/test/fixtures/descriptor/sh-3of3-ast.json (100%) rename modules/{utxo-coredao => utxo-staking}/test/fixtures/descriptor/sh-3of3-string.txt (100%) rename modules/{utxo-coredao => utxo-staking}/test/fixtures/descriptor/sh-3of3-tx.txt (100%) rename modules/{utxo-coredao => utxo-staking}/test/fixtures/descriptor/sh-wsh-2of2-asm.txt (100%) rename modules/{utxo-coredao => utxo-staking}/test/fixtures/descriptor/sh-wsh-2of2-ast.json (100%) rename modules/{utxo-coredao => utxo-staking}/test/fixtures/descriptor/sh-wsh-2of2-string.txt (100%) rename modules/{utxo-coredao => utxo-staking}/test/fixtures/descriptor/sh-wsh-2of2-tx.txt (100%) rename modules/{utxo-coredao => utxo-staking}/test/fixtures/opReturn/66ed4cea26a410248a6d87f14b2bca514f33920c54d4af63ed46a903793115d5.json (100%) rename modules/{utxo-coredao => utxo-staking}/test/fixtures/opReturn/66ed4cea26a410248a6d87f14b2bca514f33920c54d4af63ed46a903793115d5.txt (100%) rename modules/{utxo-coredao => utxo-staking}/test/fixtures/opReturn/documentation.txt (100%) rename modules/{utxo-coredao => utxo-staking}/test/unit/descriptor.ts (100%) rename modules/{utxo-coredao => utxo-staking}/test/unit/opReturn.ts (100%) rename modules/{utxo-coredao => utxo-staking}/test/unit/utils.ts (100%) rename modules/{utxo-coredao => utxo-staking}/tsconfig.json (100%) diff --git a/CODEOWNERS b/CODEOWNERS index 1ed00c2a3e..915ba27a6f 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -24,7 +24,7 @@ /modules/sdk-core/src/bitgo/lightning/ @BitGo/btc-team /modules/unspents/ @BitGo/btc-team /modules/utxo-bin/ @BitGo/btc-team -/modules/utxo-coredao/ @BitGo/btc-team +/modules/utxo-staking/ @BitGo/btc-team /modules/utxo-lib/ @BitGo/btc-team /modules/utxo-ord/ @BitGo/btc-team diff --git a/Dockerfile b/Dockerfile index 3597de6c8f..9ad3d34c35 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,6 +45,7 @@ COPY --from=builder /tmp/bitgo/modules/sdk-opensslbytes /var/modules/sdk-openssl COPY --from=builder /tmp/bitgo/modules/sjcl /var/modules/sjcl/ COPY --from=builder /tmp/bitgo/modules/statics /var/modules/statics/ COPY --from=builder /tmp/bitgo/modules/utxo-lib /var/modules/utxo-lib/ +COPY --from=builder /tmp/bitgo/modules/utxo-staking /var/modules/utxo-staking/ COPY --from=builder /tmp/bitgo/modules/blake2b /var/modules/blake2b/ COPY --from=builder /tmp/bitgo/modules/blake2b-wasm /var/modules/blake2b-wasm/ COPY --from=builder /tmp/bitgo/modules/bitgo /var/modules/bitgo/ diff --git a/modules/utxo-coredao/README.md b/modules/utxo-coredao/README.md deleted file mode 100644 index 40aaf076d9..0000000000 --- a/modules/utxo-coredao/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# BitGo utxo-CoreDao - -Provides the functionality to build and parse coredao transactions. diff --git a/modules/utxo-coredao/.eslintignore b/modules/utxo-staking/.eslintignore similarity index 100% rename from modules/utxo-coredao/.eslintignore rename to modules/utxo-staking/.eslintignore diff --git a/modules/utxo-coredao/.mocharc.yml b/modules/utxo-staking/.mocharc.yml similarity index 100% rename from modules/utxo-coredao/.mocharc.yml rename to modules/utxo-staking/.mocharc.yml diff --git a/modules/utxo-coredao/.npmignore b/modules/utxo-staking/.npmignore similarity index 100% rename from modules/utxo-coredao/.npmignore rename to modules/utxo-staking/.npmignore diff --git a/modules/utxo-coredao/.prettierignore b/modules/utxo-staking/.prettierignore similarity index 100% rename from modules/utxo-coredao/.prettierignore rename to modules/utxo-staking/.prettierignore diff --git a/modules/utxo-coredao/.prettierrc.yml b/modules/utxo-staking/.prettierrc.yml similarity index 100% rename from modules/utxo-coredao/.prettierrc.yml rename to modules/utxo-staking/.prettierrc.yml diff --git a/modules/utxo-coredao/CHANGELOG.md b/modules/utxo-staking/CHANGELOG.md similarity index 100% rename from modules/utxo-coredao/CHANGELOG.md rename to modules/utxo-staking/CHANGELOG.md diff --git a/modules/utxo-staking/README.md b/modules/utxo-staking/README.md new file mode 100644 index 0000000000..6f43434aa1 --- /dev/null +++ b/modules/utxo-staking/README.md @@ -0,0 +1,3 @@ +# BitGo UTXO Staking + +Provides the functionality to build, parse, and verify BTC staking treansactions. diff --git a/modules/utxo-coredao/package.json b/modules/utxo-staking/package.json similarity index 87% rename from modules/utxo-coredao/package.json rename to modules/utxo-staking/package.json index 80c8247727..1fc0614cf9 100644 --- a/modules/utxo-coredao/package.json +++ b/modules/utxo-staking/package.json @@ -1,7 +1,7 @@ { - "name": "@bitgo/utxo-coredao", + "name": "@bitgo/utxo-staking", "version": "1.1.0", - "description": "BitGo SDK for building CoreDao transactions", + "description": "BitGo SDK for build UTXO staking transactions", "main": "./dist/src/index.js", "types": "./dist/src/index.d.ts", "scripts": { @@ -23,7 +23,7 @@ "repository": { "type": "git", "url": "https://github.com/BitGo/BitGoJS.git", - "directory": "modules/utxo-coredao" + "directory": "modules/utxo-staking" }, "lint-staged": { "*.{js,ts}": [ diff --git a/modules/utxo-coredao/src/descriptor.ts b/modules/utxo-staking/src/descriptor.ts similarity index 100% rename from modules/utxo-coredao/src/descriptor.ts rename to modules/utxo-staking/src/descriptor.ts diff --git a/modules/utxo-coredao/src/index.ts b/modules/utxo-staking/src/index.ts similarity index 100% rename from modules/utxo-coredao/src/index.ts rename to modules/utxo-staking/src/index.ts diff --git a/modules/utxo-coredao/src/opReturn.ts b/modules/utxo-staking/src/opReturn.ts similarity index 100% rename from modules/utxo-coredao/src/opReturn.ts rename to modules/utxo-staking/src/opReturn.ts diff --git a/modules/utxo-coredao/test/fixtures/descriptor/sh-2of2-asm.txt b/modules/utxo-staking/test/fixtures/descriptor/sh-2of2-asm.txt similarity index 100% rename from modules/utxo-coredao/test/fixtures/descriptor/sh-2of2-asm.txt rename to modules/utxo-staking/test/fixtures/descriptor/sh-2of2-asm.txt diff --git a/modules/utxo-coredao/test/fixtures/descriptor/sh-2of2-ast.json b/modules/utxo-staking/test/fixtures/descriptor/sh-2of2-ast.json similarity index 100% rename from modules/utxo-coredao/test/fixtures/descriptor/sh-2of2-ast.json rename to modules/utxo-staking/test/fixtures/descriptor/sh-2of2-ast.json diff --git a/modules/utxo-coredao/test/fixtures/descriptor/sh-2of2-string.txt b/modules/utxo-staking/test/fixtures/descriptor/sh-2of2-string.txt similarity index 100% rename from modules/utxo-coredao/test/fixtures/descriptor/sh-2of2-string.txt rename to modules/utxo-staking/test/fixtures/descriptor/sh-2of2-string.txt diff --git a/modules/utxo-coredao/test/fixtures/descriptor/sh-2of2-tx.txt b/modules/utxo-staking/test/fixtures/descriptor/sh-2of2-tx.txt similarity index 100% rename from modules/utxo-coredao/test/fixtures/descriptor/sh-2of2-tx.txt rename to modules/utxo-staking/test/fixtures/descriptor/sh-2of2-tx.txt diff --git a/modules/utxo-coredao/test/fixtures/descriptor/sh-3of3-asm.txt b/modules/utxo-staking/test/fixtures/descriptor/sh-3of3-asm.txt similarity index 100% rename from modules/utxo-coredao/test/fixtures/descriptor/sh-3of3-asm.txt rename to modules/utxo-staking/test/fixtures/descriptor/sh-3of3-asm.txt diff --git a/modules/utxo-coredao/test/fixtures/descriptor/sh-3of3-ast.json b/modules/utxo-staking/test/fixtures/descriptor/sh-3of3-ast.json similarity index 100% rename from modules/utxo-coredao/test/fixtures/descriptor/sh-3of3-ast.json rename to modules/utxo-staking/test/fixtures/descriptor/sh-3of3-ast.json diff --git a/modules/utxo-coredao/test/fixtures/descriptor/sh-3of3-string.txt b/modules/utxo-staking/test/fixtures/descriptor/sh-3of3-string.txt similarity index 100% rename from modules/utxo-coredao/test/fixtures/descriptor/sh-3of3-string.txt rename to modules/utxo-staking/test/fixtures/descriptor/sh-3of3-string.txt diff --git a/modules/utxo-coredao/test/fixtures/descriptor/sh-3of3-tx.txt b/modules/utxo-staking/test/fixtures/descriptor/sh-3of3-tx.txt similarity index 100% rename from modules/utxo-coredao/test/fixtures/descriptor/sh-3of3-tx.txt rename to modules/utxo-staking/test/fixtures/descriptor/sh-3of3-tx.txt diff --git a/modules/utxo-coredao/test/fixtures/descriptor/sh-wsh-2of2-asm.txt b/modules/utxo-staking/test/fixtures/descriptor/sh-wsh-2of2-asm.txt similarity index 100% rename from modules/utxo-coredao/test/fixtures/descriptor/sh-wsh-2of2-asm.txt rename to modules/utxo-staking/test/fixtures/descriptor/sh-wsh-2of2-asm.txt diff --git a/modules/utxo-coredao/test/fixtures/descriptor/sh-wsh-2of2-ast.json b/modules/utxo-staking/test/fixtures/descriptor/sh-wsh-2of2-ast.json similarity index 100% rename from modules/utxo-coredao/test/fixtures/descriptor/sh-wsh-2of2-ast.json rename to modules/utxo-staking/test/fixtures/descriptor/sh-wsh-2of2-ast.json diff --git a/modules/utxo-coredao/test/fixtures/descriptor/sh-wsh-2of2-string.txt b/modules/utxo-staking/test/fixtures/descriptor/sh-wsh-2of2-string.txt similarity index 100% rename from modules/utxo-coredao/test/fixtures/descriptor/sh-wsh-2of2-string.txt rename to modules/utxo-staking/test/fixtures/descriptor/sh-wsh-2of2-string.txt diff --git a/modules/utxo-coredao/test/fixtures/descriptor/sh-wsh-2of2-tx.txt b/modules/utxo-staking/test/fixtures/descriptor/sh-wsh-2of2-tx.txt similarity index 100% rename from modules/utxo-coredao/test/fixtures/descriptor/sh-wsh-2of2-tx.txt rename to modules/utxo-staking/test/fixtures/descriptor/sh-wsh-2of2-tx.txt diff --git a/modules/utxo-coredao/test/fixtures/opReturn/66ed4cea26a410248a6d87f14b2bca514f33920c54d4af63ed46a903793115d5.json b/modules/utxo-staking/test/fixtures/opReturn/66ed4cea26a410248a6d87f14b2bca514f33920c54d4af63ed46a903793115d5.json similarity index 100% rename from modules/utxo-coredao/test/fixtures/opReturn/66ed4cea26a410248a6d87f14b2bca514f33920c54d4af63ed46a903793115d5.json rename to modules/utxo-staking/test/fixtures/opReturn/66ed4cea26a410248a6d87f14b2bca514f33920c54d4af63ed46a903793115d5.json diff --git a/modules/utxo-coredao/test/fixtures/opReturn/66ed4cea26a410248a6d87f14b2bca514f33920c54d4af63ed46a903793115d5.txt b/modules/utxo-staking/test/fixtures/opReturn/66ed4cea26a410248a6d87f14b2bca514f33920c54d4af63ed46a903793115d5.txt similarity index 100% rename from modules/utxo-coredao/test/fixtures/opReturn/66ed4cea26a410248a6d87f14b2bca514f33920c54d4af63ed46a903793115d5.txt rename to modules/utxo-staking/test/fixtures/opReturn/66ed4cea26a410248a6d87f14b2bca514f33920c54d4af63ed46a903793115d5.txt diff --git a/modules/utxo-coredao/test/fixtures/opReturn/documentation.txt b/modules/utxo-staking/test/fixtures/opReturn/documentation.txt similarity index 100% rename from modules/utxo-coredao/test/fixtures/opReturn/documentation.txt rename to modules/utxo-staking/test/fixtures/opReturn/documentation.txt diff --git a/modules/utxo-coredao/test/unit/descriptor.ts b/modules/utxo-staking/test/unit/descriptor.ts similarity index 100% rename from modules/utxo-coredao/test/unit/descriptor.ts rename to modules/utxo-staking/test/unit/descriptor.ts diff --git a/modules/utxo-coredao/test/unit/opReturn.ts b/modules/utxo-staking/test/unit/opReturn.ts similarity index 100% rename from modules/utxo-coredao/test/unit/opReturn.ts rename to modules/utxo-staking/test/unit/opReturn.ts diff --git a/modules/utxo-coredao/test/unit/utils.ts b/modules/utxo-staking/test/unit/utils.ts similarity index 100% rename from modules/utxo-coredao/test/unit/utils.ts rename to modules/utxo-staking/test/unit/utils.ts diff --git a/modules/utxo-coredao/tsconfig.json b/modules/utxo-staking/tsconfig.json similarity index 100% rename from modules/utxo-coredao/tsconfig.json rename to modules/utxo-staking/tsconfig.json diff --git a/yarn.lock b/yarn.lock index 6b90db3925..2021b1b3cb 100644 --- a/yarn.lock +++ b/yarn.lock @@ -126,10 +126,10 @@ regexpu-core "^6.1.1" semver "^6.3.1" -"@babel/helper-define-polyfill-provider@^0.6.2": - version "0.6.2" - resolved "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz#18594f789c3594acb24cfdb4a7f7b7d2e8bd912d" - integrity sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ== +"@babel/helper-define-polyfill-provider@^0.6.2", "@babel/helper-define-polyfill-provider@^0.6.3": + version "0.6.3" + resolved "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.3.tgz#f4f2792fae2ef382074bc2d713522cf24e6ddb21" + integrity sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg== dependencies: "@babel/helper-compilation-targets" "^7.22.6" "@babel/helper-plugin-utils" "^7.22.5" @@ -4055,7 +4055,7 @@ rxjs "^7.8.1" tslib "^2.8.0" -"@polkadot/keyring@13.2.2", "@polkadot/keyring@^13.1.1", "@polkadot/keyring@^13.2.1": +"@polkadot/keyring@13.2.2": version "13.2.2" resolved "https://registry.npmjs.org/@polkadot/keyring/-/keyring-13.2.2.tgz#ec3b2e1d71e177accf6428ea6564569d73d35bdb" integrity sha512-h4bPU92CALAAC+QOp6+zttuhI5H0GKOUzj1qwnmoPVoWxh21FoekLAXO1YJlsKxciTDdK5OhjdNPOIqcF0GCXA== @@ -4064,7 +4064,16 @@ "@polkadot/util-crypto" "13.2.2" tslib "^2.8.0" -"@polkadot/networks@13.2.2", "@polkadot/networks@^13.2.1": +"@polkadot/keyring@^13.1.1", "@polkadot/keyring@^13.2.1": + version "13.2.3" + resolved "https://registry.npmjs.org/@polkadot/keyring/-/keyring-13.2.3.tgz#f974c2d61bc2aa009e2728ab53dfcc83f003d0da" + integrity sha512-pgTo6DXNXub0wGD+MnVHYhKxf80Jl+QMOCb818ioGdXz++Uw4mTueFAwtB+N7TGo0HafhChUiNJDxFdlDkcAng== + dependencies: + "@polkadot/util" "13.2.3" + "@polkadot/util-crypto" "13.2.3" + tslib "^2.8.0" + +"@polkadot/networks@13.2.2": version "13.2.2" resolved "https://registry.npmjs.org/@polkadot/networks/-/networks-13.2.2.tgz#6c8e6340fc718da925f5aab0c91c69f2971ca3f0" integrity sha512-di3dLB9BcLQ9ARcDe/nizl7jZZnQbQlxB8kXtAXqTIVFtshtKT+zYcji6dTX7xX9/O9tZB7qnrvuIuI0MkwJ5A== @@ -4073,6 +4082,15 @@ "@substrate/ss58-registry" "^1.51.0" tslib "^2.8.0" +"@polkadot/networks@13.2.3", "@polkadot/networks@^13.2.1": + version "13.2.3" + resolved "https://registry.npmjs.org/@polkadot/networks/-/networks-13.2.3.tgz#c9d63b7de7ae67cf0d776471287e67ed747940f7" + integrity sha512-mG+zkXg/33AyPrkv2xBbAo3LBUwOwBn6qznBU/4jxiZPnVvCwMaxE7xHM22B5riItbNJ169FXv3wy0v6ZmkFbw== + dependencies: + "@polkadot/util" "13.2.3" + "@substrate/ss58-registry" "^1.51.0" + tslib "^2.8.0" + "@polkadot/rpc-augment@14.1.1": version "14.1.1" resolved "https://registry.npmjs.org/@polkadot/rpc-augment/-/rpc-augment-14.1.1.tgz#b5c476bcac2503a8705a89573d4d1fe375e6f4c4" @@ -4178,7 +4196,7 @@ rxjs "^7.8.1" tslib "^2.8.0" -"@polkadot/util-crypto@13.2.2", "@polkadot/util-crypto@^13.2.1": +"@polkadot/util-crypto@13.2.2": version "13.2.2" resolved "https://registry.npmjs.org/@polkadot/util-crypto/-/util-crypto-13.2.2.tgz#b3bc6554177952b5224cc4d71cb38efd35d4f163" integrity sha512-C4vl07XC43vE6egd9LmSe0uOc7hAvBq6CIoILk5ZB95ABNBQSHOrS1pHugW4rJgVUiZgv8sdl+twmgisuSsSfg== @@ -4194,7 +4212,23 @@ "@scure/base" "^1.1.7" tslib "^2.8.0" -"@polkadot/util@13.2.2", "@polkadot/util@^13.2.1": +"@polkadot/util-crypto@13.2.3", "@polkadot/util-crypto@^13.2.1": + version "13.2.3" + resolved "https://registry.npmjs.org/@polkadot/util-crypto/-/util-crypto-13.2.3.tgz#4e43a0554a5af2a79bade26c1cf623b7a4590645" + integrity sha512-5sbggmLbn5eiuVMyPROPlT5roHRqdKHOfSpioNbGvGIZ1qIWVoC1RfsK0NWJOVGDzy6DpQe0KYT/kgcU5Xsrzw== + dependencies: + "@noble/curves" "^1.3.0" + "@noble/hashes" "^1.3.3" + "@polkadot/networks" "13.2.3" + "@polkadot/util" "13.2.3" + "@polkadot/wasm-crypto" "^7.4.1" + "@polkadot/wasm-util" "^7.4.1" + "@polkadot/x-bigint" "13.2.3" + "@polkadot/x-randomvalues" "13.2.3" + "@scure/base" "^1.1.7" + tslib "^2.8.0" + +"@polkadot/util@13.2.2": version "13.2.2" resolved "https://registry.npmjs.org/@polkadot/util/-/util-13.2.2.tgz#b834afd84bbf06084c728aed4b84d55e4278d518" integrity sha512-zhsGtR0J2a0ODesJNbCYqEXOL2rhPrmv1F6OB2JMdho7iOrkONck3PZaoT/Y0JF7IlHjGV8K6yrw7k9KUtFrEA== @@ -4207,6 +4241,19 @@ bn.js "^5.2.1" tslib "^2.8.0" +"@polkadot/util@13.2.3", "@polkadot/util@^13.2.1": + version "13.2.3" + resolved "https://registry.npmjs.org/@polkadot/util/-/util-13.2.3.tgz#2bdd753f920d466ca8fb1f812f913304471dd38c" + integrity sha512-pioNnsig3qHXrfOKMe4Yqos8B8N3/EZUpS+WfTpWnn1VjYban/0GrTXeavPlAwggnY27b8fS6rBzQBhnVYDw8g== + dependencies: + "@polkadot/x-bigint" "13.2.3" + "@polkadot/x-global" "13.2.3" + "@polkadot/x-textdecoder" "13.2.3" + "@polkadot/x-textencoder" "13.2.3" + "@types/bn.js" "^5.1.6" + bn.js "^5.2.1" + tslib "^2.8.0" + "@polkadot/wasm-bridge@7.4.1": version "7.4.1" resolved "https://registry.npmjs.org/@polkadot/wasm-bridge/-/wasm-bridge-7.4.1.tgz#dd59ebb7c425657aad64b1430e8455d14d935059" @@ -4260,7 +4307,7 @@ dependencies: tslib "^2.7.0" -"@polkadot/x-bigint@13.2.2", "@polkadot/x-bigint@^13.2.1": +"@polkadot/x-bigint@13.2.2": version "13.2.2" resolved "https://registry.npmjs.org/@polkadot/x-bigint/-/x-bigint-13.2.2.tgz#61c776f162bdf55f5c71be2802540a3cb95f63e9" integrity sha512-9ENDfG2wYqABWhQYYrbjJK0aPBvCqVPiFhBiKgIg6OTSJKJToa4Di9R8NxelF8eJTtz7DIvgf6gZY/jnKfbtWw== @@ -4268,22 +4315,37 @@ "@polkadot/x-global" "13.2.2" tslib "^2.8.0" +"@polkadot/x-bigint@13.2.3", "@polkadot/x-bigint@^13.2.1": + version "13.2.3" + resolved "https://registry.npmjs.org/@polkadot/x-bigint/-/x-bigint-13.2.3.tgz#fa0da8624b98aa320dbe9b76ee816d1a3378c298" + integrity sha512-VKgEAh0LsxTd/Hg517Tt5ZU4CySjBwMpaojbkjgv3fOdg1cN7t4eFEUxpyj7mlO0cp22SzDh7nmy4TO98qhLQA== + dependencies: + "@polkadot/x-global" "13.2.3" + tslib "^2.8.0" + "@polkadot/x-fetch@^13.2.1": - version "13.2.2" - resolved "https://registry.npmjs.org/@polkadot/x-fetch/-/x-fetch-13.2.2.tgz#b72546d9360155ce93d3a508b2911656e962b9ec" - integrity sha512-aDhd2kdx3JWvZSU4Ge966C0111CH8pCsDX7+9IsMGaZhjLF1NEo2xDjs+EwfUbSvNk68A4UVeJsXjG+IVor/ug== + version "13.2.3" + resolved "https://registry.npmjs.org/@polkadot/x-fetch/-/x-fetch-13.2.3.tgz#116220ddb9526bce6a11c8cea0471992bca78b73" + integrity sha512-7Nmk+8ieEGzz43nc1rX6nH3rQo6rhGmAaIXJWnXY9gOHY0k1me1bJYbP+xDdh8vcLh8eY3D1sESUwG6QYZW2lg== dependencies: - "@polkadot/x-global" "13.2.2" + "@polkadot/x-global" "13.2.3" node-fetch "^3.3.2" tslib "^2.8.0" -"@polkadot/x-global@13.2.2", "@polkadot/x-global@^13.2.1": +"@polkadot/x-global@13.2.2": version "13.2.2" resolved "https://registry.npmjs.org/@polkadot/x-global/-/x-global-13.2.2.tgz#5a624a244e8bb65a693c7dd57ca871974fe97293" integrity sha512-a+iKD7JXxDRtYVo0bp1+HHlaem6MkUHU2yE0cx2e97p9x+IKyNEY58D0L5P66kszLvhFw+t3Jq+qHIj0+2YxkQ== dependencies: tslib "^2.8.0" +"@polkadot/x-global@13.2.3", "@polkadot/x-global@^13.2.1": + version "13.2.3" + resolved "https://registry.npmjs.org/@polkadot/x-global/-/x-global-13.2.3.tgz#ed66cec6c6c2367625dc8a09cc2ef72fdd2704eb" + integrity sha512-7MYQIAEwBkRcNrgqac5PbB0kNPlI6ISJEy6/Nb+crj8BFjQ8rf11PF49fq0QsvDeuYM1aNLigrvYZNptQs4lbw== + dependencies: + tslib "^2.8.0" + "@polkadot/x-randomvalues@13.2.2": version "13.2.2" resolved "https://registry.npmjs.org/@polkadot/x-randomvalues/-/x-randomvalues-13.2.2.tgz#e51ed8a15536daea0c1a24811878279248751d02" @@ -4292,6 +4354,14 @@ "@polkadot/x-global" "13.2.2" tslib "^2.8.0" +"@polkadot/x-randomvalues@13.2.3": + version "13.2.3" + resolved "https://registry.npmjs.org/@polkadot/x-randomvalues/-/x-randomvalues-13.2.3.tgz#d6253cfb7691d64a807ca26dc6c70a79d2394a0b" + integrity sha512-Zf0GTfLmVk+VzPUmcQSpXjjmFzMTjPhXoLuIoE7xIu73T+vQ+TX9j7DvorN6bIRsnZ9l1SyTZsSf/NTjNZKIZg== + dependencies: + "@polkadot/x-global" "13.2.3" + tslib "^2.8.0" + "@polkadot/x-textdecoder@13.2.2": version "13.2.2" resolved "https://registry.npmjs.org/@polkadot/x-textdecoder/-/x-textdecoder-13.2.2.tgz#828a32bd8dac40ed09bf2b24a9edd95d984f9087" @@ -4300,6 +4370,14 @@ "@polkadot/x-global" "13.2.2" tslib "^2.8.0" +"@polkadot/x-textdecoder@13.2.3": + version "13.2.3" + resolved "https://registry.npmjs.org/@polkadot/x-textdecoder/-/x-textdecoder-13.2.3.tgz#0725fdd1a4be0c50ffda9b82e12028aad0da8a40" + integrity sha512-i8hRXPtGknmdm3FYv6/94I52VXHJZa5sgYNw1+Hqb4Jqmq4awUjea35CKXd/+aw70Qn8Ngg31l2GoiH494fa+Q== + dependencies: + "@polkadot/x-global" "13.2.3" + tslib "^2.8.0" + "@polkadot/x-textencoder@13.2.2": version "13.2.2" resolved "https://registry.npmjs.org/@polkadot/x-textencoder/-/x-textencoder-13.2.2.tgz#c3c697eff1b0d1f0195226c37e5189f84a9bf60a" @@ -4308,12 +4386,20 @@ "@polkadot/x-global" "13.2.2" tslib "^2.8.0" +"@polkadot/x-textencoder@13.2.3": + version "13.2.3" + resolved "https://registry.npmjs.org/@polkadot/x-textencoder/-/x-textencoder-13.2.3.tgz#e0bfd34c37e00a847998a541e1cf804da64083cd" + integrity sha512-wJI3Bb/dC4zyBXJFm5+ZhyBXWoI5wvP8k8qX0/ZC0PQsgSAqs7LVhiofk4Wd94n0P41W5re58LrGXLyziSAshw== + dependencies: + "@polkadot/x-global" "13.2.3" + tslib "^2.8.0" + "@polkadot/x-ws@^13.2.1": - version "13.2.2" - resolved "https://registry.npmjs.org/@polkadot/x-ws/-/x-ws-13.2.2.tgz#087bbb6eb025173cbc6be593d3f00d3b64b1880e" - integrity sha512-WEygcHPB55cKLiNoejJ0Lq3Z1fb4hUO3FmYTXdpHgk0xIOfYDrr7rTlI2cZ4Nb32MofeehN/ZStmEW5Edib6TQ== + version "13.2.3" + resolved "https://registry.npmjs.org/@polkadot/x-ws/-/x-ws-13.2.3.tgz#791f0abf03c1243c1299a80eda4dd84b52ee37e8" + integrity sha512-Y6MTAWgcnrnx/LkBx65X3ZyoJH5EFj3tXtflRoKg1+PLHSLuNBV7Wi5mLcE70z4e5c+4hgBbLq+8SqCqzFtSPw== dependencies: - "@polkadot/x-global" "13.2.2" + "@polkadot/x-global" "13.2.3" tslib "^2.8.0" ws "^8.18.0" @@ -6769,12 +6855,12 @@ babel-loader@^9.1.0: schema-utils "^4.0.0" babel-plugin-polyfill-corejs2@^0.4.10: - version "0.4.11" - resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz#30320dfe3ffe1a336c15afdcdafd6fd615b25e33" - integrity sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q== + version "0.4.12" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.12.tgz#ca55bbec8ab0edeeef3d7b8ffd75322e210879a9" + integrity sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og== dependencies: "@babel/compat-data" "^7.22.6" - "@babel/helper-define-polyfill-provider" "^0.6.2" + "@babel/helper-define-polyfill-provider" "^0.6.3" semver "^6.3.1" babel-plugin-polyfill-corejs3@^0.10.6: @@ -6786,11 +6872,11 @@ babel-plugin-polyfill-corejs3@^0.10.6: core-js-compat "^3.38.0" babel-plugin-polyfill-regenerator@^0.6.1: - version "0.6.2" - resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz#addc47e240edd1da1058ebda03021f382bba785e" - integrity sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg== + version "0.6.3" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.3.tgz#abeb1f3f1c762eace37587f42548b08b57789bc8" + integrity sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q== dependencies: - "@babel/helper-define-polyfill-provider" "^0.6.2" + "@babel/helper-define-polyfill-provider" "^0.6.3" "babel-plugin-styled-components@>= 1.12.0": version "2.1.4" @@ -7147,9 +7233,9 @@ bn.js@5.2.1, bn.js@^5.1.1, bn.js@^5.1.2, bn.js@^5.2.0, bn.js@^5.2.1: integrity sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ== bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.0, bn.js@^4.11.6, bn.js@^4.11.8, bn.js@^4.11.9, bn.js@^4.12.0: - version "4.12.0" - resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" - integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== + version "4.12.1" + resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.1.tgz#215741fe3c9dba2d7e12c001d0cfdbae43975ba7" + integrity sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg== body-parser@1.19.2, body-parser@1.20.3, body-parser@^1.16.0, body-parser@^1.19.0, body-parser@^1.20.3: version "1.20.3" @@ -7680,9 +7766,9 @@ camelize@^1.0.0: integrity sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ== caniuse-lite@^1.0.30001646, caniuse-lite@^1.0.30001669: - version "1.0.30001678" - resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001678.tgz#b930b04cd0b295136405634aa32ad540d7eeb71e" - integrity sha512-RR+4U/05gNtps58PEBDZcPWTgEO2MBeoPZ96aQcjmfkBWRIDfN451fW2qyDA9/+HohLLIL5GqiMwA+IB1pWarw== + version "1.0.30001680" + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001680.tgz#5380ede637a33b9f9f1fc6045ea99bd142f3da5e" + integrity sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA== canvg@^3.0.6: version "3.0.10" @@ -8651,9 +8737,9 @@ cross-sha256@^1.2.0: buffer "^5.6.0" cross-spawn@^7.0.0, cross-spawn@^7.0.1, cross-spawn@^7.0.2, cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + version "7.0.5" + resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.5.tgz#910aac880ff5243da96b728bc6521a5f6c2f2f82" + integrity sha512-ZVJrKKYunU38/76t0RMOulHOnUcbU9GbpWKAOZ0mhjr7CX6FVrH+4FrAapSOekrgFQ3f/8gwMEuIft0aKq6Hug== dependencies: path-key "^3.1.0" shebang-command "^2.0.0" @@ -9560,9 +9646,9 @@ ejs@^3.1.7, ejs@^3.1.8: jake "^10.8.5" electron-to-chromium@^1.5.41: - version "1.5.52" - resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.52.tgz#2bed832c95a56a195504f918150e548474687da8" - integrity sha512-xtoijJTZ+qeucLBDNztDOuQBE1ksqjvNjvqFoST3nGC7fSpqJ+X6BdTBaY5BHG+IhWWmpc6b/KfpeuEDupEPOQ== + version "1.5.56" + resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.56.tgz#3213f369efc3a41091c3b2c05bc0f406108ac1df" + integrity sha512-7lXb9dAvimCFdvUMTyucD4mnIndt/xhRKFAlky0CyFogdnNmdPQNoHI23msF/2V4mpTxMzgMdjK4+YRlFlRQZw== elliptic@6.5.4: version "6.5.4" @@ -11907,18 +11993,7 @@ html-minifier-terser@^6.0.2: tapable "^1.1.3" util.promisify "1.0.0" -"html-webpack-plugin-5@npm:html-webpack-plugin@^5": - version "5.6.3" - resolved "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.3.tgz#a31145f0fee4184d53a794f9513147df1e653685" - integrity sha512-QSf1yjtSAsmf7rYBV7XX86uua4W/vkhIt0xNXKbsi2foEeW7vjJQz4bhnpL3xH+l1ryl1680uNv968Z+X6jSYg== - dependencies: - "@types/html-minifier-terser" "^6.0.0" - html-minifier-terser "^6.0.2" - lodash "^4.17.21" - pretty-error "^4.0.0" - tapable "^2.0.0" - -html-webpack-plugin@^5.5.0: +"html-webpack-plugin-5@npm:html-webpack-plugin@^5", html-webpack-plugin@^5.5.0: version "5.6.3" resolved "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.3.tgz#a31145f0fee4184d53a794f9513147df1e653685" integrity sha512-QSf1yjtSAsmf7rYBV7XX86uua4W/vkhIt0xNXKbsi2foEeW7vjJQz4bhnpL3xH+l1ryl1680uNv968Z+X6jSYg== @@ -14647,9 +14722,9 @@ noble-bls12-381@0.7.2, noble-bls12-381@^0.7.2: integrity sha512-Z5isbU6opuWPL3dxsGqO5BdOE8WP1XUM7HFIn/xeE5pATTnml/PEIy4MFQQrktHiitkuJdsCDtzEOnS9eIpC3Q== nock@^13.3.1, nock@^13.5.5: - version "13.5.5" - resolved "https://registry.npmjs.org/nock/-/nock-13.5.5.tgz#cd1caaca281d42be17d51946367a3d53a6af3e78" - integrity sha512-XKYnqUrCwXC8DGG1xX4YH5yNIrlh9c065uaMZZHUoeUUINTOyt+x/G+ezYk0Ft6ExSREVIs+qBJDK503viTfFA== + version "13.5.6" + resolved "https://registry.npmjs.org/nock/-/nock-13.5.6.tgz#5e693ec2300bbf603b61dae6df0225673e6c4997" + integrity sha512-o2zOYiCpzRqSzPj0Zt/dQ/DqZeYoaQ7TUonc/xUPjCGl9WeHpNbxgVvOquXYAaJzI0M9BXV3HTzG0p8IUAbBTQ== dependencies: debug "^4.1.0" json-stringify-safe "^5.0.1" @@ -14716,9 +14791,9 @@ node-gyp-build-optional-packages@5.1.1: detect-libc "^2.0.1" node-gyp-build@^4.2.0, node-gyp-build@^4.3.0: - version "4.8.2" - resolved "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.2.tgz#4f802b71c1ab2ca16af830e6c1ea7dd1ad9496fa" - integrity sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw== + version "4.8.3" + resolved "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.3.tgz#9187216d24dbee29e44eb20d2ebf62a296bbea1a" + integrity sha512-EMS95CMJzdoSKoIiXo8pxKoL8DYxwIZXYlLmgPb8KUv794abpnLK6ynsCAWNliOjREKruYKdzbh76HHYUHX7nw== node-gyp@^9.0.0: version "9.4.1" @@ -15104,9 +15179,9 @@ object-assign@^4, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1 integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== object-inspect@^1.12.2, object-inspect@^1.13.1: - version "1.13.2" - resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz#dea0088467fb991e67af4058147a24824a3043ff" - integrity sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g== + version "1.13.3" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz#f14c183de51130243d6d18ae149375ff50ea488a" + integrity sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA== object-inspect@~1.12.3: version "1.12.3" @@ -15775,7 +15850,7 @@ performance-now@^2.1.0: resolved "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" integrity sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow== -picocolors@^1.0.0, picocolors@^1.0.1, picocolors@^1.1.0: +picocolors@^1.0.0, picocolors@^1.0.1, picocolors@^1.1.0, picocolors@^1.1.1: version "1.1.1" resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== @@ -16050,20 +16125,20 @@ postcss-modules-extract-imports@^3.0.0: integrity sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q== postcss-modules-local-by-default@^4.0.0: - version "4.0.5" - resolved "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.5.tgz#f1b9bd757a8edf4d8556e8d0f4f894260e3df78f" - integrity sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw== + version "4.1.0" + resolved "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.1.0.tgz#b0db6bc81ffc7bdc52eb0f84d6ca0bedf0e36d21" + integrity sha512-rm0bdSv4jC3BDma3s9H19ZddW0aHX6EoqwDYU2IfZhRN+53QrufTRo2IdkAbRqLx4R2IYbZnbjKKxg4VN5oU9Q== dependencies: icss-utils "^5.0.0" - postcss-selector-parser "^6.0.2" + postcss-selector-parser "^7.0.0" postcss-value-parser "^4.1.0" postcss-modules-scope@^3.0.0: - version "3.2.0" - resolved "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.0.tgz#a43d28289a169ce2c15c00c4e64c0858e43457d5" - integrity sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ== + version "3.2.1" + resolved "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz#1bbccddcb398f1d7a511e0a2d1d047718af4078c" + integrity sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA== dependencies: - postcss-selector-parser "^6.0.4" + postcss-selector-parser "^7.0.0" postcss-modules-values@^4.0.0: version "4.0.0" @@ -16178,7 +16253,7 @@ postcss-selector-not@^6.0.1: dependencies: postcss-selector-parser "^6.0.10" -postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.9: +postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.9: version "6.1.2" resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz#27ecb41fb0e3b6ba7a1ec84fff347f734c7929de" integrity sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg== @@ -16186,18 +16261,26 @@ postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.2, postcss-selecto cssesc "^3.0.0" util-deprecate "^1.0.2" +postcss-selector-parser@^7.0.0: + version "7.0.0" + resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz#41bd8b56f177c093ca49435f65731befe25d6b9c" + integrity sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: version "4.2.0" resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== postcss@^8.2.14, postcss@^8.2.15, postcss@^8.3.11, postcss@^8.4.47: - version "8.4.47" - resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz#5bf6c9a010f3e724c503bf03ef7947dcb0fea365" - integrity sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ== + version "8.4.49" + resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz#4ea479048ab059ab3ae61d082190fabfd994fe19" + integrity sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA== dependencies: nanoid "^3.3.7" - picocolors "^1.1.0" + picocolors "^1.1.1" source-map-js "^1.2.1" prelude-ls@^1.2.1: @@ -16455,9 +16538,11 @@ proxy-from-env@^1.0.0, proxy-from-env@^1.1.0: integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== psl@^1.1.28: - version "1.9.0" - resolved "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" - integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== + version "1.10.0" + resolved "https://registry.npmjs.org/psl/-/psl-1.10.0.tgz#1450f7e16f922c3beeb7bd9db3f312635018fa15" + integrity sha512-KSKHEbjAnpUuAUserOq0FxGXCUrzC3WniuSJhvdbs102rL55266ZcHBqLWOsG30spQMlPdpy7icATiAQehg/iA== + dependencies: + punycode "^2.3.1" public-encrypt@^4.0.0, public-encrypt@^4.0.3: version "4.0.3" @@ -16499,7 +16584,7 @@ punycode@^1.3.2, punycode@^1.4.1: resolved "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== -punycode@^2.1.0, punycode@^2.1.1: +punycode@^2.1.0, punycode@^2.1.1, punycode@^2.3.1: version "2.3.1" resolved "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== @@ -18309,16 +18394,7 @@ string-argv@^0.3.1: resolved "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz#2b6d0ef24b656274d957d54e0a4bbf6153dc02b6" integrity sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q== -"string-width-cjs@npm:string-width@^4.2.0": - version "4.2.3" - resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -18390,7 +18466,7 @@ string_decoder@~1.1.1: dependencies: safe-buffer "~5.1.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1": +"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -18404,13 +18480,6 @@ strip-ansi@^3.0.1: dependencies: ansi-regex "^2.0.0" -strip-ansi@^6.0.0, strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - strip-ansi@^7.0.1: version "7.1.0" resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" @@ -18845,17 +18914,17 @@ tinyexec@^0.3.0: resolved "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.1.tgz#0ab0daf93b43e2c211212396bdb836b468c97c98" integrity sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ== -tldts-core@^6.1.58: - version "6.1.58" - resolved "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1.58.tgz#f0b5c1fcb2e214f558c7cb380fb1e6f4b2459d8b" - integrity sha512-dR936xmhBm7AeqHIhCWwK765gZ7dFyL+IqLSFAjJbFlUXGMLCb8i2PzlzaOuWBuplBTaBYseSb565nk/ZEM0Bg== +tldts-core@^6.1.60: + version "6.1.60" + resolved "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1.60.tgz#b3f0a2106e575e972bfca98880758c85c7557d02" + integrity sha512-XHjoxak8SFQnHnmYHb3PcnW5TZ+9ErLZemZei3azuIRhQLw4IExsVbL3VZJdHcLeNaXq6NqawgpDPpjBOg4B5g== tldts@^6.1.32: - version "6.1.58" - resolved "https://registry.npmjs.org/tldts/-/tldts-6.1.58.tgz#63d211f46f2c17d69d4cedf0c4c19423a608874f" - integrity sha512-MQJrJhjHOYGYb8DobR6Y4AdDbd4TYkyQ+KBDVc5ODzs1cbrvPpfN1IemYi9jfipJ/vR1YWvrDli0hg1y19VRoA== + version "6.1.60" + resolved "https://registry.npmjs.org/tldts/-/tldts-6.1.60.tgz#5011770e6946fd2edec582ab4686247c66c97e8a" + integrity sha512-TYVHm7G9NCnhgqOsFalbX6MG1Po5F4efF+tLfoeiOGQq48Oqgwcgz8upY2R1BHWa4aDrj28RYx0dkYJ63qCFMg== dependencies: - tldts-core "^6.1.58" + tldts-core "^6.1.60" tmp@0.2.1: version "0.2.1" @@ -20234,7 +20303,7 @@ workerpool@6.2.0: resolved "https://registry.npmjs.org/workerpool/-/workerpool-6.2.0.tgz#827d93c9ba23ee2019c3ffaff5c27fccea289e8b" integrity sha512-Rsk5qQHJ9eowMH28Jwhe8HEbmdYDX4lwoMWshiCXugjtHqMD9ZbiqSDLxcsfdqsETPzVUtX5s1Z5kStiIM6l4A== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: version "7.0.0" resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -20252,15 +20321,6 @@ wrap-ansi@^6.0.1, wrap-ansi@^6.2.0: string-width "^4.1.0" strip-ansi "^6.0.0" -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"