mirror of
https://github.com/mempool/mempool.git
synced 2025-01-19 05:34:03 +01:00
23151ec3db
- Now requires mempool/electrs - Mempool Accelerator integration - Rust GBT integration - And more!
34 lines
791 B
JSON
34 lines
791 B
JSON
{
|
|
"name": "gbt",
|
|
"version": "3.0.0-dev",
|
|
"description": "An inefficient re-implementation of the getBlockTemplate algorithm in Rust",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"scripts": {
|
|
"artifacts": "napi artifacts",
|
|
"build": "napi build --platform",
|
|
"build-debug": "npm run build",
|
|
"build-release": "npm run build -- --release --strip",
|
|
"install": "npm run build-release",
|
|
"prepublishOnly": "napi prepublish -t npm",
|
|
"test": "cargo test"
|
|
},
|
|
"author": "mononaut",
|
|
"napi": {
|
|
"name": "gbt",
|
|
"triples": {
|
|
"defaults": false,
|
|
"additional": [
|
|
"x86_64-unknown-linux-gnu",
|
|
"x86_64-unknown-freebsd"
|
|
]
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@napi-rs/cli": "^2.16.1"
|
|
},
|
|
"engines": {
|
|
"node": ">= 12"
|
|
}
|
|
}
|