-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
97 lines (97 loc) · 3.07 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/axelarjs-sdk",
"version": "0.17.1-alpha.9",
"description": "The JavaScript SDK for Axelar Network",
"repository": {
"type": "git",
"url": "https://github.com/axelarnetwork/axelarjs-sdk"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist",
"!dist/src/libs/test",
"!dist/test",
"scripts"
],
"scripts": {
"build": "rimraf dist && tsc",
"compile-axelar-cgp-solidity": "cd node_modules/@axelar-network/axelar-cgp-solidity && npm install && npx hardhat compile && cp -R artifacts ../../../artifacts && npm uninstall *",
"dev:tsc": "tsc --watch -p .",
"dev:serve": "nodemon -e js -w dist dist/index.js",
"dev": "run-p dev:*",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "vitest run --config test/e2e/vitest.e2e.config.ts",
"test:integration": "vitest run --config test/integration/vitest.integration.config.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"./**/*.{ts,json}\"",
"postinstall": "node scripts/postinstall.js"
},
"keywords": [
"axelar",
"blockchain",
"sdk",
"cryptocurrency",
"interoperability",
"smart-contracts",
"cross-chain"
],
"author": "Axelar Network",
"license": "MIT",
"dependencies": {
"@axelar-network/axelar-cgp-solidity": "^6.3.0",
"@axelar-network/axelarjs-types": "^0.33.0",
"@cosmjs/json-rpc": "^0.30.1",
"@cosmjs/stargate": "0.31.0-alpha.1",
"@ethersproject/abstract-provider": "^5.7.0",
"@ethersproject/networks": "^5.7.1",
"@ethersproject/providers": "^5.7.2",
"@mysten/sui": "^1.14.2",
"@stellar/stellar-sdk": "^13.0.0",
"@types/uuid": "^8.3.1",
"bech32": "^2.0.0",
"clone-deep": "^4.0.1",
"cross-fetch": "^3.1.5",
"ethers": "^5.7.2",
"socket.io-client": "^4.6.1",
"standard-http-error": "^2.0.1",
"string-similarity-js": "^2.1.4",
"uuid": "^8.3.2",
"ws": "^8.13.0"
},
"devDependencies": {
"@axelar-network/axelar-local-dev": "1.0.2",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@cosmjs/encoding": "^0.30.1",
"@cosmjs/proto-signing": "0.31.0-alpha.1",
"@cosmjs/tendermint-rpc": "0.31.0-alpha.1",
"@ethersproject/abi": "^5.7.0",
"@types/clone-deep": "^4.0.1",
"@types/standard-http-error": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.30.0",
"chalk": "^4.1.2",
"cosmjs-types": "^0.8.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"ganache": "^7.8.0",
"long": "^5.2.3",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"package-json": "^8.1.1",
"prettier": "2.8.8",
"rimraf": "^5.0.1",
"strip-ansi": "^6.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.6.3",
"vitest": "^0.32.0"
}
}