Stencil: attractive unpkg url for standalone component

First of all, thank you for Stencil. It is amazing tool with great potential.

I’ve been using it for my hobby project. It is a standalone component. It works great, but UNPKG URLs in Installation section of readme do not look attractive:

<script type="module" src="https://unpkg.com/img-comparison-slider@^1/dist/img-comparison-slider/img-comparison-slider.esm.js"></script>
<script nomodule="" src="https://unpkg.com/img-comparison-slider@^1/dist/img-comparison-slider/img-comparison-slider.js"></script>

The project’s name gets duplicated 6 times in 2 URLs in order to include properly include component. Although, there is a way to provide one single script tag:

<script nomodule="" src="https://unpkg.com/img-comparison-slider@^1/dist/img-comparison-slider.js"></script>

which is definitely looks better, this script fires warning in console and it is a huge no-no.

Is there any way to provide better looking UNPKG links for for the project of one single component?