export interface AstroProjectGeneratorSchema { name: string; directory?: string; e2eTestRunner?: "none" | "cypress" | "playwright-test" | "playwright-vitest"; linter?: Linter.EsLint | Linter.None; setParserOptionsProject?: boolean; unitTestRunner?: "none" | "vitest" | "jest"; js?: boolean; skipFormat?: boolean; skipPackageJson?: boolean; standaloneConfig?: boolean; tags?: string; }