@bitgo-beta/babylonlabs-io-btc-staking-ts 0.4.0-beta.73 → 0.4.0-beta.731

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": "@bitgo-beta/babylonlabs-io-btc-staking-ts",
3
- "version": "0.4.0-beta.73",
3
+ "version": "0.4.0-beta.731",
4
4
  "description": "Library exposing methods for the creation and consumption of Bitcoin transactions pertaining to Babylon's Bitcoin Staking protocol.",
5
5
  "module": "dist/index.js",
6
6
  "main": "dist/index.cjs",
@@ -11,7 +11,9 @@
11
11
  "require": "./dist/index.cjs"
12
12
  },
13
13
  "scripts": {
14
- "generate-types": "dts-bundle-generator -o ./dist/index.d.cts ./src/index.ts --no-check",
14
+ "generate-types:cjs": "dts-bundle-generator -o ./dist/index.d.cts ./src/index.ts --no-check",
15
+ "generate-types:esm": "dts-bundle-generator -o ./dist/index.d.ts ./src/index.ts --no-check",
16
+ "generate-types": "npm run generate-types:cjs && npm run generate-types:esm",
15
17
  "build": "node build.js && npm run generate-types",
16
18
  "prepare": "husky",
17
19
  "prepublishOnly": "npm run build",
@@ -27,16 +29,17 @@
27
29
  "btc-staking"
28
30
  ],
29
31
  "engines": {
30
- "node": ">=18 <=20"
32
+ "node": ">=20 <23"
31
33
  },
32
34
  "author": "Babylon Labs Ltd.",
33
35
  "license": "SEE LICENSE IN LICENSE",
34
36
  "devDependencies": {
35
37
  "dts-bundle-generator": "^9.3.1",
36
- "esbuild": "^0.20.2"
38
+ "esbuild": "^0.26.0",
39
+ "nanoevents": "^9.1.0"
37
40
  },
38
41
  "dependencies": {
39
- "@babylonlabs-io/babylon-proto-ts": "1.0.0",
42
+ "@babylonlabs-io/babylon-proto-ts": "1.7.2",
40
43
  "@bitcoin-js/tiny-secp256k1-asmjs": "2.2.3",
41
44
  "@cosmjs/encoding": "^0.33.0",
42
45
  "bip174": "=2.1.1",
@@ -45,5 +48,5 @@
45
48
  "publishConfig": {
46
49
  "access": "public"
47
50
  },
48
- "gitHead": "37316f5de4a1fa4b906a7747f3acd887eca345e0"
51
+ "gitHead": "0eeacb3bb8df22528552e764d384ca400ed0b863"
49
52
  }