How do you get the current plugin version from the manifest?

Hi, I want to show the current plugin version on the panel.
How do I get the current version, the one from the manifest?
"version": "0.0.1",

1 Like
const pluginVersion = require("uxp").versions.plugin;
console.log("Plugin Version - v"+pluginVersion)
1 Like