onbuzz 5.0.0 → 5.0.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/package.json +24 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "onbuzz",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.1",
|
|
4
4
|
"description": "Loxia OnBuzz - Your AI Fleet",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -64,8 +64,9 @@
|
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"@babel/parser": "^7.28.5",
|
|
66
66
|
"@babel/traverse": "^7.28.5",
|
|
67
|
+
"@composio/core": "^0.6.11",
|
|
68
|
+
"@huggingface/transformers": "^4.2.0",
|
|
67
69
|
"blessed": "^0.1.81",
|
|
68
|
-
"blessed-contrib": "^4.11.0",
|
|
69
70
|
"chalk": "^5.6.2",
|
|
70
71
|
"discord.js": "^14.16.0",
|
|
71
72
|
"docx": "^9.5.3",
|
|
@@ -77,12 +78,12 @@
|
|
|
77
78
|
"ink": "^5.2.1",
|
|
78
79
|
"jsonrepair": "^3.13.2",
|
|
79
80
|
"mammoth": "^1.11.0",
|
|
80
|
-
"node-telegram-bot-api": "^0.67.0",
|
|
81
81
|
"ollama": "^0.6.3",
|
|
82
82
|
"pdf2json": "^3.1.4",
|
|
83
83
|
"postcss": "^8.5.6",
|
|
84
84
|
"postcss-less": "^6.0.0",
|
|
85
85
|
"postcss-scss": "^4.0.9",
|
|
86
|
+
"pptxgenjs": "^4.0.1",
|
|
86
87
|
"prettier": "^3.6.2",
|
|
87
88
|
"puppeteer": "^24.25.0",
|
|
88
89
|
"puppeteer-extra": "^3.3.6",
|
|
@@ -94,12 +95,15 @@
|
|
|
94
95
|
"strip-ansi": "^7.1.2",
|
|
95
96
|
"stylelint": "^16.25.0",
|
|
96
97
|
"stylelint-config-standard": "^39.0.1",
|
|
98
|
+
"telegraf": "^4.16.3",
|
|
97
99
|
"tiktoken": "^1.0.15",
|
|
98
100
|
"typescript": "^5.9.3",
|
|
101
|
+
"update-notifier": "^7.3.1",
|
|
99
102
|
"uuid": "^11.1.0",
|
|
100
103
|
"ws": "^8.16.0"
|
|
101
104
|
},
|
|
102
105
|
"optionalDependencies": {
|
|
106
|
+
"electron-updater": "^6.8.9",
|
|
103
107
|
"whatsapp-web.js": "^1.34.6"
|
|
104
108
|
},
|
|
105
109
|
"devDependencies": {
|
|
@@ -107,16 +111,31 @@
|
|
|
107
111
|
"@yao-pkg/pkg": "^6.0.0",
|
|
108
112
|
"ajv": "^8.17.1",
|
|
109
113
|
"ajv-formats": "^3.0.1",
|
|
110
|
-
"esbuild": "^0.
|
|
114
|
+
"esbuild": "^0.25.10",
|
|
111
115
|
"eslint": "^8.57.1",
|
|
112
116
|
"eslint-plugin-security": "^3.0.1",
|
|
113
117
|
"jest": "^29.7.0",
|
|
114
|
-
"
|
|
118
|
+
"jest-html-reporters": "^3.1.7",
|
|
119
|
+
"jest-junit": "^16.0.0",
|
|
120
|
+
"jsdoc": "^4.0.2",
|
|
121
|
+
"jsdom": "^25.0.1"
|
|
122
|
+
},
|
|
123
|
+
"overrides": {
|
|
124
|
+
"qs": "^6.15.2",
|
|
125
|
+
"uuid": "$uuid"
|
|
115
126
|
},
|
|
116
127
|
"build": {
|
|
117
128
|
"appId": "com.loxia.autopilot",
|
|
118
129
|
"productName": "Loxia Autopilot",
|
|
130
|
+
"executableName": "loxia-autopilot",
|
|
119
131
|
"npmRebuild": false,
|
|
132
|
+
"publish": [
|
|
133
|
+
{
|
|
134
|
+
"provider": "github",
|
|
135
|
+
"owner": "Loxia-ai",
|
|
136
|
+
"repo": "autopilot"
|
|
137
|
+
}
|
|
138
|
+
],
|
|
120
139
|
"directories": {
|
|
121
140
|
"output": "electron-dist"
|
|
122
141
|
},
|