-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "@axelar-network/axelar-cgp-sui",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/axelarnetwork/axelar-cgp-sui"
},
"main": "dist",
"scripts": {
"build": "./scripts/run.sh build",
"test": "./scripts/run.sh test",
"coverage": "./scripts/coverage.sh",
"lint": "eslint --fix './scripts/*.js'",
"prettier": "prettier --write './scripts/*.js'",
"compile": "npx tsc",
"postinstall": "npm run compile"
},
"keywords": [
"axelar",
"sui"
],
"author": "axelar-network",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@cosmjs/cosmwasm-stargate": "^0.32.2",
"@mysten/sui.js": "^0.54.1",
"child_process": "^1.0.2",
"ethers": "^5.0.0",
"fs": "^0.0.1-security",
"secp256k1": "^5.0.0",
"tmp": "^0.2.1",
"typescript": "^5.3.3"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"dotenv": "^16.3.1",
"eslint": "^8.57.0",
"eslint-config-richardpringle": "^2.0.0",
"prettier": "^2.8.7",
"prettier-plugin-sort-imports": "^1.8.5"
},
"description": "Axelar Sui Move contracts"
}