besu-network-manager
Version:
TypeScript library for managing Hyperledger Besu networks with Clique consensus using Docker
78 lines (77 loc) • 1.93 kB
JSON
{
"name": "besu-network-manager",
"version": "1.0.1",
"description": "TypeScript library for managing Hyperledger Besu networks with Clique consensus using Docker",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./simple-index": {
"import": "./dist/simple-index.js",
"types": "./dist/simple-index.d.ts"
}
},
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"clean": "rm -rf dist && rm -rf tsconfig.tsbuildinfo",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"prepublishOnly": "yarn clean && yarn build",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"besu",
"blockchain",
"ethereum",
"clique",
"consensus",
"docker",
"network",
"hyperledger",
"typescript"
],
"author": "Rob Galeano",
"license": "MIT",
"homepage": "https://github.com/robgaleano/pfm-web2.5/tree/main/network-sdk",
"repository": {
"type": "git",
"url": "git+https://github.com/robgaleano/pfm-web2.5.git",
"directory": "network-sdk"
},
"bugs": {
"url": "https://github.com/robgaleano/pfm-web2.5/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"dockerode": "^4.0.7",
"elliptic": "^6.5.4",
"js-sha3": "^0.9.3",
"keccak": "^3.0.4",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/dockerode": "^3.3.23",
"@types/keccak": "^3.0.5",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"prettier": "^3.3.2",
"tsx": "^4.15.7",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.0.0"
}
}