envapt 1.0.0 → 1.0.1
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 +5 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,19 +32,17 @@ A powerful TypeScript-first environment configuration library that provides type
|
|
|
32
32
|
|
|
33
33
|
## Requirements
|
|
34
34
|
|
|
35
|
-
- **Node.js**:
|
|
35
|
+
- **Node.js**: v22 or later (recommended for ESM and nodenext support)
|
|
36
36
|
- **TypeScript**: v5.8 or later
|
|
37
37
|
- **Dependencies**:
|
|
38
38
|
- `dotenv` (runtime dependency | bundled)
|
|
39
|
-
- `reflect-metadata` (peer dependency, required for decorators)
|
|
40
39
|
- **TypeScript Compiler Options**:
|
|
41
40
|
- `experimentalDecorators: true`
|
|
42
|
-
- `
|
|
43
|
-
- `
|
|
44
|
-
- `
|
|
45
|
-
- `target: esnext`
|
|
41
|
+
- `module: nodenext OR esnext`
|
|
42
|
+
- `moduleResolution: nodenext OR bundler`
|
|
43
|
+
- `target: ESnext`
|
|
46
44
|
- `lib: ESNext`
|
|
47
|
-
- **ESM Support**: Project uses ESM
|
|
45
|
+
- **ESM Support**: Project uses ESM, so your environment and tooling should support ES modules.
|
|
48
46
|
|
|
49
47
|
## Quick Start
|
|
50
48
|
|