-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.3 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
{
"name": "memorix",
"version": "0.9.26",
"description": "Cross-Agent Memory Bridge — Persistent memory for AI coding agents across Cursor, Windsurf, Claude Code, Codex, Copilot, Kiro, Antigravity, Gemini CLI via MCP.",
"type": "module",
"sideEffects": false,
"bin": {
"memorix": "./dist/cli/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"CLAUDE.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"cursor-mcp",
"windsurf-mcp",
"claude-code-memory",
"codex-mcp",
"copilot-mcp",
"kiro-mcp",
"antigravity-mcp",
"ai-coding-memory",
"cross-ide-sync",
"cross-agent-memory",
"context-persistence",
"agent-memory",
"knowledge-graph",
"workspace-sync",
"progressive-disclosure",
"session-memory",
"vector-search",
"rules-sync",
"project-skills"
],
"author": "AVIDS2",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/AVIDS2/memorix.git"
},
"homepage": "https://github.com/AVIDS2/memorix#readme",
"bugs": {
"url": "https://github.com/AVIDS2/memorix/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/AVIDS2"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@clack/prompts": "^0.9.1",
"@modelcontextprotocol/sdk": "^1.26.0",
"@orama/orama": "^3.1.0",
"@orama/plugin-data-persistence": "^3.1.0",
"citty": "^0.1.6",
"diff": "^7.0.0",
"gpt-tokenizer": "^2.8.0",
"gray-matter": "^4.0.3",
"remark": "^15.0.1",
"remark-stringify": "^11.0.0",
"zod": "^3.24.0"
},
"optionalDependencies": {
"@huggingface/transformers": "^3.0.0",
"fastembed": "^1.14.4"
},
"devDependencies": {
"@types/diff": "^7.0.0",
"@types/node": "^22.0.0",
"tsup": "^8.4.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}