@consensys/create-web3-template
Version:
This is a CLI tool that scaffolds Next.js and React projects with a focus on Web3 development.
18 lines (15 loc) • 347 B
TypeScript
type Template = {
id: string;
name: string;
repo_url: string;
packageName: string;
};
type TemplateSelection = {
title: string;
};
type ProjectOptions = {
projectName: string;
framework: "react" | "nextjs" | undefined;
blockchain_tooling: "hardhat" | "foundry" | "none" | undefined;
packageManager: "yarn" | "npm" | "pnpm";
};