-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtypedoc.monorepo.json
More file actions
88 lines (88 loc) · 2.11 KB
/
typedoc.monorepo.json
File metadata and controls
88 lines (88 loc) · 2.11 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
{
"$schema": "https://typedoc.org/schema.json",
"name": "Universal Crypto MCP API Reference",
"tsconfig": "./tsconfig.docs.json",
"entryPointStrategy": "expand",
"entryPoints": [
"packages/core/src",
"packages/shared/evm-utils/src",
"packages/shared/mcp-utils/src",
"packages/shared/utils/src",
"packages/agents/agenti/src",
"packages/agents/ucai/src",
"packages/agents/defi-agents/src",
"packages/defi/protocols/src",
"packages/trading/bots/src",
"packages/market-data/blockchain-analytics/src",
"packages/market-data/coinstats/src",
"packages/market-data/crypto-indicators/src"
],
"out": "./docs/api-reference",
"json": "./docs/api-reference/api.json",
"readme": "none",
"includeVersion": true,
"excludePrivate": true,
"excludeProtected": false,
"excludeInternal": true,
"excludeExternals": true,
"skipErrorChecking": true,
"validation": {
"notExported": false,
"invalidLink": false,
"notDocumented": false
},
"categorizeByGroup": true,
"categoryOrder": [
"Core",
"DeFi",
"Wallets",
"Trading",
"Market Data",
"Agents",
"Payments",
"NFT",
"Security",
"Automation",
"Infrastructure",
"*"
],
"sort": [
"kind",
"alphabetical"
],
"kindSortOrder": [
"Module",
"Namespace",
"Class",
"Interface",
"TypeAlias",
"Function",
"Variable",
"Enum"
],
"plugin": ["typedoc-plugin-markdown"],
"outputFileStrategy": "modules",
"entryFileName": "index",
"indexFormat": "table",
"parametersFormat": "table",
"interfacePropertiesFormat": "table",
"classPropertiesFormat": "table",
"enumMembersFormat": "table",
"propertyMembersFormat": "table",
"typeDeclarationFormat": "table",
"tableColumnSettings": {
"hideDefaults": false,
"hideInherited": false,
"hideModifiers": false,
"hideOverrides": false,
"hideSources": false,
"leftAlignHeaders": true
},
"useCodeBlocks": true,
"expandObjects": true,
"expandParameters": true,
"hideBreadcrumbs": false,
"hidePageHeader": false,
"hidePageTitle": false,
"publicPath": "/docs/api/"
}