@bitgo/utxo-bin 1.0.2-rc.3 → 1.0.2-rc.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/package.json +45 -0
- package/dist/tsconfig.tsbuildinfo +7 -7
- package/package.json +3 -3
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bitgo/utxo-bin",
|
|
3
|
+
"description": "Command-line utility for BitGo UTXO transactions",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist/**/*"
|
|
7
|
+
],
|
|
8
|
+
"keywords": [
|
|
9
|
+
"bitgo",
|
|
10
|
+
"utxo",
|
|
11
|
+
"bitcoinjs",
|
|
12
|
+
"bitcoin"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"prepare": "npm run build",
|
|
16
|
+
"build": "tsc",
|
|
17
|
+
"lint": "eslint --quiet .",
|
|
18
|
+
"unit-test": "mocha",
|
|
19
|
+
"fmt": "prettier --write '{bin,src,test}/**/*.{ts,js}'"
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "https://github.com/BitGo/BitGoJS.git",
|
|
24
|
+
"directory": "modules/utxo-bin"
|
|
25
|
+
},
|
|
26
|
+
"bin": "./dist/bin/index.js",
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@bitgo/blockapis": "^1.0.0",
|
|
29
|
+
"@bitgo/statics": "^6.16.0",
|
|
30
|
+
"@bitgo/utxo-lib": "^2.2.1",
|
|
31
|
+
"archy": "^1.0.0",
|
|
32
|
+
"chalk": "4",
|
|
33
|
+
"yargs": "^17.3.1"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@types/archy": "^0.0.32",
|
|
37
|
+
"@types/yargs": "^17.0.8",
|
|
38
|
+
"ts-node": "^10.4.0",
|
|
39
|
+
"typescript": "^4.5.4"
|
|
40
|
+
},
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public"
|
|
43
|
+
},
|
|
44
|
+
"license": "MIT"
|
|
45
|
+
}
|
|
@@ -557,8 +557,8 @@
|
|
|
557
557
|
"affectsGlobalScope": false
|
|
558
558
|
},
|
|
559
559
|
"../../utxo-lib/dist/src/bitgo/wallet/chains.d.ts": {
|
|
560
|
-
"version": "
|
|
561
|
-
"signature": "
|
|
560
|
+
"version": "435df0aab2537f62a661488a565cac68eafa8c788eaa6ac7c6b73c0084718519",
|
|
561
|
+
"signature": "435df0aab2537f62a661488a565cac68eafa8c788eaa6ac7c6b73c0084718519",
|
|
562
562
|
"affectsGlobalScope": false
|
|
563
563
|
},
|
|
564
564
|
"../../utxo-lib/dist/src/bitgo/outputscripts.d.ts": {
|
|
@@ -752,13 +752,13 @@
|
|
|
752
752
|
"affectsGlobalScope": false
|
|
753
753
|
},
|
|
754
754
|
"../../statics/dist/src/networks.d.ts": {
|
|
755
|
-
"version": "
|
|
756
|
-
"signature": "
|
|
755
|
+
"version": "d5a7e6d31203a4f3944b342669af7e4309c52e08990ccab9bf5da5e08eafe47b",
|
|
756
|
+
"signature": "d5a7e6d31203a4f3944b342669af7e4309c52e08990ccab9bf5da5e08eafe47b",
|
|
757
757
|
"affectsGlobalScope": false
|
|
758
758
|
},
|
|
759
759
|
"../../statics/dist/src/base.d.ts": {
|
|
760
|
-
"version": "
|
|
761
|
-
"signature": "
|
|
760
|
+
"version": "c1fe884da10cfe10af3077ee3d1147b214d4a03dc95c6e8a0455be9050c027d5",
|
|
761
|
+
"signature": "c1fe884da10cfe10af3077ee3d1147b214d4a03dc95c6e8a0455be9050c027d5",
|
|
762
762
|
"affectsGlobalScope": false
|
|
763
763
|
},
|
|
764
764
|
"../../statics/dist/src/map.d.ts": {
|
|
@@ -1205,7 +1205,7 @@
|
|
|
1205
1205
|
"rootDir": "..",
|
|
1206
1206
|
"allowJs": false,
|
|
1207
1207
|
"strict": true,
|
|
1208
|
-
"
|
|
1208
|
+
"watch": true,
|
|
1209
1209
|
"configFilePath": "../tsconfig.json"
|
|
1210
1210
|
},
|
|
1211
1211
|
"referencedMap": {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitgo/utxo-bin",
|
|
3
3
|
"description": "Command-line utility for BitGo UTXO transactions",
|
|
4
|
-
"version": "1.0.2-rc.
|
|
4
|
+
"version": "1.0.2-rc.5",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist/**/*"
|
|
7
7
|
],
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"bin": "./dist/bin/index.js",
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@bitgo/blockapis": "^1.0.1-rc.8",
|
|
29
|
-
"@bitgo/statics": "^6.18.0-rc.
|
|
29
|
+
"@bitgo/statics": "^6.18.0-rc.5",
|
|
30
30
|
"@bitgo/utxo-lib": "^2.3.0-rc.2",
|
|
31
31
|
"archy": "^1.0.0",
|
|
32
32
|
"chalk": "4",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
44
|
"license": "MIT",
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "ef8a5ee386570482553e5a18427eafa468ef2645"
|
|
46
46
|
}
|