@kansnpms/console-log-pipe-cli
Version:
Global CLI tool for Console Log Pipe - Real-time log streaming server and management
88 lines (87 loc) • 2.36 kB
JSON
{
"name": "@kansnpms/console-log-pipe-cli",
"version": "2.5.0",
"description": "Global CLI tool for Console Log Pipe - Real-time log streaming server and management",
"main": "src/cli.js",
"bin": {
"clp": "bin/clp",
"console-log-pipe": "bin/clp"
},
"files": [
"bin",
"src",
"build",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/kgptapps/consolelogpipe.git",
"directory": "packages/cli"
},
"author": "kgptapps",
"license": "MIT",
"homepage": "https://github.com/kgptapps/consolelogpipe/tree/main/packages/cli#readme",
"bugs": {
"url": "https://github.com/kgptapps/consolelogpipe/issues"
},
"keywords": [
"console",
"logging",
"cli",
"server",
"real-time",
"debugging",
"developer-tools"
],
"scripts": {
"build": "echo 'CLI build not yet implemented'",
"build:dev": "webpack --mode development",
"build:binaries": "node build/scripts/build-binaries.js",
"dev": "nodemon src/cli.js",
"start": "node src/cli.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:integration": "jest --testPathPattern=integration --passWithNoTests",
"test:e2e": "jest --testPathPattern=e2e --passWithNoTests",
"test:performance": "echo 'Performance tests not yet implemented'",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --ext .js,.ts --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "echo 'TypeScript checking not yet implemented'",
"clean": "rimraf build/dist node_modules/.cache"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.0.0",
"express": "^4.18.2",
"ws": "^8.13.0",
"uuid": "^9.0.0",
"cors": "^2.8.5",
"compression": "^1.7.4",
"helmet": "^7.0.0",
"dotenv": "^16.3.1",
"inquirer": "^8.2.5",
"ora": "^5.4.1",
"boxen": "^5.1.2",
"update-notifier": "^6.0.2"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"eslint": "^8.43.0",
"jest": "^29.5.0",
"nodemon": "^3.0.1",
"pkg": "^5.8.1",
"rimraf": "^5.0.1",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=16.0.0"
},
"preferGlobal": true,
"publishConfig": {
"access": "public"
}
}