-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
76 lines (76 loc) · 2.76 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
70
71
72
73
74
75
76
{
"name": "@hashgraph/hedera-wallet-connect",
"version": "1.3.6",
"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 <[email protected]>",
"keywords": [
"hedera",
"walletconnect",
"hashgraph"
],
"license": "Apache-2.0",
"devDependencies": {
"@hashgraph/hedera-wallet-connect": "^1.3.4",
"@swc/core": "^1.7.40",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.3",
"@types/node": "^22.5.0",
"@types/react-dom": "^18.2.21",
"@walletconnect/modal": "^2.7.0",
"@walletconnect/sign-client": "^2.17.0",
"@walletconnect/types": "^2.17.0",
"concurrently": "^9.0.1",
"esbuild": "^0.24.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",
"long": "^5.2.3",
"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-node": "^10.9.2",
"typedoc": "^0.26.3",
"typedoc-theme-hierarchy": "^4.1.2",
"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: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.40.0",
"@walletconnect/qrcode-modal": "^1.8.0",
"@walletconnect/types": "^2.17.0",
"@walletconnect/utils": "^2.17.0",
"@walletconnect/web3wallet": "^1.16.0"
}
}