-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.85 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "w-agent",
"version": "0.1.0",
"description": "W Agent: your WhatsApp, with a brain. A self-hosted bridge that gives an AI agent continuous, searchable context over your WhatsApp chats — and lets it reply for you, safely.",
"repository": {
"type": "git",
"url": "git+https://github.com/Chessing234/w-agent.git"
},
"bugs": {
"url": "https://github.com/Chessing234/w-agent/issues"
},
"homepage": "https://github.com/Chessing234/w-agent#readme",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@9.15.0",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"migrate": "node-pg-migrate up --migration-file-language sql",
"migrate:down": "node-pg-migrate down --migration-file-language sql",
"migrate:create": "node-pg-migrate create --migration-file-language sql",
"migrate:redo": "node-pg-migrate redo --migration-file-language sql",
"bridge:test": "tsx scripts/bridge-test.ts",
"backfill": "tsx scripts/backfill.ts",
"verify:history": "tsx scripts/verify-history.ts",
"mcp": "tsx src/mcp/server.ts",
"mcp:http": "tsx src/mcp/server.ts --http",
"dashboard:dev": "pnpm --filter @w-agent/dashboard dev",
"dashboard:build": "pnpm --filter @w-agent/dashboard build",
"dashboard:start": "pnpm --filter @w-agent/dashboard start",
"chaos": "tsx scripts/chaos-test.ts",
"redteam": "tsx scripts/redteam.ts",
"backup": "tsx scripts/backup.ts"
},
"keywords": [
"whatsapp",
"ai-agent",
"mcp",
"baileys",
"rag",
"openai",
"self-hosted"
],
"author": "W Agent contributors",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@whiskeysockets/baileys": "7.0.0-rc13",
"bullmq": "^5.81.1",
"dotenv": "^17.4.2",
"ioredis": "^5.11.1",
"openai": "^6.49.0",
"pg": "^8.22.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"qrcode-terminal": "^0.12.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testcontainers/postgresql": "^12.0.4",
"@types/node": "^22.20.1",
"@types/pg": "^8.20.0",
"@types/qrcode-terminal": "^0.12.2",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.7.0",
"node-pg-migrate": "^9.0.0",
"prettier": "^3.9.6",
"testcontainers": "^12.0.4",
"tsx": "^4.23.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.65.0",
"vitest": "^4.1.10"
}
}