feat: scaffold project with bun, grammy, claude-agent-sdk

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
neken
2026-04-10 15:03:16 +05:00
commit 57dd464f37
5 changed files with 103 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
{
"name": "claude-telegram-bot",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun --watch run src/index.ts"
},
"dependencies": {
"grammy": "^1.35.0",
"@anthropic-ai/claude-agent-sdk": "^0.1.0",
"dotenv": "^16.4.0"
}
}