@hashgraphonline/hashinal-wc 1.0.64 → 1.0.65

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/README.md +2 -1
  2. package/package.json +9 -3
package/README.md CHANGED
@@ -26,7 +26,7 @@ This SDK provides a simple interface for interacting with the Hedera Hashgraph u
26
26
  No installation needed. Reference the script directly in your HTML:
27
27
 
28
28
  ```html
29
- <script data-src="hcs://1/0.0.7111719" data-script-id="wallet-connect"></script>
29
+ <script data-src="hcs://1/0.0.7153927" data-script-id="wallet-connect"></script>
30
30
  ```
31
31
 
32
32
  ### For NPM projects (ESM)
@@ -528,6 +528,7 @@ Version 1.0.58 and onward correlate with the NPM Package version.
528
528
  | v1.0.4 | 0.0.6843009 | UMD |
529
529
  | v1.0.58 | 0.0.7001143 | UMD |
530
530
  | v1.0.62 | 0.0.7111719 | UMD |
531
+ | v1.0.64 | 0.0.7153927 | UMD |
531
532
 
532
533
  ## Contributing
533
534
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hashgraphonline/hashinal-wc",
3
- "version": "1.0.64",
3
+ "version": "1.0.65",
4
4
  "description": "The official Hashinal Wallet Connect SDK. A set of easy-to-use functions to interact with Hedera through Wallet Connect.",
5
5
  "type": "module",
6
6
  "files": [
@@ -10,8 +10,14 @@
10
10
  "module": "./dist/es/hashinal-wc.es.js",
11
11
  "exports": {
12
12
  ".": {
13
- "import": "./dist/es/hashinal-wc.es.js",
14
- "require": "./dist/umd/hashinal-wc.umd.js"
13
+ "import": {
14
+ "types": "./dist/index.d.ts",
15
+ "default": "./dist/es/hashinal-wc.es.js"
16
+ },
17
+ "require": {
18
+ "types": "./dist/index.d.ts",
19
+ "default": "./dist/umd/hashinal-wc.umd.js"
20
+ }
15
21
  }
16
22
  },
17
23
  "types": "./dist/index.d.ts",