We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e88a82 commit 60bd19dCopy full SHA for 60bd19d
packages/wallet/package.json
@@ -1,6 +1,6 @@
1
{
2
- "name": "ethereumjs-wallet",
3
- "version": "1.0.2",
+ "name": "@ethereumjs/wallet",
+ "version": "2.0.0",
4
"description": "Utilities for handling Ethereum keys",
5
"keywords": [
6
"ethereum",
@@ -17,13 +17,17 @@
17
},
18
"license": "MIT",
19
"author": "Alex Beregszaszi <[email protected]>",
20
- "main": "dist/index.js",
21
- "types": "dist/index.d.ts",
22
- "browser": "dist.browser/index.js",
+ "main": "dist/cjs/index.js",
+ "module": "dist/esm/index.js",
+ "exports": {
23
+ ".": {
24
+ "import": "./dist/esm/index.js",
25
+ "require": "./dist/cjs/index.js"
26
+ }
27
+ },
28
"files": [
29
"src",
- "dist",
- "dist.browser"
30
+ "dist"
31
],
32
"scripts": {
33
"build": "../../config/cli/ts-build.sh",
0 commit comments