feat (v1.0.0): initial refactor and redesign

This commit is contained in:
Aidan 2025-10-09 04:12:05 -04:00
parent 3058aa1ab4
commit fe9b50b30e
134 changed files with 17792 additions and 3670 deletions

30
typedoc.json Normal file
View file

@ -0,0 +1,30 @@
{
"$schema": "https://typedoc.org/schema.json",
"entryPoints": [
"lib/services",
"lib/utils",
"lib/types",
"lib/theme",
"lib/github.ts"
],
"entryPointStrategy": "expand",
"out": "public/docs/html",
"json": "public/docs/api.json",
"excludePrivate": true,
"excludeInternal": true,
"excludeExternals": true,
"readme": "none",
"plugin": [],
"sort": ["source-order"],
"includeVersion": false,
"searchInComments": true,
"categorizeByGroup": true,
"defaultCategory": "Other",
"categoryOrder": [
"Services",
"Utils",
"Types",
"Theme",
"*"
]
}