{
  "name": "@chorus-one/ethereum",
  "version": "2.0.4",
  "description": "All-in-one toolkit for building staking dApps on Ethereum network",
  "scripts": {
    "build": "rm -fr dist/* && tsc -p tsconfig.mjs.json --outDir dist/mjs && tsc -p tsconfig.cjs.json --outDir dist/cjs && bash ../../scripts/fix-package-json",
    "hardhat:start": "hardhat node & echo $! > hardhat.pid;",
    "hardhat:stop": "kill $(cat hardhat.pid) && rm hardhat.pid",
    "test:integration": "mocha --timeout 30000 '**/*.spec.ts'",
    "test": "NETWORK=${NETWORK:-ethereum} npm run hardhat:start > hardhat.log & sleep 5; NETWORK=${NETWORK:-ethereum} npm run test:integration; status=$?; npm run hardhat:stop; exit $status"
  },
  "main": "dist/cjs/index.js",
  "module": "dist/mjs/index.js",
  "types": "dist/mjs/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/mjs/index.js",
      "require": "./dist/cjs/index.js",
      "types": "./dist/mjs/index.d.ts"
    }
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ChorusOne/chorus-one-sdk.git",
    "directory": "packages/ethereum"
  },
  "homepage": "https://chorus-one.gitbook.io/sdk",
  "keywords": [
    "ethereum",
    "staking",
    "dApps",
    "blockchain",
    "chorus-one",
    "sdk"
  ],
  "author": "Chorus One AG",
  "license": "Apache-2.0",
  "dependencies": {
    "@chorus-one/signer": "^1.0.0",
    "@chorus-one/utils": "^1.0.2",
    "decimal.js": "^10.4.3",
    "secp256k1": "^5.0.0",
    "viem": "^2.28.0"
  },
  "devDependencies": {
    "hardhat": "^2.23.0"
  }
}
