-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathspago.dhall
More file actions
41 lines (41 loc) · 732 Bytes
/
spago.dhall
File metadata and controls
41 lines (41 loc) · 732 Bytes
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
{-
Welcome to a Spago project!
You can edit this file as you like.
-}
{ name = "flame"
, license = "MIT"
, repository = "https://github.com/easafe/purescript-flame"
, dependencies =
[ "aff"
, "argonaut-codecs"
, "argonaut-core"
, "argonaut-generic"
, "arrays"
, "bifunctors"
, "console"
, "effect"
, "either"
, "exceptions"
, "foldable-traversable"
, "foreign"
, "foreign-object"
, "maybe"
, "newtype"
, "nullable"
, "partial"
, "prelude"
, "random"
, "refs"
, "strings"
, "spec"
, "tuples"
, "typelevel-prelude"
, "unsafe-coerce"
, "web-dom"
, "web-events"
, "web-html"
, "web-uievents"
]
, packages = ./packages.dhall
, sources = [ "src/**/*.purs", "test/**/*.purs" ]
}