forked from reown-com/appkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.29 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
{
"name": "@web3modal/react",
"version": "2.0.0-alpha.7",
"main": "dist/index.js",
"unpkg": "dist/index.umd.js",
"type": "module",
"types": "dist/_types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build:clean": "rm -rf dist",
"build:types": "tsc --emitDeclarationOnly",
"build:source": "rollup --silent --config rollup.config.js",
"build": "npm run build:clean; npm run build:types; npm run build:source",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@web3modal/core": "2.0.0-alpha.7",
"@web3modal/ui": "2.0.0-alpha.7"
},
"devDependencies": {
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-react-hooks": "4.6.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"keywords": [
"web3",
"crypto",
"ethereum",
"web3modal",
"walletconnect",
"web3auth",
"react"
],
"author": "WalletConnect <walletconnect.com>",
"license": "Apache-2.0",
"homepage": "https://github.com/web3modal/web3modal",
"repository": {
"type": "git",
"url": "git+https://github.com/web3modal/web3modal.git"
},
"bugs": {
"url": "https://github.com/web3modal/web3modal/issues"
}
}