orquesta-agent 0.2.56 → 0.2.57
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/package.json +1 -4
- package/scripts/postinstall.js +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "orquesta-agent",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.57",
|
|
4
4
|
"description": "Local agent for Orquesta - connects your VM to the Orquesta dashboard",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -33,9 +33,6 @@
|
|
|
33
33
|
"cors": "^2.8.6",
|
|
34
34
|
"express": "^5.2.1"
|
|
35
35
|
},
|
|
36
|
-
"optionalDependencies": {
|
|
37
|
-
"node-pty": "1.2.0-beta.12"
|
|
38
|
-
},
|
|
39
36
|
"devDependencies": {
|
|
40
37
|
"@types/node": "^20.10.0",
|
|
41
38
|
"typescript": "^5.3.0"
|
package/scripts/postinstall.js
CHANGED
|
@@ -27,5 +27,8 @@ console.log(`${DIM} Or connect directly from command line:${RESET}`)
|
|
|
27
27
|
console.log(` 1. Get your token from ${CYAN}https://orquesta.live${RESET}`)
|
|
28
28
|
console.log(` 2. Run: ${WHITE}orquesta-agent --token <your-token> --daemon${RESET}`)
|
|
29
29
|
console.log('')
|
|
30
|
+
console.log(`${DIM} For interactive terminal sessions, install node-pty:${RESET}`)
|
|
31
|
+
console.log(` ${WHITE}npm install -g node-pty${RESET}`)
|
|
32
|
+
console.log('')
|
|
30
33
|
console.log(`${DIM} Need help? Run:${RESET} ${WHITE}orquesta-agent setup${RESET}`)
|
|
31
34
|
console.log('')
|