UNPKG

beeline-cli

Version:

A terminal wallet for the Hive blockchain - type, sign, rule the chain

98 lines (97 loc) 2.28 kB
{ "name": "beeline-cli", "version": "0.6.0", "description": "A terminal wallet for the Hive blockchain - type, sign, rule the chain", "main": "dist/index.js", "bin": { "beeline": "./bin/run" }, "scripts": { "build": "tsc", "dev": "ts-node src/index.ts", "lint": "eslint src --ext .ts", "test": "jest", "test:run": "jest", "test:coverage": "jest --coverage", "test:watch": "jest --watch", "postpack": "rm -f oclif.manifest.json", "prepack": "npm run build && oclif manifest" }, "keywords": [ "hive", "blockchain", "wallet", "cli", "terminal", "cyberpunk", "crypto" ], "author": "Dwayne Charrington", "license": "MIT", "files": [ "dist", "bin" ], "dependencies": { "@hiveio/dhive": "^1.2.7", "@oclif/core": "^4.0.26", "@oclif/plugin-help": "^6.2.16", "@types/blessed": "^0.1.25", "@types/react": "^19.1.9", "blessed": "^0.1.81", "boxen": "^7.1.1", "chalk": "^4.1.2", "crypto-js": "^4.2.0", "figlet": "^1.8.0", "fs-extra": "^11.2.0", "gradient-string": "^2.0.2", "ink": "^6.1.0", "inquirer": "^12.1.0", "keytar": "^7.9.0", "nanospinner": "^1.1.0", "node-fetch": "^3.3.2", "ora": "^8.1.1", "react": "^19.1.1" }, "devDependencies": { "@jest/globals": "^30.0.5", "@types/crypto-js": "^4.2.2", "@types/figlet": "^1.7.0", "@types/fs-extra": "^11.0.4", "@types/gradient-string": "^1.1.6", "@types/inquirer": "^9.0.7", "@types/jest": "^30.0.0", "@types/node": "^22.10.2", "@typescript-eslint/eslint-plugin": "^8.19.0", "@typescript-eslint/parser": "^8.19.0", "eslint": "^9.17.0", "jest": "^30.0.5", "oclif": "^4.15.22", "ts-jest": "^29.4.0", "ts-node": "^10.9.2", "typescript": "^5.7.2" }, "engines": { "node": ">=18.0.0" }, "oclif": { "bin": "beeline", "dirname": "beeline", "commands": "./dist/commands", "plugins": [ "@oclif/plugin-help" ], "topicSeparator": " ", "topics": { "wallet": { "description": "Wallet operations" }, "node": { "description": "Node management" }, "keys": { "description": "Key management" } } } }