UNPKG

@selemondev/create-react-next

Version:

The Next Generation React Scaffolding Tool ✨

43 lines (42 loc) 1.09 kB
export interface Options { templatePath?: string Router?: string Tailwind?: string TypeScript?: string JavaScript?: string UseHooks?: string Redux?: string Jotai?: string Zustand?: string Eslint?: string Vitest?: string VercelCLI?: string NetlifyCLI?: string TanStackReactQuery?: string name?: string version?: string src?: string dest?: string allPackages?: any[] package?: 'bun' | 'pnpm' | 'npm' | 'yarn' | 'none' deploy?: 'netlify' | 'vercel' | 'none', stateManagement?: 'redux' | 'jotai' | 'zustand' | 'none', useEslint?: boolean useEslintTs?: boolean useRouter?: boolean useVercelCLI?: boolean useNetlifyCLI?: boolean useReactQuery?: boolean useTailwind?: boolean useTypeScript?: boolean useHooks?: boolean useJavaScript?: boolean useTanStackReactQuery?: string useVitest?: string useGitInit?: boolean EslintScript?: string constantDevDeps?: string constantProDeps?: string } const options: Options = {} export default options