-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpubspec.yaml
More file actions
203 lines (167 loc) · 5.19 KB
/
pubspec.yaml
File metadata and controls
203 lines (167 loc) · 5.19 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
name: fula_files
description: FxFiles - A minimalistic file manager with Fula decentralized storage backup support.
publish_to: 'none'
version: 1.11.3+539
environment:
sdk: '>=3.2.0 <4.0.0'
dependencies:
flutter:
sdk: flutter
# State Management
flutter_riverpod: ^3.0.3
riverpod_annotation: ^3.0.3
# Navigation
go_router: ^17.0.1
# Storage & Files (with Encryption)
fula_client: ^0.6.2
path_provider: ^2.1.5
file_picker: ^10.3.7
open_filex: ^4.6.0
mime: ^2.0.0
# Prevent sleep while syncing (Windows, Android, iOS)
wakelock_plus: ^1.2.8
# Local Storage & Security
flutter_secure_storage: ^10.0.0
hive_flutter: ^1.1.0
# Key Derivation (PBKDF2 for deterministic user keys).
# Also used for SHA-256 inside our local BIP39 implementation
# (see lib/core/utils/bip39_local.dart). The upstream `bip39`
# package pins pointycastle ^3.0.0 which conflicts with
# web3dart ^3.0.2's pointycastle ^4.0.0 — so we ship a small
# pure-Dart BIP39 helper that depends only on `cryptography`.
cryptography: ^2.7.0
# Unicode NFC normalization for seed-based KEK derivation
# (audit fix #2). Pure-Dart, no native deps. Required so the
# Mode B/C master KEK matches across devices when the user types
# a non-ASCII password via different IMEs (precomposed vs
# decomposed). The Rust FFI side normalizes via `unicode-normalization`
# — this is the matching Dart side.
unorm_dart: ^0.3.0
# Authentication
google_sign_in: ^7.2.0
sign_in_with_apple: ^6.1.4
# UI Components
showcaseview: ^3.0.0
flutter_svg: ^2.0.16
cached_network_image: ^3.4.1
shimmer: ^3.0.0
photo_view: ^0.15.0
image_cropper: ^8.0.2
video_player: ^2.9.2
chewie: ^1.10.0
video_thumbnail: ^0.5.3
just_audio: ^0.9.40
audio_service: ^0.18.15
audio_session: ^0.1.21
flutter_pdfview: ^1.4.1
flutter_syntax_view: ^4.0.0
rxdart: ^0.28.0
# Permissions
permission_handler: ^12.0.1
device_info_plus: ^12.3.0
# iOS Photo Library Access
photo_manager: ^3.6.2
# Face Detection & Recognition
google_mlkit_face_detection: ^0.13.1
google_mlkit_image_labeling: ^0.14.1
google_mlkit_text_recognition: ^0.15.0
image: ^4.3.0
# Archive/Compression
archive: ^4.0.4
# Utils
package_info_plus: ^8.0.0
intl: ^0.20.2
path: ^1.9.0
uuid: ^4.5.1
crypto: ^3.0.3
collection: ^1.19.0
equatable: ^2.0.7
json_annotation: ^4.9.0
http: ^1.2.0
xml: ^6.5.0
url_launcher: ^6.2.5
# Background Tasks
workmanager: ^0.9.0
connectivity_plus: ^7.0.0
# Sharing
share_plus: ^12.0.1
# Shelf manual-add flows (Session 3b) — camera capture for the
# "Take photo" sheet entry. `file_picker` already covers Import.
image_picker: ^1.1.2
# Shelf reorder gesture — long-press drag to reposition tiles in the
# grid. Standard `ReorderableListView` doesn't generalise to grids;
# this package provides `ReorderableGridView.extent` with the same
# `maxCrossAxisExtent` API as `SliverGridDelegateWithMaxCrossAxisExtent`.
reorderable_grid_view: ^2.2.7
# QR Code
qr_flutter: ^4.1.0
mobile_scanner: ^7.0.0
# Icons
lucide_icons: ^0.257.0
# Desktop Window Management
window_manager: ^0.4.3
tray_manager: ^0.2.1
# Deep Links
app_links: ^6.4.0
# Network Service Discovery (mDNS/Bonjour for blox discovery)
nsd: ^4.1.0
# Wallet/Web3
reown_appkit: ^1.6.0
wallet: ^0.0.18
web3dart: ^3.0.2
# AI Automation (on-device LLM + tabular parsing)
# fllama = llama.cpp Dart FFI bindings (cross-platform GGUF inference).
# csv = CSV parsing for the CRM Automation task type. xlsx is deferred to
# v1.1 because the latest `excel` package pins archive ^3.6.1, which
# conflicts with this app's existing archive ^4.0.4.
csv: ^6.0.0
fllama: ^0.0.1
# Automate feature — system contacts picker + VCard import. The
# plugin handles both reading contacts (READ_CONTACTS / iOS Contacts
# entitlement) AND parsing VCard text via Contact.fromVCard, so one
# dep covers both ingestion paths.
flutter_contacts: ^1.1.9+1
dev_dependencies:
flutter_test:
sdk: flutter
integration_test:
sdk: flutter
mocktail: ^1.0.4
flutter_lints: ^6.0.0
flutter_launcher_icons: ^0.14.2
flutter_native_splash: ^2.4.4
msix: ^3.16.13
# Temporary override until reown_appkit supports flutter_secure_storage 10.x
# Monitor: https://github.com/reown-com/reown_flutter/issues
dependency_overrides:
flutter_secure_storage: ^10.0.0
flutter_launcher_icons:
android: true
ios: true
image_path: "assets/icons/icon.png"
adaptive_icon_background: "#0A0A0A"
adaptive_icon_foreground: "assets/icons/icon.png"
min_sdk_android: 21
remove_alpha_ios: true
flutter_native_splash:
color: "#151718"
image: "assets/icons/icon.png"
android: true
ios: true
android_12:
color: "#151718"
image: "assets/icons/icon.png"
msix_config:
display_name: FxFiles
publisher_display_name: Functionland
publisher: CN=E9FEC2DC-DBBE-45BA-A112-26EFEA253DB5
identity_name: Functionland.FxFiles
msix_version: 1.11.3.0
logo_path: assets/icons/icon.png
capabilities: internetClient, internetClientServer, unvirtualizedResources
protocol_activation: fxfiles
flutter:
uses-material-design: true
assets:
- assets/icons/
- assets/images/