-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
55 lines (55 loc) · 1.28 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
{
"name": "@loopring-web/web3-provider",
"version": "1.4.16",
"main": "dist/index.js",
"private": false,
"typings": "dist/index.d.ts",
"module": "dist/web3-provider.esm.js",
"files": [
"dist"
],
"engines": {
"node": ">=16.x"
},
"build": {
"files": [
"build/**/*",
"node_modules/**/*"
],
"publish": {
"provider": "custom",
"repo": "https://github.com/Loopring/web3-provider",
"owner": "Loopring Dev Team"
}
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"scripts": {
"compile": "tsc -p tsconfig.json",
"build": "tsdx build",
"prepublishOnly": "NODE_ENV=production tsdx build"
},
"dependencies": {
"@coinbase/wallet-sdk": "^3.7.1",
"@metamask/detect-provider": "^2.0.0",
"@reduxjs/toolkit": "^1.6.1",
"@walletconnect/ethereum-provider": "2.10.6",
"@walletconnect/modal": "2.6.2",
"@walletconnect/universal-provider": "2.10.6",
"ethers": "^5.7.2",
"rxjs": "^7.5.5",
"web3": "^1.10.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@types/node": "^12.0.0",
"@walletconnect/jsonrpc-types": "^1.0.3",
"@walletconnect/types": "^2.1.5",
"build": "tsdx build",
"prettier": "2.8.8",
"tsdx": "^0.14.1"
}
}