-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvega-view.cabal
50 lines (45 loc) · 1.69 KB
/
vega-view.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
name: vega-view
version: 0.4.0.1
synopsis: Easily view Vega or Vega-Lite visualizations.
description: A web server that is used to view all the Vega and Vega-Lite
specifications in a directory, or sub-directory. It is similar
in overall scope to the
<https://github.com/vega/vega-desktop vega destkop>
tool. Please see the README on GitHub at
<https://github.com/DougBurke/vega-view#vega-view>
category: Visualization
homepage: https://github.com/DougBurke/vega-view#vega-view
bug-reports: https://github.com/DougBurke/vega-view/issues
author: Douglas Burke
maintainer: [email protected]
copyright: 2019, 2020, 2021, 2024 Douglas Burke
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
cabal-version: 1.12
source-repository head
type: git
location: https://github.com/DougBurke/vega-view
executable vegaview
main-is: Main.hs
other-modules:
Paths_vega_view
hs-source-dirs:
app
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends:
aeson >= 1.1 && < 2.3
, base >= 4.9 && <5
, blaze-html >= 0.7 && < 0.10
, blaze-markup >= 0.6 && < 0.9
, bytestring >= 0.10 && < 0.13
, directory >= 1.2.5.0 && < 1.4
, filepath >= 1.4 && < 1.6
, http-types >= 0.9 && < 0.13
, scotty >= 0.11 && < 0.23
, text >= 1.2 && < 2.2
, unordered-containers >= 0.2 && < 0.3
default-language: Haskell2010