Skip to content

Commit

Permalink
fix(compress-stringify): Fix package.json bundle paths for org
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex committed Mar 2, 2023
1 parent dc3b5ea commit 512d88a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/compress-stringify/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "@itk-wasm/compress-stringify",
"version": "0.4.1",
"version": "0.4.2",
"description": "Zstandard compression and decompression and base64 encoding and decoding in WebAssembly.",
"type": "module",
"module": "./dist/bundles/@itk-wasm/compress-stringify.js",
"module": "./dist/bundles/compress-stringify.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"browser": "./dist/bundles/@itk-wasm/compress-stringify.js",
"node": "./dist/@itk-wasm/compress-stringify.node.js",
"default": "./dist/bundles/@itk-wasm/compress-stringify.js"
"browser": "./dist/bundles/compress-stringify.js",
"node": "./dist/compress-stringify.node.js",
"default": "./dist/bundles/compress-stringify.js"
}
},
"scripts": {
Expand Down

0 comments on commit 512d88a

Please sign in to comment.