-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.5 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
{
"name": "obol-ai",
"version": "0.3.48",
"description": "Self-evolving AI assistant that learns, remembers, and acts on its own. Persistent vector memory, self-rewriting personality, proactive heartbeats.",
"main": "src/index.js",
"bin": {
"obol": "bin/obol.js"
},
"scripts": {
"start": "node src/index.js",
"test": "vitest run",
"test:watch": "vitest",
"evolve": "node bin/obol.js evolve",
"curiosity": "node bin/obol.js curiosity",
"bench": "node src/cli/prompt-bench.js",
"debug": "node src/cli/prompt-debug.js",
"prepublishOnly": "node src/cli/changelog.js",
"postinstall": "pip3 install faster-whisper 2>/dev/null || pip install faster-whisper 2>/dev/null || echo 'Note: faster-whisper not installed (Python/pip unavailable). Voice transcription will be disabled.'"
},
"keywords": [
"ai",
"assistant",
"telegram",
"anthropic",
"claude",
"vector-memory"
],
"author": "Jo Vinkenroye <jestersimpps@gmail.com>",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@grammyjs/auto-retry": "^2.0.2",
"@grammyjs/runner": "^2.0.3",
"@supabase/supabase-js": "^2.49.1",
"@xenova/transformers": "^2.17.2",
"commander": "^13.1.0",
"cron-parser": "^5.5.0",
"grammy": "^1.35.0",
"inquirer": "^8.2.6",
"node-cron": "^3.0.3",
"open": "^8.4.2",
"pdf-parse": "^2.4.5",
"pdfkit": "^0.17.2"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"vitest": "^4.0.18"
}
}