@ulpi/codemap 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +73 -0
- package/README.md +386 -0
- package/dist/chunk-5ISZDDN7.js +80 -0
- package/dist/chunk-7SDODQZD.js +200 -0
- package/dist/chunk-SNG7R3UC.js +38 -0
- package/dist/chunk-WUVKW5JG.js +72 -0
- package/dist/index.js +4440 -0
- package/dist/ollama-3XCUZMZT-J6Z4WWWO.js +7 -0
- package/dist/openai-RC75RP4O-NSFZC5O6.js +8 -0
- package/dist/ulpi-KLKEAQC3-5ATUONU7.js +10 -0
- package/package.json +35 -0
package/package.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ulpi/codemap",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Standalone code intelligence CLI — hybrid vector + BM25 search, dependency analysis, PageRank",
|
|
6
|
+
"bin": {
|
|
7
|
+
"codemap": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"exports": {
|
|
10
|
+
".": "./dist/index.js"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"dist"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "tsup",
|
|
17
|
+
"typecheck": "tsc --noEmit",
|
|
18
|
+
"test": "vitest run",
|
|
19
|
+
"test:watch": "vitest",
|
|
20
|
+
"lint": "eslint src/"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"@ulpi/codemap-engine": "workspace:*",
|
|
24
|
+
"@ulpi/depgraph-engine": "workspace:*",
|
|
25
|
+
"@ulpi/embed-engine": "workspace:*",
|
|
26
|
+
"@ulpi/config": "workspace:*",
|
|
27
|
+
"@ulpi/contracts": "workspace:*",
|
|
28
|
+
"@modelcontextprotocol/sdk": "^1.12.0",
|
|
29
|
+
"@lancedb/lancedb": "^0.15.0",
|
|
30
|
+
"commander": "^13.0.0",
|
|
31
|
+
"chalk": "^5.0.0",
|
|
32
|
+
"yaml": "^2.7.0",
|
|
33
|
+
"zod": "^3.24.0"
|
|
34
|
+
}
|
|
35
|
+
}
|