fix npm exports

This commit is contained in:
ading2210 2024-03-20 14:36:55 -04:00
parent b40a776e26
commit 7284487430
2 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,8 @@
# Libcurl.js Changelog:
## v0.6.1 (3/20/24):
- Fix NPM package exports
## v0.6.0 (3/20/24):
- Refactor JS and C code
- Allow for multiple sessions with separate connection pools

View file

@ -1,10 +1,11 @@
{
"name": "libcurl.js",
"version": "0.6.0",
"version": "0.6.1",
"description": "An experimental port of libcurl to WebAssembly for use in the browser.",
"main": "libcurl.mjs",
"exports": {
"bundled": "./libcurl_full.mjs"
".": "./libcurl.mjs",
"./bundled": "./libcurl_full.mjs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"