nyxora 1.6.8 → 1.6.11
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nyxora",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.11",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"workspaces": [
|
|
6
6
|
"packages/*"
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"nyxora": "bin/nyxora.mjs"
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
|
+
"postinstall": "npm run build --workspace=dashboard || echo '⚠️ Build failed – dashboard UI may be missing'",
|
|
12
13
|
"dev": "concurrently -n \"BACKEND,FRONTEND\" -c \"blue,green\" \"npx ts-node -T launcher.ts\" \"npm run dev --workspace=dashboard\"",
|
|
13
14
|
"start": "node ./bin/nyxora.mjs start",
|
|
14
15
|
"stop": "node ./bin/nyxora.mjs stop",
|
|
@@ -33,6 +34,8 @@
|
|
|
33
34
|
"open": "^11.0.0",
|
|
34
35
|
"openai": "^6.39.0",
|
|
35
36
|
"pdf-parse": "^2.4.5",
|
|
37
|
+
"googleapis": "^173.0.0",
|
|
38
|
+
"mammoth": "^1.6.0",
|
|
36
39
|
"picocolors": "^1.1.1",
|
|
37
40
|
"telegraf": "^4.16.3",
|
|
38
41
|
"ts-node": "^10.9.2",
|
|
@@ -405,7 +405,7 @@ export function startServer() {
|
|
|
405
405
|
limitOrderManager.startMonitor();
|
|
406
406
|
|
|
407
407
|
const PORT = Number(process.env.PORT || 3000);
|
|
408
|
-
app.listen(PORT, '
|
|
408
|
+
app.listen(PORT, '127.0.0.1', () => {
|
|
409
409
|
console.log(`🤖 Nyxora API Server running on port ${PORT}`);
|
|
410
410
|
|
|
411
411
|
// Start the Telegram bot listener
|