-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.67 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.67 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
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "pampa",
"version": "1.12.2",
"description": "PAMPA – Protocol for Augmented Memory of Project Artifacts (MCP compatible)",
"author": "Manuel Bruña",
"type": "module",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/tecnomanu/pampa.git"
},
"bin": {
"pampa": "src/cli.js",
"pampa-mcp": "src/mcp-server.js"
},
"files": [
"src/",
"README.md",
"README_es.md",
"README_FOR_AGENTS.md",
"RULE_FOR_PAMPA_MCP.md"
],
"scripts": {
"index": "node src/cli.js index",
"index:local": "node src/cli.js index --provider transformers",
"index:openai": "node src/cli.js index --provider openai",
"index:ollama": "node src/cli.js index --provider ollama",
"mcp": "node src/cli.js mcp",
"search": "node src/cli.js search",
"info": "node src/cli.js info",
"build": "tsc",
"dev": "tsc --watch",
"prepare": "husky install",
"test": "bash test/run-tests.sh",
"test:unit": "node test/test-search-code.js",
"test:mcp": "node test/test-mcp.js",
"test:diagnostics": "node test/pampa-diagnostics.js",
"bench": "node --test test/benchmarks/bench.test.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"chokidar": "^3.6.0",
"commander": "^12.0.0",
"fast-glob": "^3.3.2",
"@xenova/transformers": "^2.17.2",
"micromatch": "^4.0.8",
"openai": "^4.103.0",
"sqlite3": "^5.1.6",
"tree-sitter": "^0.21.1",
"tree-sitter-go": "^0.21.0",
"tree-sitter-java": "^0.20.2",
"tree-sitter-javascript": "^0.21.4",
"tree-sitter-php": "^0.20.0",
"tree-sitter-python": "^0.21.0",
"tree-sitter-typescript": "^0.21.2",
"wink-bm25-text-search": "^3.1.2",
"xxhash-wasm": "^1.0.2",
"zod": "^3.25.6"
},
"optionalDependencies": {
"cohere-ai": "^7.9.5",
"ollama": "^0.5.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.2",
"@semantic-release/npm": "^12.0.1",
"@types/node": "^20.0.0",
"husky": "^8.0.0",
"semantic-release": "^24.2.3",
"typescript": "^5.0.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"code-search",
"embeddings",
"vector-search"
],
"engines": {
"node": ">=16.0.0"
},
"volta": {
"node": "18.17.1"
},
"packageManager": "pnpm@8.15.0",
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]"
}
]
]
}
}