-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.43 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
{
"name": "@verygoodplugins/mcp-automem",
"version": "0.14.0",
"description": "MCP server for AutoMem: AI memory storage and recall",
"main": "dist/index.js",
"type": "module",
"mcpName": "io.github.verygoodplugins/mcp-automem",
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"bin": {
"mcp-automem": "dist/index.js"
},
"scripts": {
"prebuild": "tsx scripts/sync-memory-policy.ts && node scripts/sync-template-versions.mjs",
"build": "tsc",
"postbuild": "node scripts/build-openclaw-plugin-package.mjs && chmod +x dist/index.js",
"sync-versions": "node scripts/sync-template-versions.mjs",
"docs:hermes": "node scripts/build-hermes-demos.mjs",
"dev": "tsx watch src/index.ts",
"lint": "eslint .",
"prepare": "husky",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:all": "vitest run && vitest run --config vitest.integration.config.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build && npm run test",
"build:extension": "npm run build && npx @anthropic-ai/mcpb pack"
},
"keywords": [
"mcp",
"mcp-server",
"modelcontextprotocol",
"automem",
"memory",
"ai-memory",
"falkordb",
"qdrant"
],
"author": "Very Good Plugins",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/verygoodplugins/mcp-automem.git"
},
"bugs": {
"url": "https://github.com/verygoodplugins/mcp-automem/issues"
},
"homepage": "https://github.com/verygoodplugins/mcp-automem#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"dotenv": "^17.4.2",
"node-fetch": "^3.3.2",
"yaml": "^2.9.0"
},
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.5",
"eslint": "^10.2.1",
"husky": "^9.1.7",
"tsx": "^4.6.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vitest": "^4.1.5"
},
"files": [
"dist/",
"templates",
"skills",
"plugins",
".claude-plugin",
"assets",
"manifest.json",
"install.sh",
"env.example",
"README.md",
"CHANGELOG.md",
"LICENSE"
]
}