-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.28 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
{
"name": "@neutron-org/client-ts",
"version": "0.0.0-semantic-release",
"description": "Neutron Typescript Client",
"author": "Sergey Ratiashvili <[email protected]>",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"scripts": {
"build": "NODE_OPTIONS=--max_old_space_size=6096 tsc --build",
"semantic-release": "semantic-release"
},
"main": "dist/index.js",
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
]
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/neutron-org/chain-ts-client"
},
"dependencies": {
"@cosmjs/launchpad": "0.27.0",
"@cosmjs/proto-signing": "0.27.0",
"@cosmjs/stargate": "0.27.0",
"@keplr-wallet/types": "^0.11.3",
"axios": "0.21.1",
"buffer": "^6.0.3",
"events": "^3.3.0",
"protobufjs": "^7.2.0"
},
"peerDependencies": {
"@cosmjs/launchpad": "0.27.0",
"@cosmjs/proto-signing": "0.27.0",
"@cosmjs/stargate": "0.27.0"
},
"devDependencies": {
"@types/events": "^3.0.0",
"@types/node": "^18.11.13",
"semantic-release": "^19.0.5",
"typescript": "^4.9.4"
}
}