-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.43 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": "@atomone/atomone-types",
"version": "1.0.2",
"description": "JS and TS types relating to Protocol Buffers used by AtomOne",
"contributors": [
"Simon Warta <[email protected]>",
"Will Clark <[email protected]>",
"Dan Lynch <[email protected]>",
"Alex M.<[email protected]>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/atomone-hub/atomone-types"
},
"publishConfig": {
"access": "public"
},
"files": [
"cosmos/",
"cosmos_proto/",
"gogoproto/",
"google/",
"atomone/",
"tendermint/",
"/binary.*",
"/helpers.*",
"/utf8.*",
"/varint.*",
"/index.*",
"/registry.*",
"/types.*",
"*.md",
"!cosmos-sdk-*/**/*.md",
"!atomone-*/**/*.md"
],
"scripts": {
"format": "prettier --write --loglevel warn \"./src/**/*.ts\" \"./scripts/**/*.js\"",
"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"
},
"devDependencies": {
"@cosmjs/amino": "^0.32.2",
"@cosmjs/proto-signing": "^0.32.2",
"@cosmjs/stargate": "^0.32.2",
"@cosmjs/tendermint-rpc": "^0.32.2",
"@cosmology/telescope": "^1.4.12",
"@types/node": "^15.6.2",
"prettier": "^3.0.3",
"typescript": "~5.2"
}
}