- capability manifeste tooling supportée backend + transport runtime catalog - ctx.services publique côté SDK/runtime, gated par tooling - surface honnête: workspace, terminal, et tasks en observation/contrôle uniquement - docs/exemple/tests mis à jour - QA PASS sur feature/sdk-plugin-tooling-build-debug-surface
45 lines
956 B
JSON
45 lines
956 B
JSON
{
|
|
"ideaPluginManifestVersion": 1,
|
|
"id": "com.example.hello-plugin",
|
|
"displayName": "Hello Plugin",
|
|
"publisher": "IdeA Examples",
|
|
"version": "0.1.0",
|
|
"description": "SDK example plugin for validating command, menu and layout loading.",
|
|
"main": "dist/index.js",
|
|
"engines": {
|
|
"idea": ">=0.1.0"
|
|
},
|
|
"trustLevel": "full",
|
|
"capabilities": [
|
|
"ui",
|
|
"tooling"
|
|
],
|
|
"contributes": {
|
|
"menus": [
|
|
{
|
|
"id": "hello-plugin.menu",
|
|
"label": "Hello Plugin",
|
|
"topLevel": true,
|
|
"order": 100
|
|
}
|
|
],
|
|
"menuItems": [
|
|
{
|
|
"id": "hello-plugin.command.item",
|
|
"targetMenuId": "hello-plugin.menu",
|
|
"label": "hello-plugin",
|
|
"command": "hello-plugin",
|
|
"order": 10
|
|
}
|
|
],
|
|
"layouts": [
|
|
{
|
|
"type": "hello-plugin.hello-world",
|
|
"label": "hello-world",
|
|
"component": "hello-world",
|
|
"order": 10
|
|
}
|
|
]
|
|
}
|
|
}
|