-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 3 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
{
"name": "dorabot",
"version": "0.2.98",
"type": "module",
"description": "Open-source personal AI agent. Persistent memory, multi-channel messaging, browser automation, and proactive goal management.",
"main": "dist/index.js",
"bin": {
"dorabot": "dist/index.js"
},
"scripts": {
"build": "tsc",
"version:bump": "node -e \"const v=require('./package.json').version;const p='desktop/package.json';const d=require('./'+p);d.version=v;require('fs').writeFileSync(p,JSON.stringify(d,null,2)+'\\n');console.log('Synced desktop to '+v)\"",
"postversion": "npm run version:bump",
"dev": "(lsof -ti :5173 | xargs kill -9 2>/dev/null; trap 'kill 0' SIGINT; npm run build && tsc --watch --preserveWatchOutput & npm -C desktop run dev)",
"dev:gateway": "mkdir -p ~/.dorabot/logs && tsx watch src/index.ts -g 2>&1 | tee ~/.dorabot/logs/gateway.log",
"dev:cli": "tsx src/index.ts -i",
"dev:desktop": "npm -C desktop run dev",
"dev:stable": "npm run dev",
"start": "node dist/index.js -g",
"typecheck": "tsc --noEmit",
"test:event-log": "tsx scripts/test-event-log.ts",
"test:reconnect-replay": "tsx scripts/test-reconnect-replay.ts",
"test:question-lifecycle": "tsx scripts/test-question-lifecycle.ts",
"test:load-7x4": "tsx scripts/test-load-7x4.ts",
"test:scheduler-run": "tsx scripts/test-scheduler-run-item.ts",
"test:codex-auth-state": "node scripts/test-codex-auth-state.mjs",
"test:gateway-auth-state": "node scripts/test-gateway-auth-state.mjs",
"test:codex-provider": "node scripts/smoke-codex-145.mjs",
"test:claude-provider": "node scripts/smoke-claude-sdk.mjs",
"test:model-catalog": "node scripts/test-model-catalog.mjs",
"test:oauth-refresh": "tsx scripts/test-oauth-refresh.ts",
"test:fs-watch-events": "tsx scripts/test-fs-watch-events.ts",
"test:fs-ops": "tsx scripts/test-fs-ops.ts"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "0.3.220",
"@anthropic-ai/sdk": "0.97.1",
"@grammyjs/runner": "2.0.3",
"@grammyjs/transformer-throttler": "1.2.1",
"@modelcontextprotocol/sdk": "1.29.0",
"@openai/codex": "0.145.0",
"@types/luxon": "3.7.1",
"@whiskeysockets/baileys": "6.7.23",
"better-sqlite3": "12.6.2",
"dotenv": "17.2.4",
"grammy": "1.39.3",
"gray-matter": "4.0.3",
"ical-generator": "10.0.0",
"luxon": "3.7.2",
"marked": "18.0.2",
"mime-types": "3.0.2",
"node-pty": "1.1.0",
"playwright-core": "1.58.2",
"qrcode-terminal": "0.12.0",
"rrule": "2.8.1",
"sharp": "0.35.3",
"ws": "8.21.1",
"zod": "4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "7.6.13",
"@types/mime-types": "3.0.1",
"@types/node": "22.19.7",
"@types/ws": "8.18.1",
"tsx": "4.21.0",
"typescript": "5.9.3"
},
"overrides": {
"axios": "1.18.1",
"fast-uri": "3.1.4",
"protobufjs": "7.6.5",
"hono": "4.12.30",
"@hono/node-server": "2.0.11"
},
"engines": {
"node": ">=22.0.0"
},
"repository": "github:suitedaces/dorabot"
}