-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpubspec.yaml
More file actions
83 lines (66 loc) · 1.65 KB
/
pubspec.yaml
File metadata and controls
83 lines (66 loc) · 1.65 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: KeyVault
description: A production-grade TOTP/HOTP authenticator app.
publish_to: 'none'
version: 1.0.0+1
environment:
sdk: '>=3.8.0 <4.0.0'
dependencies:
flutter:
sdk: flutter
# State management
flutter_riverpod: ^3.3.1
riverpod_annotation: ^4.0.2
# Navigation
go_router: ^17.2.0
# Secure storage (secrets)
flutter_secure_storage: ^10.0.0
# QR scanning
mobile_scanner: ^7.2.0
# QR code generation
qr_flutter: ^4.1.0
# OTP generation
otp: ^3.1.4
# Local DB (metadata) - Drift (SQLite)
drift: ^2.22.0
drift_flutter: ^0.2.4
sqlite3_flutter_libs: ^0.5.28
path_provider: ^2.1.4
# Biometric auth
local_auth: ^3.0.1
# Models
freezed_annotation: ^3.0.0
json_annotation: ^4.9.0
# Utils
uuid: ^4.5.1
# SVG support for widget-based splash
flutter_svg: ^2.0.6
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^6.0.0
# Code gen
build_runner: ^2.4.17
freezed: ^3.0.0
json_serializable: ^6.8.0
riverpod_generator: ^4.0.3
drift_dev: ^2.28.0
flutter_launcher_icons: ^0.14.4
flutter_native_splash: ^2.2.20
flutter:
uses-material-design: true
assets:
- assets/icons/
# Config for generating launcher icons
flutter_icons:
android: true
ios: true
image_path: "assets/icons/keyvault-icon.png"
# Native splash configuration (uses a raster image). If you keep an SVG
# for the splash, either convert it to PNG at assets/icons/splash.png or
# use a widget-based SVG splash with the `flutter_svg` package.
flutter_native_splash:
color: "#ffffff"
image: "assets/icons/keyvault-splash.png"
android: true
ios: true
# fill parameter removed; default behavior will be used