-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
{
"name": "chain-handler",
"version": "0.7.0",
"description": "This is the operation library of Smart Contract and Wallet.",
"keywords": [
"ethers",
"ethereum",
"web3",
"metamask",
"walletconnect"
],
"main": "lib/bundle.cjs.js",
"module": "lib/bundle.esm.js",
"browser": "lib/bundle.browser.js",
"types": "types/index.d.ts",
"author": "MarkTang <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/MarkTangCd/chain-handler",
"repository": {
"type": "git",
"url": "git+https://github.com/MarkTangCd/chain-handler.git"
},
"bugs": {
"url": "https://github.com/MarkTangCd/chain-handler/issues"
},
"scripts": {
"build": "rollup -c",
"build:types": "tsc"
},
"dependencies": {
"@coinbase/wallet-sdk": "^3.1.0",
"@walletconnect/utils": "^1.7.1",
"@walletconnect/web3-provider": "^1.6.5",
"ethereumjs-util": "^7.1.3",
"ethers": "^5.4.6"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"rollup": "^2.64.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
}
}