@xpla/xpla-react 1.7.0-beta.11 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/package.json +50 -0
  2. package/package.json +8 -9
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@xpla/xpla-react",
3
+ "version": "1.7.0",
4
+ "description": "xpla-react is a JavaScript library providing react query hooks for interacting with xpla sdk.",
5
+ "main": "index.js",
6
+ "module": "esm/index.js",
7
+ "types": "index.d.ts",
8
+ "author": "Joowon Yun <joowon@delightlabs.io>",
9
+ "homepage": "https://github.com/xpladev/xplajs",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/xpladev/xplajs"
13
+ },
14
+ "license": "MIT",
15
+ "publishConfig": {
16
+ "access": "public",
17
+ "directory": "dist"
18
+ },
19
+ "scripts": {
20
+ "copy": "copyfiles -f README.md package.json dist",
21
+ "clean": "rimraf dist/**",
22
+ "build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
23
+ "build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json",
24
+ "lint": "eslint . --fix",
25
+ "prepare": "npm run build"
26
+ },
27
+ "dependencies": {
28
+ "@interchainjs/cosmos": "^1.9.14",
29
+ "@interchainjs/cosmos-types": "^1.9.14",
30
+ "@interchainjs/encoding": "^1.9.14",
31
+ "@interchainjs/pubkey": "^1.9.14",
32
+ "@interchainjs/types": "^1.9.14",
33
+ "@interchainjs/utils": "^1.9.14",
34
+ "@noble/hashes": "^1.3.1",
35
+ "decimal.js": "^10.4.3"
36
+ },
37
+ "devDependencies": {
38
+ "@tanstack/react-query": "4.29.1"
39
+ },
40
+ "peerDependencies": {
41
+ "@tanstack/react-query": "4.29.1"
42
+ },
43
+ "keywords": [
44
+ "cosmos",
45
+ "blockchain",
46
+ "transaction",
47
+ "cosmjs",
48
+ "wallet"
49
+ ]
50
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xpla/xpla-react",
3
- "version": "1.7.0-beta.11",
3
+ "version": "1.7.0",
4
4
  "description": "xpla-react is a JavaScript library providing react query hooks for interacting with xpla sdk.",
5
5
  "main": "index.js",
6
6
  "module": "esm/index.js",
@@ -25,12 +25,12 @@
25
25
  "prepare": "npm run build"
26
26
  },
27
27
  "dependencies": {
28
- "@interchainjs/cosmos": "1.9.14",
29
- "@interchainjs/cosmos-types": "1.9.14",
30
- "@interchainjs/encoding": "1.9.14",
31
- "@interchainjs/pubkey": "1.9.14",
32
- "@interchainjs/types": "1.9.14",
33
- "@interchainjs/utils": "1.9.14",
28
+ "@interchainjs/cosmos": "^1.9.14",
29
+ "@interchainjs/cosmos-types": "^1.9.14",
30
+ "@interchainjs/encoding": "^1.9.14",
31
+ "@interchainjs/pubkey": "^1.9.14",
32
+ "@interchainjs/types": "^1.9.14",
33
+ "@interchainjs/utils": "^1.9.14",
34
34
  "@noble/hashes": "^1.3.1",
35
35
  "decimal.js": "^10.4.3"
36
36
  },
@@ -46,6 +46,5 @@
46
46
  "transaction",
47
47
  "cosmjs",
48
48
  "wallet"
49
- ],
50
- "gitHead": "5423e6cab444928262bd4f453e2b390bbb61028b"
49
+ ]
51
50
  }