-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.35 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.35 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
{
"name": "@kvendrik/greg",
"description": "OpenClaw-like personal assistant",
"version": "0.1.7",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/kvendrik/greg.git"
},
"homepage": "https://github.com/kvendrik/greg#readme",
"bugs": {
"url": "https://github.com/kvendrik/greg/issues"
},
"exports": {
"./config": "./config/index.ts",
"./gateway": "./gateway/index.ts",
"./package.json": "./package.json"
},
"bin": {
"greg": "bin/greg.ts"
},
"scripts": {
"gateway": "mkdir -p .logs && pm2 start \"bun run clients/telegram/start.ts\" --name greg:gateway --no-autorestart --output .logs/gateway-out.log --error .logs/gateway-error.log --merge-logs",
"gateway:stop": "pm2 delete greg:gateway",
"gateway:restart": "pm2 restart greg:gateway",
"gateway:logs": "bun run scripts/gateway-logs.ts",
"gateway:tools": "bun run scripts/tools-cli.ts",
"test": "TEST_ENV=1 bun test",
"test:lint": "bun run lint && bun run typecheck",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.76.0",
"@clack/prompts": "^1.0.1",
"@google/genai": "^1.43.0",
"@grammyjs/files": "^1.2.0",
"@mariozechner/pi-agent-core": "^0.55.3",
"@mariozechner/pi-ai": "^0.61.0",
"@mariozechner/pi-coding-agent": "^0.57.1",
"@mariozechner/pi-tui": "^0.62.0",
"@mozilla/readability": "^0.6.0",
"@ngrok/ngrok": "^1.7.0",
"@notionhq/client": "^5.11.0",
"@tobilu/qmd": "^2.0.1",
"@xenova/transformers": "^2.17.2",
"chalk": "^5.6.2",
"cli-highlight": "^2.1.11",
"commander": "^12.0.0",
"elevenlabs": "^1.59.0",
"fluent-ffmpeg": "^2.1.3",
"grammy": "^1.40.0",
"gray-matter": "^4.0.3",
"jsdom": "^25.0.0",
"minimatch": "^10.2.4",
"node-html-markdown": "^1.0.0",
"openai": "^6.25.0",
"picocolors": "^1.1.1",
"pm2": "^6.0.14",
"prettier": "^3.8.1",
"telegram-markdown-v2": "^0.0.4",
"twilio": "^5.13.0",
"uiohook-napi": "^1.5.5",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "^1.1.14",
"@types/jsdom": "^21.1.7",
"@types/node": "^25.2.3",
"@types/ws": "^8.5.12",
"eslint": "^10.0.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
}
}