process-killer-cli 1.0.5 → 1.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  > A fast, cross-platform utility to safely kill processes using specific ports on Windows, macOS, and Linux.
4
4
 
5
- ![npm version](https://img.shields.io/badge/version-1.0.2-blue)
5
+ ![npm version](https://img.shields.io/badge/version-1.0.7-blue)
6
6
  ![license](https://img.shields.io/badge/license-MIT-green)
7
7
  ![node version](https://img.shields.io/badge/node->=12.0.0-brightgreen)
8
8
 
@@ -184,7 +184,7 @@ sudo fuser -k 3000/tcp
184
184
  npm install -g process-killer-cli@latest
185
185
  ```
186
186
 
187
- ## 📝 What's New in v1.0.2
187
+ ## 📝 What's New in v1.0.7
188
188
 
189
189
  - ✨ Fixed installation documentation
190
190
  - 🎨 Beautiful colorized UI with Unicode borders
@@ -260,6 +260,6 @@ Have questions or suggestions? Open an issue on GitHub:
260
260
 
261
261
  ---
262
262
 
263
- **Made with ❤️ for Backend Developers**
263
+ **Made with ❤️ for Developers**
264
264
 
265
265
  Happy coding! 🚀
@@ -67,7 +67,10 @@ function header() {
67
67
  c("╔═══════════════════════════════════════════════════════╗", colors.cyan),
68
68
  );
69
69
  console.log(
70
- c(" PORT KILLER UTILITY v1.0.1", colors.bold + colors.cyan),
70
+ c(
71
+ " PROCESS KILLER UTILITY v1.0.1",
72
+ colors.bold + colors.cyan,
73
+ ),
71
74
  );
72
75
  // console.log(c(" Tool By Milon", colors.yellow));
73
76
  console.log(
@@ -151,7 +154,7 @@ function showDevInfo() {
151
154
  );
152
155
  console.log(
153
156
  c("║", colors.cyan) +
154
- c(" Tool Port Killer CLI", colors.yellow).padEnd(54),
157
+ c(" Tool Process Killer CLI", colors.yellow).padEnd(54),
155
158
  );
156
159
  console.log(
157
160
  c("║", colors.cyan) +
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "process-killer-cli",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "A utility to safely find and kill processes using specific ports on Linux/macOS. Perfect for backend developers dealing with port conflicts.",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -25,12 +25,12 @@
25
25
  "license": "MIT",
26
26
  "repository": {
27
27
  "type": "git",
28
- "url": "https://github.com/yourusername/process-killer-cli.git"
28
+ "url": "https://github.com/devmilon923/process-killer-cli.git"
29
29
  },
30
30
  "bugs": {
31
- "url": "https://github.com/yourusername/process-killer-cli/issues"
31
+ "url": "https://github.com/devmilon923/process-killer-cli/issues"
32
32
  },
33
- "homepage": "https://github.com/yourusername/process-killer-cli#readme",
33
+ "homepage": "https://github.com/devmilon923/process-killer-cli#readme",
34
34
  "engines": {
35
35
  "node": ">=12.0.0"
36
36
  },