dev
yaml 83 lines 2.1 KB
Raw
1 name: cw_bitcoin_cash
2 description: A new Flutter package project.
3 version: 0.0.1
4 publish_to: none
5 author: Cake Wallet
6 homepage: https://cakewallet.com
7
8 environment:
9 sdk: ">=2.17.5 <3.0.0"
10 flutter: ">=1.20.0"
11
12 dependencies:
13 flutter:
14 sdk: flutter
15 bip39: ^1.0.6
16 bip32: ^2.0.0
17 path_provider: ^2.0.11
18 mobx: ^2.6.0
19 flutter_mobx: ^2.3.0
20 cw_core:
21 path: ../cw_core
22 cw_bitcoin:
23 path: ../cw_bitcoin
24 bitbox:
25 git:
26 url: https://github.com/cake-tech/bitbox-flutter.git
27 ref: Add-Support-For-OP-Return-data
28 blockchain_utils:
29 git:
30 url: https://github.com/cake-tech/blockchain_utils
31 ref: 59fdf29d72068e0522a96a8953ed7272833a9f57
32
33 dev_dependencies:
34 flutter_test:
35 sdk: flutter
36 build_runner: ^2.15.0
37 mobx_codegen: ^2.7.6
38 # hive_generator: ^2.0.1
39 hive: 2.0.1
40
41 dependency_overrides:
42 watcher: ^1.1.0
43 bitcoin_base:
44 git:
45 url: https://github.com/cake-tech/bitcoin_base
46 ref: bda0e2904effa799ec835b4578cc3fc5d31caa78
47
48 # For information on the generic Dart part of this file, see the
49 # following page: https://dart.dev/tools/pub/pubspec
50
51 # The following section is specific to Flutter packages.
52 flutter:
53 uses-material-design: true
54
55 # To add assets to your package, add an assets section, like this:
56 # assets:
57 # - images/a_dot_burr.jpeg
58 # - images/a_dot_ham.jpeg
59 #
60 # For details regarding assets in packages, see
61 # https://flutter.dev/assets-and-images/#from-packages
62 #
63 # An image asset can refer to one or more resolution-specific "variants", see
64 # https://flutter.dev/assets-and-images/#resolution-aware
65
66 # To add custom fonts to your package, add a fonts section here,
67 # in this "flutter" section. Each entry in this list should have a
68 # "family" key with the font family name, and a "fonts" key with a
69 # list giving the asset and other descriptors for the font. For
70 # example:
71 # fonts:
72 # - family: Schyler
73 # fonts:
74 # - asset: fonts/Schyler-Regular.ttf
75 # - asset: fonts/Schyler-Italic.ttf
76 # style: italic
77 # - family: Trajan Pro
78 # fonts:
79 # - asset: fonts/TrajanPro.ttf
80 # - asset: fonts/TrajanPro_Bold.ttf
81 # weight: 700
82 #
83