-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtypedoc.modules.json
More file actions
81 lines (81 loc) · 1.98 KB
/
typedoc.modules.json
File metadata and controls
81 lines (81 loc) · 1.98 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
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": [
"src/core/index.ts",
"src/memory/index.ts",
"src/rag/index.ts",
"src/discovery/index.ts",
"src/extensions/index.ts",
"src/channels/index.ts",
"src/skills/index.ts",
"src/speech/index.ts",
"src/voice/index.ts",
"src/social-posting/index.ts",
"src/neo4j/index.ts"
],
"out": "docs/api/modules",
"json": "../../docs-generated/library/modules/docs.json",
"tsconfig": "tsconfig.build.json",
"exclude": ["**/*.test.ts", "**/*.spec.ts", "**/__tests__/**", "**/tests/**"],
"skipErrorChecking": true,
"cleanOutputDir": false,
"name": "@framers/agentos Module API",
"readme": "none",
"includeVersion": true,
"excludePrivate": true,
"excludeProtected": false,
"excludeInternal": true,
"excludeExternals": true,
"categorizeByGroup": true,
"categoryOrder": ["*", "Other"],
"groupOrder": ["Classes", "Interfaces", "Functions", "Types", "Variables", "Enums"],
"navigation": {
"includeCategories": true,
"includeGroups": true
},
"navigationLinks": {
"Website": "https://agentos.sh",
"GitHub": "https://github.com/framersai/agentos",
"npm": "https://www.npmjs.com/package/@framers/agentos"
},
"plugin": [],
"theme": "default",
"lightHighlightTheme": "github-light",
"darkHighlightTheme": "github-dark",
"sort": ["source-order", "alphabetical"],
"kindSortOrder": [
"Reference",
"Project",
"Module",
"Namespace",
"Enum",
"EnumMember",
"Class",
"Interface",
"TypeAlias",
"Constructor",
"Property",
"Variable",
"Function",
"Accessor",
"Method",
"Parameter",
"TypeParameter",
"TypeLiteral",
"CallSignature",
"ConstructorSignature",
"IndexSignature",
"GetSignature",
"SetSignature"
],
"visibilityFilters": {
"protected": true,
"private": false,
"inherited": true,
"@alpha": false,
"@beta": false
},
"validation": {
"notExported": false
}
}