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
|
{
"name": "Githermit docs",
"entryPoints": [
"packages/server/src/cache/index.ts",
"packages/server/src/git/index.ts",
"packages/api/src/index.d.ts"
],
"hideGenerator": true,
"out": "docs",
"tsconfig": "packages/server/tsconfig.json",
"theme": "node_modules/typedoc-theme-slick-dark/bin/default",
"highlightTheme": "dark-plus",
"pages": {
"reflectionNavigationTitle": "Development",
"groups": [
{
"title": "Guides",
"pages": [
{
"title": "Installation",
"source": "docs_src/installation.md"
},
{
"title": "Hacking",
"source": "docs_src/hacking.md"
}
]
},
{
"title": "API",
"pages": [
{
"title": "Introduction",
"source": "docs_src/API/introduction.md"
},
{
"title": "v1",
"source": "docs_src/API/v1/v1.md",
"children": [
{
"title": "Repos",
"source":"docs_src/API/v1/repos.md"
}
]
}
]
}
]
}
}
|