Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,17 @@ See `docs/benchmark.md` for full documentation.
`.well-known/src.json` metadata (shared by gro for generation and fuz for UI)
- `pkg_json.ts` - `PkgJson` enriched package representation combining
`PackageJson` and `SrcJson`
- `source_json.ts` - Library documentation metadata types shared across Fuz projects:
- `SourceJson` - package metadata + analyzed modules
- `ModuleJson` - source file metadata (declarations, dependencies, comments)
- `DeclarationJson` - exported declaration metadata (functions, types, classes, components)
- Supporting types: `ParameterInfo`, `ComponentPropInfo`, `GenericParamInfo`
- Used by `@fuzdev/svelte-docinfo` (analysis) and `@fuzdev/fuz_ui` (documentation UI)
- `library_json.ts` - Opinionated library metadata wrapping:
- `LibraryJson` - combines `SourceJson` with GitHub/npm metadata
- `library_json_parse()` - generates URLs, logo paths, published flags
- `library_repo_name_parse()`, `library_org_url_parse()` - helpers
- Used by `@fuzdev/fuz_ui` for documentation generation
- `result.ts` - Result type pattern
- `error.ts` - error utilities

Expand Down
213 changes: 149 additions & 64 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,10 @@
},
"devDependencies": {
"@changesets/changelog-git": "^0.2.1",
"@fuzdev/fuz_code": "^0.40.0",
"@fuzdev/fuz_css": "^0.44.1",
"@fuzdev/fuz_ui": "^0.179.0",
"@fuzdev/fuz_code": "^0.38.0",
"@fuzdev/fuz_css": "^0.43.0",
"@fuzdev/fuz_ui": "file:../fuz_ui",
"@fuzdev/svelte-docinfo": "file:../svelte-docinfo",
"@ryanatkn/eslint-config": "^0.9.0",
"@ryanatkn/gro": "^0.189.0",
"@sveltejs/adapter-static": "^3.0.10",
Expand Down
Loading
Loading