Does Unity Package manager supports NPM tags?

We are using NPM tags for our development process to publish to the internal registry with standard NPM Tags.

Example:

npm publish --access public --registry <URL> --tag development

We want to be able to install a package as a reference to a Tag version instead of using a specific version number.

For example, we need this for internal build server to differentiate which packages to use to build and test PR.
We just say tag instead of a specific version.

"com.company.xrprovider": "1.0.0-preview.11",
"com.company.xrprovider": "development",

How could I say Unity to load the last package with NPM Tag? Or what are the options here?

Thank you.

reference:
docs.npmjs.com/cli/publish

Hi @Bajana ,

We don’t currently have plans to support npm dist-tags. What you could do is run npm dist-tag ls <package-name> --registry <URL> on the build machine to look up the package version, then write that version in the Unity project manifest.