-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.61 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.61 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
{
"name": "companionbot",
"version": "0.16.2",
"description": "AI 친구 텔레그램 봇 - Claude API 기반 개인화된 대화 상대",
"keywords": [
"telegram",
"bot",
"claude",
"ai",
"chatbot",
"companion",
"anthropic"
],
"author": "DinN0000",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DinN0000/CompanionBot.git"
},
"homepage": "https://github.com/DinN0000/CompanionBot#readme",
"bugs": {
"url": "https://github.com/DinN0000/CompanionBot/issues"
},
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"bin": {
"companionbot": "./bin/companionbot.js"
},
"files": [
"dist",
"bin",
"templates"
],
"scripts": {
"dev": "tsx src/cli/main.ts",
"start": "node dist/cli/main.js",
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"setup": "tsx src/cli/setup.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@googleapis/calendar": "^14.2.0",
"@grammyjs/ratelimiter": "^1.2.1",
"@inquirer/prompts": "^8.2.0",
"@xenova/transformers": "^2.17.2",
"better-sqlite3": "^12.6.2",
"cheerio": "^1.2.0",
"google-auth-library": "^9.15.1",
"grammy": "^1.31.0",
"inquirer": "^13.2.2",
"js-yaml": "^4.1.1",
"keytar": "^7.9.0",
"node-cron": "^4.2.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"@types/node-cron": "^3.0.11",
"tsx": "^4.0.0",
"typescript": "^5.7.0",
"vitest": "^4.0.18"
}
}