@kmmao/happy-agent 0.2.0 → 0.2.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/index.cjs CHANGED
@@ -11,7 +11,7 @@ var qrcode = require('qrcode-terminal');
11
11
  var node_events = require('node:events');
12
12
  var socket_ioClient = require('socket.io-client');
13
13
 
14
- var version = "0.2.0";
14
+ var version = "0.2.1";
15
15
 
16
16
  function loadConfig() {
17
17
  const serverUrl = (process.env.HAPPY_SERVER_URL ?? "https://api.cluster-fluster.com").replace(/\/+$/, "");
package/dist/index.mjs CHANGED
@@ -9,7 +9,7 @@ import qrcode from 'qrcode-terminal';
9
9
  import { EventEmitter } from 'node:events';
10
10
  import { io } from 'socket.io-client';
11
11
 
12
- var version = "0.2.0";
12
+ var version = "0.2.1";
13
13
 
14
14
  function loadConfig() {
15
15
  const serverUrl = (process.env.HAPPY_SERVER_URL ?? "https://api.cluster-fluster.com").replace(/\/+$/, "");
package/package.json CHANGED
@@ -1,15 +1,18 @@
1
1
  {
2
2
  "name": "@kmmao/happy-agent",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "CLI client for controlling Happy Coder agents remotely",
5
5
  "author": "Kirill Dubovitskiy",
6
6
  "license": "MIT",
7
7
  "type": "module",
8
8
  "homepage": "https://github.com/kmmao/happy/tree/main/packages/happy-agent",
9
9
  "bugs": "https://github.com/kmmao/happy/issues",
10
- "repository": "kmmao/happy",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/kmmao/happy.git"
13
+ },
11
14
  "bin": {
12
- "happy-agent": "./bin/happy-agent.mjs"
15
+ "happy-agent": "bin/happy-agent.mjs"
13
16
  },
14
17
  "main": "./dist/index.cjs",
15
18
  "module": "./dist/index.mjs",