mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
13470345fe
Introduces new `package.json` properties for upcoming plugin hub updates to `insomnia-plugin-kong-bundle`. - Add `$.insomnia.displayName` for plugin display name on UI & GUIs - Add `$.insomnia.bundle` boolean flag denotes bundle status to show individual plugins on hub - Add `$.insomnia.applications` object to be used for install buttons and checks - Add `$.insomnia.images.icon` property for plugin icon - Add `$.insomnia.images.cover` property for plugin cover image
23 lines
559 B
JSON
23 lines
559 B
JSON
{
|
|
"name": "insomnia-plugin-kong-bundle",
|
|
"version": "2.2.4",
|
|
"main": "index.js",
|
|
"insomnia": {
|
|
"name": "kong-bundle",
|
|
"displayName": "Kong Plugin Bundle",
|
|
"description": "Bundle of all Kong functionality",
|
|
"bundle": true,
|
|
"applications": {
|
|
"designer": "*"
|
|
},
|
|
"images": {
|
|
"icon": "icon.svg",
|
|
"cover": "cover.svg"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"insomnia-plugin-kong-declarative-config": "^2.2.4",
|
|
"insomnia-plugin-kong-kubernetes-config": "^2.2.4",
|
|
"insomnia-plugin-kong-portal": "^2.2.4"
|
|
}
|
|
} |