forked from zksync-sdk/zksync-ethers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.75 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "zksync-ethers",
"version": "6.0.0",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"description": "A Web3 library for interacting with the ZkSync Layer 2 scaling solution.",
"files": [
"build/",
"abi/",
"src/",
"typechain/"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zksync-sdk/zksync-ethers.git"
},
"bugs": {
"url": "https://github.com/zksync-sdk/zksync-ethers.git/issues"
},
"homepage": "https://github.com/zksync-sdk/zksync-ethers.git#readme",
"keywords": [
"zksync",
"web3",
"ethereum",
"layer2"
],
"dependencies": {},
"devDependencies": {
"@typechain/ethers-v6": "^0.5.0",
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.1",
"@types/node": "^20.5.2",
"chai": "^4.3.10",
"ethers": "^6.7.1",
"mocha": "^10.2.0",
"ncp": "^2.0.0",
"nyc": "^15.1.0",
"prettier": "3.0.3",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^5.1.6"
},
"peerDependencies": {
"ethers": "^6.7.1"
},
"scripts": {
"test": "mocha -r ts-node/register --bail tests/setup.test.ts tests/unit/*.test.ts tests/integration/*.test.ts",
"test:coverage": "nyc mocha -r ts-node/register --bail tests/unit/*.test.ts ",
"build": "yarn types && tsc --strict true && ncp ./abi ./build/abi",
"lint": "prettier . --write",
"lint:check": "prettier . --check",
"watch": "tsc --watch",
"types": "typechain --target ethers-v6 --out-dir typechain abi/*.json"
},
"publishConfig": {
"access": "public"
}
}