{
  "name": "@alchemy/cli",
  "version": "0.23.0",
  "description": "Alchemy CLI — interact with blockchain data",
  "type": "module",
  "bin": {
    "alchemy": "./dist/index.js"
  },
  "keywords": [
    "alchemy",
    "blockchain",
    "ethereum",
    "cli"
  ],
  "files": [
    "dist",
    "README.md",
    "scripts/postinstall.cjs"
  ],
  "publishConfig": {
    "access": "public"
  },
  "license": "MIT",
  "engines": {
    "node": ">=22"
  },
  "dependencies": {
    "@alchemy/wallet-apis": "5.0.0-beta.28",
    "@alchemy/x402": "^0.4.0",
    "@circle-fin/x402-batching": "^3.2.0",
    "@noble/hashes": "^2.0.1",
    "@solana-program/system": "^0.12.0",
    "@solana/kit": "^6.7.0",
    "@x402/core": "^2.5.0",
    "@x402/evm": "^2.5.0",
    "cli-table3": "^0.6.5",
    "commander": "^14.0.3",
    "qrcode": "^1.5.4",
    "viem": "^2.47.10",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@types/node": "^25.3.0",
    "@types/qrcode": "^1.5.6",
    "@vitest/coverage-v8": "^4.0.18",
    "tsup": "^8.5.1",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3",
    "vitest": "^4.0.18",
    "@alchemy/sdk": "0.3.0"
  },
  "scripts": {
    "prebuild": "pnpm --filter @alchemy/sdk build",
    "build": "tsup",
    "dev": "tsup --watch",
    "live:check": "node --env-file-if-exists=.env.local --import=tsx scripts/live-check.ts",
    "postinstall": "node ./scripts/postinstall.cjs",
    "sync:skills": "node scripts/sync-skills.mjs",
    "update:skills": "npx skills update && pnpm sync:skills",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:e2e": "pnpm build && vitest run --config vitest.e2e.config.ts",
    "test:live": "pnpm build && node --env-file-if-exists=.env.local ./node_modules/vitest/vitest.mjs run --config vitest.live.config.ts",
    "test:watch": "vitest",
    "lint": "tsc --noEmit"
  }
}