mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-04 22:08:29 +00:00
* feature-2054 plugin cli * plugin cli * readme changes * npm publish * Review comments * Review comments * cli fix * added build flag
25 lines
No EOL
605 B
Perl
25 lines
No EOL
605 B
Perl
---
|
|
to: <%= plugins_path %>/packages/<%= name %>/lib/manifest.json
|
|
---
|
|
<%
|
|
Display_name = h.capitalize(display_name)
|
|
%>
|
|
{
|
|
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
|
|
"title": "<%= Name %> datasource",
|
|
"description": "A schema defining <%= name %> datasource",
|
|
"type": "<%= type %>",
|
|
"source": {
|
|
"name": "<%= Display_name %>",
|
|
"kind": "<%= name %>",
|
|
"exposedVariables": {
|
|
"isLoading": {},
|
|
"data": {},
|
|
"rawData": {}
|
|
},
|
|
"options": {}
|
|
},
|
|
"defaults": {},
|
|
"properties": {},
|
|
"required": []
|
|
} |