forked from Destiner/ethcall
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.25 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.25 KB
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
{
"name": "ethcall",
"version": "4.8.13",
"description": "ethers.js-compatible wrapper around Multicall",
"author": "Timur Badretdinov <destinerx@gmail.com>",
"keywords": [
"ethers",
"ethereum"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/Destiner/ethcall.git"
},
"main": "lib/index.js",
"scripts": {
"test": "vitest run",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint \"{src,test}/**/*.ts\"",
"lint:prettier": "prettier -c \"{src,test}/**/*.{json,js,ts}\"",
"build": "tsc --p tsconfig.build.json",
"prepack": "npm run build"
},
"dependencies": {
"@ethersproject/abi": "^5.0.0",
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/bytes": "^5.0.0",
"@ethersproject/contracts": "^5.0.0",
"@ethersproject/providers": "^5.0.0",
"@types/node": "^18.6.3",
"abi-coder": "^4.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.42.0",
"@typescript-eslint/parser": "5.50.0",
"eslint": "8.31.0",
"eslint-import-resolver-typescript": "3.5.2",
"eslint-plugin-import": "2.26.0",
"prettier": "2.8.3",
"ts-node": "10.9.1",
"typescript": "4.9.5",
"vitest": "0.28.3"
}
}