@ogi-sdk/executor
v1.3.0
Published
Addon process execution and setup helpers for OpenGameInstaller.
Downloads
336
Readme
@ogi-sdk/executor
Execution utilities for OpenGameInstaller addons. This package contains helpers for addon setup, launch, Git-based addon loading, and addon configuration validation.
Installation
bun add @ogi-sdk/executorUsage
import { Addon } from '@ogi-sdk/executor';
const addon = new Addon({
name: 'my-addon',
path: './my-addon',
port: 3000,
secret: 'dev-secret',
});
await addon.setup.runSetup();Development
bun install
bun run build
bun run typecheckRelease
bun run release
# or publish a future/beta tag
bun run release-beta