-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
59 lines (59 loc) · 1.32 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
{
"name": "@terra-money/terra.proto",
"version": "5.3.0-beta.0",
"description": "JS and TS types relating to Protocol Buffers used by Terra project",
"contributors": [
"Yun Yeo <[email protected]>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/terra-money/terra.proto"
},
"publishConfig": {
"access": "public"
},
"files": [
"alliance/",
"terra/",
"icq/",
"amino/",
"confio/",
"cosmos/",
"cosmos_proto/",
"cosmwasm/",
"gogoproto/",
"google/",
"ibc/",
"osmosis/",
"juno/",
"pob/",
"router/",
"tendermint/",
"feemarket/",
"*.md",
"proofs.d.ts",
"proofs.js",
"proofs.js.map"
],
"scripts": {
"format": "prettier --write --loglevel warn \"./src/**/*.ts\"",
"build": "rm -rf ./build && tsc --module commonjs && ./scripts/prepare.sh",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@improbable-eng/grpc-web": "^0.14.1",
"browser-headers": "^0.4.1",
"google-protobuf": "^3.17.3",
"long": "^4.0.0",
"protobufjs": "~6.11.2"
},
"devDependencies": {
"@types/google-protobuf": "^3.15.5",
"@types/long": "^4.0.1",
"@types/node": "^15.6.2",
"prettier": "^2.3.0",
"ts-proto": "^1.82.5",
"typescript": "~4.0"
}
}