-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
51 lines (51 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
{
"name": "cosmjs-types",
"version": "0.8.0",
"description": "JS and TS types relating to Protocol Buffers used by Cosmos SDK and other related projects",
"contributors": [
"Simon Warta <webmaster128@users.noreply.github.com>",
"Will Clark <willclarktech@users.noreply.github.com>",
"Dan Lynch <pyramation@gmail.com>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/confio/cosmjs-types"
},
"publishConfig": {
"access": "public"
},
"files": [
"cosmos/",
"cosmos_proto/",
"cosmwasm/",
"gogoproto/",
"google/",
"ibc/",
"tendermint/",
"/binary.*",
"/helpers.*",
"/utf8.*",
"/varint.*",
"/index.*",
"*.md",
"!wasmd-*/**/*.md",
"!cosmos-sdk-*/**/*.md"
],
"scripts": {
"format": "prettier --write --loglevel warn \"./src/**/*.ts\" \"./scripts/**/*.js\"",
"precodegen": "./scripts/exports_protos.sh",
"codegen": "rm -rf ./src && ./scripts/codegen.js && npm run format",
"prepare-publishing": "./scripts/prepare-publishing.sh",
"build": "rm -rf ./build && tsc && npm run prepare-publishing"
},
"dependencies": {
"protobufjs": "~6.11.2"
},
"devDependencies": {
"@cosmology/telescope": "^1.0.1",
"@types/node": "^15.6.2",
"prettier": "^2.8.8",
"typescript": "~4.9"
}
}