/** * Script to validate dependency consistency across three surfaces: * 1. Starter template — every peerDependency must be present with a compatible version. * 2. Our own devDependencies — every peerDependency must also be in devDependencies so we * test against the same version range we tell consumers to use. * 3. Template/dev overlap — devDependencies that also appear in the starter template must * stay in sync so we don't ship a template that doesn't match what we develop against. */ export {};