-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.14 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.14 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "betaclaw",
"version": "3.0.0",
"description": "Open, provider-agnostic AI agent runtime",
"type": "module",
"private": true,
"engines": {
"node": ">=22"
},
"bin": {
"betaclaw": "./dist/cli/index.js"
},
"scripts": {
"build": "tsc && chmod +x dist/cli/index.js && npm link",
"dev": "tsx src/cli/index.ts",
"start": "tsx src/cli/index.ts start --foreground",
"start:bg": "tsx src/cli/index.ts start",
"stop": "tsx src/cli/index.ts stop",
"restart": "tsx src/cli/index.ts restart --foreground",
"status": "tsx src/cli/index.ts status",
"chat": "tsx src/cli/index.ts chat",
"setup": "tsx src/cli/index.ts setup",
"doctor": "tsx src/cli/index.ts doctor",
"benchmark": "tsx src/cli/index.ts benchmark",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"format": "prettier --write .",
"prod": "node dist/cli/index.js",
"prod:start": "node dist/cli/index.js start --foreground"
},
"dependencies": {
"@anthropic-ai/sdk": "latest",
"@google/generative-ai": "latest",
"@hapi/boom": "^10.0.1",
"@types/express": "^5.0.6",
"@whiskeysockets/baileys": "^7.0.0-rc.9",
"better-sqlite3": "^12.6.2",
"chalk": "^5.3.0",
"chokidar": "^3.6.0",
"commander": "^12.0.0",
"cron-parser": "^4.9.0",
"discord.js": "^14.25.1",
"dotenv": "^16.4.0",
"express": "^5.2.1",
"grammy": "^1.41.1",
"node-cron": "^4.2.1",
"node-fetch": "^3.3.2",
"nodemailer": "^8.0.1",
"onnxruntime-node": "^1.20.0",
"openai": "latest",
"ora": "^8.0.0",
"pino": "^9.0.0",
"pino-pretty": "^11.0.0",
"playwright": "^1.58.2",
"qrcode-terminal": "^0.12.0",
"uuid": "^10.0.0",
"ws": "^8.18.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/hapi__boom": "^7.4.1",
"@types/node": "^22.0.0",
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^7.0.11",
"@types/qrcode-terminal": "^0.12.2",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.0",
"prettier": "^3.3.0",
"tsx": "^4.19.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
}
}