UNPKG

@bitgo/secp256k1

Version:

Low-level cryptographic methods used in BitGo packages for the secp256k1 curve

57 lines (56 loc) 1.35 kB
{ "name": "@bitgo/secp256k1", "version": "1.3.3", "description": "Low-level cryptographic methods used in BitGo packages for the secp256k1 curve", "main": "./dist/src/index.js", "engines": { "node": ">=10.22.0 <21", "npm": ">=3.10.10" }, "keywords": [ "bitgo", "ecc", "bip32", "musig", "musig2" ], "scripts": { "prepare": "npm run build", "build": "yarn tsc --build --incremental --verbose .", "unit-test": "mocha --recursive test", "lint": "eslint --quiet .", "fmt": "prettier --write '{src,test}/**/*.{ts,js}'", "precommit": "yarn lint-staged" }, "repository": { "type": "git", "url": "https://github.com/BitGo/BitGoJS.git", "directory": "modules/crypto" }, "files": [ "dist/src" ], "dependencies": { "@brandonblack/musig": "^0.0.1-alpha.0", "@noble/secp256k1": "1.6.3", "bip32": "^3.0.1", "create-hash": "^1.2.0", "create-hmac": "^1.1.7", "ecpair": "npm:@bitgo/ecpair@2.1.0-rc.0" }, "devDependencies": { "@types/node": "^16.18.46" }, "lint-staged": { "*.{js,ts}": [ "yarn prettier --write", "yarn eslint --fix" ] }, "publishConfig": { "access": "public" }, "author": "BitGo SDK Team <sdkteam@bitgo.com>", "license": "MIT", "gitHead": "52a2157ce9ebd8bb0294609693a5724d6c24b8a9" }