/** * Validate Package.json Executor * * Validates that package.json dependencies match project.json build dependencies. * This ensures the two sources of truth don't drift apart. * * Usage: * nx run architecture:validate-packagejson */ import type { ExecutorContext } from '@nx/devkit'; export interface ValidatePackageJsonOptions { } export interface ExecutorResult { success: boolean; } export default function runExecutor(options: ValidatePackageJsonOptions, context: ExecutorContext): Promise;