-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 949 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 949 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
30
31
32
33
34
35
36
{
"name": "zkwasm-service-cli",
"version": "1.0.0",
"private": true,
"description": "cli to communicate with zkwasm cloud service",
"dependencies": {
"bn.js": "^5.1.1",
"eth-crypto": "^2.6.0",
"ethers": "^6.2.3",
"form-data": "^4.0.0",
"yargs": "17.6.2",
"zkwasm-service-helper": "git+https://github.com/DelphinusLab/zkWasm-service-helper.git"
},
"scripts": {
"test": "jest",
"prepare": "npm run build",
"build": "npx tsc && sh initzkwasmhelper.sh",
"format": "npx prettier --write ."
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/bn.js": "^5.1.1",
"@types/jest": "^30.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^18.11.17",
"@types/yargs": "^17.0.33",
"jest": "^29.7.0",
"ts-jest": "^29.4.0",
"typescript": "^4.3.4"
},
"bin": {
"zkwasm-service-cli": "dist/index.js"
}
}