Global instruction to always use Bun as the package manager in Litekart Admin.
This project strictly uses Bun as its package manager and runtime. All package-related operations and script executions MUST use bun.
bun: Never use npm, yarn, or pnpm.bun add <package> or bun add -d <package>.bun run <script> (e.g., bun run dev, bun run build).bunx <command> instead of npx.bun.lock and bun.lockb. Using other package managers will create redundant or conflicting lockfiles.| Action | Command |
|---|---|
| Install All Dependencies | bun install |
| Add Dependency | bun add <package> |
| Add Dev Dependency | bun add -d <package> |
| Remove Dependency | bun remove <package> |
| Run Dev Server | bun run dev |
| Build Project | bun run build |
| Execute Tool | bunx <tool> |