forked from axelarnetwork/axelarjs-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.45 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
{
"name": "@axelar-network/axelarjs-sdk",
"version": "0.12.4",
"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": {
"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}\""
},
"keywords": [
"axelar",
"blockchain",
"sdk",
"cryptocurrency",
"interoperability",
"smart-contracts",
"cross-chain"
],
"author": "Axelar Network",
"license": "MIT",
"dependencies": {
"@axelar-network/axelar-cgp-solidity": "^4.3.0",
"@axelar-network/axelarjs-types": "^0.27.0",
"@cosmjs/stargate": "^0.28.4",
"@types/uuid": "^8.3.1",
"bech32": "^2.0.0",
"clone-deep": "^4.0.1",
"cross-fetch": "^3.1.5",
"ethers": "^5.4.7",
"socket.io-client": "^4.2.0",
"standard-http-error": "^2.0.1",
"string-similarity-js": "^2.1.4",
"uuid": "^8.3.2"
},
"devDependencies": {
"@axelar-network/axelar-local-dev": "1.0.2",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.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",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.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.3.2",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"prettier": "2.5.1",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.8.4",
"vitest": "^0.28.3"
}
}