-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.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
{
"name": "omp-codebase-memory",
"version": "0.1.0",
"private": true,
"license": "MIT",
"type": "module",
"description": "OMP extension that owns the codebase-memory-mcp executable lifecycle and wires exactly one MCP server entry into OMP's native user configuration.",
"repository": {
"type": "git",
"url": "git+https://github.com/pashifika/omp-codebase-memory.git"
},
"omp": {
"extensions": [
"./dist/index.js"
],
"features": {
"graph-augmentation": {
"description": "Append matching graph symbols to grep/glob results and index-coverage gaps to read results, on tool_result only.",
"default": true,
"extensions": [
"./dist/augment.js"
]
}
}
},
"scripts": {
"build": "bun build src/index.ts --target=bun --format=esm --outfile=dist/index.js && bun build src/augment-entry.ts --target=bun --format=esm --outfile=dist/augment.js",
"dev:install": "bun run scripts/dev-install.ts",
"harvest": "bun run scripts/harvest.ts",
"test": "bun test",
"test:unit": "bun test test/unit",
"test:packaging": "bun run build && bun test test/packaging",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@oh-my-pi/pi-coding-agent": "18.0.8",
"@types/bun": "1.3.14",
"typescript": "5.9.3"
}
}