@yabasha/gex 1.4.1 → 1.4.2

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 +17 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -11,7 +11,7 @@
11
11
 
12
12
  # GEX — Global/local dependency auditing and documentation for Node.js
13
13
 
14
- GEX is a focused CLI that generates structured, reproducible reports of your Node.js package environments:
14
+ GEX is a focused CLI that generates structured, reproducible reports of your Node.js / bun package environments:
15
15
 
16
16
  - Local project dependencies (default)
17
17
  - Globally installed packages
@@ -20,7 +20,7 @@ Reports can be emitted as machine-readable JSON (default) or human-friendly Mark
20
20
 
21
21
  ## Install
22
22
 
23
- - Requirements: Node >= 18.18, npm
23
+ - Requirements: Node >= 20, npm
24
24
  - **Global install (npm)**:
25
25
 
26
26
  ```bash
@@ -216,19 +216,32 @@ Example (truncated):
216
216
 
217
217
  CI/CD examples:
218
218
 
219
- - Using npx (no global install):
219
+ - Using npx (Node.js):
220
220
 
221
221
  ```bash
222
222
  npx -y @yabasha/gex@latest -f json -o gex-report.json
223
223
  ```
224
224
 
225
- - GitHub Actions step snippet:
225
+ - Using bunx (Bun):
226
+
227
+ ```bash
228
+ bunx @yabasha/gex@latest -f json -o gex-report.json
229
+ ```
230
+
231
+ - GitHub Actions step snippet (Node):
226
232
 
227
233
  ```yaml
228
234
  - name: Generate dependency report
229
235
  run: npx -y @yabasha/gex@latest -f json -o gex-report.json
230
236
  ```
231
237
 
238
+ - GitHub Actions step snippet (Bun):
239
+
240
+ ```yaml
241
+ - name: Generate dependency report
242
+ run: bunx @yabasha/gex@latest -f json -o gex-report.json
243
+ ```
244
+
232
245
  ## Development (repo)
233
246
 
234
247
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yabasha/gex",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "private": false,
5
5
  "description": "A CLI tool for auditing and documenting your Node.js package environment, generating comprehensive reports of global and local dependencies.",
6
6
  "type": "module",