-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 KB
/
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
33
34
35
36
37
38
39
40
41
{
"name": "wbtc_bridge_app",
"version": "1.0.0",
"description": "Multi-chain WBTC bridge application supporting Optimism-Polygon and Arbitrum-zkSync paths through official bridges",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"bridge": "ts-node src/index.ts",
"check:optimism": "ts-node src/utils/check-balance.ts optimism",
"check:polygon": "ts-node src/utils/check-balance.ts polygon",
"check:arbitrum": "ts-node src/utils/check-balance.ts arbitrum",
"check:zksync": "ts-node src/utils/check-balance.ts zksync",
"check:eth": "ts-node src/utils/check-balance.ts ethereum",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"wbtc",
"bridge",
"optimism",
"polygon",
"arbitrum",
"zksync",
"ethereum",
"defi",
"cross-chain"
],
"author": "",
"license": "ISC",
"dependencies": {
"@arbitrum/sdk": "^3.1.4",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"zksync-web3": "^0.14.3"
},
"devDependencies": {
"@types/node": "^18.11.18"
}
}