#!/usr/bin/env runts -- --allow-env --allow-run const PYTHON_CONFIG_FILE = "~/.config/python-config.json"; interface PythonConfig { default_version?: string; default_profile?: string; python_venv_base_path?: string; versions: Map; profiles?: Map; } interface PythonVersion { version: string; path: string; comment?: string; } interface PythonVenv { version: string; path: string; comment?: string; } async function main() { // TODO ... } await main(); // TODO ...