-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.65 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
{
"name": "@thesashadev/girl-agent",
"version": "0.4.12",
"description": "Telegram AI persona engine with memory, schedule, relationship state and MTProto userbot mode.",
"type": "module",
"bin": {
"girl-agent": "dist/cli.js"
},
"main": "dist/cli.js",
"files": [
"dist",
"templates",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "npm run build:server && npm run build:webui",
"build:server": "tsup",
"build:termux": "npm run build:server -- --env.NODE_OPTIONS=--max-old-space-size=384 && cd webui && npm install --silent --no-audit --no-fund && npm run build -- --minify=false",
"build:webui": "cd webui && npm install --silent --no-audit --no-fund && npm run build",
"dev": "tsx src/cli.ts",
"dev:webui": "cd webui && npm run dev",
"start": "node dist/cli.js",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"author": "TheSashaDev (void)",
"license": "SEE LICENSE IN LICENSE",
"keywords": [
"telegram",
"ai",
"agent",
"webui",
"mcp",
"userbot",
"llm",
"persona",
"anthropic",
"openai"
],
"engines": {
"node": ">=18.18"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"@modelcontextprotocol/sdk": "^1.0.4",
"grammy": "^1.30.0",
"input": "^1.0.1",
"mri": "^1.2.0",
"openai": "^4.77.0",
"socks-proxy-agent": "^10.0.0",
"telegram": "^2.26.16",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/ws": "^8.5.13",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"overrides": {
"ip-address": "^10.2.0"
}
}