MCPcopy
hub / github.com/intentui/intentui / topLevelPackages

Function topLevelPackages

src/scripts/generate-registry.ts:238–245  ·  view source on GitHub ↗
(specs: string[])

Source from the content-addressed store, hash-verified

236}
237
238const topLevelPackages = (specs: string[]) => [
239 ...new Set(
240 specs
241 .filter((s) => !s.startsWith('.') && !s.startsWith('@/'))
242 .map(pkgName)
243 .filter((p) => !DEP_EXCLUDE.has(p))
244 ),
245]
246
247async function findInternalDepsForFile(file: string, specs: string[]) {
248 const urls: string[] = []

Callers 5

buildComponentItemFunction · 0.85
buildLibItemFunction · 0.85
buildHookItemFunction · 0.85
buildExampleItemFunction · 0.85
buildBlockItemFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected