-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 762 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 762 Bytes
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
{
"name": "@web3-react/eip1193",
"keywords": [
"web3-react",
"eip1193"
],
"author": "Noah Zinsmeister <[email protected]>",
"license": "GPL-3.0-or-later",
"repository": "github:Uniswap/web3-react",
"publishConfig": {
"access": "public"
},
"version": "8.1.0-beta.0",
"files": [
"dist/*"
],
"type": "commonjs",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"start": "tsc --watch"
},
"dependencies": {
"@web3-react/types": "^8.1.0-beta.0"
},
"devDependencies": {
"@ethersproject/experimental": "^5.6.0",
"@ethersproject/providers": "^5.6.0",
"@web3-react/store": "^8.1.0-beta.0"
}
}