process-killer-cli 1.0.0 → 1.0.1

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
@@ -1,10 +1,9 @@
1
- # Port Killer CLI ⚡
1
+ # Process Killer CLI ⚡
2
2
 
3
3
  > A fast, cross-platform utility to safely kill processes using specific ports on Windows, macOS, and Linux.
4
-
5
- ![npm version](https://img.shields.io/badge/version-1.0.0-blue)
6
- ![license](https://img.shields.io/badge/license-MIT-green)
7
- ![node version](https://img.shields.io/badge/node->=12.0.0-brightgreen)
4
+ > ![npm version](https://img.shields.io/badge/version-1.0.1-blue)
5
+ > ![license](https://img.shields.io/badge/license-MIT-green)
6
+ > ![node version](https://img.shields.io/badge/node->=12.0.0-brightgreen)
8
7
 
9
8
  ## 🎯 Features
10
9
 
@@ -19,7 +18,7 @@
19
18
  ## 📦 Installation
20
19
 
21
20
  ```bash
22
- npm install -g port-killer-cli
21
+ npm install -g process-killer-cli
23
22
  ```
24
23
 
25
24
  ## 🚀 Quick Start
@@ -147,13 +146,13 @@ lsof -i :3000
147
146
  Make sure you installed it globally:
148
147
 
149
148
  ```bash
150
- npm install -g port-killer-cli
149
+ npm install -g process-killer-cli
151
150
  ```
152
151
 
153
152
  ## 🗑️ Uninstall
154
153
 
155
154
  ```bash
156
- npm uninstall -g port-killer-cli
155
+ npm uninstall -g process-killer-cli
157
156
  ```
158
157
 
159
158
  ## 📚 Advanced Usage
@@ -179,10 +178,10 @@ sudo fuser -k 3000/tcp
179
178
  ## 🔄 Update to Latest Version
180
179
 
181
180
  ```bash
182
- npm install -g port-killer-cli@latest
181
+ npm install -g process-killer-cli@latest
183
182
  ```
184
183
 
185
- ## 📝 What's New in v1.0.0
184
+ ## 📝 What's New in v1.0.1
186
185
 
187
186
  - ✨ Initial release
188
187
  - 🎨 Beautiful colorized UI with Unicode borders
@@ -200,7 +199,7 @@ Contributions are welcome! Feel free to:
200
199
  - Suggest features
201
200
  - Submit pull requests
202
201
 
203
- [Visit GitHub Repository](https://github.com/devmilon923/port-killer-cli)
202
+ [Visit GitHub Repository](https://github.com/devmilon923/process-killer-cli)
204
203
 
205
204
  ## 📄 License
206
205
 
@@ -213,7 +212,7 @@ This project is open source and available under the MIT License.
213
212
  **Milon Mia**
214
213
 
215
214
  - GitHub: [@devmilon923](https://github.com/devmilon923)
216
- - npm: [port-killer-cli](https://www.npmjs.com/package/port-killer-cli)
215
+ - npm: [process-killer-cli](https://www.npmjs.com/package/process-killer-cli)
217
216
  - Email: dev.milon923@gmail.com
218
217
 
219
218
  ## 🙏 Support
@@ -251,7 +250,7 @@ A: This tool is interactive. For automation, use OS-specific commands directly.
251
250
  ## 📞 Feedback
252
251
 
253
252
  Have questions or suggestions? Open an issue on GitHub:
254
- [GitHub Issues](https://github.com/devmilon923/port-killer-cli/issues)
253
+ [GitHub Issues](https://github.com/devmilon923/process-killer-cli/issues)
255
254
 
256
255
  ---
257
256
 
@@ -67,7 +67,7 @@ function header() {
67
67
  c("╔═══════════════════════════════════════════════════════╗", colors.cyan),
68
68
  );
69
69
  console.log(
70
- c(" PORT KILLER UTILITY v1.0.0", colors.bold + colors.cyan),
70
+ c(" PORT KILLER UTILITY v1.0.1", colors.bold + colors.cyan),
71
71
  );
72
72
  // console.log(c(" Tool By Milon", colors.yellow));
73
73
  console.log(
@@ -155,7 +155,7 @@ function showDevInfo() {
155
155
  );
156
156
  console.log(
157
157
  c("║", colors.cyan) +
158
- c(" Version 1.0.0", colors.yellow).padEnd(54),
158
+ c(" Version 1.0.1", colors.yellow).padEnd(54),
159
159
  );
160
160
  console.log(
161
161
  c("║", colors.cyan) + c(" License MIT", colors.yellow).padEnd(54),
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "process-killer-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
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
- "main": "index.js",
5
+ "main": "./bin/index.js",
6
6
  "type": "module",
7
7
  "bin": {
8
- "port-killer": "./bin/port-killer.js"
8
+ "index.js": "./bin/index.js"
9
9
  },
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -21,23 +21,24 @@
21
21
  "spring-boot",
22
22
  "port-conflict"
23
23
  ],
24
- "author": "Milon",
24
+ "author": "Milon Mia",
25
25
  "license": "MIT",
26
26
  "repository": {
27
27
  "type": "git",
28
- "url": "https://github.com/yourusername/port-killer-cli.git"
28
+ "url": "https://github.com/yourusername/process-killer-cli.git"
29
29
  },
30
30
  "bugs": {
31
- "url": "https://github.com/yourusername/port-killer-cli/issues"
31
+ "url": "https://github.com/yourusername/process-killer-cli/issues"
32
32
  },
33
- "homepage": "https://github.com/yourusername/port-killer-cli#readme",
33
+ "homepage": "https://github.com/yourusername/process-killer-cli#readme",
34
34
  "engines": {
35
35
  "node": ">=12.0.0"
36
36
  },
37
37
  "preferGlobal": true,
38
38
  "files": [
39
- "bin",
40
- "lib",
41
- "README.md"
39
+ "bin/index.js",
40
+ "README.md",
41
+ "package.json",
42
+ "LICENSE"
42
43
  ]
43
44
  }