forked from Destiner/ethcall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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
{
"name": "ethcall",
"version": "6.0.6",
"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"
},
"type": "module",
"main": "dist/index.js",
"exports": "./dist/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": {
"@types/node": "^20.2.5",
"abi-coder": "^5.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.5.0",
"eslint": "8.56.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"prettier": "3.2.4",
"ts-node": "10.9.2",
"typescript": "5.3.3",
"vitest": "1.1.1"
},
"peerDependencies": {
"ethers": "^6.0.0"
}
}