-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.51 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
{
"name": "@nebutra/knowledge-graph",
"version": "0.2.3",
"private": false,
"license": "MIT",
"type": "module",
"nebutra": {
"status": "wip",
"productionReady": false,
"surface": "semantic-index",
"requires": [
"A GraphStore adapter (Postgres + recursive CTE, or any edge store)",
"A VectorRetriever adapter (e.g. @nebutra/code-index or any vector backend) — injected, not bundled",
"Caller-supplied tenantId + source values for fail-closed SourceScope derivation"
],
"gaps": [
"Ships the zero-LLM typed-edge extractor, markdown-canonical temporal-fact model, idempotent consolidate, and graph/backlink-boosted fusion as pure logic over injected GraphStore/VectorRetriever ports; concrete stores are host-injected, not bundled",
"Verb/role inference rule tables are config-overridable (default tables are corpus-tuned heuristics, accuracy unverified)"
],
"featureId": "knowledge-graph",
"category": "ai",
"summary": "Multi-tenant self-wiring knowledge-graph substrate: zero-LLM typed entity-edge extraction, markdown-canonical bitemporal typed-fact model with supersession + trajectory, idempotent consolidation, and graph/backlink-boosted hybrid fusion — all behind injected GraphStore/VectorRetriever ports"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@nebutra/ai-primitives": "file:./vendor/nebutra__ai-primitives",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.9.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"homepage": "https://github.com/Nebutra/knowledge-graph#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Nebutra/knowledge-graph.git"
},
"bugs": {
"url": "https://github.com/Nebutra/knowledge-graph/issues"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"nebutraMirror": {
"sourceRepository": "Nebutra/Nebutra-Sailor",
"sourceDirectory": "packages/ai/knowledge-graph",
"sourcePackage": "@nebutra/knowledge-graph",
"sourceSha": "4b74c1b5066ddd955515f5c0c820982d9e63ee3b",
"canonicalSource": "monorepo"
},
"packageManager": "pnpm@10.32.1"
}