We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1f001c commit c5cf366Copy full SHA for c5cf366
server/utils/markdown.ts
@@ -256,7 +256,7 @@ export function generatePackageMarkdown(options: PackageMarkdownOptions): string
256
lines.push('## Maintainers')
257
lines.push('')
258
for (const maintainer of pkg.maintainers.slice(0, 10)) {
259
- // npm API returns username but @npm/types Contact doesn't include it
+ // npm API returns username but `@npm/types` `Contact` doesn't include it
260
const username = (maintainer as { username?: string }).username
261
const name = maintainer.name || username || 'Unknown'
262
if (username) {
0 commit comments