-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.17 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.17 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
{
"name": "quick",
"version": "1.0.0",
"description": "Quick - AI Personal Assistant with Claude, E2B sandboxes, and Telegram integration",
"type": "module",
"main": "dist/cli.js",
"bin": {
"quick": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev:cli": "tsx src/cli.tsx",
"dev:telegram": "tsx src/telegram.ts",
"start:cli": "node dist/cli.js",
"start:telegram": "node dist/telegram.js",
"start": "npm run start:cli"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@e2b/code-interpreter": "^2.3.3",
"commander": "^14.0.2",
"dotenv": "^17.2.3",
"ink": "^5.0.1",
"ink-text-input": "^6.0.0",
"marked": "^17.0.1",
"pino": "^10.3.0",
"pino-pretty": "^13.1.3",
"react": "^18.3.1",
"telegraf": "^4.16.3",
"zod": "^4.3.6",
"chalk": "^4.1.2"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/react": "^18.2.48",
"tsx": "^4.21.0",
"typescript": "^5.3.3"
},
"overrides": {
"chalk": "^4.1.2"
},
"keywords": [
"cli",
"ai",
"assistant",
"claude",
"e2b",
"telegram",
"bot",
"llm",
"sandbox",
"ink"
],
"license": "MIT"
}