aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÖzgür Kesim <oec-taler@kesim.org>2023-09-14 12:13:35 +0200
committerÖzgür Kesim <oec-taler@kesim.org>2023-09-14 12:13:35 +0200
commit35611f0bf9cf67638b171c2a300fab1797d3d8f0 (patch)
treed067d5d62ac2fd0d88b25d2c759cc2caa9485c00
parent64c19c8cde56699ab4aaf05a1ac6fea6a4e0e4ba (diff)
parenta5960665245c4ffb625dd16923019e8c62c20159 (diff)
Merge branch 'master' into age-withdraw
-rw-r--r--AUTHORS1
-rwxr-xr-xci/jobs/2-docs/docs.sh9
-rw-r--r--package.json2
-rw-r--r--packages/aml-backoffice-ui/package.json2
-rw-r--r--packages/anastasis-cli/package.json4
-rw-r--r--packages/anastasis-core/package.json4
-rw-r--r--packages/anastasis-webui/package.json2
-rw-r--r--packages/demobank-ui/package.json2
-rw-r--r--packages/idb-bridge/package.json4
-rw-r--r--packages/merchant-backend-ui/package.json4
-rw-r--r--packages/merchant-backoffice-ui/package.json5
-rw-r--r--packages/pogen/package.json1
-rw-r--r--packages/taler-harness/package.json4
-rw-r--r--packages/taler-util/package.json4
-rw-r--r--packages/taler-wallet-cli/package.json4
-rw-r--r--packages/taler-wallet-core/package.json4
-rw-r--r--packages/taler-wallet-core/src/dbless.ts2
-rw-r--r--packages/taler-wallet-core/src/util/coinSelection.test.ts156
-rw-r--r--packages/taler-wallet-core/src/util/coinSelection.ts20
-rw-r--r--packages/taler-wallet-embedded/package.json6
-rw-r--r--packages/taler-wallet-webextension/package.json6
-rw-r--r--packages/web-util/package.json3
-rw-r--r--pnpm-lock.yaml506
23 files changed, 233 insertions, 522 deletions
diff --git a/AUTHORS b/AUTHORS
index 1d3ba2cc7..4c9a53431 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,2 +1,3 @@
Florian Dold
Gabor Toth
+Sebastian Marchano
diff --git a/ci/jobs/2-docs/docs.sh b/ci/jobs/2-docs/docs.sh
index fed198fba..ee6abc2ac 100755
--- a/ci/jobs/2-docs/docs.sh
+++ b/ci/jobs/2-docs/docs.sh
@@ -5,11 +5,4 @@ set -exuo pipefail
./configure
make
-pnpm install --workspace-root typedoc
-./node_modules/typedoc/bin/typedoc \
- --out dist/typedoc \
- --tsconfig tsconfig.build.json \
- packages/taler-util/src/index.ts \
- packages/taler-wallet-cli/src/index.ts \
- packages/taler-wallet-android/src/index.ts \
- packages/taler-wallet-core/src/index.ts
+pnpm run typedoc
diff --git a/package.json b/package.json
index e7b4b52d7..7b37684fa 100644
--- a/package.json
+++ b/package.json
@@ -4,6 +4,7 @@
"preinstall": "npx only-allow pnpm",
"compile": "pnpm run --filter '@gnu-taler/*' compile",
"clean": "pnpm run --filter '@gnu-taler/*' clean",
+ "typedoc": "pnpm run --filter '@gnu-taler/*' typedoc",
"pretty": "pnpm run --filter '@gnu-taler/*' pretty",
"check": "pnpm run --filter '@gnu-taler/*' --if-present --sequential test"
},
@@ -16,6 +17,7 @@
"eslint-config-prettier": "^8.5.0",
"nx": "15.0.1",
"prettier": "^2.8.8",
+ "typedoc": "^0.25.1",
"typescript": "^5.2.2"
}
}
diff --git a/packages/aml-backoffice-ui/package.json b/packages/aml-backoffice-ui/package.json
index a761374df..9ca6312a7 100644
--- a/packages/aml-backoffice-ui/package.json
+++ b/packages/aml-backoffice-ui/package.json
@@ -8,7 +8,9 @@
"type": "module",
"scripts": {
"build": "./build.mjs",
+ "typedoc": "typedoc --out dist/typedoc ./src/",
"check": "tsc",
+ "clean": "rm -rf dist lib",
"compile": "tsc && ./build.mjs",
"test": "./test.mjs && mocha --require source-map-support/register 'dist/test/**/*.test.js' 'dist/test/**/test.js'",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
diff --git a/packages/anastasis-cli/package.json b/packages/anastasis-cli/package.json
index 55af7cc06..e0b154de8 100644
--- a/packages/anastasis-cli/package.json
+++ b/packages/anastasis-cli/package.json
@@ -18,7 +18,8 @@
"scripts": {
"compile": "tsc && ./build-node.mjs",
"test": "tsc",
- "clean": "rimraf lib dist tsconfig.tsbuildinfo",
+ "clean": "rm -rf lib dist tsconfig.tsbuildinfo",
+ "typedoc": "typedoc --out dist/typedoc ./src/",
"pretty": "prettier --write src"
},
"files": [
@@ -32,7 +33,6 @@
"devDependencies": {
"@types/node": "^18.11.17",
"prettier": "^2.8.8",
- "rimraf": "^3.0.2",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
},
diff --git a/packages/anastasis-core/package.json b/packages/anastasis-core/package.json
index aa182e047..14768b178 100644
--- a/packages/anastasis-core/package.json
+++ b/packages/anastasis-core/package.json
@@ -10,14 +10,14 @@
"pretty": "prettier --write src",
"test": "tsc && ava",
"coverage": "tsc && nyc ava",
- "clean": "rimraf dist lib tsconfig.tsbuildinfo"
+ "typedoc": "typedoc --out dist/typedoc ./src/",
+ "clean": "rm -rf dist lib tsconfig.tsbuildinfo"
},
"author": "Florian Dold <dold@taler.net>",
"license": "AGPL-3-or-later",
"type": "module",
"devDependencies": {
"ava": "^4.3.3",
- "rimraf": "^3.0.2",
"typescript": "^5.2.2"
},
"dependencies": {
diff --git a/packages/anastasis-webui/package.json b/packages/anastasis-webui/package.json
index efee9633e..0a63a66c4 100644
--- a/packages/anastasis-webui/package.json
+++ b/packages/anastasis-webui/package.json
@@ -8,7 +8,9 @@
"build": "./build.mjs",
"compile": "tsc && ./build.mjs",
"dev": "./dev.mjs",
+ "clean": "rm -rf dist lib tsconfig.tsbuildinfo",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
+ "typedoc": "typedoc --out dist/typedoc ./src/",
"test": "./test.mjs && mocha --require source-map-support/register --enable-source-maps 'dist/**/*test.js'",
"pretty": "prettier --write src"
},
diff --git a/packages/demobank-ui/package.json b/packages/demobank-ui/package.json
index d33fae709..8b999aeed 100644
--- a/packages/demobank-ui/package.json
+++ b/packages/demobank-ui/package.json
@@ -7,9 +7,11 @@
"scripts": {
"build": "./build.mjs",
"check": "tsc",
+ "clean": "rm -rf dist lib tsconfig.tsbuildinfo",
"compile": "tsc && ./build.mjs",
"test": "./test.mjs && mocha --require source-map-support/register 'dist/test/**/*.test.js' 'dist/test/**/test.js'",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
+ "typedoc": "typedoc --out dist/typedoc ./src/",
"i18n:extract": "pogen extract",
"i18n:merge": "pogen merge",
"i18n:emit": "pogen emit",
diff --git a/packages/idb-bridge/package.json b/packages/idb-bridge/package.json
index ce64314ff..3ed3e76b5 100644
--- a/packages/idb-bridge/package.json
+++ b/packages/idb-bridge/package.json
@@ -11,8 +11,9 @@
"private": false,
"scripts": {
"test": "tsc && ava",
+ "typedoc": "typedoc --out dist/typedoc ./src/",
"compile": "tsc",
- "clean": "rimraf dist lib tsconfig.tsbuildinfo",
+ "clean": "rm -rf dist lib tsconfig.tsbuildinfo",
"pretty": "prettier --write src"
},
"exports": {
@@ -28,7 +29,6 @@
"@types/node": "^20.4.1",
"ava": "^5.3.1",
"prettier": "^2.8.8",
- "rimraf": "^5.0.1",
"typescript": "^5.2.2"
},
"dependencies": {
diff --git a/packages/merchant-backend-ui/package.json b/packages/merchant-backend-ui/package.json
index 03e64308c..bb8114fba 100644
--- a/packages/merchant-backend-ui/package.json
+++ b/packages/merchant-backend-ui/package.json
@@ -9,8 +9,7 @@
"render-examples": "ts-node -O '{\"module\": \"commonjs\"}' -T render-examples.ts dist/pages dist/examples",
"lint-check": "eslint '{src,tests}/**/*.{js,jsx,ts,tsx}'",
"lint-fix": "eslint --fix '{src,tests}/**/*.{js,jsx,ts,tsx}'",
- "typedoc": "typedoc src",
- "clean": "rimraf dist",
+ "clean": "rm -rf dist lib tsconfig.tsbuildinfo",
"serve-dist": "sirv --port ${PORT:=8080} --cors --single dist"
},
"engines": {
@@ -61,7 +60,6 @@
"mustache": "^4.2.0",
"po2json": "^0.4.5",
"preact-render-to-string": "^5.1.19",
- "rimraf": "^3.0.2",
"sirv-cli": "^1.0.11",
"ts-node": "^10.9.1",
"tslib": "2.5.3",
diff --git a/packages/merchant-backoffice-ui/package.json b/packages/merchant-backoffice-ui/package.json
index 12aeb4b0e..66e03a65c 100644
--- a/packages/merchant-backoffice-ui/package.json
+++ b/packages/merchant-backoffice-ui/package.json
@@ -15,7 +15,7 @@
"i18n:merge": "pogen merge",
"i18n:emit": "pogen emit",
"i18n": "pnpm i18n:extract && pnpm i18n:merge && pnpm i18n:emit",
- "typedoc": "typedoc src",
+ "typedoc": "typedoc --out dist/typedoc ./src/",
"pretty": "prettier --write src"
},
"eslintConfig": {
@@ -72,7 +72,6 @@
"inline-chunk-html-plugin": "^1.1.1",
"mocha": "^9.2.0",
"preact-render-to-string": "^5.2.6",
- "rimraf": "^3.0.2",
"sass": "1.56.1",
"source-map-support": "^0.5.21",
"typedoc": "^0.25.1",
@@ -81,4 +80,4 @@
"pogen": {
"domain": "taler-merchant-backoffice"
}
-} \ No newline at end of file
+}
diff --git a/packages/pogen/package.json b/packages/pogen/package.json
index 9160e699c..82391a675 100644
--- a/packages/pogen/package.json
+++ b/packages/pogen/package.json
@@ -7,6 +7,7 @@
"author": "Florian Dold",
"license": "GPL-2.0+",
"scripts": {
+ "clean": "rm -rf lib",
"compile": "tsc"
},
"devDependencies": {
diff --git a/packages/taler-harness/package.json b/packages/taler-harness/package.json
index 9f2b0d8e3..38f168af4 100644
--- a/packages/taler-harness/package.json
+++ b/packages/taler-harness/package.json
@@ -19,7 +19,8 @@
"compile": "tsc && ./build.mjs",
"check": "tsc",
"test": "tsc",
- "clean": "rimraf lib dist tsconfig.tsbuildinfo",
+ "typedoc": "typedoc --out dist/typedoc ./src/",
+ "clean": "rm -rf lib dist tsconfig.tsbuildinfo",
"pretty": "prettier --write src"
},
"files": [
@@ -34,7 +35,6 @@
"@types/node": "^18.11.17",
"esbuild": "^0.17.7",
"prettier": "^2.8.8",
- "rimraf": "^3.0.2",
"typescript": "^5.2.2"
},
"dependencies": {
diff --git a/packages/taler-util/package.json b/packages/taler-util/package.json
index 0bb98767d..80e99ae0e 100644
--- a/packages/taler-util/package.json
+++ b/packages/taler-util/package.json
@@ -59,7 +59,8 @@
"scripts": {
"compile": "tsc",
"test": "tsc && ava",
- "clean": "rimraf dist lib tsconfig.tsbuildinfo",
+ "clean": "rm -rf dist lib tsconfig.tsbuildinfo",
+ "typedoc": "typedoc --out dist/typedoc ./src/",
"pretty": "prettier --write src"
},
"devDependencies": {
@@ -67,7 +68,6 @@
"ava": "^4.3.3",
"esbuild": "^0.17.7",
"prettier": "^2.8.8",
- "rimraf": "^3.0.2",
"typescript": "^5.2.2"
},
"dependencies": {
diff --git a/packages/taler-wallet-cli/package.json b/packages/taler-wallet-cli/package.json
index 6196c8971..382951223 100644
--- a/packages/taler-wallet-cli/package.json
+++ b/packages/taler-wallet-cli/package.json
@@ -18,7 +18,8 @@
"scripts": {
"compile": "tsc && ./build-node.mjs",
"test": "tsc",
- "clean": "rimraf lib dist tsconfig.tsbuildinfo",
+ "typedoc": "typedoc --out dist/typedoc ./src/",
+ "clean": "rm -rf lib dist tsconfig.tsbuildinfo",
"pretty": "prettier --write src"
},
"files": [
@@ -32,7 +33,6 @@
"devDependencies": {
"@types/node": "^18.11.17",
"prettier": "^2.8.8",
- "rimraf": "^3.0.2",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
},
diff --git a/packages/taler-wallet-core/package.json b/packages/taler-wallet-core/package.json
index fda7b6081..668fe4b92 100644
--- a/packages/taler-wallet-core/package.json
+++ b/packages/taler-wallet-core/package.json
@@ -15,9 +15,10 @@
"compile": "tsc",
"pretty": "prettier --write src",
"test": "tsc && ava",
+ "typedoc": "typedoc --out dist/typedoc ./src/",
"coverage": "tsc && c8 --src src --all ava",
"coverage:html": "tsc && c8 -r html --src src --all ava",
- "clean": "rimraf dist lib tsconfig.tsbuildinfo"
+ "clean": "rm -rf dist lib tsconfig.tsbuildinfo"
},
"files": [
"AUTHORS",
@@ -64,7 +65,6 @@
"jed": "^1.1.1",
"po2json": "^0.4.5",
"prettier": "^2.8.8",
- "rimraf": "^3.0.2",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
},
diff --git a/packages/taler-wallet-core/src/dbless.ts b/packages/taler-wallet-core/src/dbless.ts
index 65c293bdf..d70eab888 100644
--- a/packages/taler-wallet-core/src/dbless.ts
+++ b/packages/taler-wallet-core/src/dbless.ts
@@ -31,6 +31,7 @@ import {
AmountJson,
Amounts,
AmountString,
+ BankAccessApiClient,
codecForAny,
codecForBankWithdrawalOperationPostResponse,
codecForBatchDepositSuccess,
@@ -53,7 +54,6 @@ import {
HttpRequestLibrary,
readSuccessResponseJsonOrThrow,
} from "@gnu-taler/taler-util/http";
-import { BankAccessApiClient } from "../../taler-util/src/bank-api-client.js";
import { TalerCryptoInterface } from "./crypto/cryptoImplementation.js";
import { DenominationRecord } from "./db.js";
import { isWithdrawableDenom } from "./index.js";
diff --git a/packages/taler-wallet-core/src/util/coinSelection.test.ts b/packages/taler-wallet-core/src/util/coinSelection.test.ts
index b907eb160..2a322c4a9 100644
--- a/packages/taler-wallet-core/src/util/coinSelection.test.ts
+++ b/packages/taler-wallet-core/src/util/coinSelection.test.ts
@@ -17,9 +17,165 @@ import {
AbsoluteTime,
AgeRestriction,
AmountJson,
+ AmountString,
Amounts,
+ DenomKeyType,
Duration,
TransactionAmountMode,
} from "@gnu-taler/taler-util";
import test, { ExecutionContext } from "ava";
+import { AvailableDenom, testing_greedySelectPeer } from "./coinSelection.js"
+type Tester<T> = {
+ deep: {
+ equal(another: T): ReturnType<ExecutionContext["deepEqual"]>;
+ equals(another: T): ReturnType<ExecutionContext["deepEqual"]>;
+ }
+}
+
+function expect<T>(t: ExecutionContext, thing: T): Tester<T> {
+ return {
+ deep: {
+ equal: (another: T) => t.deepEqual(thing, another),
+ equals: (another: T) => t.deepEqual(thing, another),
+ },
+ };
+}
+
+const inTheDistantFuture = AbsoluteTime.toProtocolTimestamp(
+ AbsoluteTime.addDuration(AbsoluteTime.now(), Duration.fromSpec({ hours: 1 }))
+)
+const inThePast = AbsoluteTime.toProtocolTimestamp(
+ AbsoluteTime.subtractDuraction(AbsoluteTime.now(), Duration.fromSpec({ hours: 1 }))
+)
+
+test("should select the coin", (t) => {
+ const instructedAmount = Amounts.parseOrThrow("LOCAL:2")
+ const tally = {
+ amountAcc: Amounts.zeroOfCurrency(instructedAmount.currency),
+ depositFeesAcc: Amounts.zeroOfCurrency(instructedAmount.currency),
+ lastDepositFee: Amounts.zeroOfCurrency(instructedAmount.currency),
+ };
+ const coins = testing_greedySelectPeer(
+ createCandidates([{
+ amount: "LOCAL:10",
+ numAvailable: 5,
+ depositFee: "LOCAL:0.1",
+ fromExchange: "http://exchange.localhost/",
+ }]),
+ instructedAmount,
+ tally
+ );
+
+ expect(t, coins).deep.equal({
+ "hash0;32;http://exchange.localhost/": {
+ exchangeBaseUrl: "http://exchange.localhost/",
+ denomPubHash: "hash0",
+ maxAge: 32,
+ contributions: [Amounts.parseOrThrow("LOCAL:2")],
+ }
+ });
+
+ expect(t, tally).deep.equal({
+ amountAcc: Amounts.parseOrThrow("LOCAL:2"),
+ depositFeesAcc: Amounts.parseOrThrow("LOCAL:0.1"),
+ lastDepositFee: Amounts.parseOrThrow("LOCAL:0.1"),
+ });
+
+});
+
+test("should select 3 coins", (t) => {
+ const instructedAmount = Amounts.parseOrThrow("LOCAL:20")
+ const tally = {
+ amountAcc: Amounts.zeroOfCurrency(instructedAmount.currency),
+ depositFeesAcc: Amounts.zeroOfCurrency(instructedAmount.currency),
+ lastDepositFee: Amounts.zeroOfCurrency(instructedAmount.currency),
+ };
+ const coins = testing_greedySelectPeer(
+ createCandidates([{
+ amount: "LOCAL:10",
+ numAvailable: 5,
+ depositFee: "LOCAL:0.1",
+ fromExchange: "http://exchange.localhost/",
+ }]),
+ instructedAmount,
+ tally
+ );
+
+ expect(t, coins).deep.equal({
+ "hash0;32;http://exchange.localhost/": {
+ exchangeBaseUrl: "http://exchange.localhost/",
+ denomPubHash: "hash0",
+ maxAge: 32,
+ contributions: [
+ Amounts.parseOrThrow("LOCAL:9.9"),
+ Amounts.parseOrThrow("LOCAL:9.9"),
+ Amounts.parseOrThrow("LOCAL:0.2")
+ ],
+ }
+ });
+
+ expect(t, tally).deep.equal({
+ amountAcc: Amounts.parseOrThrow("LOCAL:20"),
+ depositFeesAcc: Amounts.parseOrThrow("LOCAL:0.3"),
+ lastDepositFee: Amounts.parseOrThrow("LOCAL:0.1"),
+ });
+
+});
+
+test("can't select since the instructed amount is too high", (t) => {
+ const instructedAmount = Amounts.parseOrThrow("LOCAL:60")
+ const tally = {
+ amountAcc: Amounts.zeroOfCurrency(instructedAmount.currency),
+ depositFeesAcc: Amounts.zeroOfCurrency(instructedAmount.currency),
+ lastDepositFee: Amounts.zeroOfCurrency(instructedAmount.currency),
+ };
+ const coins = testing_greedySelectPeer(
+ createCandidates([{
+ amount: "LOCAL:10",
+ numAvailable: 5,
+ depositFee: "LOCAL:0.1",
+ fromExchange: "http://exchange.localhost/",
+ }]),
+ instructedAmount,
+ tally
+ );
+
+ expect(t, coins).deep.equal(undefined);
+
+ expect(t, tally).deep.equal({
+ amountAcc: Amounts.parseOrThrow("LOCAL:49.5"),
+ depositFeesAcc: Amounts.parseOrThrow("LOCAL:0.5"),
+ lastDepositFee: Amounts.parseOrThrow("LOCAL:0.1"),
+ });
+
+});
+
+
+
+
+function createCandidates(ar: {amount: AmountString, depositFee: AmountString, numAvailable: number, fromExchange: string}[]): AvailableDenom[] {
+ return ar.map((r,idx) => {
+ return {
+ "denomPub": {
+ "age_mask": 0,
+ "cipher": DenomKeyType.Rsa,
+ "rsa_public_key": "PPP"
+ },
+ "denomPubHash": `hash${idx}`,
+ "value": r.amount,
+ "feeDeposit": r.depositFee,
+ "feeRefresh": "LOCAL:0",
+ "feeRefund": "LOCAL:0",
+ "feeWithdraw": "LOCAL:0",
+ "stampExpireDeposit": inTheDistantFuture,
+ "stampExpireLegal": inTheDistantFuture,
+ "stampExpireWithdraw": inTheDistantFuture,
+ "stampStart": inThePast,
+ "exchangeBaseUrl": r.fromExchange,
+ "numAvailable": r.numAvailable,
+ "maxAge": 32,
+
+ }
+ })
+}
diff --git a/packages/taler-wallet-core/src/util/coinSelection.ts b/packages/taler-wallet-core/src/util/coinSelection.ts
index 6fd0f1b86..0885215dd 100644
--- a/packages/taler-wallet-core/src/util/coinSelection.ts
+++ b/packages/taler-wallet-core/src/util/coinSelection.ts
@@ -894,6 +894,12 @@ interface PeerCoinSelectionTally {
lastDepositFee: AmountJson;
}
+/**
+ * exporting for testing
+ */
+export function testing_greedySelectPeer(...args: Parameters<typeof greedySelectPeer>): ReturnType<typeof greedySelectPeer> {
+ return greedySelectPeer(...args)
+}
function greedySelectPeer(
candidates: AvailableDenom[],
instructedAmount: AmountLike,
@@ -912,19 +918,19 @@ function greedySelectPeer(
instructedAmount,
tally.amountAcc,
).amount;
- const coinSpend = Amounts.max(
- Amounts.min(amountPayRemaining, denom.value),
- denom.feeDeposit,
- );
+ const coinContrib = Amounts.sub(denom.value, denom.feeDeposit).amount
+
+ const coinSpend = Amounts.min(amountPayRemaining, coinContrib)
+
tally.amountAcc = Amounts.add(tally.amountAcc, coinSpend).amount;
- // Since this is a peer payment, there is no merchant to
- // potentially cover the deposit fees.
- tally.amountAcc = Amounts.sub(tally.amountAcc, denom.feeDeposit).amount;
+
tally.depositFeesAcc = Amounts.add(
tally.depositFeesAcc,
denom.feeDeposit,
).amount;
+
tally.lastDepositFee = Amounts.parseOrThrow(denom.feeDeposit);
+
contributions.push(coinSpend);
}
if (contributions.length > 0) {
diff --git a/packages/taler-wallet-embedded/package.json b/packages/taler-wallet-embedded/package.json
index b96edff25..35a4fcffe 100644
--- a/packages/taler-wallet-embedded/package.json
+++ b/packages/taler-wallet-embedded/package.json
@@ -15,7 +15,8 @@
"scripts": {
"compile": "./build.mjs",
"pretty": "prettier --write src",
- "clean": "rimraf lib dist tsconfig.tsbuildinfo",
+ "typedoc": "typedoc --out dist/typedoc ./src/wallet-qjs.ts",
+ "clean": "rm -rf lib dist tsconfig.tsbuildinfo",
"deps": "pnpm install --frozen-lockfile --filter @gnu-taler/taler-wallet-embedded..."
},
"files": [
@@ -29,8 +30,7 @@
"devDependencies": {
"@types/node": "^18.11.17",
"esbuild": "^0.17.7",
- "prettier": "^2.8.8",
- "rimraf": "^3.0.2"
+ "prettier": "^2.8.8"
},
"dependencies": {
"@gnu-taler/idb-bridge": "workspace:*",
diff --git a/packages/taler-wallet-webextension/package.json b/packages/taler-wallet-webextension/package.json
index f442b1509..23736729c 100644
--- a/packages/taler-wallet-webextension/package.json
+++ b/packages/taler-wallet-webextension/package.json
@@ -9,10 +9,11 @@
"license": "AGPL-3.0-or-later",
"private": false,
"scripts": {
- "clean": "rimraf dist lib tsconfig.tsbuildinfo",
+ "clean": "rm -rf dist lib tsconfig.tsbuildinfo",
"test": "./test.mjs && mocha --require source-map-support/register 'dist/test/**/*.test.js' 'dist/test/**/test.js'",
"test:coverage": "nyc pnpm test",
"compile": "./patch-linaria.sh && tsc && ./build.mjs",
+ "typedoc": "typedoc --out dist/typedoc ./src/ --entryPointStrategy expand",
"dev": "./dev.mjs",
"pretty": "prettier --write src",
"i18n:extract": "pogen extract",
@@ -63,7 +64,6 @@
"polished": "^4.1.4",
"preact-cli": "^3.3.5",
"preact-render-to-string": "^5.1.19",
- "rimraf": "^3.0.2",
"typescript": "5.2.2"
},
"nyc": {
@@ -75,4 +75,4 @@
"pogen": {
"domain": "taler-wallet-webex"
}
-} \ No newline at end of file
+}
diff --git a/packages/web-util/package.json b/packages/web-util/package.json
index 81eee949a..ac85fe8eb 100644
--- a/packages/web-util/package.json
+++ b/packages/web-util/package.json
@@ -28,7 +28,7 @@
},
"scripts": {
"compile": "tsc && ./build.mjs",
- "clean": "rimraf dist lib tsconfig.tsbuildinfo",
+ "clean": "rm -rf dist lib tsconfig.tsbuildinfo",
"pretty": "prettier --write src"
},
"devDependencies": {
@@ -52,7 +52,6 @@
"preact": "10.11.3",
"preact-render-to-string": "^5.2.6",
"prettier": "^2.8.8",
- "rimraf": "^3.0.2",
"sass": "1.56.1",
"swr": "2.0.3",
"tslib": "^2.5.3",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 347dbf0a5..6c5946a38 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -32,6 +32,9 @@ importers:
prettier:
specifier: ^2.8.8
version: 2.8.8
+ typedoc:
+ specifier: ^0.25.1
+ version: 0.25.1(typescript@5.2.2)
typescript:
specifier: ^5.2.2
version: 5.2.2
@@ -133,9 +136,6 @@ importers:
prettier:
specifier: ^2.8.8
version: 2.8.8
- rimraf:
- specifier: ^3.0.2
- version: 3.0.2
typedoc:
specifier: ^0.25.1
version: 0.25.1(typescript@5.2.2)
@@ -158,9 +158,6 @@ importers:
ava:
specifier: ^4.3.3
version: 4.3.3(@ava/typescript@4.0.0)
- rimraf:
- specifier: ^3.0.2
- version: 3.0.2
typescript:
specifier: ^5.2.2
version: 5.2.2
@@ -336,9 +333,6 @@ importers:
prettier:
specifier: ^2.8.8
version: 2.8.8
- rimraf:
- specifier: ^5.0.1
- version: 5.0.1
typescript:
specifier: ^5.2.2
version: 5.2.2
@@ -412,9 +406,6 @@ importers:
preact-render-to-string:
specifier: ^5.1.19
version: 5.2.6(preact@10.11.3)
- rimraf:
- specifier: ^3.0.2
- version: 3.0.2
sirv-cli:
specifier: ^1.0.11
version: 1.0.14
@@ -542,9 +533,6 @@ importers:
preact-render-to-string:
specifier: ^5.2.6
version: 5.2.6(preact@10.11.3)
- rimraf:
- specifier: ^3.0.2
- version: 3.0.2
sass:
specifier: 1.56.1
version: 1.56.1
@@ -595,9 +583,6 @@ importers:
prettier:
specifier: ^2.8.8
version: 2.8.8
- rimraf:
- specifier: ^3.0.2
- version: 3.0.2
typescript:
specifier: ^5.2.2
version: 5.2.2
@@ -632,9 +617,6 @@ importers:
prettier:
specifier: ^2.8.8
version: 2.8.8
- rimraf:
- specifier: ^3.0.2
- version: 3.0.2
typescript:
specifier: ^5.2.2
version: 5.2.2
@@ -657,9 +639,6 @@ importers:
prettier:
specifier: ^2.8.8
version: 2.8.8
- rimraf:
- specifier: ^3.0.2
- version: 3.0.2
typedoc:
specifier: ^0.25.1
version: 0.25.1(typescript@5.2.2)
@@ -733,9 +712,6 @@ importers:
prettier:
specifier: ^2.8.8
version: 2.8.8
- rimraf:
- specifier: ^3.0.2
- version: 3.0.2
typedoc:
specifier: ^0.25.1
version: 0.25.1(typescript@5.2.2)
@@ -770,9 +746,6 @@ importers:
prettier:
specifier: ^2.8.8
version: 2.8.8
- rimraf:
- specifier: ^3.0.2
- version: 3.0.2
packages/taler-wallet-webextension:
dependencies:
@@ -806,10 +779,10 @@ importers:
devDependencies:
'@babel/preset-react':
specifier: ^7.22.3
- version: 7.22.3(@babel/core@7.22.15)
+ version: 7.22.3(@babel/core@7.18.9)
'@babel/preset-typescript':
specifier: 7.18.6
- version: 7.18.6(@babel/core@7.22.15)
+ version: 7.18.6(@babel/core@7.18.9)
'@gnu-taler/pogen':
specifier: workspace:*
version: link:../pogen
@@ -864,9 +837,6 @@ importers:
preact-render-to-string:
specifier: ^5.1.19
version: 5.2.6(preact@10.11.3)
- rimraf:
- specifier: ^3.0.2
- version: 3.0.2
typescript:
specifier: 5.2.2
version: 5.2.2
@@ -946,9 +916,6 @@ importers:
prettier:
specifier: ^2.8.8
version: 2.8.8
- rimraf:
- specifier: ^3.0.2
- version: 3.0.2
sass:
specifier: 1.56.1
version: 1.56.1
@@ -983,14 +950,6 @@ packages:
'@jridgewell/gen-mapping': 0.1.1
'@jridgewell/trace-mapping': 0.3.17
- /@ampproject/remapping@2.2.1:
- resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
- engines: {node: '>=6.0.0'}
- dependencies:
- '@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.19
- dev: true
-
/@apideck/better-ajv-errors@0.3.6(ajv@8.11.0):
resolution: {integrity: sha512-P+ZygBLZtkp0qqOAJJVX4oX/sFo5JR3eBWwwuqHHhK0GIgQOKWrAfiAaWX0aArHkRWHMuggFEgAZNxVPwPZYaA==}
engines: {node: '>=10'}
@@ -1030,14 +989,6 @@ packages:
dependencies:
'@babel/highlight': 7.18.6
- /@babel/code-frame@7.22.13:
- resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/highlight': 7.22.13
- chalk: 2.4.2
- dev: true
-
/@babel/compat-data@7.19.4:
resolution: {integrity: sha512-CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw==}
engines: {node: '>=6.9.0'}
@@ -1052,11 +1003,6 @@ packages:
engines: {node: '>=6.9.0'}
dev: true
- /@babel/compat-data@7.22.9:
- resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==}
- engines: {node: '>=6.9.0'}
- dev: true
-
/@babel/core@7.13.16:
resolution: {integrity: sha512-sXHpixBiWWFti0AV2Zq7avpTasr6sIAu7Y396c608541qAU2ui4a193m0KSQmfPSKFZLnQ3cvlKDOm3XkuXm3Q==}
engines: {node: '>=6.9.0'}
@@ -1125,29 +1071,6 @@ packages:
- supports-color
dev: true
- /@babel/core@7.22.15:
- resolution: {integrity: sha512-PtZqMmgRrvj8ruoEOIwVA3yoF91O+Hgw9o7DAUTNBA6Mo2jpu31clx9a7Nz/9JznqetTR6zwfC4L3LAjKQXUwA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@ampproject/remapping': 2.2.1
- '@babel/code-frame': 7.22.13
- '@babel/generator': 7.22.15
- '@babel/helper-compilation-targets': 7.22.15
- '@babel/helper-module-transforms': 7.22.15(@babel/core@7.22.15)
- '@babel/helpers': 7.22.15
- '@babel/parser': 7.22.15
- '@babel/template': 7.22.15
- '@babel/traverse': 7.22.15
- '@babel/types': 7.22.15
- convert-source-map: 1.9.0
- debug: 4.3.4
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/eslint-parser@7.19.1(@babel/core@7.18.9)(eslint@7.32.0):
resolution: {integrity: sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ==}
engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
@@ -1194,16 +1117,6 @@ packages:
'@jridgewell/trace-mapping': 0.3.17
jsesc: 2.5.2
- /@babel/generator@7.22.15:
- resolution: {integrity: sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.22.15
- '@jridgewell/gen-mapping': 0.3.3
- '@jridgewell/trace-mapping': 0.3.19
- jsesc: 2.5.2
- dev: true
-
/@babel/generator@7.22.3:
resolution: {integrity: sha512-C17MW4wlk//ES/CJDL51kPNwl+qiBQyN7b9SKyVp11BLGFeSPoVaHrv+MNt8jwQFhQWowW88z1eeBx3pFz9v8A==}
engines: {node: '>=6.9.0'}
@@ -1348,17 +1261,6 @@ packages:
semver: 6.3.0
dev: true
- /@babel/helper-compilation-targets@7.22.15:
- resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/compat-data': 7.22.9
- '@babel/helper-validator-option': 7.22.15
- browserslist: 4.21.10
- lru-cache: 5.1.1
- semver: 6.3.1
- dev: true
-
/@babel/helper-create-class-features-plugin@7.20.12(@babel/core@7.18.9):
resolution: {integrity: sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==}
engines: {node: '>=6.9.0'}
@@ -1397,25 +1299,6 @@ packages:
- supports-color
dev: true
- /@babel/helper-create-class-features-plugin@7.20.12(@babel/core@7.22.15):
- resolution: {integrity: sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.22.15
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-environment-visitor': 7.18.9
- '@babel/helper-function-name': 7.19.0
- '@babel/helper-member-expression-to-functions': 7.20.7
- '@babel/helper-optimise-call-expression': 7.18.6
- '@babel/helper-replace-supers': 7.20.7
- '@babel/helper-skip-transparent-expression-wrappers': 7.20.0
- '@babel/helper-split-export-declaration': 7.18.6
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/helper-create-class-features-plugin@7.22.1(@babel/core@7.18.9):
resolution: {integrity: sha512-SowrZ9BWzYFgzUMwUmowbPSGu6CXL5MSuuCkG3bejahSpSymioPmuLdhPxNOc9MjuNGjy7M/HaXvJ8G82Lywlw==}
engines: {node: '>=6.9.0'}
@@ -1547,11 +1430,6 @@ packages:
resolution: {integrity: sha512-Z2tgopurB/kTbidvzeBrc2To3PUP/9i5MUe+fU6QJCQDyPwSH2oRapkLw3KGECDYSjhQZCNxEvNvZlLw8JjGwA==}
engines: {node: '>=6.9.0'}
- /@babel/helper-environment-visitor@7.22.5:
- resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==}
- engines: {node: '>=6.9.0'}
- dev: true
-
/@babel/helper-explode-assignable-expression@7.18.6:
resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==}
engines: {node: '>=6.9.0'}
@@ -1574,27 +1452,12 @@ packages:
'@babel/template': 7.21.9
'@babel/types': 7.22.4
- /@babel/helper-function-name@7.22.5:
- resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.22.15
- '@babel/types': 7.22.15
- dev: true
-
/@babel/helper-hoist-variables@7.18.6:
resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': 7.22.4
- /@babel/helper-hoist-variables@7.22.5:
- resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.22.15
- dev: true
-
/@babel/helper-member-expression-to-functions@7.18.9:
resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==}
engines: {node: '>=6.9.0'}
@@ -1629,13 +1492,6 @@ packages:
dependencies:
'@babel/types': 7.22.4
- /@babel/helper-module-imports@7.22.15:
- resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.22.15
- dev: true
-
/@babel/helper-module-transforms@7.19.6:
resolution: {integrity: sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw==}
engines: {node: '>=6.9.0'}
@@ -1683,20 +1539,6 @@ packages:
- supports-color
dev: true
- /@babel/helper-module-transforms@7.22.15(@babel/core@7.22.15):
- resolution: {integrity: sha512-l1UiX4UyHSFsYt17iQ3Se5pQQZZHa22zyIXURmvkmLCD4t/aU+dvNWHatKac/D9Vm9UES7nvIqHs4jZqKviUmQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
- dependencies:
- '@babel/core': 7.22.15
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-module-imports': 7.22.15
- '@babel/helper-simple-access': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/helper-validator-identifier': 7.22.15
- dev: true
-
/@babel/helper-optimise-call-expression@7.18.6:
resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==}
engines: {node: '>=6.9.0'}
@@ -1798,13 +1640,6 @@ packages:
dependencies:
'@babel/types': 7.22.4
- /@babel/helper-simple-access@7.22.5:
- resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.22.15
- dev: true
-
/@babel/helper-skip-transparent-expression-wrappers@7.18.9:
resolution: {integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==}
engines: {node: '>=6.9.0'}
@@ -1825,13 +1660,6 @@ packages:
dependencies:
'@babel/types': 7.22.4
- /@babel/helper-split-export-declaration@7.22.6:
- resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/types': 7.22.15
- dev: true
-
/@babel/helper-string-parser@7.19.4:
resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==}
engines: {node: '>=6.9.0'}
@@ -1841,20 +1669,10 @@ packages:
resolution: {integrity: sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w==}
engines: {node: '>=6.9.0'}
- /@babel/helper-string-parser@7.22.5:
- resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
- engines: {node: '>=6.9.0'}
- dev: true
-
/@babel/helper-validator-identifier@7.19.1:
resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-identifier@7.22.15:
- resolution: {integrity: sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ==}
- engines: {node: '>=6.9.0'}
- dev: true
-
/@babel/helper-validator-option@7.18.6:
resolution: {integrity: sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==}
engines: {node: '>=6.9.0'}
@@ -1864,11 +1682,6 @@ packages:
resolution: {integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==}
engines: {node: '>=6.9.0'}
- /@babel/helper-validator-option@7.22.15:
- resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==}
- engines: {node: '>=6.9.0'}
- dev: true
-
/@babel/helper-wrap-function@7.19.0:
resolution: {integrity: sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==}
engines: {node: '>=6.9.0'}
@@ -1902,17 +1715,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/helpers@7.22.15:
- resolution: {integrity: sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/template': 7.22.15
- '@babel/traverse': 7.22.15
- '@babel/types': 7.22.15
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/helpers@7.22.3:
resolution: {integrity: sha512-jBJ7jWblbgr7r6wYZHMdIqKc73ycaTcCaWRq4/2LpuPHcx7xMlZvpGQkOYc9HeSjn6rcx15CPlgVcBtZ4WZJ2w==}
engines: {node: '>=6.9.0'}
@@ -1932,15 +1734,6 @@ packages:
chalk: 2.4.2
js-tokens: 4.0.0
- /@babel/highlight@7.22.13:
- resolution: {integrity: sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-validator-identifier': 7.22.15
- chalk: 2.4.2
- js-tokens: 4.0.0
- dev: true
-
/@babel/parser@7.19.6:
resolution: {integrity: sha512-h1IUp81s2JYJ3mRkdxJgs4UvmSsRvDrx5ICSJbPvtWYv5i1nTBGcBpnog+89rAFMwvvru6E5NUHdBe01UeSzYA==}
engines: {node: '>=6.0.0'}
@@ -1954,14 +1747,6 @@ packages:
dependencies:
'@babel/types': 7.21.5
- /@babel/parser@7.22.15:
- resolution: {integrity: sha512-RWmQ/sklUN9BvGGpCDgSubhHWfAx24XDTDObup4ffvxaYsptOg2P3KG0j+1eWKLxpkX0j0uHxmpq2Z1SP/VhxA==}
- engines: {node: '>=6.0.0'}
- hasBin: true
- dependencies:
- '@babel/types': 7.22.15
- dev: true
-
/@babel/parser@7.22.4:
resolution: {integrity: sha512-VLLsx06XkEYqBtE5YGPwfSGwfrjnyPP5oiGty3S8pQLFDFLaS8VwWSIxkTXpcvr5zeYLE6+MBNl2npl/YnfofA==}
engines: {node: '>=6.0.0'}
@@ -2622,16 +2407,6 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.22.15):
- resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.15
- '@babel/helper-plugin-utils': 7.21.5
- dev: true
-
/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.18.9):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
@@ -2780,23 +2555,23 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.22.1):
+ /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.18.9):
resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.1
+ '@babel/core': 7.18.9
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.22.15):
+ /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.22.1):
resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.15
+ '@babel/core': 7.22.1
'@babel/helper-plugin-utils': 7.21.5
dev: true
@@ -3720,16 +3495,6 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.22.15):
- resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.15
- '@babel/helper-plugin-utils': 7.21.5
- dev: true
-
/@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.18.9):
resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
engines: {node: '>=6.9.0'}
@@ -3740,16 +3505,6 @@ packages:
'@babel/plugin-transform-react-jsx': 7.22.3(@babel/core@7.18.9)
dev: true
- /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.22.15):
- resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.15
- '@babel/plugin-transform-react-jsx': 7.22.3(@babel/core@7.22.15)
- dev: true
-
/@babel/plugin-transform-react-jsx@7.19.0(@babel/core@7.22.1):
resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==}
engines: {node: '>=6.9.0'}
@@ -3778,20 +3533,6 @@ packages:
'@babel/types': 7.22.4
dev: true
- /@babel/plugin-transform-react-jsx@7.22.3(@babel/core@7.22.15):
- resolution: {integrity: sha512-JEulRWG2f04a7L8VWaOngWiK6p+JOSpB+DAtwfJgOaej1qdbNxqtK7MwTBHjUA10NeFcszlFNqCdbRcirzh2uQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.15
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-module-imports': 7.21.4
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.22.15)
- '@babel/types': 7.22.4
- dev: true
-
/@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.18.9):
resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
engines: {node: '>=6.9.0'}
@@ -3803,17 +3544,6 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.22.15):
- resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.15
- '@babel/helper-annotate-as-pure': 7.18.6
- '@babel/helper-plugin-utils': 7.21.5
- dev: true
-
/@babel/plugin-transform-regenerator@7.18.6(@babel/core@7.18.9):
resolution: {integrity: sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ==}
engines: {node: '>=6.9.0'}
@@ -4014,30 +3744,30 @@ packages:
'@babel/helper-plugin-utils': 7.21.5
dev: true
- /@babel/plugin-transform-typescript@7.20.13(@babel/core@7.22.1):
+ /@babel/plugin-transform-typescript@7.20.13(@babel/core@7.18.9):
resolution: {integrity: sha512-O7I/THxarGcDZxkgWKMUrk7NK1/WbHAg3Xx86gqS6x9MTrNL6AwIluuZ96ms4xeDe6AVx6rjHbWHP7x26EPQBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.1
- '@babel/helper-create-class-features-plugin': 7.20.12(@babel/core@7.22.1)
+ '@babel/core': 7.18.9
+ '@babel/helper-create-class-features-plugin': 7.20.12(@babel/core@7.18.9)
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.22.1)
+ '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.18.9)
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/plugin-transform-typescript@7.20.13(@babel/core@7.22.15):
+ /@babel/plugin-transform-typescript@7.20.13(@babel/core@7.22.1):
resolution: {integrity: sha512-O7I/THxarGcDZxkgWKMUrk7NK1/WbHAg3Xx86gqS6x9MTrNL6AwIluuZ96ms4xeDe6AVx6rjHbWHP7x26EPQBA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.15
- '@babel/helper-create-class-features-plugin': 7.20.12(@babel/core@7.22.15)
+ '@babel/core': 7.22.1
+ '@babel/helper-create-class-features-plugin': 7.20.12(@babel/core@7.22.1)
'@babel/helper-plugin-utils': 7.21.5
- '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.22.15)
+ '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.22.1)
transitivePeerDependencies:
- supports-color
dev: true
@@ -4435,45 +4165,30 @@ packages:
'@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.18.9)
dev: true
- /@babel/preset-react@7.22.3(@babel/core@7.22.15):
- resolution: {integrity: sha512-lxDz1mnZ9polqClBCVBjIVUypoB4qV3/tZUDb/IlYbW1kiiLaXaX+bInbRjl+lNQ/iUZraQ3+S8daEmoELMWug==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
- dependencies:
- '@babel/core': 7.22.15
- '@babel/helper-plugin-utils': 7.21.5
- '@babel/helper-validator-option': 7.21.0
- '@babel/plugin-transform-react-display-name': 7.18.6(@babel/core@7.22.15)
- '@babel/plugin-transform-react-jsx': 7.22.3(@babel/core@7.22.15)
- '@babel/plugin-transform-react-jsx-development': 7.18.6(@babel/core@7.22.15)
- '@babel/plugin-transform-react-pure-annotations': 7.18.6(@babel/core@7.22.15)
- dev: true
-
- /@babel/preset-typescript@7.18.6(@babel/core@7.22.1):
+ /@babel/preset-typescript@7.18.6(@babel/core@7.18.9):
resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.1
+ '@babel/core': 7.18.9
'@babel/helper-plugin-utils': 7.19.0
'@babel/helper-validator-option': 7.18.6
- '@babel/plugin-transform-typescript': 7.20.13(@babel/core@7.22.1)
+ '@babel/plugin-transform-typescript': 7.20.13(@babel/core@7.18.9)
transitivePeerDependencies:
- supports-color
dev: true
- /@babel/preset-typescript@7.18.6(@babel/core@7.22.15):
+ /@babel/preset-typescript@7.18.6(@babel/core@7.22.1):
resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
- '@babel/core': 7.22.15
+ '@babel/core': 7.22.1
'@babel/helper-plugin-utils': 7.19.0
'@babel/helper-validator-option': 7.18.6
- '@babel/plugin-transform-typescript': 7.20.13(@babel/core@7.22.15)
+ '@babel/plugin-transform-typescript': 7.20.13(@babel/core@7.22.1)
transitivePeerDependencies:
- supports-color
dev: true
@@ -4544,15 +4259,6 @@ packages:
'@babel/parser': 7.22.4
'@babel/types': 7.22.4
- /@babel/template@7.22.15:
- resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.22.13
- '@babel/parser': 7.22.15
- '@babel/types': 7.22.15
- dev: true
-
/@babel/traverse@7.19.6:
resolution: {integrity: sha512-6l5HrUCzFM04mfbG09AagtYyR2P0B71B1wN7PfSPiksDPz2k5H9CBC1tcZpz2M8OxbKTPccByoOJ22rUKbpmQQ==}
engines: {node: '>=6.9.0'}
@@ -4588,24 +4294,6 @@ packages:
transitivePeerDependencies:
- supports-color
- /@babel/traverse@7.22.15:
- resolution: {integrity: sha512-DdHPwvJY0sEeN4xJU5uRLmZjgMMDIvMPniLuYzUVXj/GGzysPl0/fwt44JBkyUIzGJPV8QgHMcQdQ34XFuKTYQ==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/code-frame': 7.22.13
- '@babel/generator': 7.22.15
- '@babel/helper-environment-visitor': 7.22.5
- '@babel/helper-function-name': 7.22.5
- '@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.22.15
- '@babel/types': 7.22.15
- debug: 4.3.4
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
- dev: true
-
/@babel/traverse@7.22.4:
resolution: {integrity: sha512-Tn1pDsjIcI+JcLKq1AVlZEr4226gpuAQTsLMorsYg9tuS/kG7nuwwJ4AB8jfQuEgb/COBwR/DqJxmoiYFu5/rQ==}
engines: {node: '>=6.9.0'}
@@ -4640,15 +4328,6 @@ packages:
'@babel/helper-validator-identifier': 7.19.1
to-fast-properties: 2.0.0
- /@babel/types@7.22.15:
- resolution: {integrity: sha512-X+NLXr0N8XXmN5ZsaQdm9U2SSC3UbIYq/doL++sueHOTisgZHoKaQtZxGuV2cUPQHMfjKEfg/g6oy7Hm6SKFtA==}
- engines: {node: '>=6.9.0'}
- dependencies:
- '@babel/helper-string-parser': 7.22.5
- '@babel/helper-validator-identifier': 7.22.15
- to-fast-properties: 2.0.0
- dev: true
-
/@babel/types@7.22.4:
resolution: {integrity: sha512-Tx9x3UBHTTsMSW85WB2kphxYQVvrZ/t1FxD88IpSgIjiUJlCm9z+xWIDwyo1vffTwSqteqyznB8ZE9vYYk16zA==}
engines: {node: '>=6.9.0'}
@@ -5225,18 +4904,6 @@ packages:
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
dev: true
- /@isaacs/cliui@8.0.2:
- resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
- engines: {node: '>=12'}
- dependencies:
- string-width: 5.1.2
- string-width-cjs: /string-width@4.2.3
- strip-ansi: 7.0.1
- strip-ansi-cjs: /strip-ansi@6.0.1
- wrap-ansi: 8.1.0
- wrap-ansi-cjs: /wrap-ansi@7.0.0
- dev: true
-
/@istanbuljs/load-nyc-config@1.1.0:
resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
engines: {node: '>=8'}
@@ -5726,13 +5393,6 @@ packages:
node-gyp-build: 4.5.0
dev: true
- /@pkgjs/parseargs@0.11.0:
- resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
- engines: {node: '>=14'}
- requiresBuild: true
- dev: true
- optional: true
-
/@polka/url@1.0.0-next.21:
resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==}
dev: true
@@ -7712,17 +7372,6 @@ packages:
pako: 1.0.11
dev: true
- /browserslist@4.21.10:
- resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
- dependencies:
- caniuse-lite: 1.0.30001527
- electron-to-chromium: 1.4.508
- node-releases: 2.0.13
- update-browserslist-db: 1.0.11(browserslist@4.21.10)
- dev: true
-
/browserslist@4.21.4:
resolution: {integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
@@ -8005,10 +7654,6 @@ packages:
/caniuse-lite@1.0.30001482:
resolution: {integrity: sha512-F1ZInsg53cegyjroxLNW9DmrEQ1SuGRTO1QlpA0o2/6OpQ0gFeDRoq1yFmnr8Sakn9qwwt9DmbxHB6w167OSuQ==}
- /caniuse-lite@1.0.30001527:
- resolution: {integrity: sha512-YkJi7RwPgWtXVSgK4lG9AHH57nSzvvOp9MesgXmw4Q7n0C3H04L0foHqfxcmSAm5AcWb8dW9AYj2tR7/5GnddQ==}
- dev: true
-
/caseless@0.12.0:
resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
dev: true
@@ -8484,7 +8129,7 @@ packages:
engines: {node: '>=8'}
dependencies:
dot-prop: 5.3.0
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
make-dir: 3.1.0
unique-string: 2.0.0
write-file-atomic: 3.0.3
@@ -9455,10 +9100,6 @@ packages:
/electron-to-chromium@1.4.284:
resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==}
- /electron-to-chromium@1.4.508:
- resolution: {integrity: sha512-FFa8QKjQK/A5QuFr2167myhMesGrhlOBD+3cYNxO9/S4XzHEXesyTD/1/xF644gC8buFPz3ca6G1LOQD0tZrrg==}
- dev: true
-
/elliptic@6.5.4:
resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==}
dependencies:
@@ -9528,7 +9169,7 @@ packages:
resolution: {integrity: sha512-T0yTFjdpldGY8PmuXXR0PyQ1ufZpEGiHVrp7zHKB7jdR4qlmZHhONVM5AQOAWXuF/w3dnHbEQVrNptJgt7F+cQ==}
engines: {node: '>=10.13.0'}
dependencies:
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
tapable: 2.2.1
dev: true
@@ -10854,14 +10495,6 @@ packages:
signal-exit: 3.0.7
dev: true
- /foreground-child@3.1.1:
- resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
- engines: {node: '>=14'}
- dependencies:
- cross-spawn: 7.0.3
- signal-exit: 4.1.0
- dev: true
-
/forever-agent@0.6.1:
resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
dev: true
@@ -10970,7 +10603,7 @@ packages:
engines: {node: '>=10'}
dependencies:
at-least-node: 1.0.0
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
jsonfile: 6.1.0
universalify: 2.0.0
dev: true
@@ -11168,18 +10801,6 @@ packages:
dependencies:
is-glob: 4.0.3
- /glob@10.3.3:
- resolution: {integrity: sha512-92vPiMb/iqpmEgsOoIDvTjc50wf9CCCvMzsi6W0JLPeUKE8TWP1a73PgqSrqy7iAZxaSD1YdzU7QZR5LF51MJw==}
- engines: {node: '>=16 || 14 >=14.17'}
- hasBin: true
- dependencies:
- foreground-child: 3.1.1
- jackspeak: 2.2.3
- minimatch: 9.0.1
- minipass: 7.0.2
- path-scurry: 1.10.1
- dev: true
-
/glob@7.1.4:
resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==}
dependencies:
@@ -12324,15 +11945,6 @@ packages:
istanbul-lib-report: 3.0.0
dev: true
- /jackspeak@2.2.3:
- resolution: {integrity: sha512-pF0kfjmg8DJLxDrizHoCZGUFz4P4czQ3HyfW4BU0ffebYkzAVlBywp5zaxW/TM+r0sGbmrQdi8EQQVTJFxnGsQ==}
- engines: {node: '>=14'}
- dependencies:
- '@isaacs/cliui': 8.0.2
- optionalDependencies:
- '@pkgjs/parseargs': 0.11.0
- dev: true
-
/jake@10.8.5:
resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==}
engines: {node: '>=10'}
@@ -12496,7 +12108,7 @@ packages:
dependencies:
universalify: 2.0.0
optionalDependencies:
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
dev: true
/jsonpointer@5.0.1:
@@ -12794,11 +12406,6 @@ packages:
engines: {node: '>=8'}
dev: true
- /lru-cache@10.0.0:
- resolution: {integrity: sha512-svTf/fzsKHffP42sujkO/Rjs37BCIsQVRCeNYIm9WN8rgT7ffoUnRtZCqU+6BqcSBdv8gwJeTz8knJpgACeQMw==}
- engines: {node: 14 || >=16.14}
- dev: true
-
/lru-cache@4.1.5:
resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
dependencies:
@@ -13088,13 +12695,6 @@ packages:
brace-expansion: 2.0.1
dev: true
- /minimatch@9.0.1:
- resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==}
- engines: {node: '>=16 || 14 >=14.17'}
- dependencies:
- brace-expansion: 2.0.1
- dev: true
-
/minimatch@9.0.3:
resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
engines: {node: '>=16 || 14 >=14.17'}
@@ -13144,11 +12744,6 @@ packages:
yallist: 4.0.0
dev: true
- /minipass@7.0.2:
- resolution: {integrity: sha512-eL79dXrE1q9dBbDCLg7xfn/vl7MS4F1gvJAgjJrQli/jbQWdUttuVawphqpffoIYfRdq78LHx6GP4bU/EQ2ATA==}
- engines: {node: '>=16 || 14 >=14.17'}
- dev: true
-
/minizlib@1.3.3:
resolution: {integrity: sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==}
dependencies:
@@ -13433,10 +13028,6 @@ packages:
/node-releases@2.0.10:
resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==}
- /node-releases@2.0.13:
- resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
- dev: true
-
/nofilter@3.1.0:
resolution: {integrity: sha512-l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g==}
engines: {node: '>=12.19'}
@@ -13927,7 +13518,7 @@ packages:
resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==}
engines: {node: '>=8'}
dependencies:
- graceful-fs: 4.2.10
+ graceful-fs: 4.2.11
hasha: 5.2.2
lodash.flattendeep: 4.4.0
release-zalgo: 1.0.0
@@ -14080,14 +13671,6 @@ packages:
/path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- /path-scurry@1.10.1:
- resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
- engines: {node: '>=16 || 14 >=14.17'}
- dependencies:
- lru-cache: 10.0.0
- minipass: 7.0.2
- dev: true
-
/path-to-regexp@0.1.7:
resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
dev: true
@@ -15788,14 +15371,6 @@ packages:
glob: 7.2.3
dev: true
- /rimraf@5.0.1:
- resolution: {integrity: sha512-OfFZdwtd3lZ+XZzYP/6gTACubwFcHdLRqS9UX3UwpU2dnGQYkPFISRwvM3w9IiB2w7bW5qGo/uAwE4SmXXSKvg==}
- engines: {node: '>=14'}
- hasBin: true
- dependencies:
- glob: 10.3.3
- dev: true
-
/ripemd160@2.0.2:
resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==}
dependencies:
@@ -15972,11 +15547,6 @@ packages:
/semver@6.3.0:
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
- /semver@6.3.1:
- resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
- hasBin: true
- dev: true
-
/semver@7.3.4:
resolution: {integrity: sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==}
engines: {node: '>=10'}
@@ -17460,17 +17030,6 @@ packages:
escalade: 3.1.1
picocolors: 1.0.0
- /update-browserslist-db@1.0.11(browserslist@4.21.10):
- resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
- dependencies:
- browserslist: 4.21.10
- escalade: 3.1.1
- picocolors: 1.0.0
- dev: true
-
/update-notifier@5.1.0:
resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==}
engines: {node: '>=10'}
@@ -18168,15 +17727,6 @@ packages:
strip-ansi: 6.0.1
dev: true
- /wrap-ansi@8.1.0:
- resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
- engines: {node: '>=12'}
- dependencies:
- ansi-styles: 6.2.1
- string-width: 5.1.2
- strip-ansi: 7.0.1
- dev: true
-
/wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}