-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpubspec.yaml
37 lines (32 loc) · 1.45 KB
/
pubspec.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# To ensure long-term stability and maintain high standards of code quality,
# we include only packages from well-known providers and official Dart and Google sources.
# Specifically, packages are selected from the following trusted publishers:
# - Google packages: https://pub.dev/publishers/google.dev/packages
# - Official Dart team packages: https://dart.dev/resources/dart-team-packages
#
# This approach minimizes risks associated with unverified dependencies and guarantees
# consistent support and updates from reputable maintainers.
# Package names are alphabetized
name: openfeature_dart_server_sdk
description: Official server-side Dart OpenFeature SDK.
version: 0.0.8
homepage: https://github.com/open-feature/dart-server-sdk
environment:
sdk: ^3.7.2
dependencies:
# Core dependencies
collection: ^1.17.0 # For efficient list and map operations
logging: ^1.1.0 # For structured logging
meta: ^1.9.0 # For annotations like @required
dev_dependencies:
# For testing
test: ^1.22.0 # Dart's core testing framework
mockito: ^5.3.0 # For mocking objects in unit tests
lints: ^5.0.0 # Recommended lints for maintaining code quality
git_hooks: ^1.0.0
# Optional Local Hooks for development.
git_hooks:
hooks:
pre-commit: ../local_dev_tools/validate_commit.dart
commit-msg: ../local_dev_tools/validate_commit_msg.dart
pre-push: ../local_dev_tools/validate_branch.dart