-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "web3-connector",
"version": "v0.3.31",
"description": "This is a tool for connecting Web3 wallets.",
"author": "Thone Liu <[email protected]>",
"homepage": "",
"license": "ISC",
"main": "./dist/index.js",
"exports": [
"./dist/index.js"
],
"types": "./dist/index.d.ts",
"type": "commonjs",
"directories": {},
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"dev": "webpack -c ./webpack.config.js -w",
"build": "webpack -c ./webpack.config.js",
"build:tsc": "rm -rf dist/ && tsc"
},
"dependencies": {
"@suiet/wallet-kit": "^0.2.24",
"@web3-react/core": "^8.2.0",
"@web3-react/metamask": "^8.2.0",
"@web3-react/walletconnect-v2": "^8.3.7"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/react": "16.9.34",
"react": "^16.14.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"webpack": "^5.82.1",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.1.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
}