threshold-elgamal 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +0 -6
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -17,12 +17,6 @@ The JavaScript/TypeScript ecosystem seems to be lacking in modern, functional El
17
17
  - Support for additive property of exponents, not just native ElGamal multiplication
18
18
  - consider using {} function params for better readability and consistency in param naming
19
19
 
20
- ## Setup
21
-
22
- Ensure you have Node.js installed on your system and then install the required dependencies by running:
23
-
24
- `npm install`
25
-
26
20
  ## Installation
27
21
 
28
22
  To use it in your project, install it first:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "threshold-elgamal",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "author": "Piotr Piech <piotr@piech.dev>",
5
5
  "license": "MIT",
6
6
  "description": "threshold-elgamal",
@@ -26,8 +26,8 @@
26
26
  "test:watch": "vitest --watch=true --reporter=verbose",
27
27
  "pretypedoc": "rimraf docs",
28
28
  "typedoc": "typedoc --plugin typedoc-plugin-markdown src --out docs",
29
- "prepublish": "npm run prebuild",
30
- "publish": "npm publish --access public"
29
+ "prepublish:public": "npm run prebuild",
30
+ "publish:public": "npm publish --access public"
31
31
  },
32
32
  "engines": {
33
33
  "node": ">=20.11.0"