You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Check if this is a plugin (package.json contains 'eliza' section with type='plugin')
// Check if this is a plugin (package.json contains 'eliza' section with type='plugin')
if (packageJson.eliza?.type && packageJson.eliza.type === 'plugin') {
isPlugin = true;
logger.info('Found Eliza plugin in current directory');
}
// Check if this is a project (package.json contains 'eliza' section with type='project')
if (packageJson.eliza?.type && packageJson.eliza.type === 'project') {
isProject = true;
logger.info('Found Eliza project in current directory');
}
The text was updated successfully, but these errors were encountered:
can you please show me examples of where to find plugins as defined here?
eliza/packages/cli/src/commands/start.ts
Line 346 in 9834bbd
The text was updated successfully, but these errors were encountered: