-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 936 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 936 Bytes
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
{
"name": "knowledge-graph",
"version": "0.1.0",
"type": "module",
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"cli": "tsx src/cli/index.ts"
},
"bin": {
"kg": "dist/cli/index.js"
},
"dependencies": {
"@huggingface/transformers": "^3.8.1",
"@modelcontextprotocol/sdk": "^1.27.1",
"better-sqlite3": "^12.8.0",
"commander": "^14.0.3",
"graphology": "^0.26.0",
"graphology-communities-louvain": "^2.0.2",
"graphology-components": "^1.5.4",
"graphology-metrics": "^2.4.0",
"graphology-shortest-path": "^2.1.0",
"graphology-traversal": "^0.3.1",
"graphology-types": "^0.24.8",
"gray-matter": "^4.0.3",
"sqlite-vec": "^0.1.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.5.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}