Interface ModuleManifestRuntime

Information on how to execute the module

interface ModuleManifestRuntime {
    api: "nodejs-ipc";
    apiVersion: string;
    entrypoint: string;
    type: "node18" | "node22";
    [k: string]: unknown;
}

Indexable

  • [k: string]: unknown

Properties

api

Which host-api does it use. In the future alternate options will be allowed

apiVersion: string

The version of the host-api used

entrypoint: string

Entrypoint to pass to the runtime. eg index.js

type: "node18" | "node22"

Type of the module. Must be: node18 or node22