mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-15 02:20:38 +09:00
33 lines
761 B
TypeScript
33 lines
761 B
TypeScript
|
|
import type { PaperclipPluginManifestV1 } from "@paperclipai/plugin-sdk";
|
||
|
|
|
||
|
|
const manifest: PaperclipPluginManifestV1 = {
|
||
|
|
id: "paperclipai.plugin-authoring-smoke-example",
|
||
|
|
apiVersion: 1,
|
||
|
|
version: "0.1.0",
|
||
|
|
displayName: "Plugin Authoring Smoke Example",
|
||
|
|
description: "A Paperclip plugin",
|
||
|
|
author: "Plugin Author",
|
||
|
|
categories: ["connector"],
|
||
|
|
capabilities: [
|
||
|
|
"events.subscribe",
|
||
|
|
"plugin.state.read",
|
||
|
|
"plugin.state.write"
|
||
|
|
],
|
||
|
|
entrypoints: {
|
||
|
|
worker: "./dist/worker.js",
|
||
|
|
ui: "./dist/ui"
|
||
|
|
},
|
||
|
|
ui: {
|
||
|
|
slots: [
|
||
|
|
{
|
||
|
|
type: "dashboardWidget",
|
||
|
|
id: "health-widget",
|
||
|
|
displayName: "Plugin Authoring Smoke Example Health",
|
||
|
|
exportName: "DashboardWidget"
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
export default manifest;
|