-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
57 lines (57 loc) · 1.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"author": {
"name": "Alex Bosworth",
"url": "https://twitter.com/alexbosworth"
},
"bugs": {
"url": "https://github.com/alexbosworth/lightning/issues"
},
"dependencies": {
"@grpc/grpc-js": "1.12.2",
"@grpc/proto-loader": "0.7.13",
"@types/node": "22.9.1",
"@types/request": "2.48.12",
"@types/ws": "8.5.13",
"async": "3.2.6",
"asyncjs-util": "1.2.12",
"bitcoinjs-lib": "6.1.6",
"bn.js": "5.2.1",
"bolt07": "1.9.4",
"bolt09": "2.1.0",
"ecpair": "2.1.0",
"invoices": "3.0.0",
"psbt": "3.0.0",
"tiny-secp256k1": "2.2.3",
"type-fest": "4.27.0"
},
"description": "Lightning Network client library",
"devDependencies": {
"tsd": "0.31.2",
"typescript": "5.6.3"
},
"engines": {
"node": ">=18"
},
"keywords": [
"grpc",
"lightning-network",
"lnd"
],
"license": "MIT",
"main": "index.js",
"name": "lightning",
"repository": {
"type": "git",
"url": "https://github.com/alexbosworth/lightning.git"
},
"scripts": {
"test": "npx [email protected] node --experimental-test-coverage --test && npm run test:types",
"test:types": "tsd",
"unit-tests": "node --test && npm run test:types"
},
"tsd": {
"directory": "test/typescript"
},
"types": "index.d.ts",
"version": "10.22.2"
}