whatsappd 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,98 @@
1
+ {
2
+ "name": "whatsappd",
3
+ "version": "0.1.0",
4
+ "description": "A self-hosted daemon that turns a WhatsApp number into an AI-agent channel — Baileys engine, HTTP sidecar, agent tools, and an Eve adapter.",
5
+ "keywords": [
6
+ "agent-tools",
7
+ "ai-agents",
8
+ "ai-sdk",
9
+ "baileys",
10
+ "chatbot",
11
+ "daemon",
12
+ "eve",
13
+ "llm",
14
+ "sidecar",
15
+ "typescript",
16
+ "whatsapp",
17
+ "whatsapp-api",
18
+ "whatsapp-bot"
19
+ ],
20
+ "homepage": "https://github.com/AaronAbuUsama/whatsappd#readme",
21
+ "bugs": {
22
+ "url": "https://github.com/AaronAbuUsama/whatsappd/issues"
23
+ },
24
+ "license": "MIT",
25
+ "author": "Aaron AbuUsama <security@abuusama.dev>",
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "git+https://github.com/AaronAbuUsama/whatsappd.git"
29
+ },
30
+ "bin": {
31
+ "whatsappd": "./bin/whatsappd.js"
32
+ },
33
+ "files": [
34
+ "dist",
35
+ "bin",
36
+ "CHANGELOG.md"
37
+ ],
38
+ "type": "module",
39
+ "sideEffects": false,
40
+ "exports": {
41
+ ".": "./dist/index.mjs",
42
+ "./adapters/eve": "./dist/adapters/eve.mjs",
43
+ "./sidecar": "./dist/sidecar/index.mjs",
44
+ "./stores/libsql": "./dist/stores/libsql.mjs",
45
+ "./stores/memory": "./dist/stores/memory.mjs",
46
+ "./tools": "./dist/tools/index.mjs",
47
+ "./package.json": "./package.json"
48
+ },
49
+ "publishConfig": {
50
+ "access": "public"
51
+ },
52
+ "dependencies": {
53
+ "baileys": "7.0.0-rc13",
54
+ "pino": "^10.3.1",
55
+ "pino-pretty": "^13.1.3",
56
+ "qrcode-terminal": "^0.12.0"
57
+ },
58
+ "devDependencies": {
59
+ "@changesets/cli": "^2.31.0",
60
+ "@libsql/client": "0.15.15",
61
+ "@types/node": "^25.6.2",
62
+ "@types/qrcode-terminal": "^0.12.2",
63
+ "@typescript/native-preview": "7.0.0-dev.20260509.2",
64
+ "eve": "^0.21.1",
65
+ "typescript": "^6.0.3",
66
+ "vite": "npm:@voidzero-dev/vite-plus-core@0.2.2",
67
+ "vite-plus": "0.2.2"
68
+ },
69
+ "peerDependencies": {
70
+ "@libsql/client": "^0.15.0",
71
+ "eve": ">=0.21.0 <1"
72
+ },
73
+ "peerDependenciesMeta": {
74
+ "@libsql/client": {
75
+ "optional": true
76
+ },
77
+ "eve": {
78
+ "optional": true
79
+ }
80
+ },
81
+ "devEngines": {
82
+ "packageManager": {
83
+ "name": "pnpm",
84
+ "version": "11.10.0",
85
+ "onFail": "download"
86
+ }
87
+ },
88
+ "engines": {
89
+ "node": ">=20.0.0"
90
+ },
91
+ "scripts": {
92
+ "build": "vp pack",
93
+ "dev": "vp pack --watch",
94
+ "test": "node --experimental-strip-types --test tests/*.test.ts",
95
+ "check": "vp check",
96
+ "proof": "node --experimental-strip-types tests/proof.ts"
97
+ }
98
+ }