@runeya/runeya 2.0.34 → 2.0.35
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/agent/index.js +2 -2
- package/agent/index.js.map +1 -1
- package/index.js +1 -1
- package/package.json +2 -2
- package/{src-ZHBUP3UZ.js → src-LFQHLGJC.js} +3 -3
- package/src-LFQHLGJC.js.map +1 -0
- package/src-ZHBUP3UZ.js.map +0 -1
package/index.js
CHANGED
|
@@ -201,7 +201,7 @@ function listenWithRetry(server, port, host, wss, maxRetries = 20, delay = 500)
|
|
|
201
201
|
});
|
|
202
202
|
}
|
|
203
203
|
async function main() {
|
|
204
|
-
const { createLocalServer, pullEnv, PullEnvError } = await import("./src-
|
|
204
|
+
const { createLocalServer, pullEnv, PullEnvError } = await import("./src-LFQHLGJC.js");
|
|
205
205
|
if (isPullEnv) {
|
|
206
206
|
if (!serviceArg) {
|
|
207
207
|
console.error("Error: --service (-s) is required with --pull-env");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runeya/runeya",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.35",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"runeya": "./index.js"
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"repository": "https://github.com/runeya/runeya",
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@anthropic-ai/sdk": "^0.106.0",
|
|
11
|
+
"@lydell/node-pty": "^1.1.0",
|
|
11
12
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
12
13
|
"@napi-rs/keyring": "^1.3.0",
|
|
13
14
|
"@node-rs/argon2": "^2.0.2",
|
|
@@ -24,7 +25,6 @@
|
|
|
24
25
|
"mongodb": "^7.4.0",
|
|
25
26
|
"multer": "^2.2.0",
|
|
26
27
|
"mysql2": "^3.22.5",
|
|
27
|
-
"node-pty": "^1.1.0",
|
|
28
28
|
"open": "^11.0.0",
|
|
29
29
|
"openai": "^6.45.0",
|
|
30
30
|
"pidusage": "^4.0.1",
|
|
@@ -4315,7 +4315,7 @@ async function executeTool(rawName, input, apiKey, authToken) {
|
|
|
4315
4315
|
}
|
|
4316
4316
|
|
|
4317
4317
|
// ../server/src/services/claude-usage.ts
|
|
4318
|
-
import pty from "node-pty";
|
|
4318
|
+
import pty from "@lydell/node-pty";
|
|
4319
4319
|
import { execSync } from "child_process";
|
|
4320
4320
|
var MONTHS = {
|
|
4321
4321
|
jan: 0,
|
|
@@ -4511,7 +4511,7 @@ async function getClaudeUsageEntries() {
|
|
|
4511
4511
|
}
|
|
4512
4512
|
|
|
4513
4513
|
// ../server/src/services/codex-usage.ts
|
|
4514
|
-
import pty2 from "node-pty";
|
|
4514
|
+
import pty2 from "@lydell/node-pty";
|
|
4515
4515
|
var MONTHS2 = {
|
|
4516
4516
|
jan: 0,
|
|
4517
4517
|
feb: 1,
|
|
@@ -14374,4 +14374,4 @@ export {
|
|
|
14374
14374
|
createLocalServer,
|
|
14375
14375
|
pullEnv
|
|
14376
14376
|
};
|
|
14377
|
-
//# sourceMappingURL=src-
|
|
14377
|
+
//# sourceMappingURL=src-LFQHLGJC.js.map
|