dependencies constant

Map<String, Object> const dependencies

Dependencies

Current app dependencies

Dependencies are the pubspec’s raison d’être. In this section you list each package that your package needs in order to work.

Dependencies fall into one of two types. Regular dependencies are listed under dependencies: these are packages that anyone using your package will also need. Dependencies that are only needed in the development phase of the package itself are listed under dev_dependencies.

During the development process, you might need to temporarily override a dependency. You can do so using dependency_overrides.

For more information, see Package dependencies.

Implementation

static const Map<String, Object> dependencies = <String, Object>{
  'args': r'^2.7.0',
  'cli_completion': r'^0.5.1',
  'cli_launcher': r'^0.3.1',
  'collection': r'^1.19.1',
  'freezed_annotation': r'^3.0.0',
  'get_it': r'^8.0.3',
  'glob': r'^2.1.3',
  'json_annotation': r'^4.9.0',
  'logging': r'^1.3.0',
  'path': r'^1.9.1',
  'prompts': r'^2.0.0',
  'pub_semver': r'^2.2.0',
  'pubspec_parse': r'^1.5.0',
  'yaml': r'^3.1.3',
  'yaml_edit': r'^2.2.2',
};