@argonprotocol/bitcoin 1.3.3 → 1.3.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@argonprotocol/bitcoin",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.5",
|
|
4
4
|
"description": "A client for interop with bitcoin in nodejs.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -13,14 +13,15 @@
|
|
|
13
13
|
},
|
|
14
14
|
"homepage": "https://github.com/argonprotocol/mainchain#readme",
|
|
15
15
|
"scripts": {
|
|
16
|
-
"wasm-pack": "wasm-pack build --target bundler --release --out-dir ts/wasm --out-name bitcoin_bindings --no-pack
|
|
16
|
+
"wasm-pack": "wasm-pack build --target bundler --release --out-dir ts/wasm --out-name bitcoin_bindings --no-pack",
|
|
17
17
|
"prebuild": "yarn workspace @argonprotocol/mainchain run build",
|
|
18
18
|
"build": "yarn wasm-pack && yarn tsc",
|
|
19
19
|
"pretsc": "yarn workspace @argonprotocol/mainchain run tsc",
|
|
20
20
|
"tsc": "yarn pretsc && tsup",
|
|
21
21
|
"test": "yarn build && vitest --run --typecheck --disableConsoleIntercept",
|
|
22
22
|
"test:ci": "yarn tsc && vitest --run --disableConsoleIntercept",
|
|
23
|
-
"tsup": "yarn tsc"
|
|
23
|
+
"tsup": "yarn tsc",
|
|
24
|
+
"watch": "yarn pretsc && tsup --watch"
|
|
24
25
|
},
|
|
25
26
|
"files": [
|
|
26
27
|
"lib/",
|
|
@@ -37,10 +38,19 @@
|
|
|
37
38
|
"types": "./browser/index.d.ts",
|
|
38
39
|
"default": "./browser/index.js"
|
|
39
40
|
}
|
|
41
|
+
},
|
|
42
|
+
"./browser": {
|
|
43
|
+
"types": "./browser/index.d.ts",
|
|
44
|
+
"default": "./browser/index.js"
|
|
40
45
|
}
|
|
41
46
|
},
|
|
47
|
+
"sideEffects": [
|
|
48
|
+
"./ts/wasm/bitcoin_bindings.js",
|
|
49
|
+
"./lib/index.js",
|
|
50
|
+
"./browser/index.js"
|
|
51
|
+
],
|
|
42
52
|
"dependencies": {
|
|
43
|
-
"@argonprotocol/mainchain": "1.3.
|
|
53
|
+
"@argonprotocol/mainchain": "1.3.5",
|
|
44
54
|
"@noble/secp256k1": "^2.3.0",
|
|
45
55
|
"@scure/bip32": "^1.7.0",
|
|
46
56
|
"@scure/bip39": "^1.6.0",
|
|
@@ -48,8 +58,9 @@
|
|
|
48
58
|
"bignumber.js": "^9.1.2"
|
|
49
59
|
},
|
|
50
60
|
"devDependencies": {
|
|
51
|
-
"@argonprotocol/testing": "1.3.
|
|
61
|
+
"@argonprotocol/testing": "1.3.5",
|
|
52
62
|
"@types/node": "22.16.3",
|
|
63
|
+
"esbuild-plugin-wasm": "^1.1.0",
|
|
53
64
|
"tsup": "^8.4.0",
|
|
54
65
|
"tsx": "^4.19.2",
|
|
55
66
|
"typescript": "^5.8.3",
|
|
Binary file
|
|
Binary file
|