-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.59 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.59 KB
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
61
62
63
{
"name": "injective-react",
"version": "1.20.0",
"description": "injective-react is a JavaScript library providing react query hooks for interacting with injective sdk.",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"exports": {
".": {
"import": "./esm/index.js",
"require": "./index.js",
"types": "./index.d.ts"
},
"./*": {
"import": "./esm/*.js",
"require": "./*.js",
"types": "./*.d.ts"
},
"./package.json": "./package.json"
},
"author": "Constructive <developers@constructive.io>",
"homepage": "https://github.com/hyperweb-io/interchainjs",
"repository": {
"type": "git",
"url": "https://github.com/hyperweb-io/interchainjs"
},
"license": "MIT",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"scripts": {
"build": "makage build",
"build:dev": "makage build",
"lint": "eslint . --fix",
"prepack": "makage build"
},
"dependencies": {
"@interchainjs/cosmos": "workspace:*",
"@interchainjs/cosmos-types": "workspace:*",
"@interchainjs/encoding": "workspace:*",
"@interchainjs/math": "workspace:*",
"@interchainjs/pubkey": "workspace:*",
"@interchainjs/types": "workspace:*",
"@interchainjs/utils": "workspace:*",
"@noble/hashes": "^2.0.1",
"decimal.js": "^10.4.3"
},
"devDependencies": {
"@tanstack/react-query": "4.29.1",
"makage": "^0.1.12"
},
"peerDependencies": {
"@tanstack/react-query": "4.29.1"
},
"keywords": [
"cosmos",
"blockchain",
"transaction",
"cosmjs",
"wallet"
]
}