-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.76 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.76 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
{
"name": "@remskill/cortex",
"version": "1.0.1",
"description": "Free and open-source AI memory system for preventing code duplication and ensuring pattern consistency",
"keywords": [
"ai",
"claude-code",
"claude",
"anthropic",
"mcp",
"model-context-protocol",
"vector-search",
"semantic-search",
"ai-memory",
"code-assistant",
"embeddings",
"pgvector",
"ollama",
"rag",
"retrieval-augmented-generation",
"code-search",
"ai-coding",
"chatgpt",
"llm",
"local-ai"
],
"homepage": "https://github.com/Remskill/Cortex",
"repository": {
"type": "git",
"url": "https://github.com/Remskill/Cortex.git"
},
"bugs": {
"url": "https://github.com/Remskill/Cortex/issues"
},
"author": {
"name": "Denys Medvediev",
"url": "https://buymeacoffee.com/denys_medvediev"
},
"license": "MIT",
"private": false,
"type": "module",
"bin": {
"cortex-server": "./src/server.ts"
},
"scripts": {
"db:setup": "tsx scripts/init-database-schema.ts",
"db:sync": "node --max-old-space-size=4096 --import tsx/esm scripts/sync.ts",
"db:wipe": "tsx scripts/delete-all.ts",
"setup": "npm run db:setup && echo \"\" && echo \"✅ Database schema created! Now syncing files...\" && echo \"\" && npm run db:sync",
"hook:install": "tsx scripts/install-hook.ts",
"mcp:server": "tsx src/server.ts",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"glob": "^10.3.10",
"postgres": "^3.4.3",
"zod": "^4.2.1"
},
"devDependencies": {
"@types/node": "^20.10.6",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}