-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 993 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 993 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
38
{
"name": "cortex-plugin-knowledge-graph",
"version": "1.0.0",
"description": "Personal Knowledge Graph Builder — auto-extracts entities and relationships from chat sessions, CR documents, and tool outputs to build a graph stored alongside existing vector memory",
"type": "module",
"main": "mod.ts",
"scripts": {
"dev": "node --watch mod.ts",
"test": "node --test test/**/*.test.js",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"lint": "eslint ."
},
"keywords": [
"cortex",
"plugin",
"cortex-plugin",
"knowledge-graph",
"esm"
],
"author": "CortexPrism",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CortexPrism/cortex-plugin-knowledge-graph.git"
},
"dependencies": {
"@cortexprism/plugin-sdk": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"eslint": "^9.0.0",
"prettier": "^3.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}