generic-filehandle2 2.1.5 → 2.1.7
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/package.json +5 -1
package/package.json
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "generic-filehandle2",
|
|
3
3
|
"description": "uniform interface for accessing binary data from local files, remote HTTP resources, and browser Blob data",
|
|
4
|
-
"version": "2.1.
|
|
4
|
+
"version": "2.1.7",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"exports": {
|
|
8
|
+
"browser": {
|
|
9
|
+
"import": "./esm/browser.js",
|
|
10
|
+
"require": "./dist/browser.js"
|
|
11
|
+
},
|
|
8
12
|
"import": "./esm/index.js",
|
|
9
13
|
"require": "./dist/index.js"
|
|
10
14
|
},
|