-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.82 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
{
"name": "@blocktorch/optimism-batch-decoder",
"version": "1.0.1",
"description": "Decode optimism rollup batcher transactions",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"fmt": "prettier --write src",
"fmt:check": "prettier --check src",
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"prepublishOnly": "tsc",
"release": "npm version patch && npm publish . && git push && git push --tags",
"semantic-release": "semantic-release"
},
"keywords": [
"web3",
"optimism",
"rollups",
"decoder",
"batcher"
],
"repository": {
"type": "git",
"url": "git+https://github.com/blocktorch-xyz/optimism-batch-decoder.git"
},
"author": "iuwqyir <[[email protected]](mailto:[email protected])>",
"license": "MIT",
"bugs": {
"url": "https://github.com/blocktorch-xyz/optimism-batch-decoder/issues"
},
"homepage": "https://github.com/blocktorch-xyz/optimism-batch-decoder#readme",
"publishConfig": {
"access": "public",
"pkgRoot": "."
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.11.4",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.0",
"prettier": "^3.2.3",
"semantic-release": "^23.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"ethereumjs-util": "^7.1.5",
"rlp": "^3.0.0",
"tslib": "^2.6.2",
"viem": "^2.1.1"
}
}