Initial commit

This commit is contained in:
Aditya Gupta
2026-06-29 19:29:19 +05:30
committed by GitHub
commit aabb8986aa
292 changed files with 17976 additions and 0 deletions

9
packages/env/index.mts vendored Normal file
View File

@@ -0,0 +1,9 @@
import { baseEnv, dynamicEnvValues } from './lib/index.js';
import type { EnvType } from './lib/types.js';
export * from './lib/index.js';
export default {
...baseEnv,
...dynamicEnvValues,
} as EnvType;