lnlink-server 1.0.0 → 1.0.2
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/app.js +409 -357
- package/dist/binaries.json +12 -7
- package/dist/build-info.json +2 -1
- package/dist/index.js +690 -122
- package/dist/index.js.map +4 -4
- package/dist/node_modules/debug/.coveralls.yml +1 -0
- package/dist/node_modules/debug/.eslintrc +11 -0
- package/dist/node_modules/debug/.travis.yml +14 -0
- package/dist/node_modules/debug/CHANGELOG.md +362 -0
- package/dist/node_modules/debug/LICENSE +19 -0
- package/dist/node_modules/debug/Makefile +50 -0
- package/dist/node_modules/debug/README.md +312 -0
- package/dist/node_modules/debug/component.json +19 -0
- package/dist/node_modules/debug/karma.conf.js +70 -0
- package/dist/node_modules/debug/node.js +1 -0
- package/dist/node_modules/debug/package.json +49 -0
- package/dist/node_modules/debug/src/browser.js +185 -0
- package/dist/node_modules/debug/src/debug.js +202 -0
- package/dist/node_modules/debug/src/index.js +10 -0
- package/dist/node_modules/debug/src/inspector-log.js +15 -0
- package/dist/node_modules/debug/src/node.js +248 -0
- package/dist/node_modules/depd/History.md +96 -0
- package/dist/node_modules/depd/LICENSE +22 -0
- package/dist/node_modules/depd/Readme.md +280 -0
- package/dist/node_modules/depd/index.js +522 -0
- package/dist/node_modules/depd/lib/browser/index.js +77 -0
- package/dist/node_modules/depd/lib/compat/callsite-tostring.js +103 -0
- package/dist/node_modules/depd/lib/compat/event-listener-count.js +22 -0
- package/dist/node_modules/depd/lib/compat/index.js +79 -0
- package/dist/node_modules/depd/package.json +41 -0
- package/dist/node_modules/http-errors/HISTORY.md +132 -0
- package/dist/node_modules/http-errors/LICENSE +23 -0
- package/dist/node_modules/http-errors/README.md +135 -0
- package/dist/node_modules/http-errors/index.js +260 -0
- package/dist/node_modules/http-errors/package.json +48 -0
- package/dist/node_modules/inherits/LICENSE +16 -0
- package/dist/node_modules/inherits/README.md +42 -0
- package/dist/node_modules/inherits/inherits.js +7 -0
- package/dist/node_modules/inherits/inherits_browser.js +23 -0
- package/dist/node_modules/inherits/package.json +29 -0
- package/dist/node_modules/ms/index.js +152 -0
- package/dist/node_modules/ms/license.md +21 -0
- package/dist/node_modules/ms/package.json +37 -0
- package/dist/node_modules/ms/readme.md +51 -0
- package/dist/node_modules/setprototypeof/LICENSE +13 -0
- package/dist/node_modules/setprototypeof/README.md +26 -0
- package/dist/node_modules/setprototypeof/index.d.ts +2 -0
- package/dist/node_modules/setprototypeof/index.js +15 -0
- package/dist/node_modules/setprototypeof/package.json +25 -0
- package/dist/node_modules/statuses/HISTORY.md +65 -0
- package/dist/node_modules/statuses/LICENSE +23 -0
- package/dist/node_modules/statuses/README.md +127 -0
- package/dist/node_modules/statuses/codes.json +66 -0
- package/dist/node_modules/statuses/index.js +113 -0
- package/dist/node_modules/statuses/package.json +48 -0
- package/dist/package.json +3 -2
- package/dist/public/css/initOwner.css +578 -426
- package/dist/public/img/logo.svg +1 -0
- package/dist/public/init.html +5 -5
- package/dist/public/js/init.js +644 -258
- package/dist/setting.regtest.json +1 -1
- package/package.json +4 -3
package/dist/binaries.json
CHANGED
|
@@ -2,19 +2,24 @@
|
|
|
2
2
|
"darwin-arm64": {
|
|
3
3
|
"tor": "https://archive.torproject.org/tor-package-archive/torbrowser/14.5.4/tor-expert-bundle-macos-aarch64-14.5.4.tar.gz",
|
|
4
4
|
"libevent-2.1.7.dylib": "https://archive.torproject.org/tor-package-archive/torbrowser/14.5.4/tor-expert-bundle-macos-aarch64-14.5.4.tar.gz",
|
|
5
|
-
"litd": "https://github.com/lightninglabs/lightning-terminal/releases/download/v0.
|
|
6
|
-
"rgb-lightning-node": "https://github.com/
|
|
5
|
+
"litd": "https://github.com/lightninglabs/lightning-terminal/releases/download/v0.16.0-alpha/lightning-terminal-darwin-arm64-v0.16.0-alpha.tar.gz",
|
|
6
|
+
"rgb-lightning-node": "https://github.com/lnfi-network-dev/rgb-lightning-node/releases/download/v0.2.1-rc.3/macos-latest-binaries.zip"
|
|
7
7
|
},
|
|
8
8
|
"darwin-x64": {
|
|
9
9
|
"tor": "https://archive.torproject.org/tor-package-archive/torbrowser/14.5.4/tor-expert-bundle-macos-x86_64-14.5.4.tar.gz",
|
|
10
10
|
"libevent-2.1.7.dylib": "https://archive.torproject.org/tor-package-archive/torbrowser/14.5.4/tor-expert-bundle-macos-x86_64-14.5.4.tar.gz",
|
|
11
|
-
"litd": "https://github.com/lightninglabs/lightning-terminal/releases/download/v0.
|
|
12
|
-
"rgb-lightning-node": "https://github.com/
|
|
11
|
+
"litd": "https://github.com/lightninglabs/lightning-terminal/releases/download/v0.16.0-alpha/lightning-terminal-darwin-amd64-v0.16.0-alpha.tar.gz",
|
|
12
|
+
"rgb-lightning-node": "https://github.com/lnfi-network-dev/rgb-lightning-node/releases/download/v0.2.1-rc.3/macos-latest-binaries.zip"
|
|
13
|
+
},
|
|
14
|
+
"win32-x64": {
|
|
15
|
+
"tor.exe": "https://archive.torproject.org/tor-package-archive/torbrowser/14.5.4/tor-expert-bundle-windows-x86_64-14.5.4.tar.gz",
|
|
16
|
+
"litd.exe": "https://github.com/lightninglabs/lightning-terminal/releases/download/v0.16.0-alpha/lightning-terminal-windows-amd64-v0.16.0-alpha.zip",
|
|
17
|
+
"rgb-lightning-node.exe": "https://github.com/lnfi-network-dev/rgb-lightning-node/releases/download/v0.2.1-rc.3/windows-latest-binaries.zip"
|
|
13
18
|
},
|
|
14
19
|
"linux-x64": {
|
|
15
20
|
"tor": "https://archive.torproject.org/tor-package-archive/torbrowser/14.5.4/tor-expert-bundle-linux-x86_64-14.5.4.tar.gz",
|
|
16
21
|
"libevent-2.1.7.dylib": "https://archive.torproject.org/tor-package-archive/torbrowser/14.5.4/tor-expert-bundle-linux-x86_64-14.5.4.tar.gz",
|
|
17
|
-
"litd": "https://github.com/lightninglabs/lightning-terminal/releases/download/v0.
|
|
18
|
-
"rgb-lightning-node": "https://github.com/
|
|
22
|
+
"litd": "https://github.com/lightninglabs/lightning-terminal/releases/download/v0.16.0-alpha/lightning-terminal-linux-amd64-v0.16.0-alpha.tar.gz",
|
|
23
|
+
"rgb-lightning-node": "https://github.com/lnfi-network-dev/rgb-lightning-node/releases/download/v0.2.1-rc.3/linux-latest-binaries.zip"
|
|
19
24
|
}
|
|
20
|
-
}
|
|
25
|
+
}
|
package/dist/build-info.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"buildTime": "2026-
|
|
2
|
+
"buildTime": "2026-02-02T06:13:43.749Z",
|
|
3
3
|
"mode": "development",
|
|
4
4
|
"bundle": "single",
|
|
5
5
|
"external": "all",
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"axios",
|
|
13
13
|
"bitcoin-core",
|
|
14
14
|
"body-parser",
|
|
15
|
+
"bolt11",
|
|
15
16
|
"cookie-parser",
|
|
16
17
|
"crypto-js",
|
|
17
18
|
"dayjs",
|