-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.35 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
{
"name": "@aut-labs/connector",
"version": "0.0.205",
"description": "Learning how to create React modules using TypeScript!",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"license": "MIT",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "./node_modules/typescript/bin/tsc",
"build:cjs": "./node_modules/typescript/bin/tsc --module commonjs --outDir lib/cjs",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@mui/icons-material": "^5.15.7",
"@mui/material": "^5.15.7",
"ethers": "^6.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"viem": "^2.21.11",
"wagmi": "^2.12.13"
},
"devDependencies": {
"@mui/icons-material": "^5.15.7",
"@mui/material": "^5.15.7",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"ethers": "^6.13.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.4",
"viem": "^2.21.11",
"wagmi": "^2.12.13"
},
"files": [
"/lib"
],
"dependencies": {
"@web3auth/base": "^8.0.0",
"@web3auth/ethereum-provider": "^8.0.1",
"@web3auth/modal": "^8.0.1",
"@web3auth/openlogin-adapter": "^8.0.1",
"@web3auth/wallet-services-plugin": "^8.0.1",
"@web3auth/web3auth-wagmi-connector": "^6.0.0",
"siwe": "^2.3.2"
}
}