liteshare
Version:
CLI based P2P file sharing
44 lines (43 loc) • 837 B
JSON
{
"name": "liteshare",
"version": "1.0.4",
"description": "CLI based P2P file sharing",
"keywords": [
"cli",
"share",
"file",
"p2p",
"transfer"
],
"license": "MIT",
"author": "Harsh Pandey",
"type": "module",
"main": "src/index.js",
"bin": {
"liteshare": "./bin/liteshare.js"
},
"scripts": {
"start": "node bin/liteshare.js",
"dev": "node bin/liteshare.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"commander": "^12.1.0",
"chalk": "^5.3.0",
"axios": "^1.7.3",
"form-data": "^4.0.0",
"fs-extra": "^11.2.0",
"cli-progress": "^3.12.0",
"ora": "^8.0.1",
"dotenv": "^16.4.5",
"validator": "^13.12.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"bin/",
"src/",
"README.md"
]
}