This repository was archived by the owner on Feb 24, 2026. It is now read-only.
forked from stephengpope/thepopebot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.69 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.69 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "coditect-bot",
"version": "1.2.71-beta.0",
"type": "module",
"description": "Create autonomous AI agents with a two-layer architecture: Next.js Event Handler + Docker Agent.",
"bin": {
"coditect-bot": "./bin/cli.js"
},
"main": "api/index.js",
"exports": {
"./api": "./api/index.js",
"./config": "./config/index.js",
"./instrumentation": "./config/instrumentation.js",
"./auth": "./lib/auth/index.js",
"./auth/actions": "./lib/auth/actions.js",
"./chat/api": "./lib/chat/api.js",
"./db": "./lib/db/index.js",
"./chat": "./lib/chat/components/index.js",
"./chat/actions": "./lib/chat/actions.js",
"./middleware": "./lib/auth/middleware.js",
"./package.json": "./package.json"
},
"files": [
"bin/",
"lib/",
"api/",
"config/",
"setup/",
"templates/",
"drizzle/"
],
"scripts": {
"build": "esbuild lib/chat/components/*.jsx lib/chat/components/**/*.jsx --outdir=lib/chat/components --format=esm --jsx=automatic --outbase=lib/chat/components",
"prepublishOnly": "npm run build",
"local": "bash bin/local.sh",
"postinstall": "if [ -f bin/postinstall.js ]; then node bin/postinstall.js; fi",
"db:generate": "drizzle-kit generate",
"db:studio": "drizzle-kit studio",
"test": "vitest run"
},
"keywords": [
"ai",
"agent",
"autonomous",
"telegram",
"bot",
"claude",
"nextjs"
],
"author": "Stephen Pope",
"license": "MIT",
"dependencies": {
"@ai-sdk/react": "^2.0.0",
"@grammyjs/parse-mode": "^2.2.0",
"@langchain/anthropic": "^1.3.17",
"@langchain/core": "^1.1.24",
"@langchain/google-genai": "^2.1.18",
"@langchain/langgraph": "^1.1.4",
"@langchain/langgraph-checkpoint-sqlite": "^1.0.1",
"@langchain/openai": "^1.2.7",
"ai": "^5.0.0",
"bcrypt-ts": "^6.0.0",
"better-sqlite3": "^12.6.2",
"chalk": "^5.3.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"dotenv": "^16.3.1",
"drizzle-orm": "^0.44.0",
"grammy": "^1.39.3",
"@clack/prompts": "^0.10.0",
"lucide-react": "^0.400.0",
"node-cron": "^3.0.3",
"open": "^10.0.0",
"streamdown": "^2.2.0",
"tailwind-merge": "^3.0.0",
"uuid": "^9.0.0",
"zod": "^4.3.6"
},
"peerDependencies": {
"next": ">=15.5.12",
"next-auth": "^5.0.0-beta.30",
"react": ">=19.0.0",
"react-dom": ">=19.0.0"
},
"peerDependenciesMeta": {
"next-auth": {
"optional": false
}
},
"devDependencies": {
"drizzle-kit": "^0.31.9",
"esbuild": "^0.27.3",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"overrides": {
"@esbuild-kit/core-utils": {
"esbuild": "^0.25.0"
}
}
}