-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
97 lines (97 loc) · 3.03 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
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
93
94
95
96
97
{
"name": "@axelar-network/axelar-cgp-sui",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/axelarnetwork/axelar-cgp-sui"
},
"files": [
"dist",
"move",
"version.json",
"tsconfig.json",
"!move/**/build"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/web/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
".": {
"react-server": {
"import": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts"
},
"node": {
"types": "./dist/cjs/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"browser": {
"import": "./dist/web/index.js",
"types": "./dist/web/types.d.ts"
},
"default": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts"
}
},
"scripts": {
"build-move": "./scripts/run.sh build",
"build-ts": "npm run build-ts:cjs && npm run build-ts:esm && npm run build-ts:web",
"build-ts:cjs": "tsc -p tsconfig.cjs.json && node scripts/flatten.js dist/cjs",
"build-ts:esm": "tsc -p tsconfig.esm.json && node scripts/flatten.js dist/esm",
"build-ts:web": "tsc -p tsconfig.web.json && node scripts/flatten.js dist/web && node scripts/verify-web-build.js",
"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",
"release-snapshot": "npm run build && npm version 0.0.0-snapshot.$(git rev-parse --short HEAD) --git-tag-version=false && npm publish --no-git-checks --tag snapshot --access public",
"cs": "changeset",
"verify-web-build": "node scripts/verify-web-build.js",
"lint": "eslint --fix './src/**/*.ts' './test/*.js'",
"prettier": "prettier --write './src/**/*.ts' './test/*.js'",
"docs": "./scripts/docs.sh"
},
"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",
"deepbookv3": "github:axelarnetwork/deepbookv3#testnet-v1.38.2",
"ethers": "^5.0.0",
"secp256k1": "^5.0.0",
"smol-toml": "^1.3.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@changesets/cli": "^2.27.6",
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@types/node": "^20.14.11",
"@types/secp256k1": "^4.0.6",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"chai": "^4.3.7",
"chalk": "^4.1.2",
"diff": "^7.0.0",
"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"
}