-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 878 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 878 Bytes
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
{
"name": "secret-agent",
"version": "1.0.0",
"description": "Lightweight AI agent with Telegram interface",
"type": "module",
"main": "dist/index.js",
"scripts": {
"predev": "npm install --silent && (test -f .env || tsx src/setup.ts)",
"dev": "tsx watch src/index.ts",
"build": "tsc",
"prestart": "npm install --silent && (test -f .env || tsx src/setup.ts)",
"start": "node dist/index.js",
"setup": "tsx src/setup.ts",
"service": "tsx src/service.ts",
"test": "tsx --test test/*.test.ts"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.70",
"dotenv": "^16.4.7",
"grammy": "^1.31.0",
"node-cron": "^3.0.3",
"openai": "^6.27.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/node-cron": "^3.0.11",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}