"""Vendor SPA dependencies inline (starter).

Copy MV's scripts/vendor_spa.py once you're ready to ship a real MCP
Apps UI.  Until then, this is a documented no-op.
"""

from __future__ import annotations


def main() -> None:
    """No-op placeholder — replace with real vendor pipeline when needed."""
    print(
        "vendor_spa.py: no-op placeholder — see MV's scripts/vendor_spa.py for the real pipeline."
    )


if __name__ == "__main__":
    main()
