- Build:
npm run build
(uses tsup with browser platform) - Format code:
npm run format
(Biome formatter) - Check formatting:
npm run format:check
- Type check:
npx tsc --noEmit
- Run Storybook:
npm run storybook
ornpm start
- Build Storybook:
npm run build-storybook
- Build and publish to yalc:
npm run yalc
- TypeScript: Strict mode enabled
- Formatting: Uses Biome with 2-space indentation
- JSX: Double quotes for JSX attributes
- Imports: Organize imports enabled (handled by Biome)
- Semicolons: Only as needed (determined by Biome)
- Naming: Component files use PascalCase, other files use kebab-case
- Component Structure: React Functional Components with explicit typing
- Type Declarations: Prefer type over interface, explicit typings
- Nullish Values: Use ?? operator for defaults, proper null checks
- Error Handling: Use try/catch for async operations
- State Management: Combination of React hooks and Zustand
This package renders circuit boards using PixiJS for WebGL rendering. Main entry point is the PCBViewer component which takes circuit data as input. Circuit JSON format is defined by the circuit-json package.