@kmmao/happy-agent 0.2.0 → 0.2.2
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 +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +8 -5
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.
|
|
14
|
+
var version = "0.2.2";
|
|
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.
|
|
12
|
+
var version = "0.2.2";
|
|
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.
|
|
3
|
+
"version": "0.2.2",
|
|
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":
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/kmmao/happy.git"
|
|
13
|
+
},
|
|
11
14
|
"bin": {
|
|
12
|
-
"happy-agent": "
|
|
15
|
+
"happy-agent": "bin/happy-agent.mjs"
|
|
13
16
|
},
|
|
14
17
|
"main": "./dist/index.cjs",
|
|
15
18
|
"module": "./dist/index.mjs",
|
|
@@ -40,8 +43,8 @@
|
|
|
40
43
|
"release": "npx --no-install release-it"
|
|
41
44
|
},
|
|
42
45
|
"dependencies": {
|
|
43
|
-
"@kmmao/happy-wire": "^0.
|
|
44
|
-
"axios": "^1.13.
|
|
46
|
+
"@kmmao/happy-wire": "^0.2.7",
|
|
47
|
+
"axios": "^1.13.5",
|
|
45
48
|
"chalk": "^5.6.2",
|
|
46
49
|
"commander": "^13.1.0",
|
|
47
50
|
"qrcode-terminal": "^0.12.0",
|