lido-withdrawals-automation/package.json

31 lines
965 B
JSON

{
"name": "lido-withdrawals-automation",
"version": "1.0.1",
"description": "Lido Withdrawals Automation is a command-line tool that assists with the LIDO validators withdrawal process. The tool streamlines the procedure by fetching validators data, generating withdrawal messages, signing them with a remote signer, encrypting the signed messages, and saving them to the output folder.",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "node index.js",
"coverage": "jest --coverage"
},
"author": "Stakely.io",
"license": "MIT",
"dependencies": {
"@chainsafe/bls-keystore": "^3.0.0",
"axios": "^1.3.4",
"dotenv": "^16.0.3",
"ethers": "^6.2.3",
"inquirer": "^7.3.3",
"minimist": "^1.2.8",
"readline-sync": "^1.4.10"
},
"devDependencies": {
"axios-mock-adapter": "^1.21.3",
"eslint": "^8.38.0",
"jest": "^29.5.0"
},
"bin": {
"lido-withdrawals-automation": "./index.js"
}
}