@aviato-media/plugin-sdk
v1.1.1
Published
SDK for building plugins for Aviato.
Downloads
43
Maintainers
Readme
@aviato-media/plugin-sdk
SDK for building plugins for Aviato, a personal media management project by Ato.
Requirements
Plugins run under the Bun runtime. The SDK uses Bun.spawn and other Bun-native APIs, so plain Node.js is not supported.
Installation
bun add @aviato-media/plugin-sdkUsage
import { createPlugin, PluginClient } from '@aviato-media/plugin-sdk'
const plugin = createPlugin({
// your plugin handlers
})
new PluginClient(plugin).start()See src/index.ts for the full set of exported types and helpers.
