| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | name: flowy_infra_uidescription: A new flutter plugin project.version: 0.0.1homepage:publish_to: 'none'environment:  sdk: ">=2.12.0 <3.0.0"  flutter: ">=1.20.0"dependencies:  flutter:    sdk: flutter  # Thirdparty packages  textstyle_extensions: '2.0.0-nullsafety'  dartz: '0.10.0-nullsafety.2'  provider: ^6.0.1  styled_widget: '>=0.3.1'  equatable: '>=2.0.2'  animations: ^2.0.0  loading_indicator: ^3.0.1  # Federated Platform Interface  flowy_infra_ui_platform_interface:    path: flowy_infra_ui_platform_interface  flowy_infra_ui_web:    path: flowy_infra_ui_web  # Flowy packages  flowy_infra:    path: ../flowy_infradev_dependencies:  flutter_test:    sdk: flutter  flutter_lints: ^1.0.0flutter:  plugin:    platforms:      android:        package: com.example.flowy_infra_ui        pluginClass: FlowyInfraUIPlugin      ios:        pluginClass: FlowyInfraUIPlugin      macos:        pluginClass: FlowyInfraUIPlugin      windows:        pluginClass: FlowyInfraUIPlugin      web:        default_package: flowy_infra_ui_web
 |