{
    "$schema": "http://json-schema.org/schema",
    "$id": "jasmine-to-jest",
    "title": "a custom schematic ",
    "type": "object",
    "properties": {
        "packageManager": {
            "description": "The package manager used to install dependencies.",
            "type": "string",
            "enum": [
                "npm",
                "yarn",
                "pnpm",
                "cnpm",
                "bun"
            ],
            "default": "npm",
            "x-prompt": "Which package manager do you want?"
        }
    }
}