UNPKG

pastebee-cli

Version:

Cli tool for pasting logs to Bee

63 lines (62 loc) 1.59 kB
{ "name": "pastebee-cli", "version": "0.2.0", "description": "Cli tool for pasting logs to Bee", "keywords": [ "Bee", "Swarm", "CLI", "swarm-cli", "Decentralised Storage" ], "bin": { "pastebee": "./dist/index.js" }, "homepage": "https://github.com/auhau/pastebee-cli", "bugs": { "url": "https://github.com/auhau/pastebee-cli/issues/" }, "files": [ "dist" ], "license": "MIT", "main": "", "repository": { "type": "git", "url": "https://github.com/auhau/pastebee-cli.git" }, "scripts": { "compile": "rimraf ./dist && tsc", "depcheck": "depcheck .", "prepare": "npm run compile", "start": "ts-node src/index.ts", "types:check": "tsc --project tsconfig.test.json", "lint": "eslint --fix \"src/**/*.ts\" && prettier --write \"src/**/*.ts\"", "lint:check": "eslint \"src/**/*.ts\" && prettier --check \"src/**/*.ts\"" }, "engines": { "node": ">=12.0.0", "npm": ">=6.0.0" }, "devDependencies": { "@types/node": "^14.14.16", "@types/yargs": "^17.0.4", "@typescript-eslint/eslint-plugin": "^4.11.0", "@typescript-eslint/parser": "^4.11.0", "depcheck": "^1.4.2", "eslint": "^7.16.0", "eslint-config-prettier": "^7.1.0", "eslint-plugin-jest": "^24.1.3", "eslint-plugin-prettier": "^3.3.0", "eslint-plugin-unused-imports": "^1.1.5", "prettier": "^2.4.1", "rimraf": "^3.0.2", "ts-node": "^9.1.1", "typescript": "^4.1.3" }, "dependencies": { "@ethersphere/bee-js": "^2.1.0", "ora": "^5.3.0", "yargs": "^17.2.1" } }