@caravan/psbt 1.9.4 → 1.9.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -5
- package/dist/index.mjs +1 -5
- package/package.json +5 -4
package/dist/index.js
CHANGED
|
@@ -123702,14 +123702,10 @@ function filterRelevantBip32Derivations(psbt, signingKeyDetails) {
|
|
|
123702
123702
|
/*! Bundled license information:
|
|
123703
123703
|
|
|
123704
123704
|
@jspm/core/nodelibs/browser/chunk-DtuTasat.js:
|
|
123705
|
-
(*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> *)
|
|
123706
|
-
|
|
123707
|
-
@jspm/core/nodelibs/browser/chunk-CcCWfKp1.js:
|
|
123708
|
-
(*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
|
|
123709
|
-
|
|
123710
123705
|
@jspm/core/nodelibs/browser/chunk-B738Er4n.js:
|
|
123711
123706
|
(*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> *)
|
|
123712
123707
|
|
|
123708
|
+
@jspm/core/nodelibs/browser/chunk-CcCWfKp1.js:
|
|
123713
123709
|
@jspm/core/nodelibs/browser/crypto.js:
|
|
123714
123710
|
(*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
|
|
123715
123711
|
*/
|
package/dist/index.mjs
CHANGED
|
@@ -123680,14 +123680,10 @@ export {
|
|
|
123680
123680
|
/*! Bundled license information:
|
|
123681
123681
|
|
|
123682
123682
|
@jspm/core/nodelibs/browser/chunk-DtuTasat.js:
|
|
123683
|
-
(*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> *)
|
|
123684
|
-
|
|
123685
|
-
@jspm/core/nodelibs/browser/chunk-CcCWfKp1.js:
|
|
123686
|
-
(*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
|
|
123687
|
-
|
|
123688
123683
|
@jspm/core/nodelibs/browser/chunk-B738Er4n.js:
|
|
123689
123684
|
(*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> *)
|
|
123690
123685
|
|
|
123686
|
+
@jspm/core/nodelibs/browser/chunk-CcCWfKp1.js:
|
|
123691
123687
|
@jspm/core/nodelibs/browser/crypto.js:
|
|
123692
123688
|
(*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
|
|
123693
123689
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@caravan/psbt",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.5",
|
|
4
4
|
"description": "typescript library for working with PSBTs",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -28,8 +28,9 @@
|
|
|
28
28
|
"scripts": {
|
|
29
29
|
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
30
30
|
"dev": "npm run build -- --watch",
|
|
31
|
-
"test": "vitest run",
|
|
32
|
-
"test:
|
|
31
|
+
"test": "vitest run src",
|
|
32
|
+
"test:coverage": "vitest run src --coverage",
|
|
33
|
+
"test:watch": "vitest src watch",
|
|
33
34
|
"lint": "eslint src/",
|
|
34
35
|
"lint:fix": "eslint --fix src/",
|
|
35
36
|
"ci": "npm run lint && npm run test",
|
|
@@ -63,6 +64,6 @@
|
|
|
63
64
|
"typescript": "^5.3.3"
|
|
64
65
|
},
|
|
65
66
|
"peerDependencies": {
|
|
66
|
-
"@caravan/bitcoin": "0.3.
|
|
67
|
+
"@caravan/bitcoin": "0.3.3"
|
|
67
68
|
}
|
|
68
69
|
}
|