@melony/studio 0.2.6 → 0.2.7

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.
Files changed (2) hide show
  1. package/dist/cli.js +3 -1
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -1,3 +1,5 @@
1
+ #!/usr/bin/env node
2
+
1
3
  // src/cli.ts
2
4
  import "dotenv/config";
3
5
  import * as http from "http";
@@ -8,7 +10,7 @@ import { Command } from "commander";
8
10
  import open from "open";
9
11
  var __dirname = path.dirname(fileURLToPath(import.meta.url));
10
12
  var program = new Command();
11
- program.name("melony-studio").description("Melony Studio - A local UI for interacting with and debugging Melony agents").version("0.2.5").option("-p, --port <port>", "Port to run the studio on", "4000").option("-u, --url <url>", "Agent server BASE_URL", process.env.MELONY_SERVER_URL ?? "http://localhost:4001").action(async (options) => {
13
+ program.name("melony-studio").description("Melony Studio - A local UI for interacting with and debugging Melony agents").version("0.2.7").option("-p, --port <port>", "Port to run the studio on", "4000").option("-u, --url <url>", "Agent server BASE_URL", process.env.MELONY_SERVER_URL ?? "http://localhost:4001").action(async (options) => {
12
14
  const port = parseInt(options.port);
13
15
  const baseUrl = options.url;
14
16
  const studioRoot = path.resolve(__dirname, "./studio");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@melony/studio",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
4
4
  "description": "A local UI for interacting with and debugging Melony agents.",
5
5
  "type": "module",
6
6
  "bin": {