pubspec.yaml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. name: appflowy
  2. description: A new Flutter project.
  3. # The following line prevents the package from being accidentally published to
  4. # pub.dev using `flutter pub publish`. This is preferred for private packages.
  5. publish_to: "none" # Remove this line if you wish to publish to pub.dev
  6. # The following defines the version and build number for your application.
  7. # A version number is three numbers separated by dots, like 1.2.43
  8. # followed by an optional build number separated by a +.
  9. # Both the version and the builder number may be overridden in flutter
  10. # build by specifying --build-name and --build-number, respectively.
  11. # In Android, build-name is used as versionName while build-number used as versionCode.
  12. # Read more about Android versioning at https://developer.android.com/studio/publish/versioning
  13. # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
  14. # Read more about iOS versioning at
  15. # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
  16. version: 0.3.6
  17. environment:
  18. sdk: ">=3.0.0 <4.0.0"
  19. # Dependencies specify other packages that your package needs in order to work.
  20. # To automatically upgrade your package dependencies to the latest versions
  21. # consider running `flutter pub upgrade --major-versions`. Alternatively,
  22. # dependencies can be manually updated by changing the version numbers below to
  23. # the latest version available on pub.dev. To see which dependencies have newer
  24. # versions available, run `flutter pub outdated`.
  25. dependencies:
  26. flutter:
  27. sdk: flutter
  28. flutter_localizations:
  29. sdk: flutter
  30. appflowy_backend:
  31. path: packages/appflowy_backend
  32. flowy_infra_ui:
  33. path: packages/flowy_infra_ui
  34. flowy_infra:
  35. path: packages/flowy_infra
  36. flowy_svg:
  37. path: packages/flowy_svg
  38. appflowy_board:
  39. # path: packages/appflowy_board
  40. git:
  41. url: https://github.com/AppFlowy-IO/appflowy-board.git
  42. ref: a183c57
  43. appflowy_editor:
  44. git:
  45. url: https://github.com/AppFlowy-IO/appflowy-editor.git
  46. ref: "d1027c4"
  47. appflowy_popover:
  48. path: packages/appflowy_popover
  49. # third party packages
  50. intl: ^0.18.0
  51. time: ^2.1.3
  52. equatable: ^2.0.5
  53. freezed_annotation: ^2.2.0
  54. get_it: ^7.6.0
  55. flutter_bloc: ^8.1.3
  56. flutter_math_fork:
  57. git:
  58. url: https://github.com/xazin/flutter_math_fork.git
  59. ref: de24059
  60. dartz: ^0.10.1
  61. provider: ^6.0.5
  62. path_provider: ^2.0.15
  63. sized_context: ^1.0.0+4
  64. styled_widget: ^0.4.1
  65. expandable: ^5.0.1
  66. flutter_colorpicker: ^1.0.3
  67. highlight: ^0.7.0
  68. package_info_plus: ^4.0.1
  69. url_launcher: ^6.1.11
  70. clipboard: ^0.1.3
  71. connectivity_plus: ^4.0.1
  72. connectivity_plus_platform_interface: ^1.2.2
  73. easy_localization: ^3.0.2
  74. textfield_tags: ^2.0.2
  75. device_info_plus: ^9.0.1
  76. fluttertoast: ^8.2.2
  77. json_annotation: ^4.8.1
  78. table_calendar: ^3.0.9
  79. reorderables: ^0.6.0
  80. linked_scroll_controller: ^0.2.0
  81. hotkey_manager: ^0.1.7
  82. fixnum: ^1.1.0
  83. flutter_svg: ^2.0.7
  84. protobuf: "2.0.0"
  85. charcode: ^1.3.1
  86. collection: ^1.17.1
  87. bloc: ^8.1.2
  88. shared_preferences: ^2.1.1
  89. google_fonts: ^4.0.5
  90. percent_indicator: ^4.2.3
  91. calendar_view: ^1.0.3
  92. window_manager: ^0.3.4
  93. http: ^1.0.0
  94. path: ^1.8.3
  95. mocktail: ^0.3.0
  96. archive: ^3.3.7
  97. nanoid: ^1.0.0
  98. supabase_flutter: ^1.10.4
  99. envied: ^0.3.0+3
  100. dotted_border: ^2.0.0+3
  101. url_protocol:
  102. hive: ^2.2.3
  103. hive_flutter: ^1.1.0
  104. super_clipboard: ^0.6.3
  105. go_router: ^10.1.2
  106. string_validator: ^1.0.0
  107. unsplash_client: ^2.1.1
  108. # Notifications
  109. # TODO: Consider implementing custom package
  110. # to gather notification handling for all platforms
  111. local_notifier: ^0.1.5
  112. app_links: ^3.4.1
  113. dev_dependencies:
  114. flutter_lints: ^2.0.1
  115. flutter_test:
  116. sdk: flutter
  117. integration_test:
  118. sdk: flutter
  119. build_runner: ^2.4.4
  120. freezed: ^2.3.4
  121. bloc_test: ^9.1.2
  122. json_serializable: ^6.7.0
  123. envied_generator: ^0.3.0+3
  124. plugin_platform_interface: any
  125. url_launcher_platform_interface: any
  126. run_with_network_images: ^0.0.1
  127. dependency_overrides:
  128. http: ^1.0.0
  129. supabase_flutter:
  130. git:
  131. url: https://github.com/LucasXu0/supabase-flutter
  132. ref: 852119e
  133. path: packages/supabase_flutter
  134. app_links:
  135. git:
  136. url: https://github.com/LucasXu0/app_links
  137. ref: c64ce17
  138. url_protocol:
  139. git:
  140. url: https://github.com/LucasXu0/flutter_url_protocol.git
  141. commit: 77a8420
  142. # The "flutter_lints" package below contains a set of recommended lints to
  143. # encourage good coding practices. The lint set provided by the package is
  144. # activated in the `analysis_options.yaml` file located at the root of your
  145. # package. See that file for information about deactivating specific lint
  146. # rules and activating additional ones.
  147. # For information on the generic Dart part of this file, see the
  148. # following page: https://dart.dev/tools/pub/pubspec
  149. # The following section is specific to Flutter.
  150. flutter:
  151. # Automatic code generation for l10n and i18n
  152. generate: true
  153. # The following line ensures that the Material Icons font is
  154. # included with your application, so that you can use the icons in
  155. # the material Icons class.
  156. uses-material-design: true
  157. fonts:
  158. - family: FlowyIconData
  159. fonts:
  160. - asset: assets/fonts/FlowyIconData.ttf
  161. - family: Poppins
  162. fonts:
  163. - asset: assets/google_fonts/Poppins/Poppins-ExtraLight.ttf
  164. weight: 100
  165. - asset: assets/google_fonts/Poppins/Poppins-Thin.ttf
  166. weight: 200
  167. - asset: assets/google_fonts/Poppins/Poppins-Light.ttf
  168. weight: 300
  169. - asset: assets/google_fonts/Poppins/Poppins-Regular.ttf
  170. weight: 400
  171. - asset: assets/google_fonts/Poppins/Poppins-Medium.ttf
  172. weight: 500
  173. - asset: assets/google_fonts/Poppins/Poppins-SemiBold.ttf
  174. weight: 600
  175. - asset: assets/google_fonts/Poppins/Poppins-Bold.ttf
  176. weight: 700
  177. - asset: assets/google_fonts/Poppins/Poppins-Black.ttf
  178. weight: 800
  179. - asset: assets/google_fonts/Poppins/Poppins-ExtraBold.ttf
  180. weight: 900
  181. # To add assets to your application, add an assets section, like this:
  182. assets:
  183. - assets/images/
  184. - assets/flowy_icons/
  185. - assets/flowy_icons/16x/
  186. - assets/flowy_icons/24x/
  187. - assets/flowy_icons/32x/
  188. - assets/flowy_icons/40x/
  189. - assets/images/emoji/
  190. - assets/images/login/
  191. - assets/translations/
  192. # The following assets will be excluded in release.
  193. # BEGIN: EXCLUDE_IN_RELEASE
  194. - assets/test/workspaces/
  195. - assets/test/images/
  196. - assets/template/
  197. - assets/test/workspaces/markdowns/
  198. - assets/test/workspaces/database/
  199. # END: EXCLUDE_IN_RELEASE