gun-eth 1.4.19 → 1.4.20

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,7 +1,19 @@
1
1
  {
2
2
  "name": "gun-eth",
3
- "version": "1.4.19",
3
+ "version": "1.4.20",
4
4
  "description": "A GunDB plugin for Ethereum, and Web3",
5
+ "type": "module",
6
+ "main": "dist/gun-eth.cjs.js",
7
+ "module": "dist/gun-eth.esm.js",
8
+ "browser": "dist/gun-eth.min.js",
9
+ "unpkg": "dist/gun-eth.min.js",
10
+ "exports": {
11
+ ".": {
12
+ "import": "./dist/gun-eth.esm.js",
13
+ "require": "./dist/gun-eth.cjs.js",
14
+ "browser": "./dist/gun-eth.min.js"
15
+ }
16
+ },
5
17
  "scripts": {
6
18
  "clean": "rimraf dist",
7
19
  "build": "npm run clean && rollup -c",
@@ -68,5 +80,9 @@
68
80
  "files": [
69
81
  "dist",
70
82
  "src"
71
- ]
83
+ ],
84
+ "peerDependencies": {
85
+ "gun": "^0.2020.1239",
86
+ "ethers": "^6.0.0"
87
+ }
72
88
  }