-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (60 loc) · 1.52 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
60
{
"name": "@shapeshiftoss/proto-tx-builder",
"version": "0.8.0",
"description": "Builds and signs new-style protobuf SIGN_MODE_DIRECT Cosmos SDK transactions",
"author": "ShapeShift DAO",
"license": "MIT",
"homepage": "https://github.com/shapeshift/proto-tx-builder",
"repository": {
"type": "git",
"url": "https://github.com/shapeshift/proto-tx-builder.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "npm run build && jest --verbose",
"test-debug": "npm run build && jest --verbose",
"coverage": "jest --coverage",
"build": "tsc -p .",
"prepublish": "npm run build"
},
"devDependencies": {
"@types/bn.js": "^5.1.1",
"@types/glob": "^7.2.0",
"@types/google-protobuf": "^3.15.2",
"@types/jest": "^26.0.22",
"@types/node": "^15.0.2",
"glob": "^7.2.0",
"jest": "^26.6.3",
"prettier": "^2.5.1",
"ts-jest": "^26.5.5",
"ts-proto": "^1.110.0",
"typescript": "^4.2.4"
},
"dependencies": {
"@cosmjs/amino": "^0.29.4",
"@cosmjs/crypto": "0.29.4",
"@cosmjs/encoding": "^0.29.4",
"@cosmjs/proto-signing": "^0.29.4",
"@cosmjs/stargate": "^0.29.4",
"bn.js": "^5.2.1",
"cosmjs-types": "^0.5.1",
"google-protobuf": "^3.17.0",
"osmojs": "^0.37.0"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"semi": false,
"overrides": [
{
"files": [
"*.json"
],
"options": {
"singleQuote": false
}
}
]
}
}