@dxos/plugin-conductor 0.9.0 → 0.9.1-main.c7dcc2e112
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/neutral/{CanvasArticle-KEPXL3ZT.mjs → CanvasArticle-2R4NLX4E.mjs} +3 -2
- package/dist/lib/neutral/CanvasArticle-2R4NLX4E.mjs.map +7 -0
- package/dist/lib/neutral/ConductorPlugin.mjs +2 -2
- package/dist/lib/neutral/ConductorPlugin.mjs.map +4 -4
- package/dist/lib/neutral/chunk-O75NOQHZ.mjs +50 -0
- package/dist/lib/neutral/chunk-O75NOQHZ.mjs.map +7 -0
- package/dist/lib/neutral/containers/index.mjs +1 -1
- package/dist/lib/neutral/index.mjs +1 -1
- package/dist/lib/neutral/meta.json +1 -1
- package/dist/lib/neutral/meta.mjs +1 -1
- package/dist/lib/neutral/plugin.mjs +1 -1
- package/dist/lib/neutral/translations.mjs +1 -1
- package/dist/lib/neutral/translations.mjs.map +3 -3
- package/dist/types/dx.config.d.ts +28 -0
- package/dist/types/dx.config.d.ts.map +1 -0
- package/dist/types/src/capabilities/index.d.ts +2 -7
- package/dist/types/src/capabilities/index.d.ts.map +1 -1
- package/dist/types/src/capabilities/react-surface.d.ts +2 -2
- package/dist/types/src/capabilities/react-surface.d.ts.map +1 -1
- package/dist/types/src/containers/CanvasArticle/CanvasArticle.d.ts +1 -1
- package/dist/types/src/containers/CanvasArticle/CanvasArticle.d.ts.map +1 -1
- package/dist/types/src/meta.d.ts +28 -2
- package/dist/types/src/meta.d.ts.map +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/dx.config.ts +34 -0
- package/package.json +25 -24
- package/src/ConductorPlugin.test.ts +1 -1
- package/src/ConductorPlugin.tsx +1 -1
- package/src/containers/CanvasArticle/CanvasArticle.tsx +2 -2
- package/src/meta.ts +2 -27
- package/src/translations.ts +1 -1
- package/dist/lib/neutral/CanvasArticle-KEPXL3ZT.mjs.map +0 -7
- package/dist/lib/neutral/chunk-WDHL35VB.mjs +0 -39
- package/dist/lib/neutral/chunk-WDHL35VB.mjs.map +0 -7
package/dx.config.ts
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Copyright 2025 DXOS.org
|
|
3
|
+
//
|
|
4
|
+
|
|
5
|
+
import { Config2 } from '@dxos/app-framework/config';
|
|
6
|
+
import { trim } from '@dxos/util';
|
|
7
|
+
|
|
8
|
+
export default Config2.make({
|
|
9
|
+
plugin: {
|
|
10
|
+
key: 'org.dxos.plugin.conductor',
|
|
11
|
+
name: 'Conductor',
|
|
12
|
+
author: 'DXOS',
|
|
13
|
+
description: trim`
|
|
14
|
+
Conductor is a visual node-based compute graph plugin for DXOS Composer.
|
|
15
|
+
It lets you compose reactive data pipelines by connecting typed input and output ports on a
|
|
16
|
+
drag-and-drop infinite canvas — no code required for common automation patterns.
|
|
17
|
+
|
|
18
|
+
Each node in the graph is a first-class ECHO object, so the full pipeline topology is
|
|
19
|
+
replicated to every collaborator in real time via the local-first runtime.
|
|
20
|
+
Built-in node types cover constants, templates, boolean logic, control flow, JSON transforms,
|
|
21
|
+
ECHO database access, append-only queues, and conversation threads.
|
|
22
|
+
|
|
23
|
+
AI orchestration is a first-class concern: the GPT node connects to plugin-assistant's AiService
|
|
24
|
+
and supports tool calling, streaming replies, and configurable system prompts.
|
|
25
|
+
Function nodes can invoke any Blueprint operation registered in the space, making it straightforward
|
|
26
|
+
to compose multi-step agent workflows visually and share them across teams.
|
|
27
|
+
`,
|
|
28
|
+
icon: { key: 'ph--infinity--regular', hue: 'sky' },
|
|
29
|
+
source: 'https://github.com/dxos/dxos/tree/main/packages/plugins/plugin-conductor',
|
|
30
|
+
spec: 'PLUGIN.mdl',
|
|
31
|
+
tags: ['labs'],
|
|
32
|
+
screenshots: [{ dark: 'https://dxos.network/plugin-details-canvas-dark.png' }],
|
|
33
|
+
},
|
|
34
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dxos/plugin-conductor",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.1-main.c7dcc2e112",
|
|
4
4
|
"description": "Composer plugin for conductor.",
|
|
5
5
|
"homepage": "https://dxos.org",
|
|
6
6
|
"bugs": "https://github.com/dxos/dxos/issues",
|
|
@@ -65,28 +65,29 @@
|
|
|
65
65
|
"types": "dist/types/src/index.d.ts",
|
|
66
66
|
"files": [
|
|
67
67
|
"dist",
|
|
68
|
+
"dx.config.ts",
|
|
68
69
|
"src",
|
|
69
70
|
"PLUGIN.mdl"
|
|
70
71
|
],
|
|
71
72
|
"dependencies": {
|
|
72
73
|
"effect": "3.21.3",
|
|
73
|
-
"@dxos/ai": "0.9.
|
|
74
|
-
"@dxos/
|
|
75
|
-
"@dxos/
|
|
76
|
-
"@dxos/
|
|
77
|
-
"@dxos/
|
|
78
|
-
"@dxos/
|
|
79
|
-
"@dxos/
|
|
80
|
-
"@dxos/
|
|
81
|
-
"@dxos/
|
|
82
|
-
"@dxos/log": "0.9.
|
|
83
|
-
"@dxos/plugin-
|
|
84
|
-
"@dxos/plugin-space": "0.9.
|
|
85
|
-
"@dxos/
|
|
86
|
-
"@dxos/react-ui-canvas-compute": "0.9.
|
|
87
|
-
"@dxos/react-ui-canvas-editor": "0.9.
|
|
88
|
-
"@dxos/
|
|
89
|
-
"@dxos/
|
|
74
|
+
"@dxos/ai": "0.9.1-main.c7dcc2e112",
|
|
75
|
+
"@dxos/app-toolkit": "0.9.1-main.c7dcc2e112",
|
|
76
|
+
"@dxos/compute": "0.9.1-main.c7dcc2e112",
|
|
77
|
+
"@dxos/app-framework": "0.9.1-main.c7dcc2e112",
|
|
78
|
+
"@dxos/echo": "0.9.1-main.c7dcc2e112",
|
|
79
|
+
"@dxos/conductor": "0.9.1-main.c7dcc2e112",
|
|
80
|
+
"@dxos/edge-client": "0.9.1-main.c7dcc2e112",
|
|
81
|
+
"@dxos/functions": "0.9.1-main.c7dcc2e112",
|
|
82
|
+
"@dxos/keys": "0.9.1-main.c7dcc2e112",
|
|
83
|
+
"@dxos/log": "0.9.1-main.c7dcc2e112",
|
|
84
|
+
"@dxos/plugin-automation": "0.9.1-main.c7dcc2e112",
|
|
85
|
+
"@dxos/plugin-space": "0.9.1-main.c7dcc2e112",
|
|
86
|
+
"@dxos/react-client": "0.9.1-main.c7dcc2e112",
|
|
87
|
+
"@dxos/react-ui-canvas-compute": "0.9.1-main.c7dcc2e112",
|
|
88
|
+
"@dxos/react-ui-canvas-editor": "0.9.1-main.c7dcc2e112",
|
|
89
|
+
"@dxos/util": "0.9.1-main.c7dcc2e112",
|
|
90
|
+
"@dxos/plugin-client": "0.9.1-main.c7dcc2e112"
|
|
90
91
|
},
|
|
91
92
|
"devDependencies": {
|
|
92
93
|
"@types/react": "~19.2.7",
|
|
@@ -94,17 +95,17 @@
|
|
|
94
95
|
"react": "~19.2.3",
|
|
95
96
|
"react-dom": "~19.2.3",
|
|
96
97
|
"vite": "^8.0.16",
|
|
97
|
-
"@dxos/
|
|
98
|
-
"@dxos/
|
|
99
|
-
"@dxos/
|
|
100
|
-
"@dxos/
|
|
98
|
+
"@dxos/plugin-testing": "0.9.1-main.c7dcc2e112",
|
|
99
|
+
"@dxos/react-ui": "0.9.1-main.c7dcc2e112",
|
|
100
|
+
"@dxos/ui-theme": "0.9.1-main.c7dcc2e112",
|
|
101
|
+
"@dxos/storybook-utils": "0.9.1-main.c7dcc2e112"
|
|
101
102
|
},
|
|
102
103
|
"peerDependencies": {
|
|
103
104
|
"effect": "3.21.3",
|
|
104
105
|
"react": "~19.2.3",
|
|
105
106
|
"react-dom": "~19.2.3",
|
|
106
|
-
"@dxos/react-ui": "0.9.
|
|
107
|
-
"@dxos/ui-theme": "0.9.
|
|
107
|
+
"@dxos/react-ui": "0.9.1-main.c7dcc2e112",
|
|
108
|
+
"@dxos/ui-theme": "0.9.1-main.c7dcc2e112"
|
|
108
109
|
},
|
|
109
110
|
"publishConfig": {
|
|
110
111
|
"access": "public"
|
|
@@ -11,7 +11,7 @@ import { ConductorPlugin } from '#plugin';
|
|
|
11
11
|
|
|
12
12
|
import { meta } from './meta';
|
|
13
13
|
|
|
14
|
-
const moduleId = (name: string) => `${meta.
|
|
14
|
+
const moduleId = (name: string) => `${meta.profile.key}.module.${name}`;
|
|
15
15
|
|
|
16
16
|
describe('ConductorPlugin', () => {
|
|
17
17
|
test('modules activate on the expected events', async ({ expect }) => {
|
package/src/ConductorPlugin.tsx
CHANGED
|
@@ -20,7 +20,7 @@ export const ConductorPlugin = Plugin.define(meta).pipe(
|
|
|
20
20
|
AppPlugin.addSurfaceModule({ activate: ReactSurface }),
|
|
21
21
|
AppPlugin.addTranslationsModule({ translations }),
|
|
22
22
|
AppPlugin.addPluginAssetModule({
|
|
23
|
-
asset: { pluginId: meta.
|
|
23
|
+
asset: { pluginId: meta.profile.key, path: 'PLUGIN.mdl', content: pluginSpec, mimeType: 'application/x-mdl' },
|
|
24
24
|
}),
|
|
25
25
|
Plugin.make,
|
|
26
26
|
);
|
|
@@ -9,7 +9,7 @@ import React, { Fragment, useEffect, useMemo, useRef } from 'react';
|
|
|
9
9
|
import { AiService } from '@dxos/ai';
|
|
10
10
|
import { Capabilities } from '@dxos/app-framework';
|
|
11
11
|
import { useCapability } from '@dxos/app-framework/ui';
|
|
12
|
-
import {
|
|
12
|
+
import { AppSurface } from '@dxos/app-toolkit/ui';
|
|
13
13
|
import { Credential, Operation, OperationRegistry, ServiceResolver } from '@dxos/compute';
|
|
14
14
|
import { ComputeGraphModel } from '@dxos/conductor';
|
|
15
15
|
import { Database, Feed, Obj } from '@dxos/echo';
|
|
@@ -58,7 +58,7 @@ export const CanvasArticle = ({ role, subject, attendableId: _attendableId }: Ca
|
|
|
58
58
|
return;
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
-
const Root = role ===
|
|
61
|
+
const Root = role === AppSurface.Section.role ? Container : Fragment;
|
|
62
62
|
|
|
63
63
|
return (
|
|
64
64
|
<ComputeContext.Provider value={{ controller }}>
|
package/src/meta.ts
CHANGED
|
@@ -3,32 +3,7 @@
|
|
|
3
3
|
//
|
|
4
4
|
|
|
5
5
|
import { Plugin } from '@dxos/app-framework';
|
|
6
|
-
import { DXN } from '@dxos/keys';
|
|
7
|
-
import { trim } from '@dxos/util';
|
|
8
6
|
|
|
9
|
-
|
|
10
|
-
key: DXN.make('org.dxos.plugin.conductor'),
|
|
11
|
-
name: 'Conductor',
|
|
12
|
-
author: 'DXOS',
|
|
13
|
-
description: trim`
|
|
14
|
-
Conductor is a visual node-based compute graph plugin for DXOS Composer.
|
|
15
|
-
It lets you compose reactive data pipelines by connecting typed input and output ports on a
|
|
16
|
-
drag-and-drop infinite canvas — no code required for common automation patterns.
|
|
7
|
+
import config from '../dx.config';
|
|
17
8
|
|
|
18
|
-
|
|
19
|
-
replicated to every collaborator in real time via the local-first runtime.
|
|
20
|
-
Built-in node types cover constants, templates, boolean logic, control flow, JSON transforms,
|
|
21
|
-
ECHO database access, append-only queues, and conversation threads.
|
|
22
|
-
|
|
23
|
-
AI orchestration is a first-class concern: the GPT node connects to plugin-assistant's AiService
|
|
24
|
-
and supports tool calling, streaming replies, and configurable system prompts.
|
|
25
|
-
Function nodes can invoke any Blueprint operation registered in the space, making it straightforward
|
|
26
|
-
to compose multi-step agent workflows visually and share them across teams.
|
|
27
|
-
`,
|
|
28
|
-
icon: 'ph--infinity--regular',
|
|
29
|
-
iconHue: 'sky',
|
|
30
|
-
source: 'https://github.com/dxos/dxos/tree/main/packages/plugins/plugin-conductor',
|
|
31
|
-
spec: 'PLUGIN.mdl',
|
|
32
|
-
tags: ['labs'],
|
|
33
|
-
screenshots: ['https://dxos.network/plugin-details-canvas-dark.png'],
|
|
34
|
-
});
|
|
9
|
+
export const meta = Plugin.getMetaFromConfig(config);
|
package/src/translations.ts
CHANGED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../../src/containers/CanvasArticle/CanvasArticle.tsx"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2024 DXOS.org\n//\n\nimport * as Effect from 'effect/Effect';\nimport type * as Exit from 'effect/Exit';\nimport React, { Fragment, useEffect, useMemo, useRef } from 'react';\n\nimport { AiService } from '@dxos/ai';\nimport { Capabilities } from '@dxos/app-framework';\nimport { useCapability } from '@dxos/app-framework/ui';\nimport { type AppSurface } from '@dxos/app-toolkit/ui';\nimport { Credential, Operation, OperationRegistry, ServiceResolver } from '@dxos/compute';\nimport { ComputeGraphModel } from '@dxos/conductor';\nimport { Database, Feed, Obj } from '@dxos/echo';\nimport { useObject } from '@dxos/react-client/echo';\nimport { Flex, type FlexProps } from '@dxos/react-ui';\nimport {\n ComputeContext,\n ComputeGraphController,\n type ComputeShape,\n ComputeShapeLayout,\n computeShapes,\n useComputeGraphController,\n useGraphMonitor,\n} from '@dxos/react-ui-canvas-compute';\nimport {\n type CanvasBoard,\n CanvasGraphModel,\n Editor,\n type EditorController,\n KeyboardContainer,\n ShapeRegistry,\n} from '@dxos/react-ui-canvas-editor';\n\nexport type CanvasArticleProps = AppSurface.ObjectArticleProps<CanvasBoard.CanvasBoard>;\n\nexport const CanvasArticle = ({ role, subject, attendableId: _attendableId }: CanvasArticleProps) => {\n const [canvas] = useObject(subject);\n const id = Obj.getURI(canvas);\n const graph = useMemo(\n () => CanvasGraphModel.create<ComputeShape>(canvas.layout, (fn) => Obj.update(subject, fn)),\n [subject, canvas.layout],\n );\n const controller = useGraphController(subject);\n const graphMonitor = useGraphMonitor(controller?.graph);\n const registry = useMemo(() => new ShapeRegistry(computeShapes), []);\n const editorRef = useRef<EditorController>(null);\n useComputeGraphController({ controller, graph, editorRef });\n\n // Layout.\n const layout = useMemo(\n () => (controller && registry ? new ComputeShapeLayout(controller, registry) : undefined),\n [controller, registry],\n );\n\n if (!controller) {\n return;\n }\n\n const Root = role === 'section' ? Container : Fragment;\n\n return (\n <ComputeContext.Provider value={{ controller }}>\n <Root>\n <KeyboardContainer id={id}>\n <Editor.Root\n id={id}\n ref={editorRef}\n graph={graph}\n graphMonitor={graphMonitor as any}\n registry={registry}\n layout={layout}\n >\n <Editor.Canvas />\n <Editor.UI showTools />\n </Editor.Root>\n </KeyboardContainer>\n </Root>\n </ComputeContext.Provider>\n );\n};\n\nconst Container = (props: FlexProps) => <Flex {...props} classNames='aspect-square' />;\n\nconst useGraphController = (canvas: CanvasBoard.CanvasBoard) => {\n const db = Obj.getDatabase(canvas);\n const processManagerRuntime = useCapability(Capabilities.ProcessManagerRuntime);\n const [computeGraph] = useObject(canvas.computeGraph);\n const controller = useMemo(() => {\n if (!canvas.computeGraph?.target || !db) {\n return null;\n }\n const spaceId = db.spaceId;\n const model = new ComputeGraphModel(canvas.computeGraph?.target);\n const spaceLayer = ServiceResolver.provide(\n { space: spaceId },\n AiService.AiService,\n Database.Service,\n Feed.FeedService,\n Credential.CredentialsService,\n Operation.Service,\n OperationRegistry.Service,\n );\n const computeGraphRuntime = {\n runPromiseExit: <A, E>(effect: Effect.Effect<A, E, any>): Promise<Exit.Exit<A, E>> =>\n processManagerRuntime.runPromiseExit(effect.pipe(Effect.provide(spaceLayer)) as any) as Promise<\n Exit.Exit<A, E>\n >,\n };\n const controller = new ComputeGraphController(computeGraphRuntime, model);\n return controller;\n }, [computeGraph, db, processManagerRuntime]);\n\n useEffect(() => {\n if (!controller) {\n return;\n }\n\n void controller.open();\n return () => {\n void controller.close();\n };\n }, [controller]);\n\n return controller;\n};\n"],
|
|
5
|
-
"mappings": "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",
|
|
6
|
-
"names": ["Effect", "React", "Fragment", "useEffect", "useMemo", "useRef", "AiService", "Capabilities", "useCapability", "Credential", "Operation", "OperationRegistry", "ServiceResolver", "ComputeGraphModel", "Database", "Feed", "Obj", "useObject", "Flex", "ComputeContext", "ComputeGraphController", "ComputeShapeLayout", "computeShapes", "useComputeGraphController", "useGraphMonitor", "CanvasGraphModel", "Editor", "KeyboardContainer", "ShapeRegistry", "CanvasArticle", "role", "subject", "attendableId", "_attendableId", "canvas", "id", "getURI", "graph", "create", "layout", "fn", "update", "controller", "useGraphController", "graphMonitor", "registry", "editorRef", "undefined", "Root", "Container", "Provider", "value", "ref", "Canvas", "UI", "showTools", "props", "classNames", "db", "getDatabase", "processManagerRuntime", "ProcessManagerRuntime", "computeGraph", "target", "spaceId", "model", "spaceLayer", "provide", "space", "Service", "FeedService", "CredentialsService", "computeGraphRuntime", "runPromiseExit", "effect", "pipe", "open", "close"]
|
|
7
|
-
}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
// src/meta.ts
|
|
2
|
-
import { Plugin } from "@dxos/app-framework";
|
|
3
|
-
import { DXN } from "@dxos/keys";
|
|
4
|
-
import { trim } from "@dxos/util";
|
|
5
|
-
var meta = Plugin.makeMeta({
|
|
6
|
-
key: DXN.make("org.dxos.plugin.conductor"),
|
|
7
|
-
name: "Conductor",
|
|
8
|
-
author: "DXOS",
|
|
9
|
-
description: trim`
|
|
10
|
-
Conductor is a visual node-based compute graph plugin for DXOS Composer.
|
|
11
|
-
It lets you compose reactive data pipelines by connecting typed input and output ports on a
|
|
12
|
-
drag-and-drop infinite canvas — no code required for common automation patterns.
|
|
13
|
-
|
|
14
|
-
Each node in the graph is a first-class ECHO object, so the full pipeline topology is
|
|
15
|
-
replicated to every collaborator in real time via the local-first runtime.
|
|
16
|
-
Built-in node types cover constants, templates, boolean logic, control flow, JSON transforms,
|
|
17
|
-
ECHO database access, append-only queues, and conversation threads.
|
|
18
|
-
|
|
19
|
-
AI orchestration is a first-class concern: the GPT node connects to plugin-assistant's AiService
|
|
20
|
-
and supports tool calling, streaming replies, and configurable system prompts.
|
|
21
|
-
Function nodes can invoke any Blueprint operation registered in the space, making it straightforward
|
|
22
|
-
to compose multi-step agent workflows visually and share them across teams.
|
|
23
|
-
`,
|
|
24
|
-
icon: "ph--infinity--regular",
|
|
25
|
-
iconHue: "sky",
|
|
26
|
-
source: "https://github.com/dxos/dxos/tree/main/packages/plugins/plugin-conductor",
|
|
27
|
-
spec: "PLUGIN.mdl",
|
|
28
|
-
tags: [
|
|
29
|
-
"labs"
|
|
30
|
-
],
|
|
31
|
-
screenshots: [
|
|
32
|
-
"https://dxos.network/plugin-details-canvas-dark.png"
|
|
33
|
-
]
|
|
34
|
-
});
|
|
35
|
-
|
|
36
|
-
export {
|
|
37
|
-
meta
|
|
38
|
-
};
|
|
39
|
-
//# sourceMappingURL=chunk-WDHL35VB.mjs.map
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../../src/meta.ts"],
|
|
4
|
-
"sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { Plugin } from '@dxos/app-framework';\nimport { DXN } from '@dxos/keys';\nimport { trim } from '@dxos/util';\n\nexport const meta = Plugin.makeMeta({\n key: DXN.make('org.dxos.plugin.conductor'),\n name: 'Conductor',\n author: 'DXOS',\n description: trim`\n Conductor is a visual node-based compute graph plugin for DXOS Composer.\n It lets you compose reactive data pipelines by connecting typed input and output ports on a\n drag-and-drop infinite canvas — no code required for common automation patterns.\n\n Each node in the graph is a first-class ECHO object, so the full pipeline topology is\n replicated to every collaborator in real time via the local-first runtime.\n Built-in node types cover constants, templates, boolean logic, control flow, JSON transforms,\n ECHO database access, append-only queues, and conversation threads.\n\n AI orchestration is a first-class concern: the GPT node connects to plugin-assistant's AiService\n and supports tool calling, streaming replies, and configurable system prompts.\n Function nodes can invoke any Blueprint operation registered in the space, making it straightforward\n to compose multi-step agent workflows visually and share them across teams.\n `,\n icon: 'ph--infinity--regular',\n iconHue: 'sky',\n source: 'https://github.com/dxos/dxos/tree/main/packages/plugins/plugin-conductor',\n spec: 'PLUGIN.mdl',\n tags: ['labs'],\n screenshots: ['https://dxos.network/plugin-details-canvas-dark.png'],\n});\n"],
|
|
5
|
-
"mappings": ";AAIA,SAASA,cAAc;AACvB,SAASC,WAAW;AACpB,SAASC,YAAY;AAEd,IAAMC,OAAOH,OAAOI,SAAS;EAClCC,KAAKJ,IAAIK,KAAK,2BAAA;EACdC,MAAM;EACNC,QAAQ;EACRC,aAAaP;;;;;;;;;;;;;;;EAebQ,MAAM;EACNC,SAAS;EACTC,QAAQ;EACRC,MAAM;EACNC,MAAM;IAAC;;EACPC,aAAa;IAAC;;AAChB,CAAA;",
|
|
6
|
-
"names": ["Plugin", "DXN", "trim", "meta", "makeMeta", "key", "make", "name", "author", "description", "icon", "iconHue", "source", "spec", "tags", "screenshots"]
|
|
7
|
-
}
|