pubspec.yaml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. name: flowy_infra_ui
  2. description: A new flutter plugin project.
  3. version: 0.0.1
  4. homepage:
  5. publish_to: 'none'
  6. environment:
  7. sdk: ">=2.12.0 <3.0.0"
  8. flutter: ">=1.20.0"
  9. dependencies:
  10. flutter:
  11. sdk: flutter
  12. # Thirdparty packages
  13. textstyle_extensions: '2.0.0-nullsafety'
  14. dartz: '0.10.0-nullsafety.2'
  15. provider: ^6.0.1
  16. styled_widget: '^0.3.1'
  17. equatable: '^2.0.3'
  18. animations: ^2.0.0
  19. loading_indicator: ^3.0.1
  20. # Federated Platform Interface
  21. flowy_infra_ui_platform_interface:
  22. path: flowy_infra_ui_platform_interface
  23. flowy_infra_ui_web:
  24. path: flowy_infra_ui_web
  25. # Flowy packages
  26. flowy_infra:
  27. path: ../flowy_infra
  28. dev_dependencies:
  29. flutter_test:
  30. sdk: flutter
  31. flutter_lints: ^1.0.0
  32. flutter:
  33. plugin:
  34. platforms:
  35. # TODO: uncomment android part will fail the Linux build process, will resolve later
  36. # android:
  37. # package: com.example.flowy_infra_ui
  38. # pluginClass: FlowyInfraUIPlugin
  39. ios:
  40. pluginClass: FlowyInfraUIPlugin
  41. macos:
  42. pluginClass: FlowyInfraUIPlugin
  43. windows:
  44. pluginClass: FlowyInfraUIPlugin
  45. linux:
  46. pluginClass: FlowyInfraUIPlugin
  47. web:
  48. default_package: flowy_infra_ui_web