forked from hashgraph/hedera-wallet-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.41 KB
/
package.json
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
64
65
66
67
68
69
{
"name": "@hashgraph/hedera-wallet-connect",
"version": "1.3.2",
"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",
"author": "Hgraph <support@hgraph.io>",
"keywords": [
"hedera",
"walletconnect",
"hashgraph"
],
"license": "Apache-2.0",
"devDependencies": {
"@hashgraph/hedera-wallet-connect": "^1.3.1",
"@types/jest": "^29.5.3",
"@types/node": "^20.11.10",
"@types/react-dom": "^18.2.21",
"@walletconnect/modal": "^2.6.2",
"@walletconnect/sign-client": "^2.11.0",
"@walletconnect/types": "^2.11.0",
"concurrently": "^8.2.2",
"esbuild": "^0.23.0",
"esbuild-plugin-copy": "^2.1.1",
"eslint-plugin-tsdoc": "^0.3.0",
"husky": "^9.0.6",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"lokijs": "^1.5.12",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.26.3",
"typedoc-theme-hierarchy": "^4.1.2",
"typescript": "^5.2.2"
},
"scripts": {
"build": "rimraf dist && tsc",
"build:example": "node scripts/examples/build.mjs",
"build:demos": "node scripts/demos/build.mjs",
"build:docs": "typedoc --options typedoc.json",
"watch": "nodemon --watch src/lib/ --ext ts --exec \"npm run build\"",
"dev": "rimraf dist && npm run build && concurrently --raw \"npm run watch\" \"node scripts/examples/dev.mjs\"",
"dev:demos": "rimraf dist && npm run build && concurrently --raw \"npm run watch\" \"node scripts/demos/dev.mjs\"",
"test": "jest",
"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/",
"test:sigMap": "jest --testMatch '**/SignatureMapHelpers.test.ts' --verbose"
},
"peerDependencies": {
"@hashgraph/sdk": "^2.40.0",
"@walletconnect/qrcode-modal": "^1.8.0",
"@walletconnect/types": "^2.11.0",
"@walletconnect/utils": "^2.11.0",
"@walletconnect/web3wallet": "^1.9.3"
}
}