• v0.1.0 6f449a0a43

    v0.1.0 - Initial Release
    Some checks failed
    CI / test (push) Failing after 58s
    CI / build (push) Has been skipped
    Release / release (push) Failing after 58s
    Stable

    7000pctAUTO released this 2026-01-29 15:16:51 +00:00 | 0 commits to main since this release

    What's Changed

    Initial release of ConfigForge - a powerful CLI tool for converting between configuration formats.

    Features

    • Format Conversion: Convert between JSON, YAML, TOML, ENV, and INI formats
    • Schema Validation: Validate configurations against JSON Schema specifications
    • TypeScript Generation: Generate TypeScript interfaces from configurations
    • Batch Processing: Convert multiple files with glob pattern support
    • Syntax Highlighting: Colorized output for better readability
    • Schema Inference: Automatically infer JSON Schema from configurations

    Installation

    cargo install --path .
    

    Quick Start

    # Convert JSON to YAML
    config-forge convert -i config.json -t yaml
    
    # Validate against schema
    config-forge validate -c config.json -s schema.json
    
    # Generate TypeScript
    config-forge generate-ts -i config.json -o config.ts
    

    Full Documentation

    See README.md for complete usage instructions.

    Downloads