mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
8131041701
* Refactor extension format and load plugins from directory * Added some UI around plugins * Refactor PromptModal usage
16 lines
371 B
JavaScript
16 lines
371 B
JavaScript
module.exports = `
|
|
{
|
|
"name": "{{ name }}",
|
|
"displayName": "{{ displayName }}",
|
|
"version": "{{ version | default('0.0.1') }}",
|
|
"private": true,
|
|
"main": "plugin.js",
|
|
"description": "{{ description | default('A plugin for Insomnia') }}",
|
|
"dependencies": {},
|
|
"devEngines": {
|
|
"node": "7.4",
|
|
"npm": "4.x | 5.x"
|
|
}
|
|
}
|
|
`.trim();
|