balanceofsatoshis 20.1.5 → 22.0.0
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/CHANGELOG.md +12 -0
- package/README.md +0 -5
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Versions
|
|
2
2
|
|
|
3
|
+
## 22.0.0
|
|
4
|
+
|
|
5
|
+
### Breaking Changes
|
|
6
|
+
|
|
7
|
+
- Remove support for LND 0.19 and below
|
|
8
|
+
|
|
9
|
+
## 21.0.0
|
|
10
|
+
|
|
11
|
+
### Breaking Changes
|
|
12
|
+
|
|
13
|
+
- Remove support for node.js 20, 22+ is now required
|
|
14
|
+
|
|
3
15
|
## 20.1.5
|
|
4
16
|
|
|
5
17
|
- `rebalance`: support for `--avoid_list` to move `--avoid` flags to a file
|
package/README.md
CHANGED
|
@@ -8,11 +8,6 @@ Commands for working with LND balances.
|
|
|
8
8
|
Supported LND versions:
|
|
9
9
|
|
|
10
10
|
- v0.20.0-beta to v0.20.1-beta
|
|
11
|
-
- v0.19.0-beta to v0.19.3-beta
|
|
12
|
-
- v0.18.0-beta to v0.18.5-beta
|
|
13
|
-
- v0.17.0-beta to v0.17.5-beta
|
|
14
|
-
- v0.16.0-beta to v0.16.4-beta
|
|
15
|
-
- v0.15.2-beta to v0.15.5-beta
|
|
16
11
|
|
|
17
12
|
## Install
|
|
18
13
|
|
package/package.json
CHANGED
|
@@ -30,19 +30,19 @@
|
|
|
30
30
|
"crypto-js": "4.2.0",
|
|
31
31
|
"csv-parse": "6.2.1",
|
|
32
32
|
"ecpair": "2.1.0",
|
|
33
|
-
"goldengate": "
|
|
33
|
+
"goldengate": "16.0.0",
|
|
34
34
|
"grammy": "1.42.0",
|
|
35
35
|
"hot-formula-parser": "4.0.0",
|
|
36
36
|
"import-lazy": "4.0.0",
|
|
37
|
-
"ini": "
|
|
38
|
-
"inquirer": "13.4.
|
|
39
|
-
"ln-accounting": "
|
|
40
|
-
"ln-service": "
|
|
41
|
-
"ln-sync": "
|
|
42
|
-
"ln-telegram": "
|
|
37
|
+
"ini": "7.0.0",
|
|
38
|
+
"inquirer": "13.4.3",
|
|
39
|
+
"ln-accounting": "10.0.0",
|
|
40
|
+
"ln-service": "59.0.0",
|
|
41
|
+
"ln-sync": "8.0.0",
|
|
42
|
+
"ln-telegram": "8.0.0",
|
|
43
43
|
"minimist": "1.2.8",
|
|
44
44
|
"moment": "2.30.1",
|
|
45
|
-
"paid-services": "
|
|
45
|
+
"paid-services": "8.0.0",
|
|
46
46
|
"probing": "6.0.0",
|
|
47
47
|
"qrcode-terminal": "0.12.0",
|
|
48
48
|
"sanitize-filename": "1.6.4",
|
|
@@ -54,10 +54,10 @@
|
|
|
54
54
|
"description": "Lightning balance CLI",
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"invoices": "5.0.2",
|
|
57
|
-
"ln-docker-daemons": "
|
|
57
|
+
"ln-docker-daemons": "8.0.0"
|
|
58
58
|
},
|
|
59
59
|
"engines": {
|
|
60
|
-
"node": ">=
|
|
60
|
+
"node": ">=22"
|
|
61
61
|
},
|
|
62
62
|
"keywords": [
|
|
63
63
|
"cli",
|
|
@@ -81,5 +81,5 @@
|
|
|
81
81
|
"postpublish": "docker buildx build --platform linux/amd64,linux/arm64 -t alexbosworth/balanceofsatoshis -t alexbosworth/balanceofsatoshis:$npm_package_version --push .",
|
|
82
82
|
"test": "npx nyc@17.1.0 node --experimental-test-coverage --test test/arrays/*.js test/balances/*.js test/chain/*.js test/display/*.js test/encryption/*.js test/lnd/*.js test/network/*.js test/nodes/*.js test/peers/*.js test/responses/*.js test/routing/*.js test/services/*.js test/swaps/*.js test/tags/*.js test/telegram/*.js test/wallets/*.js"
|
|
83
83
|
},
|
|
84
|
-
"version": "
|
|
84
|
+
"version": "22.0.0"
|
|
85
85
|
}
|