feat: update npx name to test value

This commit is contained in:
lucas-neynar 2025-03-11 16:42:08 -07:00
parent 022761831b
commit 51f8c92eb3
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ async function init() {
const projectName = answers.projectName;
const projectPath = path.join(process.cwd(), projectName);
console.log(`\nCreating a new Frames v2 app in ${projectPath}`);
console.log(`\nCreating a new Frames v2 app in ${projectPath}\n`);
// Clone the repository
execSync(`git clone ${REPO_URL} "${projectPath}"`);
@ -98,7 +98,7 @@ async function init() {
console.log(`\n🖼️✨ Successfully created frame ${projectName} with git and dependencies installed! ✨🖼️`);
console.log('\nTo run the app:');
console.log(` cd ${projectName}`);
console.log(' npm run dev');
console.log(' npm run dev\n');
}
init().catch((err) => {

View File

@ -18,7 +18,7 @@
"lint": "next lint"
},
"bin": {
"frames-v2-quickstart": "./bin/index.js"
"testing-frames-v2-quickstart": "./bin/index.js"
},
"dependencies": {
"@farcaster/auth-kit": "^0.6.0",