envlys 1.0.1 → 1.0.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.
Files changed (2) hide show
  1. package/package.json +12 -8
  2. package/readme.md +1 -1
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "envlys",
3
3
  "description": "📦️ A lightweight, type-safe environment variable validator for TypeScript and Bun, powered by Zod. Features auto-loading, variable expansion, and automatic .env.example generation",
4
4
  "author": "Luis Monsalve",
5
- "version": "1.0.1",
5
+ "version": "1.0.3",
6
6
  "homepage": "https://github.com/TheElegantCoding/envlys#readme",
7
7
  "repository": {
8
8
  "type": "git",
@@ -28,7 +28,9 @@
28
28
  },
29
29
  "main": "./dist/index.js",
30
30
  "types": "./dist/index.d.ts",
31
- "files": ["./dist"],
31
+ "files": [
32
+ "./dist"
33
+ ],
32
34
  "engines": {
33
35
  "node": ">=22.17.0",
34
36
  "bun": ">=1.1.0"
@@ -41,15 +43,17 @@
41
43
  "lint": "eslint --fix",
42
44
  "release": "bunx gitlys release"
43
45
  },
44
- "devDependencies": {
45
- "@types/node": "^25.6.0",
46
+ "dependencies": {
46
47
  "dotenv": "^17.4.2",
47
48
  "dotenv-expand": "^13.0.0",
48
- "eslint-config-universal-code": "^1.0.15",
49
- "gitlys": "^2.1.4",
50
49
  "logginlys": "^4.0.2",
51
- "tsup": "^8.5.1",
52
- "typescript": "^5.9.3",
53
50
  "zod": "^4.3.6"
51
+ },
52
+ "devDependencies": {
53
+ "@types/node": "^25.6.0",
54
+ "eslint-config-universal-code": "^1.0.19",
55
+ "gitlys": "^2.2.0",
56
+ "tsup": "^8.5.1",
57
+ "typescript": "^5.9.3"
54
58
  }
55
59
  }
package/readme.md CHANGED
@@ -1,7 +1,7 @@
1
1
  <img src="./.github/asset/illustration/wave_header.svg" width="100%" />
2
2
 
3
3
  <h1 id="top" align="center">
4
- <img src="./.github/asset/icon/setting.svg" width="28px" align="center" />
4
+ <img src="./.github/asset/icon/setting.svg" width="32px" align="center" />
5
5
  Envlys
6
6
  </h1>
7
7