Adds a single dependency to the project.
Future<void> addDep(String package) async { print('📦 Installing $package...'); await run('flutter', ['pub', 'add', package]); }