@evnx/cli 0.3.6 → 0.3.8

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 +7 -0
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -6,6 +6,7 @@
6
6
  [![PyPI](https://img.shields.io/pypi/v/evnx.svg)](https://pypi.org/project/evnx/)
7
7
  [![npm](https://img.shields.io/npm/v/@evnx/cli.svg)](https://www.npmjs.com/package/@evnx/cli)
8
8
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
9
+ [![GitHub Marketplace](https://img.shields.io/badge/Marketplace-evnx--action-blue?logo=github)](https://github.com/marketplace/actions/evnx-env-security-validation)
9
10
 
10
11
  A CLI tool for managing `.env` files — validation, secret scanning, format conversion, and migration to cloud secret managers.
11
12
 
@@ -17,6 +18,12 @@ A CLI tool for managing `.env` files — validation, secret scanning, format con
17
18
 
18
19
  Accidentally committing secrets to version control is one of the most common and costly developer mistakes. evnx is a local-first tool that catches misconfigurations, detects credential leaks, and converts environment files to the format each deployment target expects — before anything reaches CI or production.
19
20
 
21
+ ---
22
+ ## Testing & playground
23
+
24
+ → [urwithajit9/evnx-test](https://github.com/urwithajit9/evnx-test) —
25
+ try evnx in your browser via GitHub Actions, no installation required.
26
+
20
27
  ---
21
28
 
22
29
  ## Installation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evnx/cli",
3
- "version": "0.3.6",
3
+ "version": "0.3.8",
4
4
  "description": "CLI tool for managing .env files — validation, secret scanning, format conversion",
5
5
  "keywords": ["dotenv", "env", "secrets", "cli", "security", "devtools", "environment"],
6
6
  "author": "Ajit Kumar <support@evnx.dev>",
@@ -20,11 +20,11 @@
20
20
  "postinstall": "node install.js"
21
21
  },
22
22
  "optionalDependencies": {
23
- "@evnx/evnx-linux-x64": "0.3.6",
24
- "@evnx/evnx-linux-arm64": "0.3.6",
25
- "@evnx/evnx-darwin-x64": "0.3.6",
26
- "@evnx/evnx-darwin-arm64": "0.3.6",
27
- "@evnx/evnx-win32-x64": "0.3.6"
23
+ "@evnx/evnx-linux-x64": "0.3.8",
24
+ "@evnx/evnx-linux-arm64": "0.3.8",
25
+ "@evnx/evnx-darwin-x64": "0.3.8",
26
+ "@evnx/evnx-darwin-arm64": "0.3.8",
27
+ "@evnx/evnx-win32-x64": "0.3.8"
28
28
  },
29
29
  "engines": {
30
30
  "node": ">=14"