-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjsdoc.config.json
More file actions
113 lines (113 loc) · 2.47 KB
/
jsdoc.config.json
File metadata and controls
113 lines (113 loc) · 2.47 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"source": {
"include": [
"./src/",
"./docs/stores/README.md",
"./docs/utils/README.md",
"./README.md"
],
"includePattern": "\\.js$",
"exclude": [
"node_modules/",
"tests/",
"dist/",
"build/",
"coverage/",
"playwright-report/",
"test-results/",
".git/",
"docs/ignore/",
"docs/postcraft/",
"docs/ui/",
"docs/test/",
"src/api/about.md",
"src/api/cli/about.md",
"src/types/README.md",
"src/servers/mcp-server.js",
"src/prompts/migrate-existing.js",
"src/frontend/",
"src/mcp/",
"src/aux/",
"src/compose/",
"src/migration/",
"src/temp/",
"*.test.js",
"*.spec.js",
"*.vitest.js",
"*.e2e.js"
]
},
"opts": {
"destination": "./docs-generated/",
"recurse": true,
"readme": "./README.md"
},
"plugins": [
"plugins/markdown",
"plugins/summarize"
],
"templates": {
"cleverLinks": false,
"monospaceLinks": false,
"useLongnameInNav": false,
"showInheritedInNav": true
},
"markdown": {
"parser": "gfm",
"hardwrap": false
},
"docdash": {
"static": true,
"sort": true,
"sectionOrder": [
"API",
"Connectors",
"Handlers",
"Ragno",
"Stores",
"Frontend",
"Services",
"Utils",
"Types",
"ZPT"
],
"disqus": false,
"openGraph": {
"title": "Semem - Semantic Memory Documentation",
"type": "website",
"image": "",
"site_name": "Semem Documentation",
"url": "https://hyperdata.github.io/semem/"
},
"meta": {
"title": "Semem Documentation",
"description": "Comprehensive documentation for the Semem semantic memory management system",
"keyword": "semantic memory, knowledge graphs, AI, LLM, embeddings, SPARQL, RDF"
},
"search": true,
"collapse": false,
"typedefs": true,
"removeQuotes": "none",
"scripts": [],
"menu": {
"Getting Started": {
"href": "./README.md",
"target": "_blank",
"class": "menu-item",
"id": "getting-started"
},
"API Reference": {
"href": "./docs/api/README.md",
"target": "_blank",
"class": "menu-item",
"id": "api-reference"
},
"GitHub": {
"href": "https://github.com/hyperdata/semem",
"target": "_blank",
"class": "menu-item",
"id": "github-link"
}
}
}
}