What problem does it solve? Setting up a new frontend project involves dozens of configuration decisions—dependency versions, linter rules, TypeScript settings, and pre-commit hooks—that are easy to get wrong or inconsistent across a team. This Skill enforces a single, opinionated standard for configuration files so every project starts with the same vetted setup. ## Core Features & Use Cases - Dynamic Dependency Resolution: Prohibits hardcoded or wildcard versions in package.json and requires fetching the latest published versions at runtime with bun pm view. - Biome Linter & Formatter Template: Ships a complete biome.json configuration with strict rules, JSON file exclusions, and import organization enabled. - TypeScript, Vite & Vitest Standards: Defines strict tsconfig settings, Vite build conventions, environment variable handling via env-config files, and test layout rules. - Use Case: When scaffolding a new React + TypeScript project, use this Skill to generate a compliant package.json, biome.json, and tsconfig.json, then verify everything passes pnpm typecheck and pnpm lint before the first commit. ## Quick Start Set up a new Vite React TypeScript project following the config-setup standards with pinned dependencies and the default Biome configuration.