@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.
- package/README.md +7 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
[](https://pypi.org/project/evnx/)
|
|
7
7
|
[](https://www.npmjs.com/package/@evnx/cli)
|
|
8
8
|
[](https://opensource.org/licenses/MIT)
|
|
9
|
+
[](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.
|
|
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.
|
|
24
|
-
"@evnx/evnx-linux-arm64": "0.3.
|
|
25
|
-
"@evnx/evnx-darwin-x64": "0.3.
|
|
26
|
-
"@evnx/evnx-darwin-arm64": "0.3.
|
|
27
|
-
"@evnx/evnx-win32-x64": "0.3.
|
|
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"
|