UNPKG

barechat

Version:

Anonymous chat anywhere with commandline - CLI Package

85 lines (84 loc) 1.81 kB
{ "name": "barechat", "version": "3.0.0", "description": "Anonymous chat anywhere with commandline - CLI Package", "main": "index.js", "type": "module", "bin": { "barechat": "bin/main.js" }, "scripts": { "start": "bare index.js", "dev": "bare index.js", "doc": "npx jsdoc-to-markdown ./lib/chat-core.js > ../../doc/api.md", "clean": "rm -rf node_modules dist", "build": "echo 'No build step required for JavaScript'", "test": "echo 'No tests specified yet'" }, "files": [ "bin/", "lib/", "index.js", "LICENSE", "README.md" ], "dependencies": { "barechat-core": "^3.0.0", "bare-fs": "^4.4.4", "bare-net": "^1.0.0", "bare-path": "^3.0.0", "bare-process": "^4.2.1", "bare-readline": "^1.1.0", "bare-rpc": "^1.0.0", "bare-tty": "^5.0.3", "shelljs": "^0.10.0" }, "imports": { "crypto": { "bare": "bare-crypto", "default": "crypto" }, "fs": { "bare": "bare-fs", "default": "fs" }, "path": { "bare": "bare-path", "default": "path" }, "process": { "bare": "bare-process", "default": "process" }, "readline": { "bare": "bare-readline", "default": "readline" }, "tty": { "bare": "bare-tty", "default": "tty" } }, "author": "Fred Lin <gasolin+barechat@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/gasolin/barechat/issues" }, "homepage": "https://github.com/gasolin/barechat", "keywords": [ "bare", "chat", "terminal", "holepunch", "cli", "p2p" ], "repository": { "type": "git", "url": "https://github.com/gasolin/barechat.git", "directory": "packages/cli" }, "publishConfig": { "access": "public" } }