| 2 | import { logger } from './logger'; |
| 3 | |
| 4 | export interface BuildConfig { |
| 5 | framework: string; |
| 6 | packageManager: 'npm' | 'pnpm' | 'yarn'; |
| 7 | installCommand: string; |
| 8 | buildCommand?: string; |
| 9 | devCommand: string; |
| 10 | defaultPort: number; |
| 11 | } |
| 12 | |
| 13 | interface PackageJson { |
| 14 | name?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected