Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bip32

Package Overview
Dependencies
Maintainers
0
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bip32 - npm Package Compare versions

Comparing version 4.0.0 to 5.0.0-rc.0

src/cjs/bip32.cjs

39

package.json
{
"name": "bip32",
"version": "4.0.0",
"version": "5.0.0-rc.0",
"type": "module",
"description": "A BIP32 compatible library",

@@ -11,9 +12,18 @@ "keywords": [

],
"main": "./src/index.js",
"types": "./types/index.d.ts",
"main": "./src/cjs/index.cjs",
"module": "./src/esm/index.js",
"types": "./src/cjs/index.d.ts",
"exports": {
".": {
"require": "./src/cjs/index.cjs",
"import": "./src/esm/index.js",
"types": "./src/cjs/index.d.ts"
}
},
"engines": {
"node": ">=6.0.0"
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc -p ./tsconfig.json",
"build": "tsc -p ./tsconfig.json && tsc -p ./tsconfig.cjs.json",
"postbuild": "find src/cjs -type f -name \"*.js\" -exec bash -c 'mv \"$0\" \"${0%.js}.cjs\"' {} \\; && chmod +x fixup.cjs && node fixup.cjs",
"coverage-report": "npm run build && npm run nobuild:coverage-report",

@@ -25,4 +35,4 @@ "coverage": "npm run build && npm run nobuild:coverage",

"lint": "tslint -p tsconfig.json -c tslint.json",
"nobuild:coverage-report": "nyc report --reporter=lcov",
"nobuild:coverage": "nyc --check-coverage --branches 90 --functions 90 npm run nobuild:unit",
"nobuild:coverage-report": "c8 report --reporter=lcov",
"nobuild:coverage": "c8 --check-coverage --branches 90 --functions 90 npm run nobuild:unit",
"nobuild:unit": "tape test/*.js",

@@ -38,4 +48,3 @@ "prettier": "prettier 'ts-src/**/*.ts' --ignore-path ./.prettierignore",

"files": [
"src",
"types"
"src"
],

@@ -45,13 +54,15 @@ "dependencies": {

"@scure/base": "^1.1.1",
"typeforce": "^1.11.5",
"wif": "^2.0.6"
"uint8array-tools": "^0.0.8",
"valibot": "^0.37.0",
"wif": "^5.0.0"
},
"devDependencies": {
"@types/node": "18.x",
"nyc": "^15.0.0",
"@types/tape": "^5.6.4",
"c8": "^10.1.2",
"prettier": "1.16.4",
"tape": "^4.13.2",
"tape": "^5.3.0",
"tiny-secp256k1": "^2.2.1",
"tslint": "^6.1.0",
"typescript": "4.7"
"typescript": "^5.0.4"
},

@@ -58,0 +69,0 @@ "author": "Daniel Cousens",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc