-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 905 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "ai-automation-system",
"version": "0.1.0",
"private": true,
"description": "Minimal local automation system",
"scripts": {
"postinstall": "npm install --prefix ui",
"dev": "concurrently \"npm run core\" \"npm run orchestrator\" \"npm run ui\" \"npm run telegram\"",
"ui": "npm --prefix ui run dev",
"core": "node core/server.js",
"orchestrator": "node core/orchestrator.js",
"telegram": "node core/telegram.js",
"agent": "python agents/hello.py"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"cors": "^2.8.5",
"dotenv": "^17.3.1",
"express": "^4.21.2",
"firebase-admin": "^13.6.1",
"google-auth-library": "^10.5.0",
"google-spreadsheet": "^5.2.0",
"node-telegram-bot-api": "^0.67.0"
},
"devDependencies": {
"concurrently": "^9.2.1",
"sharp": "^0.34.5"
},
"engines": {
"node": "22.x"
}
}