forked from IntersectMBO/cardano-addresses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcardano-addresses-jsapi.cabal
91 lines (87 loc) · 2.39 KB
/
cardano-addresses-jsapi.cabal
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
cabal-version: 3.0
name: cardano-addresses-jsapi
version: 3.12.0
synopsis: Javascript FFI for cardano-addresses.
description: This package provides functions callable from Javascript on top of
which a TypeScript API can be built. It uses the cardano-addresses-ghcjs
package to provide all dependencies necessary for compilation under ghcjs
and execution under a JavaScript interpreter.
category: Cardano
homepage: https://github.com/IntersectMBO/cardano-addresses#readme
bug-reports: https://github.com/IntersectMBO/cardano-addresses/issues
author: IOHK
maintainer: [email protected]
copyright: 2021 IOHK
license: Apache-2.0
build-type: Simple
source-repository head
type: git
location: https://github.com/IntersectMBO/cardano-addresses
library
exposed-modules:
Cardano.Address.JSAPI
Cardano.Address.JSAPI.InspectAddress
Cardano.Address.JSAPI.Version
other-modules:
Paths_cardano_addresses_jsapi
hs-source-dirs:
lib
default-extensions:
NoImplicitPrelude
ghc-options: -Wall -Wcompat -fwarn-redundant-constraints
js-sources:
glue/test.js
build-depends:
aeson >= 2.0
, aeson-pretty
, base >=4.7 && <5
, bytestring
, cardano-addresses
, cardano-addresses-cli
, exceptions
, jsaddle
, lens
, mtl
, text
if impl(ghcjs -any) || os(ghcjs)
build-depends:
cardano-addresses-jsbits
, ghcjs-base
default-language: Haskell2010
executable cardano-addresses-jsapi
main-is: Main.hs
other-modules:
Paths_cardano_addresses_jsapi
hs-source-dirs:
exe
default-extensions:
NoImplicitPrelude
ghc-options: -Wall -Wcompat -fwarn-redundant-constraints -no-hs-main
build-depends:
base >=4.7 && <5
, cardano-addresses-jsapi
, jsaddle
, jsaddle-warp
, lens
, text
if !(impl(ghcjs -any) || os(ghcjs))
buildable: False
default-language: Haskell2010
test-suite jsapi-test
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Paths_cardano_addresses_jsapi
hs-source-dirs:
test
default-extensions:
NoImplicitPrelude
ghc-options: -Wall -Wcompat -fwarn-redundant-constraints
build-depends:
base >=4.7 && <5
, cardano-addresses-jsapi
, jsaddle
, jsaddle-warp
, lens
, text
default-language: Haskell2010