-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.81 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.81 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
{
"name": "ghcp-cli-vector-memory-mcp",
"version": "1.6.0",
"description": "MCP server that gives GitHub Copilot CLI persistent long-term memory via local semantic vector search. Install: npx -y ghcp-cli-vector-memory-mcp",
"main": "index.js",
"bin": {
"ghcp-cli-vector-memory-mcp": "index.js"
},
"files": [
"index.js",
"vector-memory-server.js",
"embed-worker.js",
"embed-pool.js",
"lib.js",
"server-deps.json",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=18"
},
"type": "module",
"license": "MIT",
"homepage": "https://github.com/BrainSlugs83/GithubCopilotCLI-VectorMemoryMCP#installation",
"repository": {
"type": "git",
"url": "https://github.com/BrainSlugs83/GithubCopilotCLI-VectorMemoryMCP.git"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"github-copilot",
"github-copilot-cli",
"copilot-cli",
"copilot",
"vector-search",
"semantic-search",
"memory",
"long-term-memory",
"llm-memory",
"embeddings",
"session-history",
"onnx",
"rag",
"ai",
"llm",
"sqlite",
"local-ai",
"privacy",
"offline"
],
"scripts": {
"lint": "eslint index.js vector-memory-server.js embed-worker.js embed-pool.js lib.js",
"test": "node --test test.js",
"test:integration": "node --test test-integration.js",
"test:coverage": "node --test --experimental-test-coverage --test-coverage-lines=100 --test-coverage-branches=100 --test-coverage-functions=100 --test-coverage-exclude=test.js --test-coverage-exclude=test-integration.js test.js",
"check": "npm run lint && npm run test:coverage"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.2"
}
}