### Run Development Server Source: https://github.com/bernaferrari/figmatocode/blob/main/apps/debug/README.md Execute this command in your terminal to start the development server for the project. Open http://localhost:3000 in your browser to view the application. ```bash yarn dev ``` -------------------------------- ### Build Project for Production Source: https://github.com/bernaferrari/figmatocode/blob/main/README.md Command to build the project for production deployment. ```bash pnpm build ``` -------------------------------- ### Build and Watch for Changes Source: https://github.com/bernaferrari/figmatocode/blob/main/README.md Builds the project and continuously watches for file changes, recompiling as needed. ```bash pnpm build:watch ``` -------------------------------- ### Run Root Development Mode Source: https://github.com/bernaferrari/figmatocode/blob/main/README.md Use this command to run the plugin in development mode, which includes a debug UI. Access the debug UI at http://localhost:3000. ```bash pnpm dev ``` -------------------------------- ### Run ESLint Source: https://github.com/bernaferrari/figmatocode/blob/main/README.md Lints the project code using ESLint to check for code quality and potential errors. ```bash pnpm lint ``` -------------------------------- ### Run Plugin-Only Development Mode Source: https://github.com/bernaferrari/figmatocode/blob/main/README.md Execute this command to focus development solely on the plugin, excluding the Next.js debug UI. This is useful for targeted plugin modifications. ```bash cd apps/plugin pnpm dev ``` -------------------------------- ### Format Code with Prettier Source: https://github.com/bernaferrari/figmatocode/blob/main/README.md Formats the project code using Prettier. Warning: this command may modify files. ```bash pnpm format ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.