react/react.cabal

52 lines
1.1 KiB
Plaintext
Raw Normal View History

2023-07-03 18:31:05 +00:00
cabal-version: 3.0
name: react
version: 0.1.0.0
license: BSD-3-Clause
license-file: LICENSE
author: Obsidian Systems LLC
maintainer: maintainer@obsidian.systems
category: Web
build-type: Simple
extra-doc-files: CHANGELOG.md
common warnings
2023-07-04 15:35:18 +00:00
ghc-options: -Wall -Wunused-packages
2023-07-03 18:31:05 +00:00
library
import: warnings
exposed-modules:
React
2023-07-04 15:35:18 +00:00
React.Component
React.Element
React.Export
React.Hook
React.JSaddle
React.Misc
React.Types
2023-07-03 18:31:05 +00:00
2023-07-04 15:35:18 +00:00
build-depends:
base
, containers
, jsaddle
, mtl
, template-haskell
, text
2023-07-03 18:31:05 +00:00
hs-source-dirs:
src
if impl(ghcjs)
build-depends: ghcjs-base == 0.2.*
, ghcjs-prim
-- This is to allow the hashable patches to work
-- the hashable should to be pinned in reflex-platform
, hashable == 1.3.5.0
else
2023-07-04 15:35:18 +00:00
build-depends: jsaddle-warp
2023-07-03 18:31:05 +00:00
default-language: Haskell2010
2023-07-04 17:00:06 +00:00
default-extensions:
FlexibleInstances
GeneralizedNewtypeDeriving
LambdaCase
OverloadedStrings