Get Plugin Version from composer.json value

I’m trying to get the plugin version from composer.json) e.g. “version”: “2.7”
via props into the Panel?

  'fields' => [
    'pluginName' => [
      'props' => [
         'plugin_version' => function () {
            return $this->kirby()->version();
          },
        .....

Which returns the Kirby version, but I want the plugin version, but plugin() does not work?
Any pointers?

Not sure but you can try like this one:

$this->kirby()->plugin('getkirby/kql')->version();

Thanks ahmetbora, that did the trick. In my case:

$this->kirby()->plugin('company-name/plugin-name')->version();