@safe-hand/safe-env-check 1.1.5 → 1.1.6

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 CHANGED
@@ -3,6 +3,9 @@
3
3
  ![npm](https://img.shields.io/npm/v/@safe-hand/safe-env-check)
4
4
  ![license](https://img.shields.io/npm/l/@safe-hand/safe-env-check)
5
5
  ![downloads](https://img.shields.io/npm/dm/@safe-hand/safe-env-check)
6
+ ![TypeScript](https://img.shields.io/badge/TypeScript-Supported-blue)
7
+ ![CI](https://github.com/shshamim63/safe-env-check/actions/workflows/release.yml/badge.svg)
8
+ ![Coverage](https://img.shields.io/codecov/c/github/shshamim63/safe-env-check)
6
9
 
7
10
  A tiny TypeScript-first environment variable validator that ensures your application starts with a correct configuration.
8
11
 
@@ -389,6 +392,14 @@ env.NODE_ENV; // "development" | "production"
389
392
  - Monorepos
390
393
  - Multi-environment deployments
391
394
 
395
+ ## Contributing
396
+
397
+ Contributions are welcome! Please open an issue or PR.
398
+
399
+ ## Changelog
400
+
401
+ See https://github.com/yourname/safe-env-check/releases
402
+
392
403
  ## License
393
404
 
394
405
  MIT © Shakhawat Hossain
package/dist/cli/index.js CHANGED
@@ -427,7 +427,7 @@ var import_path = __toESM(require("path"));
427
427
  var import_fs2 = __toESM(require("fs"));
428
428
 
429
429
  // package.json
430
- var version = "1.1.5";
430
+ var version = "1.1.6";
431
431
 
432
432
  // src/cli/argsParser.ts
433
433
  var valueFlags = /* @__PURE__ */ new Set(["--schema", "--env-file", "--prefix", "--format"]);
package/package.json CHANGED
@@ -1,10 +1,13 @@
1
1
  {
2
2
  "name": "@safe-hand/safe-env-check",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/shshamim63/safe-env-check.git"
7
7
  },
8
+ "bugs": {
9
+ "url": "https://github.com/shshamim63/safe-env-check/issues"
10
+ },
8
11
  "keywords": [
9
12
  "env",
10
13
  "env-validation",
@@ -31,9 +34,9 @@
31
34
  "test": "jest",
32
35
  "lint": "tsc --noEmit"
33
36
  },
34
- "author": "",
37
+ "author": "Shakhawat Hossain",
35
38
  "license": "MIT",
36
- "description": "",
39
+ "description": "TypeScript-first environment variable validator with CLI support",
37
40
  "devDependencies": {
38
41
  "@types/jest": "^30.0.0",
39
42
  "@types/node": "^25.2.3",