Skip to content

Commit

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

* Update readme. Bump version

---------

Co-authored-by: Dimasik Kolezhniuk <[email protected]>
  • Loading branch information
martines3000 and Kolezhniuk authored Mar 25, 2024
1 parent 7244c2e commit f281a11
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 11 deletions.
23 changes: 22 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,23 @@
# js-merkletree
browser compatible SMT implemetation

A browsers compatible TypeScript implementation of a Merkle Tree data structure for efficient and secure data verification and storage. This library is developed and maintained by the Iden3 team

## Installation

```bash
npm install @iden3/js-merkletree
```

For more detailed usage and examples, please refer to the documentation and tests.

## Contributing

We welcome contributions to the js-merkletree library.

## License

This project is licensed under the AGPL-3.0 License.

## Acknowledgments

This library is developed and maintained by the Iden3 team as part of their effort to build a decentralized, privacy-preserving identity management system. Special thanks to all the contributors and the open-source community for their support.
12 changes: 6 additions & 6 deletions package-lock.json

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

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "@iden3/js-merkletree",
"version": "1.1.2",
"version": "1.2.0",
"description": "javascript sparse merkle tree library",
"typings": "dist/types/index.d.ts",
"types": "dist/types/index.d.ts",
"main": "dist/node/cjs/index.js",
"module": "dist/node/esm/index.js",
"source": "./src/index.ts",
Expand All @@ -13,7 +13,8 @@
"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"
}
},
"files": [
Expand Down Expand Up @@ -82,7 +83,7 @@
"typescript": "^4.8.4"
},
"peerDependencies": {
"@iden3/js-crypto": "1.0.3",
"@iden3/js-crypto": "1.1.0",
"idb-keyval": "^6.2.0"
}
}

0 comments on commit f281a11

Please sign in to comment.