@yabasha/gex 1.3.8 → 1.4.0

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 +3 -0
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -85,7 +85,10 @@ You can also call each runtime directly without the interactive launcher:
85
85
 
86
86
  ```bash
87
87
  gex-node [command] [options] # Node.js / npm runtime (formerly `gex`)
88
+ # Alias: gn
89
+
88
90
  gex-bun [command] [options] # Bun runtime
91
+ # Alias: gb
89
92
  ```
90
93
 
91
94
  Common command options:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yabasha/gex",
3
- "version": "1.3.8",
3
+ "version": "1.4.0",
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",
@@ -17,7 +17,9 @@
17
17
  "bin": {
18
18
  "gex": "./dist/cli.cjs",
19
19
  "gex-node": "./dist/cli-node.cjs",
20
- "gex-bun": "./dist/cli-bun.mjs"
20
+ "gex-bun": "./dist/cli-bun.mjs",
21
+ "gb": "./dist/cli-bun.mjs",
22
+ "gn": "./dist/cli-node.cjs"
21
23
  },
22
24
  "files": [
23
25
  "dist"