File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11export * from './npm-registry'
22export * from './jsr'
33export * from './osv'
4+ export * from './readme'
Original file line number Diff line number Diff line change 1+ /**
2+ * Playground/demo link extracted from README
3+ */
4+ export interface PlaygroundLink {
5+ /** The full URL */
6+ url : string
7+ /** Provider identifier (e.g., 'stackblitz', 'codesandbox') */
8+ provider : string
9+ /** Human-readable provider name (e.g., 'StackBlitz', 'CodeSandbox') */
10+ providerName : string
11+ /** Link text from README (e.g., 'Demo', 'Try it online') */
12+ label : string
13+ }
14+
15+ /**
16+ * Response from README API endpoint
17+ */
18+ export interface ReadmeResponse {
19+ /** Rendered HTML content */
20+ html : string
21+ /** Extracted playground/demo links */
22+ playgroundLinks : PlaygroundLink [ ]
23+ }
You can’t perform that action at this time.
0 commit comments