forked from tkhq/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.18 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": "@turnkey/cosmjs",
"version": "0.4.10",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
"description": "Turnkey Cosmos Signer for CosmJS",
"keywords": [
"Turnkey",
"Cosmos",
"CosmJS"
],
"author": {
"name": "Turnkey",
"url": "https://turnkey.com/"
},
"homepage": "https://github.com/tkhq/sdk",
"bugs": {
"url": "https://github.com/tkhq/sdk/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tkhq/sdk.git",
"directory": "packages/cosmjs"
},
"files": [
"dist/",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublishOnly": "pnpm -w run clean-all && pnpm -w run build-all",
"build": "tsc",
"clean": "rimraf ./dist ./.cache",
"test": "jest --passWithNoTests",
"typecheck": "tsc -p tsconfig.typecheck.json"
},
"dependencies": {
"@cosmjs/amino": "^0.31.0",
"@cosmjs/crypto": "^0.31.0",
"@cosmjs/encoding": "^0.31.0",
"@cosmjs/proto-signing": "^0.31.0",
"@turnkey/http": "workspace:*"
},
"devDependencies": {
"cosmjs-types": "^0.8.0"
},
"engines": {
"node": ">=16.0.0"
}
}