# Tech Stack & Enforcement Rules **Version:** 1.0 **Status:** PRODUCTION **Last Updated:** January 2026 --- ## Overview This document enforces the specific versions and usage patterns for all technologies in Job Info. All developers must follow these rules to ensure consistency and compatibility. --- ## 1. Runtime & Build System ### Bun **Version:** `latest` (1.0.0+) **Rules:** - ✅ Use `bun` for running TypeScript directly - ✅ Use `bun install` to manage dependencies - ✅ Use `bun run` for scripts - ✅ Use `bun run build:css` for Tailwind compilation - ❌ Do NOT use `npm` or `yarn` - ❌ Do NOT use Node.js for production (Bun is faster, but ensure infrastructure supports it) **Installation:** ```bash curl -fsSL https://bun.sh/install | bash ``` **Common Commands:** ```bash bun install # Install dependencies bun add # Add dependency bun run