-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) 路 1.52 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) 路 1.52 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
{
"name": "corsair-agent",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "tsx server/index.ts",
"typecheck": "tsc --noEmit",
"start": "tsx server/index.ts",
"whatsapp:auth": "tsx server/whatsapp/auth.ts",
"db:up": "docker compose up postgres -d",
"db:down": "docker compose down",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"script": "tsx server/script.ts",
"new-plugin": "tsx scripts/new-plugin.ts",
"format": "biome format . --write",
"lint": "biome check .",
"lint:fix": "biome check . --fix --unsafe",
"test": "vitest run",
"test:watch": "vitest",
"available-plugins": "tsx scripts/available-plugins.ts"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.52",
"@trpc/server": "^11.10.0",
"@whiskeysockets/baileys": "^7.0.0-rc.9",
"chokidar": "^4.0.3",
"corsair": "0.1.13",
"dotenv": "^16.4.0",
"drizzle-orm": "^0.44.5",
"express": "^4.21.0",
"grammy": "^1.39.3",
"mem0ai": "^2.2.3",
"node-cron": "^4.2.1",
"pg": "^8.13.0",
"pino": "^9.6.0",
"tsx": "^4.19.0",
"zod": "^3.25.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"sqlite3"
]
},
"devDependencies": {
"@biomejs/biome": "2.3.5",
"@types/express": "^4.17.21",
"@types/node": "^22.0.0",
"@types/pg": "^8.11.0",
"drizzle-kit": "^0.31.8",
"typescript": "^5.8.0",
"vitest": "^3.2.4"
}
}