forked from Web3Auth/web3auth-wagmi-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.3 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@web3auth/web3auth-wagmi-connector",
"version": "1.0.0",
"description": "wagmi connector to connect with web3auth SDK",
"main": "dist/web3authWagmiConnector.cjs.js",
"module": "dist/web3authWagmiConnector.esm.js",
"unpkg": "dist/web3authWagmiConnector.umd.min.js",
"jsdelivr": "dist/web3authWagmiConnector.umd.min.js",
"types": "dist/types/index.d.ts",
"repository": "",
"license": "MIT",
"keywords": [],
"scripts": {
"dev": "torus-scripts start",
"build": "torus-scripts build",
"release": "torus-scripts release",
"lint": "eslint --fix 'src/**/*.ts'",
"prepack": "yarn run build",
"pre-commit": "lint-staged --cwd ."
},
"dependencies": {
"@changesets/cli": "^2.24.4",
"@toruslabs/openlogin-jrpc": "^2.6.0",
"@wagmi/core": "^0.5.7",
"@web3auth/base": "^2.1.2",
"@web3auth/core": "^2.1.2",
"@web3auth/openlogin-adapter": "^2.1.2",
"@web3auth/ui": "^2.1.2",
"lodash-es": "^4.17.21",
"loglevel": "^1.8.0"
},
"devDependencies": {
"@toruslabs/eslint-config-typescript": "^1.1.0",
"@toruslabs/openlogin": "^2.6.0",
"@toruslabs/torus-scripts": "^1.1.1",
"@types/node": "^16",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@wagmi/core": "^0.5.7",
"changeset": "^0.2.6",
"cross-env": "^7.0.3",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"ethers": "^5.7.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"tslib": "^2.4.0",
"typescript": "^4.8.3"
},
"peerDependencies": {
"ethers": "^5.7.1"
},
"lint-staged": {
"!(*d).ts": [
"eslint --cache --fix",
"prettier --write"
]
},
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.17.0",
"npm": ">=6.x"
}
}