pubspec.yaml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. url_launcher: ^6.1.11
  21. # Federated Platform Interface
  22. flowy_infra_ui_platform_interface:
  23. path: flowy_infra_ui_platform_interface
  24. flowy_infra_ui_web:
  25. path: flowy_infra_ui_web
  26. appflowy_popover:
  27. path: ../appflowy_popover
  28. flowy_infra:
  29. path: ../flowy_infra
  30. flowy_svg:
  31. path: ../flowy_svg
  32. dev_dependencies:
  33. flutter_test:
  34. sdk: flutter
  35. flutter_lints: ^2.0.1
  36. flutter:
  37. plugin:
  38. platforms:
  39. # TODO: uncomment android part will fail the Linux build process, will resolve later
  40. # android:
  41. # package: com.example.flowy_infra_ui
  42. # pluginClass: FlowyInfraUIPlugin
  43. ios:
  44. pluginClass: FlowyInfraUIPlugin
  45. macos:
  46. pluginClass: FlowyInfraUIPlugin
  47. windows:
  48. pluginClass: FlowyInfraUIPlugin
  49. linux:
  50. pluginClass: FlowyInfraUIPlugin
  51. web:
  52. default_package: flowy_infra_ui_web