-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.22 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.22 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
{
"name": "@jafreck/lore",
"version": "0.4.0",
"description": "Code intelligence tool — SCIP+LSP indexing, symbol extraction, call-graph construction, and optional embeddings for semantic search",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./mcp": {
"default": "./dist/server/server.js"
},
"./db/read-only": {
"types": "./dist/db/read-only.d.ts",
"default": "./dist/db/read-only.js"
},
"./server/tools/*": {
"types": "./dist/server/tools/*.d.ts",
"default": "./dist/server/tools/*.js"
}
},
"bin": {
"lore": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"lint": "tsc --noEmit",
"prepare": "npm run build",
"prepublishOnly": "npm run clean && npm run build",
"test": "vitest run",
"test:lsp-smoke": "vitest run tests/lsp/smoke.test.ts",
"test:benchmark": "vitest run tests/benchmark/",
"test:benchmark:integration": "vitest run tests/benchmark/integration.test.ts",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/jafreck/Lore.git"
},
"homepage": "https://github.com/jafreck/Lore#readme",
"keywords": [
"code-indexing",
"scip",
"lsp",
"call-graph",
"symbol-extraction",
"embeddings",
"knowledge-base"
],
"author": "Jacob Freck",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@bufbuild/protobuf": "^2.11.0",
"@huggingface/transformers": "^4.0.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"@sourcegraph/scip-python": "^0.6.6",
"@sourcegraph/scip-typescript": "^0.4.0",
"better-sqlite3": "^12.6.2",
"fast-glob": "^3.3.3",
"simple-git": "^3.32.3",
"sqlite-vec": "^0.1.6",
"zod": "^4.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25",
"@vitest/coverage-v8": "^4.1.2",
"pyright": "^1.1.406",
"typescript": "^6.0",
"typescript-language-server": "^5.0.1",
"vitest": "^4.0"
},
"engines": {
"node": ">=22.0.0"
}
}