This repository was archived by the owner on May 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathyesod-routes-typescript.cabal
47 lines (45 loc) · 1.8 KB
/
yesod-routes-typescript.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
-- Initial yesod-routes-typescript.cabal generated by cabal init. For
-- further documentation, see http://haskell.org/cabal/users-guide/
name: yesod-routes-typescript
version: 0.5.0.0
synopsis: generate TypeScript routes for Yesod
description: parse the Yesod routes data structure and generate routes that can be used in typescript
homepage: https://github.com/docmunch/yesod-routes-typescript
license: MIT
license-file: LICENSE
author: Max Cantor
maintainer: [email protected]
-- copyright:
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
exposed-modules: Yesod.Routes.Typescript.Generator
-- other-modules:
-- other-extensions:
default-extensions:
ConstraintKinds,
DeriveDataTypeable,
ExtendedDefaultRules,
FlexibleContexts,
FlexibleInstances,
LambdaCase,
NoImplicitPrelude,
OverloadedStrings,
RecordWildCards,
ScopedTypeVariables,
StandaloneDeriving,
TemplateHaskell,
TupleSections,
TypeSynonymInstances
build-depends:
attoparsec,
base < 5,
classy-prelude >= 0.7,
system-fileio,
text,
yesod-core >= 1.2 && < 2.0,
yesod-routes >= 1.2 && < 2.0
-- hs-source-dirs:
default-language: Haskell2010