mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* add simple test apps that use usePluginComponent hook and exposeComponent api * add e2e test * update readme * Update README.md * fix lint issue * pr feedback
37 lines
849 B
JSON
37 lines
849 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/grafana/grafana/main/docs/sources/developers/plugins/plugin.schema.json",
|
|
"type": "app",
|
|
"name": "Extension Point App",
|
|
"id": "myorg-extensionpoint-app",
|
|
"preload": true,
|
|
"info": {
|
|
"keywords": ["app"],
|
|
"description": "Show case how to add an extension point to your plugin",
|
|
"author": {
|
|
"name": "Myorg"
|
|
},
|
|
"logos": {
|
|
"small": "img/logo.svg",
|
|
"large": "img/logo.svg"
|
|
},
|
|
"screenshots": [],
|
|
"version": "1.0.0",
|
|
"updated": "2024-06-11"
|
|
},
|
|
"includes": [
|
|
{
|
|
"type": "page",
|
|
"name": "Default",
|
|
"path": "/a/myorg-extensionpoint-app",
|
|
"role": "Admin",
|
|
"addToNav": true,
|
|
"defaultNav": true
|
|
}
|
|
],
|
|
"dependencies": {
|
|
"grafanaDependency": ">=10.3.3",
|
|
"plugins": []
|
|
},
|
|
"extensions": []
|
|
}
|