forked from HOVOH/ethcall
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.09 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
{
"name": "@hovoh/ethcall",
"version": "9.9.6",
"keywords": [
"ethers",
"ethereum"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/dexlegion/ethcall.git"
},
"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/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.23.0",
"@typescript-eslint/parser": "5.31.0",
"eslint": "8.23.0",
"eslint-import-resolver-typescript": "3.5.0",
"eslint-plugin-import": "2.26.0",
"prettier": "2.7.1",
"ts-node": "10.8.1",
"typescript": "4.6.4",
"vitest": "0.20.2"
}
}