-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.2 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.2 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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@initia/tx-decoder",
"version": "0.13.0",
"description": "A pluggable library to decode Cosmos-based blockchain transactions.",
"keywords": [
"cosmos",
"blockchain",
"transaction",
"decoder"
],
"license": "MIT",
"author": "Initia (https://initia.xyz)",
"repository": {
"url": "https://github.com/initia-labs/tx-decoder"
},
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"clean": "rimraf dist",
"example:evm": "tsx examples/test-decode-evm-transaction.ts",
"lint": "eslint \"{src,tests}/**/*.ts\" --fix",
"prepare": "simple-git-hooks",
"prepublishOnly": "pnpm run build",
"test": "jest --config=jest.config.ts",
"test:coverage": "jest --config=jest.config.ts --coverage",
"typecheck": "tsc --noEmit"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged --concurrent false"
},
"lint-staged": {
"*.{ts}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"dependencies": {
"@cosmjs/encoding": "^0.33.1",
"@initia/utils": "2.0.0-alpha.3",
"@noble/hashes": "^1.8.0",
"axios": "^1.12.0",
"big.js": "^7.0.1",
"cosmjs-types": "^0.9.0",
"immer": "^10.1.1",
"viem": "^2.37.5",
"zod": "^3.25.62"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/big.js": "^6.2.2",
"@types/jest": "^29.5.12",
"@types/node": "^24.0.0",
"eslint": "^9.28.0",
"eslint-plugin-perfectionist": "^4.14.0",
"globals": "^16.2.0",
"jest": "^29.7.0",
"lint-staged": "^16.1.4",
"prettier": "^3.6.2",
"rimraf": "^5.0.7",
"simple-git-hooks": "^2.13.1",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"tsup": "^8.1.0",
"tsx": "^4.7.1",
"typescript": "^5.5.2",
"typescript-eslint": "^8.34.0"
}
}