{
  "name": "@alchemy/cli",
  "version": "0.5.2",
  "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"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/alchemyplatform/alchemy-cli.git"
  },
  "publishConfig": {
    "access": "public"
  },
  "license": "MIT",
  "engines": {
    "node": ">=22"
  },
  "dependencies": {
    "@alchemy/x402": "^0.4.0",
    "@noble/hashes": "^2.0.1",
    "cli-table3": "^0.6.5",
    "commander": "^14.0.3",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@changesets/changelog-github": "^0.6.0",
    "@changesets/cli": "^2.30.0",
    "@types/node": "^25.3.0",
    "@vitest/coverage-v8": "^4.0.18",
    "tsup": "^8.5.1",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3",
    "vitest": "^4.0.18"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "postinstall": "node ./scripts/postinstall.cjs",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:e2e": "pnpm build && vitest run --config vitest.e2e.config.ts",
    "test:watch": "vitest",
    "lint": "tsc --noEmit",
    "changeset": "changeset",
    "version-packages": "changeset version",
    "release": "pnpm build && changeset publish"
  }
}