diff --git a/README.md b/README.md index 7253c05..c014f40 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# @nilajs/digital-signature +# nilajs-digital-signature A digital signature is a cryptographic mechanism used to verify the authenticity and integrity of digital messages or documents. It provides assurances that the message was indeed created by a particular entity (authentication) and that the message has not been altered or tampered with since it was signed (integrity). @@ -9,7 +9,7 @@ A simple library for generating elliptic curve (secp256k1) key pairs, signing da You can install the package via npm: ```sh -npm install @nilajs/digital-signature +npm install nilajs-digital-signature ``` ## Usage @@ -22,7 +22,7 @@ const { checkPublicKeyValid, signData, verifySignature -} = require('@nilajs/digital-signature'); +} = require('nilajs-digital-signature'); ``` ### Generate Wallet diff --git a/package.json b/package.json index d4bd668..c932754 100644 --- a/package.json +++ b/package.json @@ -1,15 +1,24 @@ { - "name": "@nilajs/digital-signature", + "name": "nilajs-digital-signature", "version": "1.0.0", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, + "private": false, "keywords": ["blockchain", "digital signature"], "author": "sivabharathy ", "license": "MIT", - "description": "", + "description": "A simple library for generating elliptic curve (secp256k1) key pairs, digital signature, signing data, verifying signatures, and validating public keys.", "dependencies": { "elliptic": "^6.5.5" - } + }, + "repository": { + "type": "git", + "url": "git+https://github.com/gotocva/nilajs-digital-signature.git" + }, + "bugs": { + "url": "https://github.com/gotocva/nilajs-digital-signature/issues" + }, + "homepage": "https://github.com/gotocva/nilajs-digital-signature#readme" }