forked from WangKehanK/zksync-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 693 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 693 Bytes
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
{
"name": "zksync-cli",
"version": "0.1.4",
"description": "CLI tool that simplifies the process of developing applications and interacting with zkSync 2.0.",
"main": "bin/index.js",
"bin": {
"zksync-cli": "bin/index.js"
},
"scripts": {
"build": "tsc -p .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"chalk": "4.1.2",
"ethers": "^5.7.2",
"figlet": "^1.5.2",
"inquirer": "^8.1.4",
"zksync-web3": "^0.14.3"
},
"devDependencies": {
"@types/inquirer": "^8.0.2",
"@types/node": "^18.11.5",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}