Skip to content

Commit

Permalink
Merge pull request #9 from bullish-exchange/BULL-44449-pass-hash-as-s…
Browse files Browse the repository at this point in the history
…tring

Bull 44449 pass hash as string
  • Loading branch information
dominictobias authored Dec 13, 2024
2 parents 79a4f33 + 4d4944d commit e4ec111
Show file tree
Hide file tree
Showing 11 changed files with 6,686 additions and 121 deletions.
13 changes: 3 additions & 10 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,24 +39,17 @@
}
],
"ignorePatterns": ["dist/*"],
"env": { "es6": true, "node": true },
"env": { "es2023": true, "node": true },
"rules": {
"no-undef": "error",
"@typescript-eslint/no-duplicate-imports": "warn",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/member-delimiter-style": [
"error",
{
"multiline": {
"delimiter": "none"
}
}
],
"@typescript-eslint/no-unused-vars": ["error", { "caughtErrors": "none" }],
"camelcase": "off",
"semi": [2, "never"],
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-unsafe-enum-comparison": "off",
"@typescript-eslint/no-explicit-any": "off",
"simple-import-sort/exports": "warn",
"simple-import-sort/imports": [
Expand Down
30 changes: 16 additions & 14 deletions package.json
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]>",
Expand All @@ -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",
Expand All @@ -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",
Expand All @@ -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"
]
Expand Down
Loading

0 comments on commit e4ec111

Please sign in to comment.