mempool/backend/rust-gbt/package.json

34 lines
791 B
JSON
Raw Normal View History

2023-06-23 16:42:58 -04:00
{
"name": "gbt",
"version": "3.0.0-dev",
2023-06-23 16:42:58 -04:00
"description": "An inefficient re-implementation of the getBlockTemplate algorithm in Rust",
2023-06-24 11:21:58 -07:00
"main": "index.js",
"types": "index.d.ts",
2023-06-23 16:42:58 -04:00
"scripts": {
2023-06-24 11:21:58 -07:00
"artifacts": "napi artifacts",
"build": "napi build --platform",
"build-debug": "npm run build",
"build-release": "npm run build -- --release --strip",
2023-06-23 16:42:58 -04:00
"install": "npm run build-release",
2023-06-24 11:21:58 -07:00
"prepublishOnly": "napi prepublish -t npm",
2023-06-23 16:42:58 -04:00
"test": "cargo test"
},
"author": "mononaut",
2023-06-24 11:21:58 -07:00
"napi": {
"name": "gbt",
"triples": {
"defaults": false,
"additional": [
"x86_64-unknown-linux-gnu",
"x86_64-unknown-freebsd"
]
}
},
2023-07-06 15:49:54 -07:00
"dependencies": {
2023-06-24 11:21:58 -07:00
"@napi-rs/cli": "^2.16.1"
},
"engines": {
"node": ">= 12"
2023-06-23 16:42:58 -04:00
}
}