lnlink-server 1.0.1 → 1.0.3
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/README.md +461 -0
- package/{app.js → dist/app.js} +329 -321
- package/dist/binaries.json +25 -0
- package/{build-info.json → dist/build-info.json} +2 -1
- package/{index.js → dist/index.js} +690 -121
- package/dist/index.js.map +7 -0
- 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 +62 -0
- package/dist/public/css/initOwner.css +705 -0
- package/dist/public/img/logo.svg +1 -0
- package/{public → dist/public}/init.html +5 -5
- package/dist/public/js/init.js +895 -0
- package/{setting.regtest.json → dist/setting.regtest.json} +2 -1
- package/package.json +51 -20
- package/binaries.json +0 -20
- package/index.js.map +0 -7
- package/public/css/initOwner.css +0 -553
- package/public/js/init.js +0 -454
- /package/{config.default.js → dist/config.default.js} +0 -0
- /package/{prisma → dist/prisma}/migrations/20250918020814_/migration.sql +0 -0
- /package/{prisma → dist/prisma}/migrations/20251114105314_auto_update/migration.sql +0 -0
- /package/{prisma → dist/prisma}/migrations/migration_lock.toml +0 -0
- /package/{prisma → dist/prisma}/schema.prisma +0 -0
- /package/{proto → dist/proto}/chainkit.proto +0 -0
- /package/{proto → dist/proto}/lightning.proto +0 -0
- /package/{proto → dist/proto}/lit-status.proto +0 -0
- /package/{proto → dist/proto}/looprpc/client.proto +0 -0
- /package/{proto → dist/proto}/price_oracle.proto +0 -0
- /package/{proto → dist/proto}/rfqrpc/rfq.proto +0 -0
- /package/{proto → dist/proto}/routerrpc/router.proto +0 -0
- /package/{proto → dist/proto}/signrpc/signer.proto +0 -0
- /package/{proto → dist/proto}/stateservice.proto +0 -0
- /package/{proto → dist/proto}/swapserverrpc/common.proto +0 -0
- /package/{proto → dist/proto}/tapchannel.proto +0 -0
- /package/{proto → dist/proto}/tapcommon.proto +0 -0
- /package/{proto → dist/proto}/taprootassets.proto +0 -0
- /package/{proto → dist/proto}/universe.proto +0 -0
- /package/{proto → dist/proto}/walletkit.proto +0 -0
- /package/{proto → dist/proto}/walletunlocker.proto +0 -0
- /package/{public → dist/public}/favicon.ico +0 -0
- /package/{setting.mainnet.json → dist/setting.mainnet.json} +0 -0
- /package/{setting.testnet.json → dist/setting.testnet.json} +0 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"darwin-arm64": {
|
|
3
|
+
"tor": "https://archive.torproject.org/tor-package-archive/torbrowser/14.5.4/tor-expert-bundle-macos-aarch64-14.5.4.tar.gz",
|
|
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.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
|
+
},
|
|
8
|
+
"darwin-x64": {
|
|
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
|
+
"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.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"
|
|
18
|
+
},
|
|
19
|
+
"linux-x64": {
|
|
20
|
+
"tor": "https://archive.torproject.org/tor-package-archive/torbrowser/14.5.4/tor-expert-bundle-linux-x86_64-14.5.4.tar.gz",
|
|
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",
|
|
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"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"buildTime": "2026-
|
|
2
|
+
"buildTime": "2026-02-02T07:00:03.492Z",
|
|
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",
|