zorath-env 0.3.4

Fast CLI for .env validation against JSON schemas. Type checking, secret detection, remote schemas, env diff, docs generation. CI-friendly exit codes. Language-agnostic, single-binary CLI.
{
  "DATABASE_URL": {
    "type": "url",
    "required": true,
    "default": "postgres://localhost:5432/myapp",
    "description": "Primary database connection string"
  },
  "FEATURE_X_ENABLED": {
    "type": "bool",
    "required": false,
    "default": true,
    "description": "Enables feature X in the app"
  },
  "NODE_ENV": {
    "type": "enum",
    "required": true,
    "default": "development",
    "values": ["development", "staging", "production"],
    "description": "Runtime environment"
  },
  "PORT": {
    "type": "int",
    "required": false,
    "default": 3000,
    "description": "HTTP port"
  }
}