-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.69 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.69 KB
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
{
"name": "cowcode",
"version": "2.0.0",
"description": "WhatsApp + configurable local/cloud LLM. No tools, just reply.",
"type": "module",
"main": "index.js",
"packageManager": "pnpm@9.15.0",
"scripts": {
"dashboard": "node dashboard/server.js",
"test": "node scripts/test/test-agent.js",
"start": "node index.js",
"setup": "node setup.js",
"auth": "node index.js --auth-only",
"cron": "node cron/cli.js",
"test:browser": "node scripts/test/test-browser.js",
"test:browser-e2e": "node scripts/test/test-browser-e2e.js",
"test:cron-e2e": "node scripts/test/test-cron-e2e.js",
"test:telegram-send": "node scripts/test/test-telegram-send.js",
"test:memory-e2e": "node scripts/test/test-memory-e2e.js",
"test:home-assistant-e2e": "node scripts/test/test-home-assistant-e2e.js",
"test:write-e2e": "node scripts/test/test-write-e2e.js",
"test:edit-e2e": "node scripts/test/test-edit-e2e.js",
"test:me-e2e": "node scripts/test/test-me-e2e.js",
"test:tide": "node scripts/test/test-tide.js",
"test:dry-run": "node scripts/test/dry-run-reminder.js",
"test:all": "pnpm run test:browser && pnpm run test:browser-e2e && pnpm run test:cron-e2e && pnpm run test:memory-e2e && pnpm run test:home-assistant-e2e && pnpm run test:write-e2e && pnpm run test:edit-e2e && pnpm run test:me-e2e"
},
"dependencies": {
"express": "^4.21.0",
"@inquirer/select": "^5.0.4",
"@whiskeysockets/baileys": "^6.7.9",
"better-sqlite3": "^11.6.0",
"croner": "^10.0.1",
"dotenv": "^17.2.4",
"node-telegram-bot-api": "^0.67.0",
"pino": "^9.5.0",
"playwright": "^1.49.0",
"qrcode-terminal": "^0.12.0",
"sqlite-vec": "^0.1.7-alpha.2"
}
}