@broccolo1d/wallet-browser 0.2.3 → 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -7,7 +7,7 @@ This lower-level package owns Chromium/MetaMask launch configuration, prompt gua
7
7
  ## Install
8
8
 
9
9
  ```bash
10
- pnpm add -D @broccolo1d/wallet-browser@0.2.3 playwright
10
+ pnpm add -D @broccolo1d/wallet-browser@0.2.4 playwright
11
11
  ```
12
12
 
13
13
  ESM-only. Node.js `>=22 <23`.
@@ -5,7 +5,7 @@ import { FIXTURE_CONNECTION_PROOF_MANIFEST, verifyFixtureConnectionProofManifest
5
5
  import { DEFAULT_SEPOLIA_CHAIN_ID } from './network.js';
6
6
  import { maskEthereumAddress } from './profile-bootstrap.js';
7
7
  import { connectWallet } from './wallet-control.js';
8
- const WALLET_BROWSER_PACKAGE_VERSION = '0.2.3';
8
+ const WALLET_BROWSER_PACKAGE_VERSION = '0.2.4';
9
9
  function runtimeMetadata() {
10
10
  return { node: process.version, platform: process.platform, arch: process.arch };
11
11
  }
@@ -3,7 +3,7 @@ import { existsSync, readFileSync, statSync } from 'node:fs';
3
3
  import { basename, join } from 'node:path';
4
4
  import { DEFAULT_SEPOLIA_CHAIN_ID } from './network.js';
5
5
  export const FIXTURE_CONNECTION_PROOF_MANIFEST = 'FIXTURE-PROOF-MANIFEST.json';
6
- const WALLET_BROWSER_PACKAGE_VERSION = '0.2.3';
6
+ const WALLET_BROWSER_PACKAGE_VERSION = '0.2.4';
7
7
  function runtimeMetadata() {
8
8
  return { node: process.version, platform: process.platform, arch: process.arch };
9
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@broccolo1d/wallet-browser",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Core browser-wallet runtime, guardrails, CLI, and artifact helpers for dapp QA.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -44,17 +44,17 @@
44
44
  "LICENSE",
45
45
  "package.json"
46
46
  ],
47
- "scripts": {
48
- "build": "tsc -p tsconfig.json",
49
- "test": "vitest run",
50
- "typecheck": "tsc -p tsconfig.json --noEmit",
51
- "cli": "node dist/cli.js"
52
- },
53
47
  "dependencies": {
54
48
  "playwright": "1.59.1"
55
49
  },
56
50
  "devDependencies": {},
57
51
  "publishConfig": {
58
52
  "access": "public"
53
+ },
54
+ "scripts": {
55
+ "build": "tsc -p tsconfig.json",
56
+ "test": "vitest run",
57
+ "typecheck": "tsc -p tsconfig.json --noEmit",
58
+ "cli": "node dist/cli.js"
59
59
  }
60
- }
60
+ }