blob: 5058311544a85d3d21715c9519c286a364df827b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import type { Manifest } from "@dispatch/kernel";
export const manifest: Manifest = {
id: "transport-ws",
name: "Transport WebSocket",
version: "0.0.0",
apiVersion: "^0.1.0",
trust: "bundled",
dependsOn: ["surface-registry", "session-orchestrator"],
capabilities: { network: true },
contributes: { routes: ["/ws/surfaces"] },
activation: "eager",
};
|