-
-
Notifications
You must be signed in to change notification settings - Fork 274
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.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
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
{
"name": "@cosmicstack/mercury-agent",
"version": "1.1.12",
"description": "Soul-driven AI agent with Second Brain memory, permission-hardened tools, token budgets, and multi-channel access. Runs 24/7 from CLI or Telegram.",
"type": "module",
"main": "dist/index.js",
"bin": {
"mercury": "./dist/index.js"
},
"scripts": {
"build:ui": "cd ui && npm run build",
"build": "tsup && node scripts/post-build.cjs",
"build:bin": "npm run build && node scripts/build-bin.cjs",
"build:bin:all": "npm run build && node scripts/build-bin.cjs --all",
"build:bin:force": "npm run build && node scripts/build-bin.cjs --force",
"build:bin:all:force": "npm run build && node scripts/build-bin.cjs --all --force",
"dev": "tsup --watch",
"start": "node dist/index.js",
"lint": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"keywords": [
"ai",
"agent",
"ai-agent",
"cli",
"telegram",
"telegram-bot",
"personal-assistant",
"soul-driven",
"token-budget",
"permissions",
"scheduler",
"cron",
"skill-system",
"deepseek",
"openai",
"anthropic",
"llm"
],
"author": "Cosmic Stack",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cosmicstack-labs/mercury-agent.git"
},
"homepage": "https://mercuryagent.sh",
"bugs": {
"url": "https://github.com/cosmicstack-labs/mercury-agent/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"src/web/static"
],
"dependencies": {
"@ai-sdk/anthropic": "^3.0.71",
"@ai-sdk/deepseek": "^2.0.29",
"@ai-sdk/openai": "^3.0.53",
"@grammyjs/auto-retry": "^2.0.2",
"@hono/node-server": "^2.0.0",
"ai": "^6.0.168",
"bcryptjs": "^3.0.3",
"chalk": "^5.4.0",
"commander": "^12.1.0",
"dotenv": "^16.4.7",
"grammy": "^1.42.0",
"hono": "^4.12.15",
"ink": "^5.2.1",
"marked": "^14.1.4",
"node-cron": "^3.0.3",
"ollama-ai-provider": "^1.2.0",
"pino": "^10.3.1",
"react": "^18.3.1",
"sql.js": "^1.14.1",
"yaml": "^2.7.0",
"zod": "^3.25.76"
},
"optionalDependencies": {
"better-sqlite3": "^12.9.0"
},
"devDependencies": {
"@types/bcryptjs": "^3.0.0",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.13.0",
"@types/node-cron": "^3.0.11",
"@types/react": "^18.3.28",
"react-devtools-core": "^4.28.5",
"tsup": "^8.4.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}