This repository has been archived by the owner on Jan 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.37 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
{
"name": "walletconnect-hedera",
"version": "1.0.0-rc-2",
"description": "A library to facilitate integrating Hedera with WalletConnect",
"repository": {
"type": "git",
"url": "git+https://github.com/hgraph-io/hedera-walletconnect-utils.git"
},
"main": "./dist/node-cjs.js",
"module": "./dist/node-esm.js",
"browser": {
"./dist/node-cjs.js": "./dist/browser-cjs.js",
"./dist/node-esm.js": "./dist/browser-esm.js"
},
"types": "./dist/types/index.d.ts",
"author": "Hgraph <[email protected]>",
"keywords": [
"hedera",
"walletconnect",
"hashgraph"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.5.3",
"@walletconnect/modal": "^2.6.2",
"@walletconnect/sign-client": "^2.10.4",
"@walletconnect/types": "^2.9.2",
"concurrently": "^8.2.2",
"esbuild": "^0.19.5",
"esbuild-plugin-copy": "^2.1.1",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"lokijs": "^1.5.12",
"nodemon": "^3.0.1",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typedoc": "^0.25.4",
"typedoc-theme-hierarchy": "^4.1.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@hashgraph/sdk": "^2.37.0",
"@hashgraph/walletconnect": "file:./",
"@walletconnect/qrcode-modal": "^1.8.0",
"@walletconnect/types": "^2.10.0",
"@walletconnect/utils": "^2.10.0",
"@walletconnect/web3wallet": "^1.9.3",
"web3-utils": "^4.0.7"
},
"scripts": {
"build": "npm run build:types && node scripts/lib/build.mjs",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationMap --outDir dist/types",
"build:example": "node scripts/examples/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\"",
"test": "jest",
"test:connect": "jest --testMatch '**/DAppConnector.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"
}
}