### Start Development Server (Bash) Source: https://github.com/dodopayments/dodopayments-figma/blob/main/README.md Starts the development server with file watching capabilities for the Dodo Payments Figma plugin. ```bash npm run dev ``` -------------------------------- ### Build Plugin for Production (Bash) Source: https://github.com/dodopayments/dodopayments-figma/blob/main/README.md Builds the Dodo Payments Figma plugin for production deployment. ```bash npm run build ``` -------------------------------- ### Configure Network Access for Manifest (JSON) Source: https://github.com/dodopayments/dodopayments-figma/blob/main/README.md Configures the plugin's manifest to allow network access to the Dodo Payments CORS proxy for license validation and activation. ```json { "networkAccess": { "allowedDomains": ["https://dodo-payments-proxy.aagarwal9782.workers.dev"] } } ``` -------------------------------- ### Format Code with Prettier (Bash) Source: https://github.com/dodopayments/dodopayments-figma/blob/main/README.md Formats the Dodo Payments Figma plugin's code using Prettier for consistent code style. ```bash npm run format ``` -------------------------------- ### Lint Code with Prettier (Bash) Source: https://github.com/dodopayments/dodopayments-figma/blob/main/README.md Checks the code style and potential errors in the Dodo Payments Figma plugin using a linter. ```bash npm run lint ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.