@hashgraph/hedera-wallet-connect
Version:
A library to facilitate integrating Hedera with WalletConnect
82 lines (81 loc) • 2.93 kB
JSON
{
"name": "@hashgraph/hedera-wallet-connect",
"version": "1.5.1",
"description": "A library to facilitate integrating Hedera with WalletConnect",
"repository": {
"type": "git",
"url": "git+https://github.com/hashgraph/hedera-wallet-connect.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "Hgraph <support@hgraph.io>",
"keywords": [
"hedera",
"walletconnect",
"hashgraph"
],
"overrides": {
"elliptic": "6.6.1"
},
"license": "Apache-2.0",
"devDependencies": {
"@hashgraph/hedera-wallet-connect": "^1.5.0",
"@swc/core": "^1.7.40",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.3",
"@types/node": "^22.5.0",
"@types/react-dom": "^19.0.3",
"@walletconnect/modal": "^2.7.0",
"@walletconnect/sign-client": "^2.19.1",
"@walletconnect/types": "^2.19.1",
"concurrently": "^9.0.1",
"esbuild": "^0.25.0",
"esbuild-plugin-copy": "^2.1.1",
"eslint-plugin-tsdoc": "^0.4.0",
"husky": "^9.0.6",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"lokijs": "^1.5.12",
"long": "^5.2.3",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"tweetnacl": "^1.0.3",
"typedoc": "^0.27.6",
"typedoc-theme-hierarchy": "^5.0.0",
"typescript": "^5.2.2"
},
"scripts": {
"build": "rimraf dist && tsc",
"build:ts-demo": "node scripts/demos/typescript/build.mjs",
"build:react-demo": "node scripts/demos/react/build.mjs",
"build:docs": "typedoc --options typedoc.json",
"watch": "nodemon --watch src/lib/ --ext ts --exec \"npm run build\"",
"dev": "npm run dev:ts-demo",
"dev:docs": "cd docs && npm run start",
"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:coverage": "jest --coverage",
"test:coverage:html": "jest --coverage --coverageReporters='text-summary' --coverageReporters='html'"
},
"peerDependencies": {
"@hashgraph/sdk": "^2.61.0",
"@walletconnect/qrcode-modal": "^1.8.0",
"@walletconnect/types": "^2.19.1",
"@walletconnect/utils": "^2.19.1",
"@walletconnect/web3wallet": "^1.16.0"
}
}