-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix/CON-522
- Loading branch information
Showing
15 changed files
with
2,338 additions
and
475 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ dist | |
*.sw[a-z] | ||
**/.idea | ||
.docusaurus** | ||
.DS_Store | ||
.DS_Store | ||
coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"name": "@hashgraph/hedera-wallet-connect", | ||
"version": "1.3.5", | ||
"version": "1.3.7", | ||
"description": "A library to facilitate integrating Hedera with WalletConnect", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/hashgraph/hedera-wallet-connect.git" | ||
}, | ||
"main": "./dist/src/index.js", | ||
"types": "./dist/src/index.d.ts", | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"author": "Hgraph <[email protected]>", | ||
"keywords": [ | ||
"hedera", | ||
|
@@ -32,6 +32,7 @@ | |
"husky": "^9.0.6", | ||
"jest": "^29.7.0", | ||
"lint-staged": "^15.1.0", | ||
"long": "^5.2.3", | ||
"lokijs": "^1.5.12", | ||
"nodemon": "^3.0.3", | ||
"prettier": "^3.2.4", | ||
|
@@ -54,14 +55,17 @@ | |
"dev:ts-demo": "rimraf dist && npm run build && concurrently --raw \"npm run watch\" \"node scripts/demos/typescript/dev.mjs\"", | ||
"dev:react-demo": "rimraf dist && npm run build && concurrently --raw \"npm run watch\" \"node scripts/demos/react/dev.mjs\"", | ||
"test": "jest", | ||
"test:watch": "jest --watch", | ||
"test:connect": "jest --testMatch '**/DAppConnector.test.ts' --verbose", | ||
"test:signer": "jest --testMatch '**/DAppSigner.test.ts' --verbose", | ||
"prepublishOnly": "rm -Rf dist && npm run build", | ||
"prepare": "husky install", | ||
"prettier:check": "prettier --check ./src/", | ||
"prettier:fix": "prettier --write ./src/", | ||
"prod:docs-docker": "sh docker-run.sh", | ||
"test:sigMap": "jest --testMatch '**/SignatureMapHelpers.test.ts' --verbose" | ||
"test:sigMap": "jest --testMatch '**/SignatureMapHelpers.test.ts' --verbose", | ||
"test:coverage": "jest --coverage", | ||
"test:coverage:html": "jest --coverage --coverageReporters='text-summary' --coverageReporters='html'" | ||
}, | ||
"peerDependencies": { | ||
"@hashgraph/sdk": "^2.40.0", | ||
|
Oops, something went wrong.