8000
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 dedbd82 commit 75e2511Copy full SHA for 75e2511
packages/ipfs-unixfs-importer/package.json
@@ -1,9 +1,13 @@
1
{
2
- "name": "ipfs-unixfs-importer",
3
- "version": "8.0.0",
+ "name": "@vascosantos/ipfs-unixfs-importer",
+ "version": "0.0.11",
4
"description": "JavaScript implementation of the UnixFs importer used by IPFS",
5
"leadMaintainer": "Alex Potsides <alex.potsides@protocol.ai>",
6
"main": "src/index.js",
7
+ "exports": {
8
+ "import": "./src/wrapper.mjs",
9
+ "require": "./src/index.js"
10
+ },
11
"browser": {
12
"fs": false
13
},
packages/ipfs-unixfs-importer/src/wrapper.mjs
@@ -0,0 +1,2 @@
+import { importer } from './index.js'
+export { importer }
0 commit comments