@bitgo-beta/babylonlabs-io-btc-staking-ts 0.4.0-bitgo.1

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 ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@bitgo-beta/babylonlabs-io-btc-staking-ts",
3
+ "version": "0.4.0-bitgo.1",
4
+ "description": "Library exposing methods for the creation and consumption of Bitcoin transactions pertaining to Babylon's Bitcoin Staking protocol.",
5
+ "module": "dist/index.js",
6
+ "main": "dist/index.cjs",
7
+ "typings": "dist/index.d.ts",
8
+ "type": "module",
9
+ "exports": {
10
+ "import": "./dist/index.js",
11
+ "require": "./dist/index.cjs"
12
+ },
13
+ "scripts": {
14
+ "generate-types": "dts-bundle-generator -o ./dist/index.d.cts ./src/index.ts --no-check",
15
+ "build": "node build.js && npm run generate-types",
16
+ "prepare": "husky",
17
+ "prepublishOnly": "npm run build",
18
+ "version:canary": "npm version prerelease --preid=canary"
19
+ },
20
+ "files": [
21
+ "dist/*"
22
+ ],
23
+ "keywords": [
24
+ "bitcoin",
25
+ "staking",
26
+ "babylon",
27
+ "btc-staking"
28
+ ],
29
+ "engines": {
30
+ "node": ">=18 <=20"
31
+ },
32
+ "author": "Babylon Labs Ltd.",
33
+ "license": "SEE LICENSE IN LICENSE",
34
+ "devDependencies": {
35
+ "dts-bundle-generator": "^9.3.1",
36
+ "esbuild": "^0.20.2"
37
+ },
38
+ "dependencies": {
39
+ "@babylonlabs-io/babylon-proto-ts": "0.0.3-canary.5",
40
+ "@bitcoin-js/tiny-secp256k1-asmjs": "2.2.3",
41
+ "@cosmjs/encoding": "^0.33.0",
42
+ "bip174": "=2.1.1",
43
+ "bitcoinjs-lib": "^6.1.7"
44
+ },
45
+ "publishConfig": {
46
+ "access": "public"
47
+ },
48
+ "gitHead": "a148f9260fe567e13206553b662163cbecc92880"
49
+ }