@cairnvibe/sdk 0.2.3 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/realtime-cli.js +1 -0
- package/package.json +1 -1
- package/src/realtime-cli.ts +1 -0
package/dist/realtime-cli.js
CHANGED
|
@@ -86,6 +86,7 @@ function spawnCompanion(command) {
|
|
|
86
86
|
process.on("SIGTERM", () => shutdown(0));
|
|
87
87
|
}
|
|
88
88
|
function main() {
|
|
89
|
+
loadDotEnv();
|
|
89
90
|
const withCommand = parseWithFlag(process.argv.slice(2));
|
|
90
91
|
// With --with, this process's real job is running the companion command
|
|
91
92
|
// (`next dev`, typically) — a missing key or an unbuilt manifest should
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cairnvibe/sdk",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "In-app AI copilot — <Copilot/> for React/Next.js, <cairn-widget> for any framework — plus the server handlers and realtime voice relay behind them.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": { "access": "public" },
|
package/src/realtime-cli.ts
CHANGED