This is an interesting one! It looks like @ungap/weakmap has an incorrectly formatted "exports" map in its package.json:
```
"exports": {
"import": "./esm/index.js",
"default": "./cjs/index.js"
}
```
Should be:
```
"exports": {
".": {
"import": "./esm/index.js",
"default": "./cjs/index.js"
}
}
```
Same goes for all the other @ungap packages. I wonder if we should just ignore an exports map if we detect that it's broken or incorrectly formatted.
Thank you so much for this notebook! You've opened my eyes to a new world of opportunities here. And having other sites like jsdelivr as well is cool Fabian.