-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.66 KB
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
{
"name": "@utexo/rgb-lightning-node-nodejs",
"version": "0.1.0-beta.16",
"description": "Node.js (napi-rs) bindings for rgb-lightning-node",
"keywords": [
"rgb",
"lightning",
"ldk",
"bolt11",
"utexo"
],
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"scripts/",
"patches/",
"src/",
"build.rs",
"Cargo.toml",
"Cargo.lock",
"README.md"
],
"scripts": {
"postinstall": "node scripts/install-overlay-addon.js",
"build": "mkdir -p .napi-generated && napi build --platform --release --no-js --dts .napi-generated/index.d.ts && node scripts/stage-local-addon.js",
"build:debug": "mkdir -p .napi-generated && napi build --platform --no-js --dts .napi-generated/index.d.ts && node scripts/stage-local-addon.js",
"check:types": "tsc --noEmit --strict --skipLibCheck index.d.ts",
"test:installer": "node --test scripts/install-overlay-addon.test.js",
"test": "npm run test:installer && node test.js"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@napi-rs/cli": "^3.6.2",
"typescript": "^6.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/UTEXO-Protocol/rgb-lightning-node-nodejs.git"
},
"license": "Apache-2.0",
"author": "UTEXO",
"utexoNativeOverlay": {
"repository": "https://github.com/UTEXO-Protocol/rgb-lightning-node.git",
"ref": "v0.11.0-beta.3",
"commit": "f30a5393268de67c6bb5a1c525bc790c5b11afa2",
"patch": "patches/c-ffi-utexo-patches-v0.11.0-beta.3.patch",
"patchSha256": "d0b6d4b057edd675e3d4385f2243b266020feeb1bee7714e7625e2f7bc0c945c",
"rustToolchain": "1.88.0"
}
}