{ "ideaPluginManifestVersion": 1, "id": "com.example.hello-plugin", "displayName": "Hello Plugin", "publisher": "IdeA Examples", "version": "0.1.0", "description": "Minimal IdeA plugin example.", "main": "dist/index.js", "engines": { "idea": ">=0.1.0" }, "trustLevel": "full", "capabilities": [ "ui" ], "contributes": { "menus": [ { "id": "hello-plugin.menu", "label": "Hello", "topLevel": true } ], "menuItems": [ { "id": "hello-plugin.sayHello.item", "targetMenuId": "hello-plugin.menu", "label": "Say Hello", "command": "hello-plugin.sayHello" } ] } }