Files
umbrix/pubspec.yaml

141 lines
2.9 KiB
YAML
Raw Normal View History

2023-07-06 17:18:41 +03:30
name: hiddify
description: A Proxy Frontend.
publish_to: 'none'
version: 0.1.0
environment:
2023-08-20 14:08:36 +03:30
sdk: '>=3.1.0 <4.0.0'
2023-07-06 17:18:41 +03:30
dependencies:
flutter:
sdk: flutter
cupertino_icons: ^1.0.5
# internationalization
flutter_localizations:
sdk: flutter
intl: ^0.18.0
2023-07-20 13:40:17 +03:30
slang: ^3.21.0
slang_flutter: ^3.21.0
2023-07-06 17:18:41 +03:30
recase: ^4.1.0
timeago: ^3.5.0
2023-07-12 22:27:23 +03:30
duration: ^3.0.13
flutter_localized_locales: ^2.0.4
2023-07-06 17:18:41 +03:30
# data & serialization
fpdart: ^0.6.0
2023-07-12 22:27:23 +03:30
freezed_annotation: ^2.4.1
2023-07-06 17:18:41 +03:30
json_annotation: ^4.8.1
# state management
hooks_riverpod: ^2.3.6
flutter_hooks: ^0.18.6
riverpod_annotation: ^2.1.1
rxdart: ^0.27.7
# persistence
2023-07-20 13:40:17 +03:30
drift: ^2.10.0
2023-07-06 17:18:41 +03:30
sqlite3_flutter_libs: ^0.5.15
shared_preferences: ^2.2.0
# networking
2023-07-20 13:40:17 +03:30
dio: ^5.3.0
2023-08-19 22:27:23 +03:30
web_socket_channel: ^2.4.0
2023-07-06 17:18:41 +03:30
# native
ffi: ^2.0.2
path_provider: ^2.0.15
2023-07-12 22:27:23 +03:30
flutter_local_notifications: ^15.1.0+1
2023-07-06 17:18:41 +03:30
mobile_scanner: ^3.3.0
protocol_handler: ^0.1.5
flutter_native_splash: ^2.3.1
2023-07-12 22:27:23 +03:30
icons_launcher: ^2.1.3
2023-07-06 17:18:41 +03:30
file_picker: ^5.3.2
share_plus: ^7.0.2
window_manager: ^0.3.5
tray_manager: ^0.2.0
2023-07-22 16:02:06 +03:30
package_info_plus: ^4.0.2
2023-07-23 12:38:20 +03:30
url_launcher: ^6.1.12
2023-07-06 17:18:41 +03:30
# utils
2023-08-20 14:08:36 +03:30
combine: ^0.5.4
2023-07-06 17:18:41 +03:30
path: ^1.8.3
loggy: ^2.0.3
flutter_loggy: ^2.0.2
meta: ^1.9.1
stack_trace: ^1.11.0
2023-07-20 13:40:17 +03:30
dartx: ^1.2.0
2023-07-06 17:18:41 +03:30
uuid: ^3.0.7
2023-08-19 22:27:23 +03:30
tint: ^2.0.1
2023-07-06 17:18:41 +03:30
# widgets
2023-07-20 13:40:17 +03:30
go_router: ^9.1.0
2023-07-23 12:38:20 +03:30
flex_color_scheme: ^7.2.0
2023-07-06 17:18:41 +03:30
flutter_animate: ^4.2.0
flutter_svg: ^2.0.7
2023-08-20 14:08:36 +03:30
gap: ^3.0.1
2023-07-06 17:18:41 +03:30
percent_indicator: ^4.2.3
fluttertoast: ^8.2.2
2023-07-20 13:40:17 +03:30
sliver_tools: ^0.2.12
2023-07-12 22:27:23 +03:30
flutter_adaptive_scaffold: ^0.1.6
2023-07-06 17:18:41 +03:30
fl_chart: ^0.63.0
dev_dependencies:
flutter_test:
sdk: flutter
lint: ^2.1.2
build_runner: ^2.4.6
json_serializable: ^6.7.1
2023-07-12 22:27:23 +03:30
freezed: ^2.4.1
2023-07-06 17:18:41 +03:30
riverpod_generator: ^2.2.3
2023-07-20 13:40:17 +03:30
drift_dev: ^2.10.0
2023-07-06 17:18:41 +03:30
ffigen: ^8.0.2
2023-07-23 12:38:20 +03:30
slang_build_runner: ^3.21.0
2023-07-06 17:18:41 +03:30
flutter_gen_runner: ^5.3.1
2023-07-23 12:38:20 +03:30
go_router_builder: ^2.2.3
2023-07-06 17:18:41 +03:30
custom_lint: ^0.4.0
riverpod_lint: ^1.3.2
flutter:
uses-material-design: true
assets:
2023-08-19 22:27:23 +03:30
- assets/core/
2023-07-06 17:18:41 +03:30
- assets/images/
2023-07-20 14:17:13 +03:30
fonts:
- family: Shabnam
fonts:
- asset: assets/fonts/Shabnam.ttf
2023-07-06 17:18:41 +03:30
flutter_gen:
output: lib/gen/
integrations:
flutter_svg: true
2023-07-12 22:27:23 +03:30
2023-07-06 17:18:41 +03:30
icons_launcher:
image_path: "assets/images/ic_launcher.png"
platforms:
android:
enable: true
adaptive_background_image: "assets/images/ic_launcher_background.png"
adaptive_foreground_image: "assets/images/ic_launcher_foreground.png"
adaptive_round_image: "assets/images/ic_launcher_round.png"
adaptive_monochrome_image: "assets/images/ic_launcher_monochrome.png"
windows:
enable: true
image_path: "assets/images/ic_launcher_round.png"
flutter_native_splash:
color: "#ffffff"
image: assets/images/ic_launcher.png
android_12:
image: assets/images/ic_launcher_foreground.png
color: "#ffffff"
ffigen:
2023-08-19 22:27:23 +03:30
name: 'SingboxNativeLibrary'
description: 'Bindings to Singbox'
output: 'lib/gen/singbox_generated_bindings.dart'
2023-07-06 17:18:41 +03:30
headers:
entry-points:
2023-08-19 22:27:23 +03:30
- 'libcore/bin/libcore.h'