summaryrefslogtreecommitdiffhomepage
path: root/packages/transport-ws/src/manifest.ts
blob: eef6f4579e616a32bc114c5ee938302d7429e92d (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",
};