-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "zkwasm-service-helper",
"version": "1.0.0",
"private": true,
"description": "helper lib to communicate with zkwasm cloud service",
"dependencies": {
"@types/bn.js": "^5.1.1",
"axios": "^1.2.1",
"bn.js": "^5.1.1",
"ethers": "^6.8.1",
"form-data": "^4.0.0",
"ts-md5": "^1.3.1",
"web3subscriber": "git+https://github.com/DelphinusLab/delphinus-web3subscriber.git",
"yargs": "17.6.2"
},
"scripts": {
"test": "jest",
"prepare": "npm run build",
"build": "rm -fr dist/* && npx tsc -p tsconfig.json && npx tsc -p tsconfig-cjs.json && sh ./addhybridpackage.sh"
},
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/mjs/index.d.ts",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.12",
"@types/node": "^18.11.17",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"typescript": "^4.3.4"
}
}