-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from bullish-exchange/BULL-44449-pass-hash-as-s…
…tring Bull 44449 pass hash as string
- Loading branch information
Showing
11 changed files
with
6,686 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
{ | ||
"name": "js-signer", | ||
"version": "1.0.11", | ||
"version": "2.0.0", | ||
"description": "This repository provides library to sign any arbitrary message with an Bullish R1 key and produce an Bullish signature", | ||
"main": "dist/index.js", | ||
"module": "dist/index.mjs", | ||
"type": "module", | ||
"main": "dist/index.cjs.js", | ||
"module": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"repository": "https://github.com/bullish-exchange/js-signer", | ||
"author": "Naveen Kumar <[email protected]>", | ||
|
@@ -13,7 +14,7 @@ | |
"dist" | ||
], | ||
"dependencies": { | ||
"bn.js": "5.2.0", | ||
"bn.js": "5.2.1", | ||
"buffer": "^6.0.3", | ||
"elliptic": "^6.5.4", | ||
"hash.js": "^1.1.7", | ||
|
@@ -22,13 +23,14 @@ | |
"devDependencies": { | ||
"@commitlint/cli": "^17.3.0", | ||
"@commitlint/config-conventional": "^17.3.0", | ||
"@rollup/plugin-commonjs": "^23.0.3", | ||
"@types/bn.js": "^5.1.6", | ||
"@types/elliptic": "^6.4.14", | ||
"@types/jest": "^29.2.3", | ||
"@types/node": "^22.10.2", | ||
"@types/ripemd160": "^2.0.0", | ||
"@typescript-eslint/eslint-plugin": "^5.44.0", | ||
"@typescript-eslint/parser": "^5.44.0", | ||
"esbuild": "^0.14.38", | ||
"@typescript-eslint/eslint-plugin": "^8.18.0", | ||
"@typescript-eslint/parser": "^8.18.0", | ||
"esbuild": "^0.24.0", | ||
"eslint": "^8.28.0", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-import": "^2.26.0", | ||
|
@@ -38,22 +40,22 @@ | |
"jest": "^29.3.1", | ||
"lint-staged": "^13.0.4", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "2.8.0", | ||
"rollup": "^2.71.1", | ||
"prettier": "3.4.2", | ||
"rollup": "^4.28.1", | ||
"rollup-plugin-cleaner": "^1.0.0", | ||
"rollup-plugin-dts": "^4.2.1", | ||
"rollup-plugin-esbuild": "^4.9.1", | ||
"rollup-plugin-dts": "^6.1.1", | ||
"rollup-plugin-esbuild": "^6.1.1", | ||
"rollup-plugin-visualizer": "^5.8.3", | ||
"ts-jest": "^29.0.3", | ||
"typescript": "^4.9.3" | ||
"typescript": "^5.7.2" | ||
}, | ||
"engines": { | ||
"node": ">=16.0.0", | ||
"yarn": ">= 1.0.0", | ||
"npm": "Please use Yarn instead of NPM to install dependencies. See: https://yarnpkg.com/lang/en/docs/install/" | ||
}, | ||
"lint-staged": { | ||
"src/**/*.{ts}": [ | ||
"src/**/*.ts": [ | ||
"eslint --fix --max-warnings=0", | ||
"prettier --write --ignore-unknown" | ||
] | ||
|
Oops, something went wrong.