@quintal/environment 1.0.0 → 2.0.0
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/.dist/index.cjs +2 -1
- package/.dist/index.mjs +30 -2896
- package/README.md +1 -1
- package/package.json +9 -10
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ TO EDIT THE CONTENT, PLEASE MODIFY `/workspace.ts` OR `/scripts/generate.ts`
|
|
|
9
9
|
[](https://npmjs.com/@quintal/environment)
|
|
10
10
|
[](https://github.com/quintalwebsolutions/quintal-oss/blob/main/LICENSE)
|
|
11
11
|
[](https://bundlephobia.com/package/@quintal/environment)
|
|
12
|
-
[](https://codecov.io/gh/quintalwebsolutions/quintal-oss)
|
|
12
|
+
[](https://app.codecov.io/gh/quintalwebsolutions/quintal-oss/flags?historicalTrend=LAST_7_DAYS&flags%5B0%5D=environment)
|
|
13
13
|
[](https://github.com/quintalwebsolutions/quintal-oss/blob/main/CONTRIBUTING.md)
|
|
14
14
|
|
|
15
15
|
Framework-agnostic environment variable validation for TypeScript powered by Zod
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quintal/environment",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Framework-agnostic environment variable validation for TypeScript powered by Zod",
|
|
6
6
|
"keywords": [
|
|
@@ -28,18 +28,17 @@
|
|
|
28
28
|
".dist"
|
|
29
29
|
],
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"zod": "^
|
|
31
|
+
"zod": "^4.1.12"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@
|
|
35
|
-
"
|
|
36
|
-
"happy-dom": "15.7.3",
|
|
34
|
+
"@vitest/coverage-v8": "3.2.4",
|
|
35
|
+
"happy-dom": "19.0.2",
|
|
37
36
|
"npm-run-all": "4.1.5",
|
|
38
|
-
"shx": "0.
|
|
39
|
-
"vite": "
|
|
40
|
-
"vitest": "2.
|
|
41
|
-
"zod": "
|
|
42
|
-
"@quintal/config": "0.
|
|
37
|
+
"shx": "0.4.0",
|
|
38
|
+
"vite": "7.1.9",
|
|
39
|
+
"vitest": "3.2.4",
|
|
40
|
+
"zod": "4.1.12",
|
|
41
|
+
"@quintal/config": "0.3.0"
|
|
43
42
|
},
|
|
44
43
|
"scripts": {
|
|
45
44
|
"build": "run-s build:*",
|