forked from axelarnetwork/axelar-cgp-sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.63 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
{
"name": "@axelar-network/axelar-cgp-sui",
"version": "0.4.1",
"repository": {
"type": "git",
"url": "https://github.com/axelarnetwork/axelar-cgp-sui"
},
"files": [
"dist",
"move",
"tsconfig.json",
"!move/**/build"
],
"main": "dist/index.js",
"scripts": {
"build-move": "./scripts/run.sh build",
"build-ts": "tsc",
"build": "npm run build-move && npm run build-ts",
"test-move": "./scripts/run.sh test",
"test-js": "npx mocha",
"test": "npm run test-move && npm run test-js",
"coverage": "./scripts/coverage.sh",
"release": "npm run build && changeset publish",
"cs": "changeset",
"lint": "eslint --fix './src/*.ts' './test/*.js'",
"prettier": "prettier --write './src/*.ts' './test/*.js'"
},
"keywords": [
"axelar",
"sui"
],
"author": "axelar-network",
"license": "MIT",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@cosmjs/cosmwasm-stargate": "^0.32.2",
"@mysten/sui": "^1.3.0",
"ethers": "^5.0.0",
"secp256k1": "^5.0.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@changesets/cli": "^2.27.6",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@types/node": "^20.14.11",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"chai": "^4.3.7",
"dotenv": "^16.3.1",
"eslint": "^8.57.0",
"eslint-config-richardpringle": "^2.0.0",
"mocha": "^10.4.0",
"prettier": "^2.8.7",
"prettier-plugin-sort-imports": "^1.8.5",
"typescript": "^5.5.3"
},
"description": "Axelar Sui Move contracts"
}