@webbuilder135/envsentinel 0.1.0 → 0.1.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 +24 -5
  2. package/package.json +12 -3
package/README.md CHANGED
@@ -1,9 +1,28 @@
1
- # envsentinel
1
+ ---
2
2
 
3
- Audit `.env` against a required env file (typically `.env.example`). Optionally scans your repo for env usage (best-effort) and reports missing/empty/extra keys. CI-friendly exit codes.
3
+ ## envsentinel Pro
4
4
 
5
- ## Install
5
+ envsentinel Pro adds **HTML report export** for envsentinel audits.
6
6
 
7
- ```bash
8
- npm i envsentinel
7
+ ### What you get
8
+ - HTML audit reports (`--html`)
9
+ - One-file install (`pro.js`)
10
+ - CI-ready output
9
11
 
12
+ ### How it works
13
+ 1) Install envsentinel (Lite):
14
+ npm i -D @webbuilder135/envsentinel
15
+
16
+ 2) Buy envsentinel Pro:
17
+ https://webbuilder135.gumroad.com/l/avxltg
18
+
19
+ 3) Copy `pro.js` to:
20
+ node_modules/@webbuilder135/envsentinel/pro.js
21
+
22
+ 4) Run:
23
+ npx envsentinel --env .env --required .env.example --html report.html
24
+
25
+ ### Notes
26
+ - No refunds
27
+ - No support
28
+ - Provided as-is
package/package.json CHANGED
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "name": "@webbuilder135/envsentinel",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Audit .env against a required env file (.env.example). CI-friendly.",
5
5
  "type": "module",
6
- "bin": "./bin/envsentinel.js",
6
+ "bin": {
7
+ "envsentinel": "bin/envsentinel.js"
8
+ },
7
9
  "exports": {
8
10
  ".": "./src/index.js"
9
11
  },
@@ -20,7 +22,14 @@
20
22
  "test": "node --test",
21
23
  "lint": "node -c bin/envsentinel.js && node -c src/cli.js && node -c src/index.js"
22
24
  },
23
- "keywords": ["dotenv", "env", "config", "ci", "audit", "lint"],
25
+ "keywords": [
26
+ "dotenv",
27
+ "env",
28
+ "config",
29
+ "ci",
30
+ "audit",
31
+ "lint"
32
+ ],
24
33
  "license": "MIT",
25
34
  "publishConfig": {
26
35
  "access": "public"