essential-eth 0.5.10-next.0 → 0.5.10-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2 -0
- package/dist/index.modern.js.map +1 -0
- package/dist/index.module.js +1 -1
- package/dist/index.module.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/logger/package-version.d.ts +1 -1
- package/package.json +28 -12
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "0.5.10-next.
|
|
1
|
+
export declare const version = "0.5.10-next.2";
|
package/package.json
CHANGED
|
@@ -1,17 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "essential-eth",
|
|
3
3
|
"description": "Ultralight JS for Ethereum",
|
|
4
|
-
"version": "0.5.10-next.
|
|
4
|
+
"version": "0.5.10-next.2",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"sideEffects": false,
|
|
7
|
+
"private": false,
|
|
7
8
|
"source": "src/index.ts",
|
|
9
|
+
"main": "./dist/index.js",
|
|
10
|
+
"browser": "./dist/index.umd.js",
|
|
11
|
+
"umd:main": "./dist/index.umd.js",
|
|
12
|
+
"jsnext:main": "./dist/index.modern.js",
|
|
13
|
+
"module": "./dist/index.module.js",
|
|
14
|
+
"syntax": {
|
|
15
|
+
"esmodules": "./dist/index.modern.js"
|
|
16
|
+
},
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"typings": "./dist/index.d.ts",
|
|
8
19
|
"exports": {
|
|
9
|
-
"
|
|
10
|
-
|
|
20
|
+
".": {
|
|
21
|
+
"browser": "./dist/index.module.js",
|
|
22
|
+
"umd": "./dist/index.umd.js",
|
|
23
|
+
"import": "./dist/index.module.js",
|
|
24
|
+
"require": "./dist/index.js"
|
|
25
|
+
}
|
|
11
26
|
},
|
|
12
|
-
"main": "./dist/index.cjs",
|
|
13
|
-
"module": "./dist/index.module.js",
|
|
14
|
-
"unpkg": "./dist/index.umd.js",
|
|
15
27
|
"files": [
|
|
16
28
|
"dist/"
|
|
17
29
|
],
|
|
@@ -31,7 +43,7 @@
|
|
|
31
43
|
"name": "JsonRpcProvider",
|
|
32
44
|
"path": "src/index.ts",
|
|
33
45
|
"import": "{ JsonRpcProvider }",
|
|
34
|
-
"limit": "20.
|
|
46
|
+
"limit": "20.24kb"
|
|
35
47
|
},
|
|
36
48
|
{
|
|
37
49
|
"name": "Contract",
|
|
@@ -42,12 +54,9 @@
|
|
|
42
54
|
],
|
|
43
55
|
"scripts": {
|
|
44
56
|
"size": "size-limit",
|
|
45
|
-
"test": "npm-run-all --parallel jest
|
|
57
|
+
"test": "npm-run-all --parallel jest build lint",
|
|
46
58
|
"test:all-node-versions": "npx trevor",
|
|
47
59
|
"lint": "eslint --cache --fix .",
|
|
48
|
-
"compile": "npm-run-all --parallel tsc:esm tsc:cjs",
|
|
49
|
-
"tsc:esm": "tsc -p tsconfig.json",
|
|
50
|
-
"tsc:cjs": "tsc -p tsconfig-cjs.json",
|
|
51
60
|
"build": "rm -rf lib && microbundle",
|
|
52
61
|
"build:readme": "bash ./scripts/markdown-magic/build-readme.sh",
|
|
53
62
|
"jest": "jest",
|
|
@@ -112,5 +121,12 @@
|
|
|
112
121
|
"trailingComma": "all",
|
|
113
122
|
"tabWidth": 2,
|
|
114
123
|
"singleQuote": true
|
|
115
|
-
}
|
|
124
|
+
},
|
|
125
|
+
"keywords": [
|
|
126
|
+
"ethereum",
|
|
127
|
+
"polygon",
|
|
128
|
+
"evm",
|
|
129
|
+
"web-performance",
|
|
130
|
+
"tiny"
|
|
131
|
+
]
|
|
116
132
|
}
|