-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.52 KB
/
package.json
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"scripts": {
"start": "bun stop && bun pm2start && bun log",
"pm2start": "pm2 start ecosystem.config.cjs",
"stop": "pm2 delete all || true",
"log": "pm2 logs --timestamp 'H:mm:ss.SSS' --lines 100",
"flush": "bun stop && bun flushRedis && bun flushLogs && bun flushTmp",
"flushLogs": "pm2 flush && rm -rf /home/node/.pm2/logs/*",
"flushRedis": "echo \"FLUSHALL\" | redis-cli",
"flushTmp": "rm -rf /tmp/agentjs"
},
"name": "agentjs",
"version": "1.0.0",
"description": "Agent.js",
"type": "module",
"main": "src/index.js",
"dependencies": {
"@bull-board/api": "^5.21.3",
"@bull-board/express": "^5.21.3",
"@bull-board/fastify": "^5.21.3",
"@cliqz/adblocker-webextension": "^1.27.11",
"@gradio/client": "^1.5.0",
"@instructor-ai/instructor": "^1.2.1",
"@supabase/supabase-js": "^2.45.1",
"@types/express": "^4.17.21",
"ajv": "^8.13.0",
"bullmq": "^5.12.1",
"cors": "^2.8.5",
"doctrine": "^3.0.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"fastify": "^4.28.1",
"groq-sdk": "^0.3.3",
"js-yaml": "^4.1.0",
"jsonrepair": "^3.8.0",
"lru-cache": "^11.0.0",
"openai": "^4.55.4",
"pg": "^8.12.0",
"playwright": "^1.43.1",
"playwright-extra": "^4.3.6",
"pm2": "^5.4.2",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"ragtitles": "^2.0.2",
"socket.io": "^4.7.5",
"user-agents": "^1.1.237",
"zod": "^3.23.5"
},
"devDependencies": {
"@playwright/test": "^1.43.1",
"@types/node": "^20.12.7"
}
}