ravi.bot 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,75 @@
1
+ {
2
+ "name": "ravi.bot",
3
+ "version": "0.1.0",
4
+ "description": "Claude-powered bot with WhatsApp and Matrix integration via notif.sh",
5
+ "type": "module",
6
+ "main": "dist/bundle/index.js",
7
+ "bin": {
8
+ "ravi": "./bin/ravi"
9
+ },
10
+ "files": [
11
+ "bin/",
12
+ "dist/bundle/",
13
+ "README.md"
14
+ ],
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/filipexyz/ravi.git"
18
+ },
19
+ "homepage": "https://github.com/filipexyz/ravi#readme",
20
+ "bugs": {
21
+ "url": "https://github.com/filipexyz/ravi/issues"
22
+ },
23
+ "author": "Filipe Labs",
24
+ "engines": {
25
+ "bun": ">=1.0.0"
26
+ },
27
+ "scripts": {
28
+ "build": "bun build src/cli/index.ts --outdir dist/bundle --target bun --minify --external '@matrix-org/*' --external '@whiskeysockets/*' --external '@vector-im/*' --external ink --external react --external '@anthropic-ai/*' --external openai",
29
+ "start": "bun src/index.ts",
30
+ "dev": "bun --watch src/index.ts",
31
+ "tui": "bun src/tui.tsx",
32
+ "wa": "bun src/wa.ts",
33
+ "wa:dev": "bun --watch src/wa.ts",
34
+ "cli": "bun src/cli/index.ts",
35
+ "typecheck": "bun tsc --noEmit",
36
+ "lint": "bun eslint src/"
37
+ },
38
+ "keywords": [
39
+ "claude",
40
+ "anthropic",
41
+ "ai",
42
+ "bot",
43
+ "chatbot",
44
+ "whatsapp",
45
+ "matrix",
46
+ "notif"
47
+ ],
48
+ "license": "MIT",
49
+ "dependencies": {
50
+ "@anthropic-ai/claude-agent-sdk": "^0.1.0",
51
+ "@hapi/boom": "^10.0.1",
52
+ "@vector-im/matrix-bot-sdk": "^0.8.0-element.3",
53
+ "@whiskeysockets/baileys": "^6.7.16",
54
+ "commander": "^14.0.2",
55
+ "ink": "^6.6.0",
56
+ "ink-text-input": "^6.0.0",
57
+ "notif.sh": "^0.2.1",
58
+ "openai": "^6.17.0",
59
+ "pino": "^9.6.0",
60
+ "qrcode-terminal": "^0.12.0",
61
+ "react": "^19.2.4",
62
+ "reflect-metadata": "^0.2.2",
63
+ "zod": "^4.3.6"
64
+ },
65
+ "devDependencies": {
66
+ "@eslint/js": "^9.39.2",
67
+ "@types/node": "^22.0.0",
68
+ "@types/qrcode-terminal": "^0.12.2",
69
+ "@types/react": "^19.2.10",
70
+ "bun-types": "^1.3.8",
71
+ "globals": "^17.2.0",
72
+ "typescript": "^5.6.0",
73
+ "typescript-eslint": "^8.54.0"
74
+ }
75
+ }