-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.44 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
{
"name": "dear-agent",
"version": "0.2.4",
"description": "Dear Agent — your AI agent keeps your diary for you. A local-first MCP server + skill that lets any AI agent maintain a human's daily life journal from text, photos, and voice notes. You never open an app or write a word.",
"type": "module",
"bin": {
"dear-agent": "dist/index.js"
},
"files": [
"dist",
"SKILL.md",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"diary",
"journal",
"agent",
"ai-agent",
"claude",
"cursor",
"openclaw",
"life-log",
"journaling",
"local-first",
"ai-diary",
"diary-mcp",
"journal-mcp",
"personal-journal",
"journal-keeper",
"daily-journal",
"life-journal",
"voice-journal",
"personal-memory",
"memory"
],
"author": "BitmapAsset",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/BitmapAsset/dear-agent.git"
},
"homepage": "https://github.com/BitmapAsset/dear-agent",
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.6.0"
},
"mcpName": "io.github.BitmapAsset/dear-agent"
}