@yabasha/gex 1.4.1 → 1.4.3
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/LICENSE +12 -7
- package/README.md +17 -4
- package/package.json +1 -1
package/LICENSE
CHANGED
|
@@ -1,16 +1,21 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2026 Bashar Ayyash
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
7
7
|
in the Software without restriction, including without limitation the rights
|
|
8
8
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
10
11
|
|
|
11
|
-
The above copyright notice and this permission notice shall be included in all
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
12
14
|
|
|
13
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
OR
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
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 >=
|
|
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 (
|
|
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
|
-
-
|
|
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.
|
|
3
|
+
"version": "1.4.3",
|
|
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",
|