@alchemy/cli 0.1.0 → 0.1.1

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.
File without changes
File without changes
File without changes
package/dist/index.js CHANGED
@@ -1683,7 +1683,7 @@ var findCommandByPath = (root, path) => {
1683
1683
  };
1684
1684
  program.name("alchemy").description(
1685
1685
  "The Alchemy CLI lets you query blockchain data, call JSON-RPC methods, and manage your Alchemy configuration."
1686
- ).version("0.1.0").option("--api-key <key>", "Alchemy API key (env: ALCHEMY_API_KEY)").option("--access-key <key>", "Alchemy access key (env: ALCHEMY_ACCESS_KEY)").option(
1686
+ ).version("0.1.1").option("--api-key <key>", "Alchemy API key (env: ALCHEMY_API_KEY)").option("--access-key <key>", "Alchemy access key (env: ALCHEMY_ACCESS_KEY)").option(
1687
1687
  "-n, --network <network>",
1688
1688
  "Target network (default: eth-mainnet) (env: ALCHEMY_NETWORK)"
1689
1689
  ).option("--x402", "Use x402 wallet-based gateway auth").option("--wallet-key-file <path>", "Path to wallet private key file for x402").option("--json", "Force JSON output").option("-q, --quiet", "Suppress non-essential output").option("-v, --verbose", "Enable verbose output").option("--no-color", "Disable color output").option("--reveal", "Show secrets in plain text (TTY only)").option("--timeout <ms>", "Request timeout in milliseconds", parseInt).option("--debug", "Enable debug diagnostics").option("--no-interactive", "Disable REPL and prompt-driven interactions").addHelpCommand(false).configureOutput({
File without changes
File without changes
package/package.json CHANGED
@@ -1,20 +1,11 @@
1
1
  {
2
2
  "name": "@alchemy/cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Alchemy CLI — interact with blockchain data",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "alchemy": "./dist/index.js"
8
8
  },
9
- "scripts": {
10
- "build": "tsup",
11
- "dev": "tsup --watch",
12
- "test": "vitest run",
13
- "test:coverage": "vitest run --coverage",
14
- "test:e2e": "pnpm build && vitest run --config vitest.e2e.config.ts",
15
- "test:watch": "vitest",
16
- "lint": "tsc --noEmit"
17
- },
18
9
  "keywords": [
19
10
  "alchemy",
20
11
  "blockchain",
@@ -50,5 +41,13 @@
50
41
  "typescript": "^5.9.3",
51
42
  "vitest": "^4.0.18"
52
43
  },
53
- "packageManager": "pnpm@10.18.2+sha512.9fb969fa749b3ade6035e0f109f0b8a60b5d08a1a87fdf72e337da90dcc93336e2280ca4e44f2358a649b83c17959e9993e777c2080879f3801e6f0d999ad3dd"
54
- }
44
+ "scripts": {
45
+ "build": "tsup",
46
+ "dev": "tsup --watch",
47
+ "test": "vitest run",
48
+ "test:coverage": "vitest run --coverage",
49
+ "test:e2e": "pnpm build && vitest run --config vitest.e2e.config.ts",
50
+ "test:watch": "vitest",
51
+ "lint": "tsc --noEmit"
52
+ }
53
+ }