-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.45 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
{
"name": "@neutron-org/neutronjs",
"version": "4.2.0",
"description": "JS and TS types relating to Protocol Buffers used by Neutron",
"contributors": [],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/neutron-org/neutronjs"
},
"publishConfig": {
"access": "public"
},
"files": [
"capability/",
"cosmos/",
"cosmos_proto/",
"cosmwasm/",
"feemarket/",
"gaia/",
"gogoproto/",
"google/",
"ibc/",
"neutron/",
"osmosis/",
"sdk/",
"slinky/",
"tendermint/",
"/binary.*",
"/helpers.*",
"/utf8.*",
"/varint.*",
"/index.*",
"/querier_types.*",
"*.md",
"!wasmd-*/**/*.md",
"!cosmos-sdk-*/**/*.md"
],
"scripts": {
"set-versions": "./scripts/set-versions.sh",
"format": "prettier --write --log-level warn \"./src/**/*.ts\" \"./scripts/**/*.js\"",
"precodegen": "./scripts/exports_protos.sh",
"codegen": "rm -rf ./src && ./scripts/codegen.js && cp -rf copypaste_files/* ./src/ && npm run format",
"prepare-publishing": "./scripts/prepare-publishing.sh",
"clean": "./scripts/clean.sh",
"build": "rm -rf ./build && tsc && npm run prepare-publishing && npm run clean"
},
"dependencies": {},
"devDependencies": {
"@cosmology/telescope": "^1.5.4",
"@types/node": "^15.6.2",
"@cosmjs/math": "^0.32.4",
"@cosmjs/stargate": "^0.32.4",
"prettier": "^3.0.3",
"typescript": "~5.2"
}
}