Skip to content

Commit

Permalink
Bump curves, hashes and jsbt
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmillr committed Sep 3, 2024
1 parent d995bbd commit 04a406e
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 35 deletions.
10 changes: 5 additions & 5 deletions build/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 20 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 8 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,21 @@
"description": "Secure, audited & minimal implementation of BIP32 hierarchical deterministic (HD) wallets over secp256k1",
"files": [
"index.ts",
"lib/index.js",
"lib/index.d.ts",
"lib/index.js.map",
"lib/esm/package.json",
"lib/esm/index.js",
"lib/esm/index.js.map"
"./lib"
],
"main": "lib/index.js",
"module": "lib/esm/index.js",
"types": "lib/index.d.ts",
"main": "./lib/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/esm/index.js",
"default": "./lib/index.js"
"require": "./lib/index.js"
}
},
"dependencies": {
"@noble/curves": "~1.4.0",
"@noble/hashes": "~1.4.0",
"@scure/base": "~1.1.6"
"@noble/curves": "~1.6.0",
"@noble/hashes": "~1.5.0",
"@scure/base": "~1.1.7"
},
"devDependencies": {
"@paulmillr/jsbt": "0.1.0",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.esm.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@paulmillr/jsbt/tsconfigs/esm.json",
"extends": "@paulmillr/jsbt/tsconfig.esm.json",
"compilerOptions": {
"module": "es2020",
"moduleResolution": "bundler",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@paulmillr/jsbt/tsconfigs/cjs.json",
"extends": "@paulmillr/jsbt/tsconfig.cjs.json",

Check failure on line 2 in tsconfig.json

View workflow job for this annotation

GitHub Actions / v18 @ ubuntu-latest

File '@paulmillr/jsbt/tsconfig.cjs.json' not found.

Check failure on line 2 in tsconfig.json

View workflow job for this annotation

GitHub Actions / v20 @ ubuntu-latest

File '@paulmillr/jsbt/tsconfig.cjs.json' not found.
"compilerOptions": {
"outDir": "lib"
},
Expand Down

0 comments on commit 04a406e

Please sign in to comment.