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: https://appflowy.io
  5. publish_to: "none"
  6. environment:
  7. sdk: ">=3.0.0 <4.0.0"
  8. flutter: ">=3.10.1"
  9. dependencies:
  10. flutter:
  11. sdk: flutter
  12. # Thirdparty packages
  13. dartz:
  14. provider: ^6.0.5
  15. styled_widget: ^0.4.1
  16. equatable: ^2.0.5
  17. animations: ^2.0.7
  18. loading_indicator: ^3.1.0
  19. async:
  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. appflowy_popover:
  26. path: ../appflowy_popover
  27. flowy_infra:
  28. path: ../flowy_infra
  29. dev_dependencies:
  30. flutter_test:
  31. sdk: flutter
  32. flutter_lints: ^2.0.1
  33. flutter:
  34. plugin:
  35. platforms:
  36. # TODO: uncomment android part will fail the Linux build process, will resolve later
  37. # android:
  38. # package: com.example.flowy_infra_ui
  39. # pluginClass: FlowyInfraUIPlugin
  40. ios:
  41. pluginClass: FlowyInfraUIPlugin
  42. macos:
  43. pluginClass: FlowyInfraUIPlugin
  44. windows:
  45. pluginClass: FlowyInfraUIPlugin
  46. linux:
  47. pluginClass: FlowyInfraUIPlugin
  48. web:
  49. default_package: flowy_infra_ui_web