junis 0.1.0 → 0.1.1

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/cli/index.js CHANGED
@@ -112,7 +112,7 @@ var RelayClient = class {
112
112
  destroyed = false;
113
113
  async connect() {
114
114
  if (this.destroyed) return;
115
- const url = `${JUNIS_WS}/api/ws/devices/${this.config.device_key}?token=${this.config.token}`;
115
+ const url = `${JUNIS_WS}/ws/devices/${this.config.device_key}?token=${this.config.token}`;
116
116
  console.log(`\u{1F517} \uB9B4\uB808\uC774 \uC11C\uBC84 \uC5F0\uACB0 \uC911...`);
117
117
  this.ws = new import_ws.default(url);
118
118
  this.ws.on("open", () => {
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "junis",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "One-line device control for AI agents",
5
5
  "bin": {
6
- "junis": "./dist/cli/index.js"
6
+ "junis": "dist/cli/index.js"
7
7
  },
8
8
  "scripts": {
9
9
  "build": "tsup src/cli/index.ts --format cjs --dts --out-dir dist/cli && tsup src/server/mcp.ts --format cjs --out-dir dist/server && tsup src/server/stdio.ts --format cjs --out-dir dist/server",