-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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": "@arun89-crypto/hypersdk",
"version": "1.1.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/Arun89-crypto/HyperSDK",
"author": "Arun89-crypto <arunjngra89@gmail.com>",
"license": "MIT",
"scripts": {
"build": "yarn tsc",
"test:init": "yarn jest tests/Init.test.ts",
"test:swap": "yarn jest tests/Swap.test.ts",
"format": "npx prettier --write ."
},
"keywords": [
"blockchain",
"swap",
"defi",
"ethers"
],
"dependencies": {
"@layerzerolabs/scan-client": "^0.0.6",
"axios": "^1.4.0",
"bignumber.js": "^9.1.1",
"chai": "^4.3.7",
"dotenv": "^16.3.1",
"ethers": "^6.7.0",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/jest": "^29.5.3",
"prettier": "3.0.2"
},
"files": [
"lib"
]
}