Skip to content

Commit

Permalink
fix: improve types exports in package.json (#18)
Browse files Browse the repository at this point in the history
* fix: improve types exports in package.json

* Bump version

---------

Co-authored-by: Dimasik Kolezhniuk <d.kolezhiniyk@gmail.com>
  • Loading branch information
martines3000 and Kolezhniuk committed Mar 25, 2024
1 parent 15c28bc commit 8b79955
Show file tree
Hide file tree
Showing 2 changed files with 105 additions and 77 deletions.
175 changes: 101 additions & 74 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@iden3/js-crypto",
"version": "1.0.3",
"version": "1.1.0",
"description": "Crypto primitives for iden3",
"source": "./src/index.ts",
"exports": {
Expand All @@ -10,10 +10,11 @@
"require": "./dist/node/cjs/index.js"
},
"browser": "./dist/browser/esm/index.js",
"umd": "./dist/browser/umd/index.js"
"umd": "./dist/browser/umd/index.js",
"types": "./dist/types/index.d.ts"
}
},
"typings": "dist/types/index.d.ts",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
Expand Down

0 comments on commit 8b79955

Please sign in to comment.