-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·38 lines (38 loc) · 876 Bytes
/
package.json
File metadata and controls
executable file
·38 lines (38 loc) · 876 Bytes
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
{
"name": "clanjs",
"version": "1.0.2",
"description": "The Javascript SDk for Clan Network",
"author": "Clan Network Core",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"scripts": {
"build": "tsc"
},
"main": "dist/index.js",
"publishConfig": {
"access": "public"
},
"types": "dist/index.d.ts",
"dependencies": {
"@cosmjs/launchpad": "0.27.0",
"@cosmjs/proto-signing": "0.27.0",
"@cosmjs/stargate": "0.27.0",
"axios": "^0.25.0",
"buffer": "^6.0.3",
"reconnecting-websocket": "^4.4.0",
"eventemitter3": "4.0.7"
},
"devDependencies": {
"@keplr-wallet/types": "^0.9.10"
},
"peerDependencies": {
"@cosmjs/launchpad": "0.27.0",
"@cosmjs/proto-signing": "0.27.0",
"@cosmjs/stargate": "0.27.0"
}
}