-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.27 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
{
"name": "@agentkeep/core",
"version": "0.2.0",
"description": "Your agent's memory, as a vault you can read: a self-hosted, Obsidian-compatible markdown vault your agent maintains through MCP.",
"license": "MIT",
"author": "Victor Iglesias <victoriglesiascs@gmail.com>",
"homepage": "https://github.com/victorv2i/agentkeep#readme",
"repository": { "type": "git", "url": "github:victorv2i/agentkeep" },
"bugs": "https://github.com/victorv2i/agentkeep/issues",
"keywords": [
"agent",
"agent-memory",
"mcp",
"markdown",
"vault",
"self-hosted",
"knowledge-management"
],
"type": "module",
"publishConfig": { "access": "public" },
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"!dist/**/*.test.*",
"README.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"LICENSE",
"SECURITY.md",
"SPEC.md",
"AGENT-ROUTINE.md",
"docs/banner.png",
"docs/banner-dark.png",
"docs/editor.png",
"docs/graph.png",
"docs/memory.png",
"docs/memory-dark.png"
],
"engines": {
"node": ">=22"
},
"main": "./dist/core/index.js",
"types": "./dist/core/index.d.ts",
"exports": {
".": {
"types": "./dist/core/index.d.ts",
"default": "./dist/core/index.js"
}
},
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "pnpm clean && tsc",
"seed:dev": "pnpm build && node web/scripts/seed-dev-vault.mjs",
"prepublishOnly": "pnpm build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.18.1",
"async-mutex": "^0.5.0",
"chokidar": "^5.0.0",
"gray-matter": "^4.0.3",
"minisearch": "^7.2.0",
"proper-lockfile": "^4.1.2",
"remark-frontmatter": "^5.0.0",
"remark-parse": "^11.0.0",
"simple-git": "^3.27.0",
"unified": "^11.0.5",
"write-file-atomic": "^6.0.0",
"yaml": "^2.6.1",
"zod": "3.25.76"
},
"bin": {
"agentkeep-mcp": "dist/bin/agentkeep-mcp.js",
"agentkeep": "dist/bin/agentkeep.js"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/proper-lockfile": "^4.1.4",
"@types/write-file-atomic": "^4.0.3",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}