UNPKG

portio

Version:

A beautiful terminal UI for managing processes on network ports (Windows only)

89 lines (88 loc) 2.12 kB
{ "name": "portio", "version": "2.0.0", "description": "A beautiful terminal UI for managing processes on network ports (Windows only)", "license": "MIT", "author": "bezalel6", "repository": { "type": "git", "url": "https://github.com/bezalel6/portio.git" }, "homepage": "https://github.com/bezalel6/portio#readme", "bugs": { "url": "https://github.com/bezalel6/portio/issues" }, "keywords": [ "port", "ports", "network", "process", "kill", "terminal", "tui", "cli", "windows", "netstat", "port-scanner", "port-manager", "dev-tools" ], "bin": { "portio": "dist/cli.js" }, "type": "module", "engines": { "node": ">=16" }, "os": [ "win32" ], "scripts": { "build": "tsc", "dev": "tsc --watch", "test": "prettier --check . && xo && ava" }, "files": [ "dist" ], "dependencies": { "chalk": "^5.2.0", "ink": "^4.1.0", "ink-table": "^3.0.0", "ink-text-input": "^5.0.1", "meow": "^11.0.0", "react": "^18.2.0", "terminal-image": "^3.1.1" }, "devDependencies": { "@sindresorhus/tsconfig": "^3.0.1", "@types/react": "^18.0.32", "@vdemedes/prettier-config": "^2.0.1", "ava": "^5.2.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", "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" }