-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.59 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
{
"name": "@cryptech/cosmos-client",
"version": "2.3.3",
"description": "A Typescript Cosmos client compatible with Injective and @cosmjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"format": "prettier --write \"./src/**/*.ts\" \"./tests/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cryptechdev/cosmos-client.git"
},
"author": "Mat <[email protected]>",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^18.7.23",
"dotenv": "^16.0.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.8.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@cosmjs/amino": "^0.30",
"@cosmjs/cosmwasm-stargate": "^0.30",
"@cosmjs/crypto": "^0.30",
"@cosmjs/encoding": "^0.30",
"@cosmjs/proto-signing": "^0.30",
"@cosmjs/stargate": "^0.30",
"@cosmjs/tendermint-rpc": "^0.30",
"@injectivelabs/sdk-ts": "^1.12.0-beta.89",
"axios": "^0.27.2",
"chain-registry": "^1.14.0",
"decimal.js": "^10.4.3",
"ts-retry": "^4.2.3"
},
"prettier": {
"printWidth": 120,
"trailingComma": "all",
"singleQuote": false
}
}