pubspec.yaml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. name: kmpdfkit_conversion_flutter_example
  2. description: Demonstrates how to use the kmpdfkit_conversion_flutter plugin.
  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. version: 1.0.0
  7. environment:
  8. sdk: '>=2.19.6 <3.0.0'
  9. # Dependencies specify other packages that your package needs in order to work.
  10. # To automatically upgrade your package dependencies to the latest versions
  11. # consider running `flutter pub upgrade --major-versions`. Alternatively,
  12. # dependencies can be manually updated by changing the version numbers below to
  13. # the latest version available on pub.dev. To see which dependencies have newer
  14. # versions available, run `flutter pub outdated`.
  15. dependencies:
  16. flutter:
  17. sdk: flutter
  18. kmpdfkit_conversion_flutter:
  19. # When depending on this package from a real application you should use:
  20. # kmpdfkit_conversion_flutter: ^x.y.z
  21. # See https://dart.dev/tools/pub/dependencies#version-constraints
  22. # The example app is bundled with the plugin so we use a path dependency on
  23. # the parent directory to use the current plugin's version.
  24. path: ../
  25. # The following adds the Cupertino Icons font to your application.
  26. # Use with the CupertinoIcons class for iOS style icons.
  27. cupertino_icons: ^1.0.2
  28. file_picker: ^5.2.5
  29. provider: ^6.0.5
  30. open_file: ^3.3.2
  31. permission_handler: ^10.2.0
  32. uuid: ^3.0.6
  33. device_info_plus: ^9.0.2
  34. path_provider: ^2.0.15
  35. dev_dependencies:
  36. flutter_test:
  37. sdk: flutter
  38. # The "flutter_lints" package below contains a set of recommended lints to
  39. # encourage good coding practices. The lint set provided by the package is
  40. # activated in the `analysis_options.yaml` file located at the root of your
  41. # package. See that file for information about deactivating specific lint
  42. # rules and activating additional ones.
  43. flutter_lints: ^2.0.0
  44. dependency_overrides:
  45. ffi: ^2.0.1
  46. # For information on the generic Dart part of this file, see the
  47. # following page: https://dart.dev/tools/pub/pubspec
  48. # The following section is specific to Flutter packages.
  49. flutter:
  50. # The following line ensures that the Material Icons font is
  51. # included with your application, so that you can use the icons in
  52. # the material Icons class.
  53. uses-material-design: true
  54. # To add assets to your application, add an assets section, like this:
  55. # assets:
  56. # - images/a_dot_burr.jpeg
  57. # - images/a_dot_ham.jpeg
  58. # An image asset can refer to one or more resolution-specific "variants", see
  59. # https://flutter.dev/assets-and-images/#resolution-aware
  60. # For details regarding adding assets from package dependencies, see
  61. # https://flutter.dev/assets-and-images/#from-packages
  62. # To add custom fonts to your application, add a fonts section here,
  63. # in this "flutter" section. Each entry in this list should have a
  64. # "family" key with the font family name, and a "fonts" key with a
  65. # list giving the asset and other descriptors for the font. For
  66. # example:
  67. # fonts:
  68. # - family: Schyler
  69. # fonts:
  70. # - asset: fonts/Schyler-Regular.ttf
  71. # - asset: fonts/Schyler-Italic.ttf
  72. # style: italic
  73. # - family: Trajan Pro
  74. # fonts:
  75. # - asset: fonts/TrajanPro.ttf
  76. # - asset: fonts/TrajanPro_Bold.ttf
  77. # weight: 700
  78. #
  79. # For details regarding fonts from package dependencies,
  80. # see https://flutter.dev/custom-fonts/#from-packages