-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.64 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.64 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
{
"name": "ravi.bot",
"version": "0.6.3",
"description": "The daemon that gives Claude a life",
"type": "module",
"main": "dist/bundle/index.js",
"bin": {
"ravi": "./bin/ravi"
},
"files": [
"bin/",
"dist/bundle/",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/filipexyz/ravi.git"
},
"homepage": "https://github.com/filipexyz/ravi#readme",
"bugs": {
"url": "https://github.com/filipexyz/ravi/issues"
},
"author": "Filipe Labs",
"engines": {
"bun": ">=1.0.0"
},
"scripts": {
"gen:commands": "bun scripts/gen-commands.ts",
"gen:plugins": "bun scripts/gen-plugins.ts",
"prebuild": "bun run gen:commands && bun run gen:plugins",
"build": "bun build src/cli/index.ts --outdir dist/bundle --target bun --minify --external ink --external react --external '@anthropic-ai/*' --external openai --external '@google/*' --external nats --external '@elevenlabs/*'",
"start": "bun src/index.ts",
"dev": "bun --watch src/index.ts",
"tui": "bun src/tui/index.tsx",
"cli": "bun src/cli/index.ts",
"typecheck": "bun tsc --noEmit",
"lint": "bunx biome check src/",
"lint:fix": "bunx biome check --write src/",
"test": "bun test src/bash/ src/hooks/ src/router/ src/heartbeat/ src/permissions/ src/triggers/ src/omni/ && bun test src/bot.test.ts",
"prepare": "git config core.hooksPath .githooks",
"docs:dev": "cd docs && bunx mintlify dev",
"docs:list": "bun scripts/docs-list.js",
"docs:check-links": "bun scripts/docs-link-audit.mjs",
"lint:docs": "bunx markdownlint-cli2",
"lint:docs:fix": "bunx markdownlint-cli2 --fix",
"check:docs": "bun run lint:docs && bun run docs:check-links"
},
"keywords": [
"claude",
"anthropic",
"ai",
"bot",
"chatbot",
"whatsapp",
"nats"
],
"license": "MIT",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.45",
"@elevenlabs/elevenlabs-js": "^2.37.0",
"@google/genai": "^1.41.0",
"@hapi/boom": "^10.0.1",
"@omni/sdk": "file:/Users/luis/dev/namastex/omni-v2/packages/sdk",
"@opentui/core": "^0.1.81",
"@opentui/react": "^0.1.81",
"commander": "^14.0.2",
"croner": "^10.0.1",
"ink": "^6.6.0",
"ink-text-input": "^6.0.0",
"nats": "^2.29.3",
"openai": "^6.17.0",
"pino": "^9.6.0",
"qrcode-terminal": "^0.12.0",
"react": "^19.2.4",
"reflect-metadata": "^0.2.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@types/node": "^22.0.0",
"@types/qrcode-terminal": "^0.12.2",
"@types/react": "^19.2.10",
"bun-types": "^1.3.8",
"typescript": "^5.6.0"
}
}