I need to build an offline setup for a VScode IDE with some required VScode extension packages for python. The only available version of the VScode IDE that I'm able to use is 1.77.3, so that is NOT a variable here (well, it might be, but isn't right now).
So, the simple question is: is there some way to just use vsce (or other convenience tool) to query not only the versions of the VSIX package that are out there for download, but for each one, also get the compatible VScode version WITHOUT having to download the VSIX package itself??
I have a set of python methods that will try to figure out the latest compatible VSIX package version when given a VScode extension name in the {publisher}.{package} format and the VScode version. It is slow because the only way that I know of to extract the compatibility information is to download all possible VSIX package versions (extracted using vsce) and then loop through all of them, unzipping, and ingesting the package.json information to get the minimum compatible VScode version in the "engines/vscode" field.
The problem with this approach is that for some of the more frequently updated extension packs, there are a bazillion versions and I have to download each into a temporary directory, parse it, blow it away, etc. etc... this is taking a really long time to complete, although it works.