-
Notifications
You must be signed in to change notification settings - Fork 1
/
pubspec.yaml
58 lines (40 loc) · 1.88 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: archethic_wallet_client
description: A client dart library to interact with Archethic Wallet RPC API.
version: 2.1.5
homepage: https://github.com/archethic-foundation/archethic-wallet-client-dart
environment:
sdk: ">=3.3.0 <4.0.0"
dependencies:
# Archethic dart library for Flutter
archethic_lib_dart: ^4.0.0
# archethic_lib_dart:
# path: ../../packages/libdart
# A RPC-via-deeplink communication library coded in Dart. This is dedicated to Flutter mobile applications (iOS / Android).
deeplink_rpc: ^1.1.0
flutter:
sdk: flutter
# Annotations for the freezed code-generator. This package does nothing without freezed too
freezed_annotation: ^2.4.1
# JSON-RPC (v2.0) utility classes. Invoke methods on another machine using JSON-formatted messages. Some assembly required.
json_rpc_2: ^3.0.2
# Logging lib
logging: ^1.2.0
# An abstraction for two-way communication channels based on the Dart Stream class.
stream_channel: ^2.1.2
# Open deeplink urls
url_launcher: ^6.3.0
# Lightweight browser API bindings built around JS static interop.
web: ^0.5.1
# StreamChannel wrappers for WebSockets. Provides a cross-platform WebSocketChannel API, a cross-platform implementation of that API that communicates over an underlying StreamChannel.
web_socket_channel: ^2.4.5
dev_dependencies:
# A build system for Dart code generation and modular compilation
build_runner: ^2.4.11
# Code generation for immutable classes that has a simple syntax/API without compromising on the features.
freezed: ^2.4.7
# Defines the annotations used by json_serializable to create code for JSON serialization and deserialization.
json_annotation: ^4.9.0
# Automatically generate code for converting to and from JSON by annotating Dart classes.
json_serializable: ^6.8.0
# A full featured library for writing and running Dart tests across platforms.
test: ^1.24.9