-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
115 lines (115 loc) · 3.11 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@axelarjs/api",
"version": "0.4.6",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axelarnetwork/axelarjs"
},
"description": "Axelar typesafe api clients",
"files": [
"./build",
"./lib",
"./axelarscan",
"./axelar-query",
"./gmp",
"./deposit-address",
"./deposit-service",
"./axelar-config",
"./index.js",
"./index.d.ts"
],
"exports": {
"./gmp": {
"import": "./build/module/gmp/index.js",
"require": "./build/commonjs//gmp/index.js"
},
"./axelarscan": {
"import": "./build/module/axelarscan/index.js",
"require": "./build/commonjs/axelarscan/index.js"
},
"./axelar-query": {
"import": "./build/module/axelar-query/index.js",
"require": "./build/commonjs/axelar-query/index.js"
},
"./deposit-address": {
"import": "./build/module/deposit-address/index.js",
"require": "./build/commonjs/deposit-address/index.js"
},
"./gmp/*": {
"import": "./build/module/gmp/*.js",
"require": "./build/commonjs//gmp/*.js"
},
"./axelarscan/*": {
"import": "./build/module/axelarscan/*.js",
"require": "./build/commonjs/axelarscan/*.js"
},
"./axelar-query/*": {
"import": "./build/module/axelar-query/*.js",
"require": "./build/commonjs/axelar-query/*.js"
},
"./axelar-config/*": {
"import": "./build/module/axelar-config/*.js",
"require": "./build/commonjs/axelar-config/*.js"
},
"./deposit-address/*": {
"import": "./build/module/deposit-address/*.js",
"require": "./build/commonjs/deposit-address/*.js"
},
".": {
"import": "./build/module/index.js",
"require": "./build/commonjs/index.js"
},
"./*": {
"import": "./build/module/*.js",
"require": "./build/commonjs/*.js"
}
},
"scripts": {
"compile": "tsc --noEmit",
"build": "./scripts/build.sh",
"clean": "./scripts/clean.sh",
"test": "vitest run",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"docgen": "typedoc",
"deploy:docs": "gh-pages -d docs -e api"
},
"keywords": [],
"author": "",
"license": "LicenseRef-LICENSE",
"devDependencies": {
"@axelarjs/config": "workspace:*",
"@cosmjs/stargate": "^0.31.3",
"@cosmjs/tendermint-rpc": "0.31.0-alpha.1",
"@types/node": "^20.11.28",
"dotenv": "^16.4.5",
"fast-check": "^3.17.0",
"gh-pages": "^6.1.1",
"happy-dom": "^13.10.1",
"jsonschema": "^1.4.1",
"matchers": "link:@testing-library/jest-dom/matchers",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"typedoc": "^0.25.12",
"typescript": "^5.4.3",
"vite": "^5.2.6",
"vitest": "^1.4.0"
},
"peerDependencies": {
"unfetch": "<=4.2"
},
"dependencies": {
"@axelarjs/core": "workspace:*",
"@axelarjs/cosmos": "workspace:*",
"@axelarjs/utils": "workspace:*",
"@axelarjs/proto": "workspace:*",
"isomorphic-unfetch": "^4.0.2",
"rambda": "^9.1.1",
"string-similarity-js": "^2.1.4",
"viem": "^2.8.18"
}
}