purescript-typeable/spago.dhall

26 lines
419 B
Plaintext
Raw Normal View History

2021-01-06 05:04:30 +00:00
{-
Welcome to a Spago project!
You can edit this file as you like.
-}
{ name = "typeable"
, dependencies =
2021-04-22 07:41:34 +00:00
[ "effect"
, "psci-support"
, "either"
, "exists"
, "leibniz"
2021-01-11 20:04:12 +00:00
, "prelude"
, "tuples"
, "arrays"
2021-04-22 07:41:34 +00:00
, "const"
, "control"
, "foldable-traversable"
, "identity"
, "maybe"
, "newtype"
, "unsafe-coerce"
]
2021-01-06 05:04:30 +00:00
, packages = ./packages.dhall
, sources = [ "src/**/*.purs", "test/**/*.purs" ]
}