dockza.app 0.2.0 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +10 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -9,9 +9,9 @@
9
9
  </p>
10
10
 
11
11
  <p align="center">
12
- <a href="https://www.npmjs.com/package/dockza"><img src="https://img.shields.io/npm/v/dockza.svg" alt="npm version"></a>
12
+ <a href="https://www.npmjs.com/package/dockza.app"><img src="https://img.shields.io/npm/v/dockza.app" alt="npm version"></a>
13
13
  <a href="https://github.com/shandyba/dockza/actions/workflows/ci.yml"><img src="https://github.com/shandyba/dockza/actions/workflows/ci.yml/badge.svg" alt="CI"></a>
14
- <a href="https://nodejs.org/"><img src="https://img.shields.io/node/v/dockza.svg" alt="Node"></a>
14
+ <a href="https://nodejs.org/"><img src="https://img.shields.io/node/v/dockza.app" alt="Node"></a>
15
15
  <a href="./LICENSE"><img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="License: MIT"></a>
16
16
  </p>
17
17
 
@@ -22,16 +22,22 @@
22
22
  Run it without installing:
23
23
 
24
24
  ```bash
25
- npx dockza
25
+ npx dockza.app
26
26
  ```
27
27
 
28
28
  Or install globally:
29
29
 
30
30
  ```bash
31
- npm install -g dockza
31
+ npm install -g dockza.app
32
32
  dockza
33
33
  ```
34
34
 
35
+ > **Note on the name.** The npm package is published as **`dockza.app`**, matching
36
+ > the project homepage — the plain `dockza` name is rejected by npm's automated
37
+ > typosquatting filter for being too close to an unrelated existing package.
38
+ > Only the install command carries the suffix; once installed, the executable is
39
+ > just `dockza`.
40
+
35
41
  ## Features
36
42
 
37
43
  - **Compose-aware Stacks view** — containers grouped by project with running / errored / stopped counts, collapsible per stack.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dockza.app",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "A lightweight terminal UI for Docker — manage containers, images, volumes, and networks without leaving your terminal",
5
5
  "bin": {
6
6
  "dockza": "dist/cli.js"