-
Notifications
You must be signed in to change notification settings - Fork 94
/
package.json
46 lines (46 loc) · 1.44 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
{
"name": "ethereum-multicall",
"version": "2.26.0",
"description": "Multicall allows multiple smart contract constant function calls to be grouped into a single call and the results aggregated into a single result",
"main": "dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"playground": "node ./dist/cjs/__TEST-SCRIPT__/playground.js",
"watch": "tsc --module commonjs --outDir dist/cjs --watch",
"test": "npm test",
"gen-multicall-abi": "abi-types-generator ./src/ABI/multicall-abi.json --output=./src/ABI/types --name=multicall --provider=ethers",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"@ethersproject/providers": "^5.0.10",
"ethers": "^5.0.15"
},
"devDependencies": {
"@types/node": "^14.11.2",
"ethereum-abi-types-generator": "^1.0.6",
"typescript": "^4.1.3"
},
"files": [
"dist",
"package.json",
"package-lock.json",
"README.md",
"LICENSE"
],
"keywords": [
"ethereum",
"blockchain",
"JSONRPC"
],
"bugs": {
"url": "https://github.com/joshstevens19/ethereum-multicall/issues"
},
"homepage": "https://github.com/joshstevens19/ethereum-multicall#readme"
}