-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 1.89 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@lifi/abi-parser",
"version": "0.0.4",
"publishConfig": {
"access": "public"
},
"author": "LI.FI <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://github.com/lifinance/abi-parser",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/lifinance/abi-parser.git"
},
"bugs": {
"url": "https://github.com/lifinance/abi-parser/issues"
},
"bin": {
"abi-parser": "dist/cli.js"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rm -rf build",
"parse-call-data": "ts-node --transpile-only src/cli.ts",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest",
"pre-commit": "pnpm lint:fix && pnpm build && pnpm test"
},
"files": [
"dist",
"abis"
],
"devDependencies": {
"@swc/core": "^1.7.42",
"@swc/jest": "^0.2.37",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.5",
"@types/superagent": "^8.1.9",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@lifi/types": "^16.1.2",
"dotenv": "^16.4.5",
"ethers": "^6.13.4",
"ioredis": "^5.4.1",
"pretty-error": "^4.0.0",
"superagent": "^9.0.2",
"superagent-throttle": "^1.0.1",
"winston": "^3.15.0"
},
"packageManager": "[email protected]"
}