-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 1 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
{
"name": "@trustwallet/wizard-sdk",
"version": "0.2.5",
"description": "typescript sdk to visualize EIP-712 various protocols, simulate and decode transactions",
"main": "lib/index.js",
"repository": "git@github.com:trustwallet/wizard-sdk.git",
"author": "Abdou <118254027+a6-dou@users.noreply.github.com>",
"license": "BSD",
"keywords": [
"web3",
"EIP-712",
"Simulation"
],
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"build": "tsc --project ./tsconfig.build.json"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"eslint-config-prettier": "^8.7.0",
"jest": "^29.5.0",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"eslint": "^8.36.0",
"typescript": "^5.0.2"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"axios": "^1.3.5",
"ethers": "^6.1.0"
},
"files": [
"lib/",
"LICENSE",
"README.md",
"node_module",
"package.json"
]
}