diff --git a/deps.ts b/deps.ts
index 227ebc01c2..710e75fa76 100644
--- a/deps.ts
+++ b/deps.ts
@@ -28,7 +28,6 @@ export const { connect: denoConnect, listen: denoListen, watchFs } = globalThis.
// Third-party packages:
//export { base16, base64, bech32, bech32m } from 'npm:@scure/base'
-//export { default as Case } from 'npm:case';
//export { Buffer as StreamBuffer } from '@std/streams';
if (globalThis.Deno) {
diff --git a/gui/Chain.css b/gui/Chain.css
new file mode 100644
index 0000000000..d141050ad6
--- /dev/null
+++ b/gui/Chain.css
@@ -0,0 +1,9 @@
+button.chain {
+ background: #0004;
+ border-radius: 0.125rem;
+ color: white;
+ font-weight: bold;
+ font-size: 1rem;
+ border: none;
+ padding: 1rem 2rem;
+}
diff --git a/gui/Chain.ts b/gui/Chain.ts
index 8d115709fe..e22e6122b8 100644
--- a/gui/Chain.ts
+++ b/gui/Chain.ts
@@ -2,11 +2,10 @@ import Html from '../library/Html.ts';
import Bitcoin from '../platform/Bitcoin/Bitcoin.ts';
let chain = null;
export default function Chain () {
- const el = Html(['button.chain', chain?.status ?? 'Connecting...']);
- chain ??= Bitcoin.Connect('https://liquidtestnet.com').then(connection => {
- chain = connection;
- }).catch(e => {
- chain = { status: e.message }
- });
+ const el = Html(['button.chain', chain ? 'Connecting...' : 'Connected!']);
+ chain ??= Bitcoin.LiquidTestnet();
+ console.log(chain);
+ chain.rpc.getbestblockhash().then(console.log).catch(console.error);
+ el.firstChild.innerText = 'Connected!';
return el
}
diff --git a/gui/Demo.ts b/gui/Demo.ts
index b460a1e223..e618526c90 100644
--- a/gui/Demo.ts
+++ b/gui/Demo.ts
@@ -1,8 +1,30 @@
+import Html from '../library/Html.ts';
+import SimplicityHL from '../platform/SimplicityHL/SimplicityHL.ts';
+import { pubECDSA } from 'npm:@scure/btc-signer/utils.js'; // not already in keypair?
+
export default Demo;
-function Demo () {
+
+async function Demo ({
+ root = document.getElementById('demousers'),
+ users = {
+ Alice: Demo.User('Alice'),
+ Bob: Demo.User('Bob'),
+ Carol: Demo.User('Carol'),
+ }
+} = {}) {
+ for (const user of Object.values(users)) root.appendChild(Html(await user));
+ return Object.assign(root, { users });
}
+
namespace Demo {
- export function User (name: string) {
+
+ export async function User (name: string, {
+ secret = new Uint8Array(Array(32).fill(1)),
+ keypair = SimplicityHL.Keypair(secret),
+ pubkey = pubECDSA(secret),
+ } = {}) {
+ keypair = await keypair;
+ console.log({ name, pubkey });
return ['article.demouser',
['section.demometa', ['strong.demoname', name], ['strong', '1.00000000 tLBTC'], 'at tex1p9sv7g8tyljjymz4t6zyjpvepw4...'],
['div.demolog', 'Enter Bob, Carol.'],
@@ -14,4 +36,5 @@ namespace Demo {
['input', { placeholder: 'chat' }],
['button.pill', 'Say']]]
}
+
}
diff --git a/gui/Editor.css b/gui/Editor.css
index 4a3fb5bad1..2442395da8 100644
--- a/gui/Editor.css
+++ b/gui/Editor.css
@@ -72,10 +72,12 @@
padding: 0;
margin: 0;
margin-bottom: 1rem !important;
- @media screen and (max-width: 1366px) {
- flex-flow: row wrap;
+ @media screen and (max-width: 1280px) {
+ flex-flow: column;
+ align-items: stretch;
+ .sidebox { max-width: initial; }
}
- @media screen and (min-width: 1367px) {
+ @media screen and (min-width: 1281px) {
.sidebox { width: 24ch; flex-shrink: 0; }
}
p {
diff --git a/gui/Simf.ts b/gui/Simf.ts
index 57bde67f64..ff3e29cb37 100644
--- a/gui/Simf.ts
+++ b/gui/Simf.ts
@@ -179,10 +179,12 @@ namespace Simf {
['span', { style: 'float:left;font-size:2rem;padding-right:0.33rem' }, ...content]
export const Info = {
- 0: ['p', ['strong', 'Fadroma V3'], ' employs WebAssembly to instantly compile, evaluate, and deploy ',
- ['strong', 'SimplicityHL smart contracts'], ' from all modern JavaScript-based environments alike:',
- ' browsers, servers, and edge services.'],
- 1: ['p.sidebox', 'Try these ', ['strong', 'SimplicityHL programs'], ' on Liquid Testnet:', Chain()],
+ 0: ['p'
+ , ['strong', 'Fadroma V3'], ' employs WebAssembly to instantly compile, evaluate, and deploy '
+ , ['strong', 'SimplicityHL smart contracts'], ' from all modern JavaScript-based environments alike: browsers, servers, and edge services.'],
+ 1: ['p.sidebox.flex.space-between'
+ , ['div.grow', 'Try these ', ['strong', 'SimplicityHL programs'], ' on ', ['a', { href: '#' }, 'Liquid Testnet:'], ' ']
+ , Chain()],
2: ['p.sidebox', 'The ', ['strong', 'Simplicity transaction lifecycle'], ' happens in two phases:' ],
3: ['p', ['span', ['strong', Dropcap('1. '), 'Commitment phase'], '. Compile program to P2TR address, and fund it on-chain:']],
4: ['p', ['span', ['strong', Dropcap('2. '), 'Redemption phase'], '. Fulfill the program\'s conditions to redeem funds:']],
diff --git a/gui/index.html b/gui/index.html
index ecf89ce65c..f442fb7846 100644
--- a/gui/index.html
+++ b/gui/index.html
@@ -8,6 +8,7 @@
+
@@ -72,47 +73,7 @@
import('./Demo.ts').then(({ "default": x }) => x()).catch(console.error);
Watch this space: interactive peer discovery and deal-making in a familiar conversational interface will pop up here.
-
-
- Alice1.00000000 tLBTC at tex1p9sv7g8tyljjymz4t6zyjpvepw4...
-
- Enter Bob, Carol.
-
-
-
-
- Bob1.00000000 tLBTC at tex1p9sv7g8tyljjymz4t6zyjpvepw4...
-
- Enter Alice, Carol.
-
-
-
-
- Carol1.00000000 tLBTC at tex1p9sv7g8tyljjymz4t6zyjpvepw4...
-
- Enter Alice, Bob.
-
-
-
-
+
Meanwhile, try the example project, and report any issues on our bug tracker!
All further inquiries welcome at https://hack.bg/contact.
diff --git a/gui/stub/stub_process.ts b/gui/stub/stub_process.ts
index c0147a307e..2cb93fc636 100644
--- a/gui/stub/stub_process.ts
+++ b/gui/stub/stub_process.ts
@@ -6,4 +6,6 @@ export const process = {
exit () {},
};
+export const argv = [];
+
export default process;
diff --git a/gui/theme.css b/gui/theme.css
index 132167cd3f..902116ca22 100644
--- a/gui/theme.css
+++ b/gui/theme.css
@@ -376,16 +376,17 @@ nav.header {
}
.editor-wrapper {
- /*resize: vertical;*/
- /*overflow: auto;*/
- margin: 0 0 0.5rem -1.5rem;
- border-top: 1px solid #fff8;
- background: #fff4;
- /*max-width: 100%;*/
+ margin: 0 0 0.5rem -1.5rem;
+ /*border-top: 1px solid #0002;*/
+ /*border-left: 1px solid #0002;*/
+ /*border-bottom: 1px solid #0002;*/
+ /*border-right: 1px solid #0002;*/
+ border-radius: 0.125rem;
+ background: #fff4;
.collapsed & {
min-height: 0;
- overflow: hidden;
- display: none;
+ overflow: hidden;
+ display: none;
visibility: hidden;
}
}
@@ -468,6 +469,8 @@ nav.header {
border: 1px solid white;
min-height: 2rem;
background: #ddd;
+ padding: 0.33rem;
+ border-radius: 3px;
.name {
font-size: 1rem;
min-height: 2rem;
diff --git a/library/Err.ts b/library/Err.ts
index 8561460185..8ccbebcae2 100644
--- a/library/Err.ts
+++ b/library/Err.ts
@@ -1,6 +1,6 @@
import type { Fn, Str } from '../index.ts';
import { bold, gray } from './Ansi.ts';
-import { cwd } from 'node:process';
+import process from 'node:process'; // destructuring this import breaks in Vite
export default function Err (message: string, ...args: object[]) {
return Object.assign(new Error(message), ...args)
@@ -9,7 +9,7 @@ export default function Err (message: string, ...args: object[]) {
export function formatError (e: Error, name?: Str) {
const [head, ...tail] = (e?.stack||'').split('\n');
const stack = tail.map(x=>x
- .replace('('+cwd()+'/', '(')
+ .replace('('+process.cwd()+'/', '(')
.replace('./node_modules/.pnpm/', ''));
e.message = e.message.split('Logs:')[0].trim();
if (name) e.message = name + ': ' + e.message;
@@ -36,8 +36,8 @@ export function stackTrace (slice = 3, length?: number): string[] {
}
/** Relativize paths in stack trace, colorize, and reduce indent. */
export function alignTrace (line: string) {
- line = line.replace('file://'+cwd(), '.');
- line = line.replace(cwd(), '.');
+ line = line.replace('file://'+process.cwd(), '.');
+ line = line.replace(process.cwd(), '.');
const format = (x: string, i: number) => (i===0)
? bold(gray(2, x.padEnd(36))) : gray(4, x);
line = line.split(' (').map(format).join(gray(4, ' ('));
diff --git a/library/Fn.ts b/library/Fn.ts
index 6cac6c7164..d585e3ddd5 100644
--- a/library/Fn.ts
+++ b/library/Fn.ts
@@ -1,5 +1,5 @@
+import process from 'node:process'; // destructuring this import breaks in Vite
import { setImmediate } from 'node:timers';
-import { argv, exit } from 'node:process';
import { fileURLToPath } from 'node:url';
export default Fn;
@@ -265,10 +265,10 @@ namespace Fn {
meta: Main.Meta = {},
main: Fn
) {
- const [_, argv1, ...args] = argv
+ const [_, argv1, ...args] = process.argv
if (Main.is(meta || {}, argv1)) setImmediate(async ()=>{
try {
- await Promise.resolve(main({ args, exit }));
+ await Promise.resolve(main({ args, exit: process.exit }));
//exit(0);
} catch (e) {
const error = e as Error & { exitCode?: number };
diff --git a/library/Fs.ts b/library/Fs.ts
index dfac5df092..e7d79b3979 100644
--- a/library/Fs.ts
+++ b/library/Fs.ts
@@ -5,7 +5,7 @@ import { chunked } from './String.ts';
import type { Bytes } from './Byte.ts';
import type { Versioned } from './Version.ts';
-import { cwd } from 'node:process';
+import process from 'node:process'; // destructuring this import breaks in Vite
import { joinPath, tmpdir, mkdir, rm, mkdtemp, writeFile, resolvePath } from '../deps.ts';
import { zipSync, strToU8 as zipStr } from 'npm:fflate';
@@ -165,7 +165,7 @@ function LocalFS (dir: string|D, path: string = ''): D {
const opts = { recursive: true };
dir.mkdir ??= async (sub: string) => {
- const path = resolvePath(cwd(), sub);
+ const path = resolvePath(process.cwd(), sub);
await mkdir(path, opts)
return LocalFS(dir, path);
};
diff --git a/library/String.ts b/library/String.ts
index 39b9359c0f..12390770ea 100644
--- a/library/String.ts
+++ b/library/String.ts
@@ -1,23 +1,30 @@
+import Case from 'npm:case';
import type { Maybe, Bytes } from '../index.ts';
-import { Case, stdout } from '../deps.ts';
+import { stdout } from '../deps.ts';
import { NO_COLOR } from './Ansi.ts';
import Fn from './Fn.ts';
+
/** String, or something with a `toString` method. */
export type Str = string|{ toString(): string };
+
/** Concatenate strings. */
export function Str (...strs: Array|Array>>) {
return chunks(...strs).join('');
}
+
/** Flatten and filter nested arrays of strings. */
export const chunks = (...strs: Array|Array>>) =>
strs.flat().filter(Boolean).map(x=>x!.toString());
+
/** Join nested arrays of strings. */
export const joined = (joiner: string, ...strs: Array|Array>>) =>
chunks(...strs).join(joiner);
+
export const glued = Fn(joined, '');
export const spaced = Fn(joined, ' ');
export const lines = Fn(joined, '\n');
export const joiner = (x?: Str, y = ' ') => x ? (x.toString() + y) : '';
+
export function chunked (separator: string = '') {
return function unchunk (...chunks: unknown[]): string {
let buffer = '';
diff --git a/package.json b/package.json
index 621f9868f2..2f21aa469a 100644
--- a/package.json
+++ b/package.json
@@ -1,12 +1,12 @@
{
- "name": "@hackbg/fadroma",
+ "name": "@hackbg/fadroma",
"version": "3.0.0",
- "type": "module",
- "main": "lib/index.ts",
+ "type": "module",
+ "main": "lib/index.ts",
"scripts": {
- "test": "tsx ./test.ts",
- "build": "vite build",
- "check": "deno check",
+ "test": "tsx ./test.ts",
+ "build": "vite build",
+ "check": "deno check",
"doc:type": "typedoc --out doc/type --darkHighlightTheme everforest-dark --cleanOutputDir --groupReferencesByType --useFirstParagraphOfCommentAsSummary index.ts",
"doc:deno": "deno doc --output doc/deno --html index.ts"
},
@@ -27,16 +27,16 @@
"fflate": "^0.8.2",
"indexd": "^0.9.1",
"log-update": "^7.0.1",
- "protobuf-varint": "^1",
"nats.ws": "^1.30.3",
- "p2p": "^0.12.0"
+ "p2p": "^0.12.0",
+ "protobuf-varint": "^1"
},
"devDependencies": {
"@noble/curves": "^2.0.1",
"@noble/ed25519": "^3.0.0",
"@noble/hashes": "^2.0.1",
"@noble/secp256k1": "^3.0.0",
- "@scure/base": "^2",
+ "@scure/base": "^2.0.0",
"@scure/bip32": "^2.0.1",
"@scure/bip39": "^2.0.1",
"@scure/btc-signer": "^2.0.1",
@@ -45,18 +45,18 @@
"case": "^1.6.3",
"fflate": "^0.8.2",
"indexd": "^0.9.1",
- "log-update": "^7.0.1",
+ "log-update": "^7.1.0",
"monaco-editor": "^0.55.1",
"monaco-editor-textmate": "4.0.0",
"monaco-textmate": "3.0.1",
- "onigasm": "2.2.5",
"nats.ws": "^1.30.3",
- "p2p": "^0.12.0",
"node-stdlib-browser": "^1.3.1",
- "protobuf-varint": "^1",
- "tsx": "^4.20.6",
- "typedoc": "^0.28.14",
- "vite": "^7.2.2",
+ "onigasm": "2.2.5",
+ "p2p": "^0.12.0",
+ "protobuf-varint": "^1.0.0",
+ "tsx": "^4.21.0",
+ "typedoc": "^0.28.17",
+ "vite": "^7.3.1",
"vite-plugin-node-polyfills": "^0.24.0"
},
"peerDependenciesMeta": {
diff --git a/platform/Bitcoin/Bitcoin.ts b/platform/Bitcoin/Bitcoin.ts
index ff5b402feb..abdd3797d9 100644
--- a/platform/Bitcoin/Bitcoin.ts
+++ b/platform/Bitcoin/Bitcoin.ts
@@ -138,7 +138,9 @@ namespace Bitcoin {
}
/** Connect to Liquid testnet. */
- export function LiquidTestnet (options?: Options) {/* TODO */}
+ export function LiquidTestnet (options?: Options) {
+ return Object.assign(Connect('https://liquidtestnet.com:18891'), LiquidTestnet);
+ }
export namespace LiquidTestnet {
export const ID = 'liquidtestnet';
export const HRP_BECH32 = 'tex';
@@ -219,6 +221,7 @@ namespace Bitcoin {
decodescript: Fn,
generatetoaddress: Fn,
getaddressinfo: Fn.Returns>,
+ getbestblockhash: Fn.Returns>,
getblockhash: Fn<[Num], Promise>,
getnewaddress: Fn.Returns>,
getreceivedbyaddress: Fn,
@@ -245,6 +248,7 @@ namespace Bitcoin {
decodescript: callRpc('decodescript'),
generatetoaddress: callRpc('generatetoaddress'),
getaddressinfo: callRpc('getaddressinfo'),
+ getbestblockhash: callRpc('getbestblockhash'),
getblockhash: callRpc('getblockhash'),
getnewaddress: callRpc('getnewaddress'),
getreceivedbyaddress: callRpc('getreceivedbyaddress'),
diff --git a/platform/Namada/Cargo.lock b/platform/Namada/Cargo.lock
index 6745500228..82bc67d183 100644
--- a/platform/Namada/Cargo.lock
+++ b/platform/Namada/Cargo.lock
@@ -2692,9 +2692,9 @@ dependencies = [
[[package]]
name = "keccak"
-version = "0.1.5"
+version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654"
+checksum = "cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653"
dependencies = [
"cpufeatures",
]
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 6042bf565e..0fa508a953 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,10 +10,10 @@ importers:
dependencies:
bitcoinjs-lib:
specifier: ^7.0.0
- version: 7.0.0(typescript@5.7.3)
+ version: 7.0.1(typescript@5.7.3)
bitcore-lib:
specifier: ^11.4.5
- version: 11.4.5
+ version: 11.5.1
devDependencies:
'@noble/curves':
specifier: ^2.0.1
@@ -28,7 +28,7 @@ importers:
specifier: ^3.0.0
version: 3.0.0
'@scure/base':
- specifier: ^2
+ specifier: ^2.0.0
version: 2.0.0
'@scure/bip32':
specifier: ^2.0.1
@@ -55,8 +55,8 @@ importers:
specifier: ^0.9.1
version: 0.9.1
log-update:
- specifier: ^7.0.1
- version: 7.0.1
+ specifier: ^7.1.0
+ version: 7.1.0
monaco-editor:
specifier: ^0.55.1
version: 0.55.1
@@ -79,181 +79,181 @@ importers:
specifier: ^0.12.0
version: 0.12.0
protobuf-varint:
- specifier: ^1
+ specifier: ^1.0.0
version: 1.0.0
tsx:
- specifier: ^4.20.6
- version: 4.20.6
+ specifier: ^4.21.0
+ version: 4.21.0
typedoc:
- specifier: ^0.28.14
- version: 0.28.14(typescript@5.7.3)
+ specifier: ^0.28.17
+ version: 0.28.17(typescript@5.7.3)
vite:
- specifier: ^7.2.2
- version: 7.2.2(@types/node@24.9.2)(tsx@4.20.6)(yaml@2.8.1)
+ specifier: ^7.3.1
+ version: 7.3.1(@types/node@24.9.2)(tsx@4.21.0)(yaml@2.8.2)
vite-plugin-node-polyfills:
specifier: ^0.24.0
- version: 0.24.0(rollup@4.53.2)(vite@7.2.2(@types/node@24.9.2)(tsx@4.20.6)(yaml@2.8.1))
+ version: 0.24.0(rollup@4.57.1)(vite@7.3.1(@types/node@24.9.2)(tsx@4.21.0)(yaml@2.8.2))
packages:
- '@esbuild/aix-ppc64@0.25.12':
- resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==}
+ '@esbuild/aix-ppc64@0.27.3':
+ resolution: {integrity: sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
- '@esbuild/android-arm64@0.25.12':
- resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
+ '@esbuild/android-arm64@0.27.3':
+ resolution: {integrity: sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
- '@esbuild/android-arm@0.25.12':
- resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
+ '@esbuild/android-arm@0.27.3':
+ resolution: {integrity: sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
- '@esbuild/android-x64@0.25.12':
- resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
+ '@esbuild/android-x64@0.27.3':
+ resolution: {integrity: sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
- '@esbuild/darwin-arm64@0.25.12':
- resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
+ '@esbuild/darwin-arm64@0.27.3':
+ resolution: {integrity: sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-x64@0.25.12':
- resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
+ '@esbuild/darwin-x64@0.27.3':
+ resolution: {integrity: sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
- '@esbuild/freebsd-arm64@0.25.12':
- resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
+ '@esbuild/freebsd-arm64@0.27.3':
+ resolution: {integrity: sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.25.12':
- resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
+ '@esbuild/freebsd-x64@0.27.3':
+ resolution: {integrity: sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
- '@esbuild/linux-arm64@0.25.12':
- resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
+ '@esbuild/linux-arm64@0.27.3':
+ resolution: {integrity: sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm@0.25.12':
- resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
+ '@esbuild/linux-arm@0.27.3':
+ resolution: {integrity: sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
- '@esbuild/linux-ia32@0.25.12':
- resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
+ '@esbuild/linux-ia32@0.27.3':
+ resolution: {integrity: sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.25.12':
- resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
+ '@esbuild/linux-loong64@0.27.3':
+ resolution: {integrity: sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
- '@esbuild/linux-mips64el@0.25.12':
- resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
+ '@esbuild/linux-mips64el@0.27.3':
+ resolution: {integrity: sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.25.12':
- resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
+ '@esbuild/linux-ppc64@0.27.3':
+ resolution: {integrity: sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-riscv64@0.25.12':
- resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
+ '@esbuild/linux-riscv64@0.27.3':
+ resolution: {integrity: sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-s390x@0.25.12':
- resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
+ '@esbuild/linux-s390x@0.27.3':
+ resolution: {integrity: sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
- '@esbuild/linux-x64@0.25.12':
- resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
+ '@esbuild/linux-x64@0.27.3':
+ resolution: {integrity: sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-arm64@0.25.12':
- resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
+ '@esbuild/netbsd-arm64@0.27.3':
+ resolution: {integrity: sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.25.12':
- resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
+ '@esbuild/netbsd-x64@0.27.3':
+ resolution: {integrity: sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.25.12':
- resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
+ '@esbuild/openbsd-arm64@0.27.3':
+ resolution: {integrity: sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.25.12':
- resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
+ '@esbuild/openbsd-x64@0.27.3':
+ resolution: {integrity: sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
- '@esbuild/openharmony-arm64@0.25.12':
- resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
+ '@esbuild/openharmony-arm64@0.27.3':
+ resolution: {integrity: sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openharmony]
- '@esbuild/sunos-x64@0.25.12':
- resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
+ '@esbuild/sunos-x64@0.27.3':
+ resolution: {integrity: sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
- '@esbuild/win32-arm64@0.25.12':
- resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
+ '@esbuild/win32-arm64@0.27.3':
+ resolution: {integrity: sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
- '@esbuild/win32-ia32@0.25.12':
- resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
+ '@esbuild/win32-ia32@0.27.3':
+ resolution: {integrity: sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.25.12':
- resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
+ '@esbuild/win32-x64@0.27.3':
+ resolution: {integrity: sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
- '@gerrit0/mini-shiki@3.14.0':
- resolution: {integrity: sha512-c5X8fwPLOtUS8TVdqhynz9iV0GlOtFUT1ppXYzUUlEXe4kbZ/mvMT8wXoT8kCwUka+zsiloq7sD3pZ3+QVTuNQ==}
+ '@gerrit0/mini-shiki@3.22.0':
+ resolution: {integrity: sha512-jMpciqEVUBKE1QwU64S4saNMzpsSza6diNCk4MWAeCxO2+LFi2FIFmL2S0VDLzEJCxuvCbU783xi8Hp/gkM5CQ==}
'@jridgewell/sourcemap-codec@1.5.5':
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
@@ -294,113 +294,128 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.53.2':
- resolution: {integrity: sha512-yDPzwsgiFO26RJA4nZo8I+xqzh7sJTZIWQOxn+/XOdPE31lAvLIYCKqjV+lNH/vxE2L2iH3plKxDCRK6i+CwhA==}
+ '@rollup/rollup-android-arm-eabi@4.57.1':
+ resolution: {integrity: sha512-A6ehUVSiSaaliTxai040ZpZ2zTevHYbvu/lDoeAteHI8QnaosIzm4qwtezfRg1jOYaUmnzLX1AOD6Z+UJjtifg==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.53.2':
- resolution: {integrity: sha512-k8FontTxIE7b0/OGKeSN5B6j25EuppBcWM33Z19JoVT7UTXFSo3D9CdU39wGTeb29NO3XxpMNauh09B+Ibw+9g==}
+ '@rollup/rollup-android-arm64@4.57.1':
+ resolution: {integrity: sha512-dQaAddCY9YgkFHZcFNS/606Exo8vcLHwArFZ7vxXq4rigo2bb494/xKMMwRRQW6ug7Js6yXmBZhSBRuBvCCQ3w==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.53.2':
- resolution: {integrity: sha512-A6s4gJpomNBtJ2yioj8bflM2oogDwzUiMl2yNJ2v9E7++sHrSrsQ29fOfn5DM/iCzpWcebNYEdXpaK4tr2RhfQ==}
+ '@rollup/rollup-darwin-arm64@4.57.1':
+ resolution: {integrity: sha512-crNPrwJOrRxagUYeMn/DZwqN88SDmwaJ8Cvi/TN1HnWBU7GwknckyosC2gd0IqYRsHDEnXf328o9/HC6OkPgOg==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.53.2':
- resolution: {integrity: sha512-e6XqVmXlHrBlG56obu9gDRPW3O3hLxpwHpLsBJvuI8qqnsrtSZ9ERoWUXtPOkY8c78WghyPHZdmPhHLWNdAGEw==}
+ '@rollup/rollup-darwin-x64@4.57.1':
+ resolution: {integrity: sha512-Ji8g8ChVbKrhFtig5QBV7iMaJrGtpHelkB3lsaKzadFBe58gmjfGXAOfI5FV0lYMH8wiqsxKQ1C9B0YTRXVy4w==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.53.2':
- resolution: {integrity: sha512-v0E9lJW8VsrwPux5Qe5CwmH/CF/2mQs6xU1MF3nmUxmZUCHazCjLgYvToOk+YuuUqLQBio1qkkREhxhc656ViA==}
+ '@rollup/rollup-freebsd-arm64@4.57.1':
+ resolution: {integrity: sha512-R+/WwhsjmwodAcz65guCGFRkMb4gKWTcIeLy60JJQbXrJ97BOXHxnkPFrP+YwFlaS0m+uWJTstrUA9o+UchFug==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.53.2':
- resolution: {integrity: sha512-ClAmAPx3ZCHtp6ysl4XEhWU69GUB1D+s7G9YjHGhIGCSrsg00nEGRRZHmINYxkdoJehde8VIsDC5t9C0gb6yqA==}
+ '@rollup/rollup-freebsd-x64@4.57.1':
+ resolution: {integrity: sha512-IEQTCHeiTOnAUC3IDQdzRAGj3jOAYNr9kBguI7MQAAZK3caezRrg0GxAb6Hchg4lxdZEI5Oq3iov/w/hnFWY9Q==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.53.2':
- resolution: {integrity: sha512-EPlb95nUsz6Dd9Qy13fI5kUPXNSljaG9FiJ4YUGU1O/Q77i5DYFW5KR8g1OzTcdZUqQQ1KdDqsTohdFVwCwjqg==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.57.1':
+ resolution: {integrity: sha512-F8sWbhZ7tyuEfsmOxwc2giKDQzN3+kuBLPwwZGyVkLlKGdV1nvnNwYD0fKQ8+XS6hp9nY7B+ZeK01EBUE7aHaw==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.53.2':
- resolution: {integrity: sha512-BOmnVW+khAUX+YZvNfa0tGTEMVVEerOxN0pDk2E6N6DsEIa2Ctj48FOMfNDdrwinocKaC7YXUZ1pHlKpnkja/Q==}
+ '@rollup/rollup-linux-arm-musleabihf@4.57.1':
+ resolution: {integrity: sha512-rGfNUfn0GIeXtBP1wL5MnzSj98+PZe/AXaGBCRmT0ts80lU5CATYGxXukeTX39XBKsxzFpEeK+Mrp9faXOlmrw==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.53.2':
- resolution: {integrity: sha512-Xt2byDZ+6OVNuREgBXr4+CZDJtrVso5woFtpKdGPhpTPHcNG7D8YXeQzpNbFRxzTVqJf7kvPMCub/pcGUWgBjA==}
+ '@rollup/rollup-linux-arm64-gnu@4.57.1':
+ resolution: {integrity: sha512-MMtej3YHWeg/0klK2Qodf3yrNzz6CGjo2UntLvk2RSPlhzgLvYEB3frRvbEF2wRKh1Z2fDIg9KRPe1fawv7C+g==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.53.2':
- resolution: {integrity: sha512-+LdZSldy/I9N8+klim/Y1HsKbJ3BbInHav5qE9Iy77dtHC/pibw1SR/fXlWyAk0ThnpRKoODwnAuSjqxFRDHUQ==}
+ '@rollup/rollup-linux-arm64-musl@4.57.1':
+ resolution: {integrity: sha512-1a/qhaaOXhqXGpMFMET9VqwZakkljWHLmZOX48R0I/YLbhdxr1m4gtG1Hq7++VhVUmf+L3sTAf9op4JlhQ5u1Q==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-loong64-gnu@4.53.2':
- resolution: {integrity: sha512-8ms8sjmyc1jWJS6WdNSA23rEfdjWB30LH8Wqj0Cqvv7qSHnvw6kgMMXRdop6hkmGPlyYBdRPkjJnj3KCUHV/uQ==}
+ '@rollup/rollup-linux-loong64-gnu@4.57.1':
+ resolution: {integrity: sha512-QWO6RQTZ/cqYtJMtxhkRkidoNGXc7ERPbZN7dVW5SdURuLeVU7lwKMpo18XdcmpWYd0qsP1bwKPf7DNSUinhvA==}
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-ppc64-gnu@4.53.2':
- resolution: {integrity: sha512-3HRQLUQbpBDMmzoxPJYd3W6vrVHOo2cVW8RUo87Xz0JPJcBLBr5kZ1pGcQAhdZgX9VV7NbGNipah1omKKe23/g==}
+ '@rollup/rollup-linux-loong64-musl@4.57.1':
+ resolution: {integrity: sha512-xpObYIf+8gprgWaPP32xiN5RVTi/s5FCR+XMXSKmhfoJjrpRAjCuuqQXyxUa/eJTdAE6eJ+KDKaoEqjZQxh3Gw==}
+ cpu: [loong64]
+ os: [linux]
+
+ '@rollup/rollup-linux-ppc64-gnu@4.57.1':
+ resolution: {integrity: sha512-4BrCgrpZo4hvzMDKRqEaW1zeecScDCR+2nZ86ATLhAoJ5FQ+lbHVD3ttKe74/c7tNT9c6F2viwB3ufwp01Oh2w==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.53.2':
- resolution: {integrity: sha512-fMjKi+ojnmIvhk34gZP94vjogXNNUKMEYs+EDaB/5TG/wUkoeua7p7VCHnE6T2Tx+iaghAqQX8teQzcvrYpaQA==}
+ '@rollup/rollup-linux-ppc64-musl@4.57.1':
+ resolution: {integrity: sha512-NOlUuzesGauESAyEYFSe3QTUguL+lvrN1HtwEEsU2rOwdUDeTMJdO5dUYl/2hKf9jWydJrO9OL/XSSf65R5+Xw==}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@rollup/rollup-linux-riscv64-gnu@4.57.1':
+ resolution: {integrity: sha512-ptA88htVp0AwUUqhVghwDIKlvJMD/fmL/wrQj99PRHFRAG6Z5nbWoWG4o81Nt9FT+IuqUQi+L31ZKAFeJ5Is+A==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-riscv64-musl@4.53.2':
- resolution: {integrity: sha512-XuGFGU+VwUUV5kLvoAdi0Wz5Xbh2SrjIxCtZj6Wq8MDp4bflb/+ThZsVxokM7n0pcbkEr2h5/pzqzDYI7cCgLQ==}
+ '@rollup/rollup-linux-riscv64-musl@4.57.1':
+ resolution: {integrity: sha512-S51t7aMMTNdmAMPpBg7OOsTdn4tySRQvklmL3RpDRyknk87+Sp3xaumlatU+ppQ+5raY7sSTcC2beGgvhENfuw==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.53.2':
- resolution: {integrity: sha512-w6yjZF0P+NGzWR3AXWX9zc0DNEGdtvykB03uhonSHMRa+oWA6novflo2WaJr6JZakG2ucsyb+rvhrKac6NIy+w==}
+ '@rollup/rollup-linux-s390x-gnu@4.57.1':
+ resolution: {integrity: sha512-Bl00OFnVFkL82FHbEqy3k5CUCKH6OEJL54KCyx2oqsmZnFTR8IoNqBF+mjQVcRCT5sB6yOvK8A37LNm/kPJiZg==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.53.2':
- resolution: {integrity: sha512-yo8d6tdfdeBArzC7T/PnHd7OypfI9cbuZzPnzLJIyKYFhAQ8SvlkKtKBMbXDxe1h03Rcr7u++nFS7tqXz87Gtw==}
+ '@rollup/rollup-linux-x64-gnu@4.57.1':
+ resolution: {integrity: sha512-ABca4ceT4N+Tv/GtotnWAeXZUZuM/9AQyCyKYyKnpk4yoA7QIAuBt6Hkgpw8kActYlew2mvckXkvx0FfoInnLg==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.53.2':
- resolution: {integrity: sha512-ah59c1YkCxKExPP8O9PwOvs+XRLKwh/mV+3YdKqQ5AMQ0r4M4ZDuOrpWkUaqO7fzAHdINzV9tEVu8vNw48z0lA==}
+ '@rollup/rollup-linux-x64-musl@4.57.1':
+ resolution: {integrity: sha512-HFps0JeGtuOR2convgRRkHCekD7j+gdAuXM+/i6kGzQtFhlCtQkpwtNzkNj6QhCDp7DRJ7+qC/1Vg2jt5iSOFw==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-openharmony-arm64@4.53.2':
- resolution: {integrity: sha512-4VEd19Wmhr+Zy7hbUsFZ6YXEiP48hE//KPLCSVNY5RMGX2/7HZ+QkN55a3atM1C/BZCGIgqN+xrVgtdak2S9+A==}
+ '@rollup/rollup-openbsd-x64@4.57.1':
+ resolution: {integrity: sha512-H+hXEv9gdVQuDTgnqD+SQffoWoc0Of59AStSzTEj/feWTBAnSfSD3+Dql1ZruJQxmykT/JVY0dE8Ka7z0DH1hw==}
+ cpu: [x64]
+ os: [openbsd]
+
+ '@rollup/rollup-openharmony-arm64@4.57.1':
+ resolution: {integrity: sha512-4wYoDpNg6o/oPximyc/NG+mYUejZrCU2q+2w6YZqrAs2UcNUChIZXjtafAiiZSUc7On8v5NyNj34Kzj/Ltk6dQ==}
cpu: [arm64]
os: [openharmony]
- '@rollup/rollup-win32-arm64-msvc@4.53.2':
- resolution: {integrity: sha512-IlbHFYc/pQCgew/d5fslcy1KEaYVCJ44G8pajugd8VoOEI8ODhtb/j8XMhLpwHCMB3yk2J07ctup10gpw2nyMA==}
+ '@rollup/rollup-win32-arm64-msvc@4.57.1':
+ resolution: {integrity: sha512-O54mtsV/6LW3P8qdTcamQmuC990HDfR71lo44oZMZlXU4tzLrbvTii87Ni9opq60ds0YzuAlEr/GNwuNluZyMQ==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.53.2':
- resolution: {integrity: sha512-lNlPEGgdUfSzdCWU176ku/dQRnA7W+Gp8d+cWv73jYrb8uT7HTVVxq62DUYxjbaByuf1Yk0RIIAbDzp+CnOTFg==}
+ '@rollup/rollup-win32-ia32-msvc@4.57.1':
+ resolution: {integrity: sha512-P3dLS+IerxCT/7D2q2FYcRdWRl22dNbrbBEtxdWhXrfIMPP9lQhb5h4Du04mdl5Woq05jVCDPCMF7Ub0NAjIew==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-gnu@4.53.2':
- resolution: {integrity: sha512-S6YojNVrHybQis2lYov1sd+uj7K0Q05NxHcGktuMMdIQ2VixGwAfbJ23NnlvvVV1bdpR2m5MsNBViHJKcA4ADw==}
+ '@rollup/rollup-win32-x64-gnu@4.57.1':
+ resolution: {integrity: sha512-VMBH2eOOaKGtIJYleXsi2B8CPVADrh+TyNxJ4mWPnKfLB/DBUmzW+5m1xUrcwWoMfSLagIRpjUFeW5CO5hyciQ==}
cpu: [x64]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.53.2':
- resolution: {integrity: sha512-k+/Rkcyx//P6fetPoLMb8pBeqJBNGx81uuf7iljX9++yNBVRDQgD04L+SVXmXmh5ZP4/WOp4mWF0kmi06PW2tA==}
+ '@rollup/rollup-win32-x64-msvc@4.57.1':
+ resolution: {integrity: sha512-mxRFDdHIWRxg3UfIIAwCm6NzvxG0jDX/wBN6KsQFTvKFqqg9vTrWUE68qEjHt19A5wwx5X5aUi2zuZT7YR0jrA==}
cpu: [x64]
os: [win32]
@@ -416,17 +431,17 @@ packages:
'@scure/btc-signer@2.0.1':
resolution: {integrity: sha512-vk5a/16BbSFZkhh1JIJ0+4H9nceZVo5WzKvJGGWiPp3sQOExeW+L53z3dI6u0adTPoE8ZbL+XEb6hEGzVZSvvQ==}
- '@shikijs/engine-oniguruma@3.14.0':
- resolution: {integrity: sha512-TNcYTYMbJyy+ZjzWtt0bG5y4YyMIWC2nyePz+CFMWqm+HnZZyy9SWMgo8Z6KBJVIZnx8XUXS8U2afO6Y0g1Oug==}
+ '@shikijs/engine-oniguruma@3.22.0':
+ resolution: {integrity: sha512-DyXsOG0vGtNtl7ygvabHd7Mt5EY8gCNqR9Y7Lpbbd/PbJvgWrqaKzH1JW6H6qFkuUa8aCxoiYVv8/YfFljiQxA==}
- '@shikijs/langs@3.14.0':
- resolution: {integrity: sha512-DIB2EQY7yPX1/ZH7lMcwrK5pl+ZkP/xoSpUzg9YC8R+evRCCiSQ7yyrvEyBsMnfZq4eBzLzBlugMyTAf13+pzg==}
+ '@shikijs/langs@3.22.0':
+ resolution: {integrity: sha512-x/42TfhWmp6H00T6uwVrdTJGKgNdFbrEdhaDwSR5fd5zhQ1Q46bHq9EO61SCEWJR0HY7z2HNDMaBZp8JRmKiIA==}
- '@shikijs/themes@3.14.0':
- resolution: {integrity: sha512-fAo/OnfWckNmv4uBoUu6dSlkcBc+SA1xzj5oUSaz5z3KqHtEbUypg/9xxgJARtM6+7RVm0Q6Xnty41xA1ma1IA==}
+ '@shikijs/themes@3.22.0':
+ resolution: {integrity: sha512-o+tlOKqsr6FE4+mYJG08tfCFDS+3CG20HbldXeVoyP+cYSUxDhrFf3GPjE60U55iOkkjbpY2uC3It/eeja35/g==}
- '@shikijs/types@3.14.0':
- resolution: {integrity: sha512-bQGgC6vrY8U/9ObG1Z/vTro+uclbjjD/uG58RvfxKZVD5p9Yc1ka3tVyEFy7BNJLzxuWyHH5NWynP9zZZS59eQ==}
+ '@shikijs/types@3.22.0':
+ resolution: {integrity: sha512-491iAekgKDBFE67z70Ok5a8KBMsQ2IJwOWw3us/7ffQkIBCyOQfm/aNwVMBUriP02QshIfgHCBSIYAl3u2eWjg==}
'@shikijs/vscode-textmate@10.0.2':
resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
@@ -453,8 +468,8 @@ packages:
resolution: {integrity: sha512-CW2gKbJFTuX1feMvOrvsVMmijAOgI9kg2Ie9Dq3gOcMt/dVVoVmqNlLcEUCT13NxHFMEajcUcVBIplbyDroDiw==}
engines: {node: '>=18'}
- ansi-escapes@7.1.1:
- resolution: {integrity: sha512-Zhl0ErHcSRUaVfGUeUdDuLgpkEo8KIFjB4Y9uAc46ScOpdDiU1Dbyplh7qWJeJ/ZHpbyMSM26+X3BySgnIz40Q==}
+ ansi-escapes@7.3.0:
+ resolution: {integrity: sha512-BvU8nYgGQBxcmMuEeUEmNTvrMVjJNSH7RgW24vXexN4Ven6qCvy4TntnvlnwnMLTVlcRQQdbRY8NKnaIoeWDNg==}
engines: {node: '>=18'}
ansi-regex@6.2.2:
@@ -497,21 +512,21 @@ packages:
resolution: {integrity: sha512-N3vz3rqikLEu0d6yQL8GTrSkpYb35NQKWMR7Hlza0lOj6ZOlvQ3Xr7N9Y+JPebaCVoEUHdBeBSuLxcHr71r+Lw==}
engines: {node: '>=18.0.0'}
- bitcoinjs-lib@7.0.0:
- resolution: {integrity: sha512-2W6dGXFd1KG3Bs90Bzb5+ViCeSKNIYkCUWZ4cvUzUgwnneiNNZ6Sk8twGNcjlesmxC0JyLc/958QycfpvXLg7A==}
+ bitcoinjs-lib@7.0.1:
+ resolution: {integrity: sha512-vwEmpL5Tpj0I0RBdNkcDMXePoaYSTeKY6mL6/l5esbnTs+jGdPDuLp4NY1hSh6Zk5wSgePygZ4Wx5JJao30Pww==}
engines: {node: '>=18.0.0'}
- bitcore-lib@11.4.5:
- resolution: {integrity: sha512-MGONtDex24aYIcCMJDtnbniTu4gwZcuUpDODNURpzGh8wUggppA6Yp1VMJLkHTfAekH2zUzZPn89PIFJqddr2g==}
+ bitcore-lib@11.5.1:
+ resolution: {integrity: sha512-/DjKIY6GzCm8YB3HDGdhP6UtNHGC8KjT7tt7eMz2UNk/Z6AQgMZsyhogSiEq4qpWanP8XeJaRcpbccOJX96MRg==}
bn.js@4.11.8:
resolution: {integrity: sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==}
- bn.js@4.12.2:
- resolution: {integrity: sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==}
+ bn.js@4.12.3:
+ resolution: {integrity: sha512-fGTi3gxV/23FTYdAoUtLYp6qySe2KE3teyZitipKNRuVYcBkoP/bB3guXN/XVKUe9mxCHXnc9C4ocyz8OmgN0g==}
- bn.js@5.2.2:
- resolution: {integrity: sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw==}
+ bn.js@5.2.3:
+ resolution: {integrity: sha512-EAcmnPkxpntVL+DS7bO1zhcZNvCkxqtkd0ZY53h06GNQ3DEkkGZ/gKgmDv6DdZQGj9BgfSPKtJJ7Dp1GPP8f7w==}
brace-expansion@2.0.2:
resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
@@ -678,8 +693,8 @@ packages:
resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
engines: {node: '>= 0.4'}
- esbuild@0.25.12:
- resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
+ esbuild@0.27.3:
+ resolution: {integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==}
engines: {node: '>=18'}
hasBin: true
@@ -728,8 +743,8 @@ packages:
resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==}
engines: {node: '>= 0.4'}
- get-east-asian-width@1.4.0:
- resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==}
+ get-east-asian-width@1.5.0:
+ resolution: {integrity: sha512-CQ+bEO+Tva/qlmw24dCejulK5pMzVnUOFOijVogd3KQs07HnRIgp8TGipvCCRT06xeYEbpbgwaCxglFyiuIcmA==}
engines: {node: '>=18'}
get-intrinsic@1.3.0:
@@ -740,8 +755,8 @@ packages:
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
engines: {node: '>= 0.4'}
- get-tsconfig@4.13.0:
- resolution: {integrity: sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==}
+ get-tsconfig@4.13.6:
+ resolution: {integrity: sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==}
gopd@1.2.0:
resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
@@ -855,11 +870,11 @@ packages:
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
engines: {node: '>=10'}
- lodash@4.17.21:
- resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
+ lodash@4.17.23:
+ resolution: {integrity: sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==}
- log-update@7.0.1:
- resolution: {integrity: sha512-yEfdCegcxi/DrzkaAb82dMYvZpMOHAOYxUB45US+VrWQB2GnxyIucxG1otp3T1d6KzXXeB6TOHOF06viksSuug==}
+ log-update@7.1.0:
+ resolution: {integrity: sha512-y9pi/ZOQQVvTgfRDEHV1Cj4zQUkJZPipEUNOxhn1R6KgmdMs7LKvXWCd9eMVPGJgvYzFLCenecWr0Ps8ChVv2A==}
engines: {node: '>=20'}
lru-cache@5.1.1:
@@ -871,8 +886,8 @@ packages:
magic-string@0.30.21:
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
- markdown-it@14.1.0:
- resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==}
+ markdown-it@14.1.1:
+ resolution: {integrity: sha512-BuU2qnTti9YKgK5N+IeMubp14ZUKUUw7yeJbkjtosvHiP0AZ5c8IAgEMk79D0eC8F23r4Ac/q8cAIFdm2FtyoA==}
hasBin: true
marked@14.0.0:
@@ -1050,8 +1065,8 @@ packages:
punycode@1.4.1:
resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
- qs@6.14.0:
- resolution: {integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==}
+ qs@6.15.0:
+ resolution: {integrity: sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ==}
engines: {node: '>=0.6'}
querystring-es3@0.2.1:
@@ -1090,8 +1105,8 @@ packages:
resolution: {integrity: sha512-5Di9UC0+8h1L6ZD2d7awM7E/T4uA1fJRlx6zk/NvdCCVEoAnFqvHmCuNeIKoCeIixBX/q8uM+6ycDvF8woqosA==}
engines: {node: '>= 0.8'}
- rollup@4.53.2:
- resolution: {integrity: sha512-MHngMYwGJVi6Fmnk6ISmnk7JAHRNF0UkuucA0CUW3N3a4KnONPEZz+vUanQP/ZC/iY1Qkf3bwPWzyY84wEks1g==}
+ rollup@4.57.1:
+ resolution: {integrity: sha512-oQL6lgK3e2QZeQ7gcgIkS2YZPg5slw37hYufJ3edKlfQSGGm8ICoxswK15ntSzF/a8+h7ekRy7k7oWc3BQ7y8A==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -1184,8 +1199,8 @@ packages:
resolution: {integrity: sha512-db0E3UJjcFhpDhAF4tLo03oli3pwl3dbnzXOUIlRKrp+ldk/VUxzpWYZENsw2SZiuBjHAk7DfB0VU7NKdpb6sw==}
engines: {node: '>= 0.4'}
- tsx@4.20.6:
- resolution: {integrity: sha512-ytQKuwgmrrkDTFP4LjR0ToE2nqgy886GpvRSpU0JAnrdBYppuY5rLkRUYPU1yCryb24SsKBTL/hlDQAEFVwtZg==}
+ tsx@4.21.0:
+ resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==}
engines: {node: '>=18.0.0'}
hasBin: true
@@ -1199,8 +1214,8 @@ packages:
resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
engines: {node: '>= 0.4'}
- typedoc@0.28.14:
- resolution: {integrity: sha512-ftJYPvpVfQvFzpkoSfHLkJybdA/geDJ8BGQt/ZnkkhnBYoYW6lBgPQXu6vqLxO4X75dA55hX8Af847H5KXlEFA==}
+ typedoc@0.28.17:
+ resolution: {integrity: sha512-ZkJ2G7mZrbxrKxinTQMjFqsCoYY6a5Luwv2GKbTnBCEgV2ihYm5CflA9JnJAwH0pZWavqfYxmDkFHPt4yx2oDQ==}
engines: {node: '>= 18', pnpm: '>= 10'}
hasBin: true
peerDependencies:
@@ -1238,8 +1253,8 @@ packages:
util@0.12.5:
resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==}
- valibot@0.38.0:
- resolution: {integrity: sha512-RCJa0fetnzp+h+KN9BdgYOgtsMAG9bfoJ9JSjIhFHobKWVWyzM3jjaeNTdpFK9tQtf3q1sguXeERJ/LcmdFE7w==}
+ valibot@1.2.0:
+ resolution: {integrity: sha512-mm1rxUsmOxzrwnX5arGS+U4T25RdvpPjPN4yR0u9pUBov9+zGVtO84tif1eY4r6zWxVxu3KzIyknJy3rxfRZZg==}
peerDependencies:
typescript: '>=5'
peerDependenciesMeta:
@@ -1261,8 +1276,8 @@ packages:
peerDependencies:
vite: ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
- vite@7.2.2:
- resolution: {integrity: sha512-BxAKBWmIbrDgrokdGZH1IgkIk/5mMHDreLDmCJ0qpyJaAteP8NvMhkwr/ZCQNqNH97bw/dANTE9PDzqwJghfMQ==}
+ vite@7.3.1:
+ resolution: {integrity: sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
@@ -1304,8 +1319,8 @@ packages:
vm-browserify@1.1.2:
resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==}
- which-typed-array@1.1.19:
- resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==}
+ which-typed-array@1.1.20:
+ resolution: {integrity: sha512-LYfpUkmqwl0h9A2HL09Mms427Q1RZWuOHsukfVcKRq9q95iQxdw0ix1JQrqbcDR9PH1QDwf5Qo8OZb5lksZ8Xg==}
engines: {node: '>= 0.4'}
wrap-ansi@9.0.2:
@@ -1319,8 +1334,8 @@ packages:
yallist@3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
- yaml@2.8.1:
- resolution: {integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==}
+ yaml@2.8.2:
+ resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==}
engines: {node: '>= 14.6'}
hasBin: true
@@ -1330,90 +1345,90 @@ packages:
snapshots:
- '@esbuild/aix-ppc64@0.25.12':
+ '@esbuild/aix-ppc64@0.27.3':
optional: true
- '@esbuild/android-arm64@0.25.12':
+ '@esbuild/android-arm64@0.27.3':
optional: true
- '@esbuild/android-arm@0.25.12':
+ '@esbuild/android-arm@0.27.3':
optional: true
- '@esbuild/android-x64@0.25.12':
+ '@esbuild/android-x64@0.27.3':
optional: true
- '@esbuild/darwin-arm64@0.25.12':
+ '@esbuild/darwin-arm64@0.27.3':
optional: true
- '@esbuild/darwin-x64@0.25.12':
+ '@esbuild/darwin-x64@0.27.3':
optional: true
- '@esbuild/freebsd-arm64@0.25.12':
+ '@esbuild/freebsd-arm64@0.27.3':
optional: true
- '@esbuild/freebsd-x64@0.25.12':
+ '@esbuild/freebsd-x64@0.27.3':
optional: true
- '@esbuild/linux-arm64@0.25.12':
+ '@esbuild/linux-arm64@0.27.3':
optional: true
- '@esbuild/linux-arm@0.25.12':
+ '@esbuild/linux-arm@0.27.3':
optional: true
- '@esbuild/linux-ia32@0.25.12':
+ '@esbuild/linux-ia32@0.27.3':
optional: true
- '@esbuild/linux-loong64@0.25.12':
+ '@esbuild/linux-loong64@0.27.3':
optional: true
- '@esbuild/linux-mips64el@0.25.12':
+ '@esbuild/linux-mips64el@0.27.3':
optional: true
- '@esbuild/linux-ppc64@0.25.12':
+ '@esbuild/linux-ppc64@0.27.3':
optional: true
- '@esbuild/linux-riscv64@0.25.12':
+ '@esbuild/linux-riscv64@0.27.3':
optional: true
- '@esbuild/linux-s390x@0.25.12':
+ '@esbuild/linux-s390x@0.27.3':
optional: true
- '@esbuild/linux-x64@0.25.12':
+ '@esbuild/linux-x64@0.27.3':
optional: true
- '@esbuild/netbsd-arm64@0.25.12':
+ '@esbuild/netbsd-arm64@0.27.3':
optional: true
- '@esbuild/netbsd-x64@0.25.12':
+ '@esbuild/netbsd-x64@0.27.3':
optional: true
- '@esbuild/openbsd-arm64@0.25.12':
+ '@esbuild/openbsd-arm64@0.27.3':
optional: true
- '@esbuild/openbsd-x64@0.25.12':
+ '@esbuild/openbsd-x64@0.27.3':
optional: true
- '@esbuild/openharmony-arm64@0.25.12':
+ '@esbuild/openharmony-arm64@0.27.3':
optional: true
- '@esbuild/sunos-x64@0.25.12':
+ '@esbuild/sunos-x64@0.27.3':
optional: true
- '@esbuild/win32-arm64@0.25.12':
+ '@esbuild/win32-arm64@0.27.3':
optional: true
- '@esbuild/win32-ia32@0.25.12':
+ '@esbuild/win32-ia32@0.27.3':
optional: true
- '@esbuild/win32-x64@0.25.12':
+ '@esbuild/win32-x64@0.27.3':
optional: true
- '@gerrit0/mini-shiki@3.14.0':
+ '@gerrit0/mini-shiki@3.22.0':
dependencies:
- '@shikijs/engine-oniguruma': 3.14.0
- '@shikijs/langs': 3.14.0
- '@shikijs/themes': 3.14.0
- '@shikijs/types': 3.14.0
+ '@shikijs/engine-oniguruma': 3.22.0
+ '@shikijs/langs': 3.22.0
+ '@shikijs/themes': 3.22.0
+ '@shikijs/types': 3.22.0
'@shikijs/vscode-textmate': 10.0.2
'@jridgewell/sourcemap-codec@1.5.5': {}
@@ -1430,86 +1445,95 @@ snapshots:
'@noble/secp256k1@3.0.0': {}
- '@rollup/plugin-inject@5.0.5(rollup@4.53.2)':
+ '@rollup/plugin-inject@5.0.5(rollup@4.57.1)':
dependencies:
- '@rollup/pluginutils': 5.3.0(rollup@4.53.2)
+ '@rollup/pluginutils': 5.3.0(rollup@4.57.1)
estree-walker: 2.0.2
magic-string: 0.30.21
optionalDependencies:
- rollup: 4.53.2
+ rollup: 4.57.1
- '@rollup/pluginutils@5.3.0(rollup@4.53.2)':
+ '@rollup/pluginutils@5.3.0(rollup@4.57.1)':
dependencies:
'@types/estree': 1.0.8
estree-walker: 2.0.2
picomatch: 4.0.3
optionalDependencies:
- rollup: 4.53.2
+ rollup: 4.57.1
- '@rollup/rollup-android-arm-eabi@4.53.2':
+ '@rollup/rollup-android-arm-eabi@4.57.1':
optional: true
- '@rollup/rollup-android-arm64@4.53.2':
+ '@rollup/rollup-android-arm64@4.57.1':
optional: true
- '@rollup/rollup-darwin-arm64@4.53.2':
+ '@rollup/rollup-darwin-arm64@4.57.1':
optional: true
- '@rollup/rollup-darwin-x64@4.53.2':
+ '@rollup/rollup-darwin-x64@4.57.1':
optional: true
- '@rollup/rollup-freebsd-arm64@4.53.2':
+ '@rollup/rollup-freebsd-arm64@4.57.1':
optional: true
- '@rollup/rollup-freebsd-x64@4.53.2':
+ '@rollup/rollup-freebsd-x64@4.57.1':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.53.2':
+ '@rollup/rollup-linux-arm-gnueabihf@4.57.1':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.53.2':
+ '@rollup/rollup-linux-arm-musleabihf@4.57.1':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.53.2':
+ '@rollup/rollup-linux-arm64-gnu@4.57.1':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.53.2':
+ '@rollup/rollup-linux-arm64-musl@4.57.1':
optional: true
- '@rollup/rollup-linux-loong64-gnu@4.53.2':
+ '@rollup/rollup-linux-loong64-gnu@4.57.1':
optional: true
- '@rollup/rollup-linux-ppc64-gnu@4.53.2':
+ '@rollup/rollup-linux-loong64-musl@4.57.1':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.53.2':
+ '@rollup/rollup-linux-ppc64-gnu@4.57.1':
optional: true
- '@rollup/rollup-linux-riscv64-musl@4.53.2':
+ '@rollup/rollup-linux-ppc64-musl@4.57.1':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.53.2':
+ '@rollup/rollup-linux-riscv64-gnu@4.57.1':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.53.2':
+ '@rollup/rollup-linux-riscv64-musl@4.57.1':
optional: true
- '@rollup/rollup-linux-x64-musl@4.53.2':
+ '@rollup/rollup-linux-s390x-gnu@4.57.1':
optional: true
- '@rollup/rollup-openharmony-arm64@4.53.2':
+ '@rollup/rollup-linux-x64-gnu@4.57.1':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.53.2':
+ '@rollup/rollup-linux-x64-musl@4.57.1':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.53.2':
+ '@rollup/rollup-openbsd-x64@4.57.1':
optional: true
- '@rollup/rollup-win32-x64-gnu@4.53.2':
+ '@rollup/rollup-openharmony-arm64@4.57.1':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.53.2':
+ '@rollup/rollup-win32-arm64-msvc@4.57.1':
+ optional: true
+
+ '@rollup/rollup-win32-ia32-msvc@4.57.1':
+ optional: true
+
+ '@rollup/rollup-win32-x64-gnu@4.57.1':
+ optional: true
+
+ '@rollup/rollup-win32-x64-msvc@4.57.1':
optional: true
'@scure/base@2.0.0': {}
@@ -1532,20 +1556,20 @@ snapshots:
'@scure/base': 2.0.0
micro-packed: 0.8.0
- '@shikijs/engine-oniguruma@3.14.0':
+ '@shikijs/engine-oniguruma@3.22.0':
dependencies:
- '@shikijs/types': 3.14.0
+ '@shikijs/types': 3.22.0
'@shikijs/vscode-textmate': 10.0.2
- '@shikijs/langs@3.14.0':
+ '@shikijs/langs@3.22.0':
dependencies:
- '@shikijs/types': 3.14.0
+ '@shikijs/types': 3.22.0
- '@shikijs/themes@3.14.0':
+ '@shikijs/themes@3.22.0':
dependencies:
- '@shikijs/types': 3.14.0
+ '@shikijs/types': 3.22.0
- '@shikijs/types@3.14.0':
+ '@shikijs/types@3.22.0':
dependencies:
'@shikijs/vscode-textmate': 10.0.2
'@types/hast': 3.0.4
@@ -1579,7 +1603,7 @@ snapshots:
maybe-combine-errors: 1.0.0
module-error: 1.0.2
- ansi-escapes@7.1.1:
+ ansi-escapes@7.3.0:
dependencies:
environment: 1.1.0
@@ -1591,7 +1615,7 @@ snapshots:
asn1.js@4.10.1:
dependencies:
- bn.js: 4.12.2
+ bn.js: 4.12.3
inherits: 2.0.4
minimalistic-assert: 1.0.1
@@ -1624,19 +1648,19 @@ snapshots:
uint8array-tools: 0.0.9
varuint-bitcoin: 2.0.0
- bitcoinjs-lib@7.0.0(typescript@5.7.3):
+ bitcoinjs-lib@7.0.1(typescript@5.7.3):
dependencies:
'@noble/hashes': 1.8.0
bech32: 2.0.0
bip174: 3.0.0
bs58check: 4.0.0
uint8array-tools: 0.0.9
- valibot: 0.38.0(typescript@5.7.3)
+ valibot: 1.2.0(typescript@5.7.3)
varuint-bitcoin: 2.0.0
transitivePeerDependencies:
- typescript
- bitcore-lib@11.4.5:
+ bitcore-lib@11.5.1:
dependencies:
bech32: 2.0.0
bn.js: 4.11.8
@@ -1644,13 +1668,13 @@ snapshots:
buffer-compare: 1.1.1
elliptic: 6.6.1
inherits: 2.0.1
- lodash: 4.17.21
+ lodash: 4.17.23
bn.js@4.11.8: {}
- bn.js@4.12.2: {}
+ bn.js@4.12.3: {}
- bn.js@5.2.2: {}
+ bn.js@5.2.3: {}
brace-expansion@2.0.2:
dependencies:
@@ -1690,13 +1714,13 @@ snapshots:
browserify-rsa@4.1.1:
dependencies:
- bn.js: 5.2.2
+ bn.js: 5.2.3
randombytes: 2.1.0
safe-buffer: 5.2.1
browserify-sign@4.2.5:
dependencies:
- bn.js: 5.2.2
+ bn.js: 5.2.3
browserify-rsa: 4.1.1
create-hash: 1.2.0
create-hmac: 1.1.7
@@ -1776,7 +1800,7 @@ snapshots:
create-ecdh@4.0.4:
dependencies:
- bn.js: 4.12.2
+ bn.js: 4.12.3
elliptic: 6.6.1
create-hash@1.2.0:
@@ -1837,7 +1861,7 @@ snapshots:
diffie-hellman@5.0.3:
dependencies:
- bn.js: 4.12.2
+ bn.js: 4.12.3
miller-rabin: 4.0.1
randombytes: 2.1.0
@@ -1855,7 +1879,7 @@ snapshots:
elliptic@6.6.1:
dependencies:
- bn.js: 4.12.2
+ bn.js: 4.12.3
brorand: 1.1.0
hash.js: 1.1.7
hmac-drbg: 1.0.1
@@ -1877,34 +1901,34 @@ snapshots:
dependencies:
es-errors: 1.3.0
- esbuild@0.25.12:
+ esbuild@0.27.3:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.25.12
- '@esbuild/android-arm': 0.25.12
- '@esbuild/android-arm64': 0.25.12
- '@esbuild/android-x64': 0.25.12
- '@esbuild/darwin-arm64': 0.25.12
- '@esbuild/darwin-x64': 0.25.12
- '@esbuild/freebsd-arm64': 0.25.12
- '@esbuild/freebsd-x64': 0.25.12
- '@esbuild/linux-arm': 0.25.12
- '@esbuild/linux-arm64': 0.25.12
- '@esbuild/linux-ia32': 0.25.12
- '@esbuild/linux-loong64': 0.25.12
- '@esbuild/linux-mips64el': 0.25.12
- '@esbuild/linux-ppc64': 0.25.12
- '@esbuild/linux-riscv64': 0.25.12
- '@esbuild/linux-s390x': 0.25.12
- '@esbuild/linux-x64': 0.25.12
- '@esbuild/netbsd-arm64': 0.25.12
- '@esbuild/netbsd-x64': 0.25.12
- '@esbuild/openbsd-arm64': 0.25.12
- '@esbuild/openbsd-x64': 0.25.12
- '@esbuild/openharmony-arm64': 0.25.12
- '@esbuild/sunos-x64': 0.25.12
- '@esbuild/win32-arm64': 0.25.12
- '@esbuild/win32-ia32': 0.25.12
- '@esbuild/win32-x64': 0.25.12
+ '@esbuild/aix-ppc64': 0.27.3
+ '@esbuild/android-arm': 0.27.3
+ '@esbuild/android-arm64': 0.27.3
+ '@esbuild/android-x64': 0.27.3
+ '@esbuild/darwin-arm64': 0.27.3
+ '@esbuild/darwin-x64': 0.27.3
+ '@esbuild/freebsd-arm64': 0.27.3
+ '@esbuild/freebsd-x64': 0.27.3
+ '@esbuild/linux-arm': 0.27.3
+ '@esbuild/linux-arm64': 0.27.3
+ '@esbuild/linux-ia32': 0.27.3
+ '@esbuild/linux-loong64': 0.27.3
+ '@esbuild/linux-mips64el': 0.27.3
+ '@esbuild/linux-ppc64': 0.27.3
+ '@esbuild/linux-riscv64': 0.27.3
+ '@esbuild/linux-s390x': 0.27.3
+ '@esbuild/linux-x64': 0.27.3
+ '@esbuild/netbsd-arm64': 0.27.3
+ '@esbuild/netbsd-x64': 0.27.3
+ '@esbuild/openbsd-arm64': 0.27.3
+ '@esbuild/openbsd-x64': 0.27.3
+ '@esbuild/openharmony-arm64': 0.27.3
+ '@esbuild/sunos-x64': 0.27.3
+ '@esbuild/win32-arm64': 0.27.3
+ '@esbuild/win32-ia32': 0.27.3
+ '@esbuild/win32-x64': 0.27.3
estree-walker@2.0.2: {}
@@ -1939,7 +1963,7 @@ snapshots:
generator-function@2.0.1: {}
- get-east-asian-width@1.4.0: {}
+ get-east-asian-width@1.5.0: {}
get-intrinsic@1.3.0:
dependencies:
@@ -1959,7 +1983,7 @@ snapshots:
dunder-proto: 1.0.1
es-object-atoms: 1.1.1
- get-tsconfig@4.13.0:
+ get-tsconfig@4.13.6:
dependencies:
resolve-pkg-maps: 1.0.0
@@ -2038,7 +2062,7 @@ snapshots:
is-fullwidth-code-point@5.1.0:
dependencies:
- get-east-asian-width: 1.4.0
+ get-east-asian-width: 1.5.0
is-generator-function@1.1.2:
dependencies:
@@ -2062,7 +2086,7 @@ snapshots:
is-typed-array@1.1.15:
dependencies:
- which-typed-array: 1.1.19
+ which-typed-array: 1.1.20
isarray@1.0.0: {}
@@ -2085,11 +2109,11 @@ snapshots:
dependencies:
p-locate: 5.0.0
- lodash@4.17.21: {}
+ lodash@4.17.23: {}
- log-update@7.0.1:
+ log-update@7.1.0:
dependencies:
- ansi-escapes: 7.1.1
+ ansi-escapes: 7.3.0
cli-cursor: 5.0.0
slice-ansi: 7.1.2
strip-ansi: 7.1.2
@@ -2105,7 +2129,7 @@ snapshots:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
- markdown-it@14.1.0:
+ markdown-it@14.1.1:
dependencies:
argparse: 2.0.1
entities: 4.5.0
@@ -2122,7 +2146,7 @@ snapshots:
md5.js@1.3.5:
dependencies:
- hash-base: 3.1.2
+ hash-base: 3.0.5
inherits: 2.0.4
safe-buffer: 5.2.1
@@ -2134,7 +2158,7 @@ snapshots:
miller-rabin@4.0.1:
dependencies:
- bn.js: 4.12.2
+ bn.js: 4.12.3
brorand: 1.1.0
mimic-function@5.0.1: {}
@@ -2295,7 +2319,7 @@ snapshots:
public-encrypt@4.0.3:
dependencies:
- bn.js: 4.12.2
+ bn.js: 4.12.3
browserify-rsa: 4.1.1
create-hash: 1.2.0
parse-asn1: 5.1.9
@@ -2306,7 +2330,7 @@ snapshots:
punycode@1.4.1: {}
- qs@6.14.0:
+ qs@6.15.0:
dependencies:
side-channel: 1.1.0
@@ -2357,32 +2381,35 @@ snapshots:
hash-base: 3.1.2
inherits: 2.0.4
- rollup@4.53.2:
+ rollup@4.57.1:
dependencies:
'@types/estree': 1.0.8
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.53.2
- '@rollup/rollup-android-arm64': 4.53.2
- '@rollup/rollup-darwin-arm64': 4.53.2
- '@rollup/rollup-darwin-x64': 4.53.2
- '@rollup/rollup-freebsd-arm64': 4.53.2
- '@rollup/rollup-freebsd-x64': 4.53.2
- '@rollup/rollup-linux-arm-gnueabihf': 4.53.2
- '@rollup/rollup-linux-arm-musleabihf': 4.53.2
- '@rollup/rollup-linux-arm64-gnu': 4.53.2
- '@rollup/rollup-linux-arm64-musl': 4.53.2
- '@rollup/rollup-linux-loong64-gnu': 4.53.2
- '@rollup/rollup-linux-ppc64-gnu': 4.53.2
- '@rollup/rollup-linux-riscv64-gnu': 4.53.2
- '@rollup/rollup-linux-riscv64-musl': 4.53.2
- '@rollup/rollup-linux-s390x-gnu': 4.53.2
- '@rollup/rollup-linux-x64-gnu': 4.53.2
- '@rollup/rollup-linux-x64-musl': 4.53.2
- '@rollup/rollup-openharmony-arm64': 4.53.2
- '@rollup/rollup-win32-arm64-msvc': 4.53.2
- '@rollup/rollup-win32-ia32-msvc': 4.53.2
- '@rollup/rollup-win32-x64-gnu': 4.53.2
- '@rollup/rollup-win32-x64-msvc': 4.53.2
+ '@rollup/rollup-android-arm-eabi': 4.57.1
+ '@rollup/rollup-android-arm64': 4.57.1
+ '@rollup/rollup-darwin-arm64': 4.57.1
+ '@rollup/rollup-darwin-x64': 4.57.1
+ '@rollup/rollup-freebsd-arm64': 4.57.1
+ '@rollup/rollup-freebsd-x64': 4.57.1
+ '@rollup/rollup-linux-arm-gnueabihf': 4.57.1
+ '@rollup/rollup-linux-arm-musleabihf': 4.57.1
+ '@rollup/rollup-linux-arm64-gnu': 4.57.1
+ '@rollup/rollup-linux-arm64-musl': 4.57.1
+ '@rollup/rollup-linux-loong64-gnu': 4.57.1
+ '@rollup/rollup-linux-loong64-musl': 4.57.1
+ '@rollup/rollup-linux-ppc64-gnu': 4.57.1
+ '@rollup/rollup-linux-ppc64-musl': 4.57.1
+ '@rollup/rollup-linux-riscv64-gnu': 4.57.1
+ '@rollup/rollup-linux-riscv64-musl': 4.57.1
+ '@rollup/rollup-linux-s390x-gnu': 4.57.1
+ '@rollup/rollup-linux-x64-gnu': 4.57.1
+ '@rollup/rollup-linux-x64-musl': 4.57.1
+ '@rollup/rollup-openbsd-x64': 4.57.1
+ '@rollup/rollup-openharmony-arm64': 4.57.1
+ '@rollup/rollup-win32-arm64-msvc': 4.57.1
+ '@rollup/rollup-win32-ia32-msvc': 4.57.1
+ '@rollup/rollup-win32-x64-gnu': 4.57.1
+ '@rollup/rollup-win32-x64-msvc': 4.57.1
fsevents: 2.3.3
run-parallel@1.2.0:
@@ -2468,7 +2495,7 @@ snapshots:
string-width@7.2.0:
dependencies:
emoji-regex: 10.6.0
- get-east-asian-width: 1.4.0
+ get-east-asian-width: 1.5.0
strip-ansi: 7.1.2
string_decoder@1.1.1:
@@ -2500,10 +2527,10 @@ snapshots:
safe-buffer: 5.2.1
typed-array-buffer: 1.0.3
- tsx@4.20.6:
+ tsx@4.21.0:
dependencies:
- esbuild: 0.25.12
- get-tsconfig: 4.13.0
+ esbuild: 0.27.3
+ get-tsconfig: 4.13.6
optionalDependencies:
fsevents: 2.3.3
@@ -2518,14 +2545,14 @@ snapshots:
es-errors: 1.3.0
is-typed-array: 1.1.15
- typedoc@0.28.14(typescript@5.7.3):
+ typedoc@0.28.17(typescript@5.7.3):
dependencies:
- '@gerrit0/mini-shiki': 3.14.0
+ '@gerrit0/mini-shiki': 3.22.0
lunr: 2.3.9
- markdown-it: 14.1.0
+ markdown-it: 14.1.1
minimatch: 9.0.5
typescript: 5.7.3
- yaml: 2.8.1
+ yaml: 2.8.2
typeforce@1.18.0: {}
@@ -2543,7 +2570,7 @@ snapshots:
url@0.11.4:
dependencies:
punycode: 1.4.1
- qs: 6.14.0
+ qs: 6.15.0
util-deprecate@1.0.2: {}
@@ -2553,9 +2580,9 @@ snapshots:
is-arguments: 1.2.0
is-generator-function: 1.1.2
is-typed-array: 1.1.15
- which-typed-array: 1.1.19
+ which-typed-array: 1.1.20
- valibot@0.38.0(typescript@5.7.3):
+ valibot@1.2.0(typescript@5.7.3):
optionalDependencies:
typescript: 5.7.3
@@ -2572,31 +2599,31 @@ snapshots:
dependencies:
uint8array-tools: 0.0.8
- vite-plugin-node-polyfills@0.24.0(rollup@4.53.2)(vite@7.2.2(@types/node@24.9.2)(tsx@4.20.6)(yaml@2.8.1)):
+ vite-plugin-node-polyfills@0.24.0(rollup@4.57.1)(vite@7.3.1(@types/node@24.9.2)(tsx@4.21.0)(yaml@2.8.2)):
dependencies:
- '@rollup/plugin-inject': 5.0.5(rollup@4.53.2)
+ '@rollup/plugin-inject': 5.0.5(rollup@4.57.1)
node-stdlib-browser: 1.3.1
- vite: 7.2.2(@types/node@24.9.2)(tsx@4.20.6)(yaml@2.8.1)
+ vite: 7.3.1(@types/node@24.9.2)(tsx@4.21.0)(yaml@2.8.2)
transitivePeerDependencies:
- rollup
- vite@7.2.2(@types/node@24.9.2)(tsx@4.20.6)(yaml@2.8.1):
+ vite@7.3.1(@types/node@24.9.2)(tsx@4.21.0)(yaml@2.8.2):
dependencies:
- esbuild: 0.25.12
+ esbuild: 0.27.3
fdir: 6.5.0(picomatch@4.0.3)
picomatch: 4.0.3
postcss: 8.5.6
- rollup: 4.53.2
+ rollup: 4.57.1
tinyglobby: 0.2.15
optionalDependencies:
'@types/node': 24.9.2
fsevents: 2.3.3
- tsx: 4.20.6
- yaml: 2.8.1
+ tsx: 4.21.0
+ yaml: 2.8.2
vm-browserify@1.1.2: {}
- which-typed-array@1.1.19:
+ which-typed-array@1.1.20:
dependencies:
available-typed-arrays: 1.0.7
call-bind: 1.0.8
@@ -2616,6 +2643,6 @@ snapshots:
yallist@3.1.1: {}
- yaml@2.8.1: {}
+ yaml@2.8.2: {}
yocto-queue@0.1.0: {}
diff --git a/vite.config.ts b/vite.config.ts
index 37bfe9116e..3fc6ab514c 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -7,12 +7,16 @@ const relpath = (...args: string[]) => resolve(__dirname, ...args);
const include: Parameters[0]["include"] =
[ 'assert', 'timers', 'os', 'url', 'path', 'util', 'buffer', 'http', 'process', 'stream' ];
const alias = [
- { find: 'env', replacement: relpath('wasm_env.ts') },
- { find: 'node:fs/promises', replacement: relpath('gui/stub/stub_fs.ts') },
- { find: 'node:fs', replacement: relpath('gui/stub/stub_fs.ts') },
- { find: 'node:child_process', replacement: relpath('gui/stub/stub_child_process.ts') },
- { find: 'node:net', replacement: relpath('gui/stub/stub_net.ts') },
- { find: 'npm:log-update', replacement: relpath('gui/stub/stub_log.ts') },
+ { find: 'env', replacement: relpath('wasm_env.ts') },
+ { find: 'node:fs/promises', replacement: relpath('gui/stub/stub_fs.ts') },
+ { find: 'node:fs', replacement: relpath('gui/stub/stub_fs.ts') },
+ { find: 'node:child_process', replacement: relpath('gui/stub/stub_child_process.ts') },
+ { find: 'node:net', replacement: relpath('gui/stub/stub_net.ts') },
+ { find: 'npm:log-update', replacement: 'log-update' },
+ { find: 'npm:@scure/base', replacement: '@scure/base' },
+ { find: 'npm:@scure/btc-signer', replacement: '@scure/btc-signer' },
+ { find: 'npm:fflate', replacement: 'fflate' },
+ { find: 'npm:case', replacement: 'case' },
//{ find: 'node:process', replacement: resolve(__dirname, 'stub/stub_process.ts') },
];
export default defineConfig({