UNPKG

khamba

Version:

A cli tool for sharing files through local network.

93 lines (92 loc) 2.09 kB
{ "name": "khamba", "version": "0.0.18", "license": "MIT", "description": "A cli tool for sharing files through local network.", "bin": { "khamba": "dist/cli.js" }, "type": "module", "engines": { "node": ">=18" }, "scripts": { "node-version": "node -v", "build": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json", "watch": "tsc && (concurrently \"tsc -w\" \"tsc-alias -w\")", "old-watch": "tsc --watch", "start": "node ./dist/cli.js", "send": "node ./dist/cli.js SEND", "receive": "node ./dist/cli.js RECEIVE", "test": "prettier --check . && xo && ava" }, "files": [ "dist" ], "repository": { "type": "git", "url": "https://github.com/open-fringecore/khamba" }, "keywords": [ "file-share", "file-transfer", "local-network", "wifi-file-share", "peer-to-peer", "peer-to-peer-file-transfer" ], "dependencies": { "@nanostores/react": "^0.7.2", "@types/readline-sync": "^1.4.8", "@types/tar": "^6.1.13", "@types/uuid": "^9.0.8", "@types/yargs": "^17.0.32", "concurrently": "^8.2.2", "express": "^4.18.2", "ink": "^4.1.0", "ink-select-input": "^6.0.0", "meow": "^11.0.0", "nanostores": "^0.10.3", "react": "^18.2.0", "readline-sync": "^1.4.10", "tar": "^7.4.3", "tar-stream": "^3.1.7", "tsc-alias": "^1.8.10", "uuid": "^9.0.1", "yargs": "^17.7.2" }, "devDependencies": { "@sindresorhus/tsconfig": "^3.0.1", "@types/express": "^4.17.21", "@types/react": "^18.0.32", "@vdemedes/prettier-config": "^2.0.1", "ava": "^5.2.0", "chalk": "^5.3.0", "eslint-config-xo-react": "^0.27.0", "eslint-plugin-react": "^7.32.2", "eslint-plugin-react-hooks": "^4.6.0", "ink-testing-library": "^3.0.0", "nodemon": "^3.0.3", "prettier": "^2.8.7", "ts-node": "^10.9.1", "typescript": "^5.0.3", "xo": "^0.53.1" }, "ava": { "extensions": { "ts": "module", "tsx": "module" }, "nodeArguments": [ "--loader=ts-node/esm" ] }, "xo": { "extends": "xo-react", "prettier": true, "rules": { "react/prop-types": "off" } }, "prettier": "@vdemedes/prettier-config" }