forked from Eclipse-Laboratories-Inc/eclipse-deposit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 880 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "eclipse-deposit",
"version": "2.0.0",
"type": "module",
"description": "A tool for depositing Ether into the Eclipse rollup, supporting both Sepolia and Ethereum Mainnet.",
"main": "src/lib.js",
"bin": {
"eclipse-deposit": "bin/cli.js"
},
"repository": "https://github.com/Eclipse-Laboratories-Inc/eclipse-deposit",
"author": "Eclipse Labs Team",
"license": "Apache-2.0",
"private": false,
"dependencies": {
"@solana/web3.js": "1.95.8",
"bs58": "^6.0.0",
"commander": "^12.1.0",
"viem": "^2.18.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3"
},
"scripts": {
"lint": "eslint 'src/**/*.js'",
"format": "prettier --write 'src/**/*.js'"
}
}