-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "web3-signer-provider",
"version": "1.3.6",
"description": "A wallet connect provider in EIP1193",
"main": "lib/index.js",
"type": "lib/index.d.ts",
"author": "Web3 Project Developers",
"scripts": {
"release": "tsc && npm publish && git tag $npm_package_version && git push --tag",
"dev:tsc": "tsc -w -p tsconfig.json",
"link": "sudo npm link web3-signer-provider",
"debug:ts": "ts-node --openssl-legacy-provider",
"debug": "node --require ts-node/register --openssl-legacy-provider"
},
"keywords": [
"wallet",
"walletconnect",
"ethereum",
"jsonrpc",
"mobile",
"qrcode",
"web3",
"crypto",
"cryptocurrency",
"dapp"
],
"repository": {
"type": "git",
"url": "git+https://github.com/web3w/web3-provider.git"
},
"bugs": {
"url": "https://github.com/web3w/web3-provider/issues"
},
"dependencies": {
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/hash": "^5.7.0",
"@ethersproject/keccak256": "^5.7.0",
"@ethersproject/providers": "^5.7.0",
"@ethersproject/signing-key": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"@walletconnect/client": "^1.8.0",
"elliptic": "^6.5.4"
},
"devDependencies": {
"ethers": "^5.7.0",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "4.8.2",
"web3": "^1.7.5"
},
"publishConfig": {
"access": "public"
}
}