flutter_oss_licenses icon indicating copy to clipboard operation
flutter_oss_licenses copied to clipboard

A tool for generating OSS license list using pubspec.lock

Results 9 flutter_oss_licenses issues
Sort by recently updated
recently updated
newest added

The result file contains all dependencies including transitive dependencies, but it is indistinguishable for dev dependencies. Can you add the "isDev" field in result file?

I would like to ignore certain packages when generating. That's usefull for private packages and some transitive dependencies. For examples, some packages uses "win32" but since I'm not targeting windows,...

Hi! I love this package, but I am looking for a way to run the generation after every `flutter pub get`, so that I don't commit the generated `oss_licenses.dart` file...

and replaced it with the `dart run` equivalent. Also fixed a couple of minor typos.

Hi, Would it be possible to add a field for the license name? So that there is not only the license text, but also the name, like MIT, BSD, Apache...

When the license file contains a $ symbol, the generated Dart code fails to compile. This issue occurs, for example, when using Syncfusion packages such as `syncfusion_flutter_pdf`.

Moved the `replaceAll('\$', '\\\$')` statement out of the `if (!s.contains('\n'))` so that $s in strings with a `\n` are also escaped. Theoretically also raw strings could be used for these...

Console is showing: `Deprecated. Use 'dart run' instead.` when generating oss licenses with the command from the [documentation](https://pub.dev/packages/flutter_oss_licenses). Use `dart run flutter_oss_licenses:generate` instead, but from the project root, not the...