2022-09-04 00:03:03 +00:00
|
|
|
{-
|
|
|
|
Welcome to a Spago project!
|
|
|
|
You can edit this file as you like.
|
|
|
|
|
|
|
|
Need help? See the following resources:
|
|
|
|
- Spago documentation: https://github.com/purescript/spago
|
|
|
|
- Dhall language tour: https://docs.dhall-lang.org/tutorials/Language-Tour.html
|
|
|
|
|
|
|
|
When creating a new Spago project, you can use
|
|
|
|
`spago init --no-comments` or `spago init -C`
|
|
|
|
to generate this file without the comments in this block.
|
|
|
|
-}
|
|
|
|
{ name = "my-project"
|
|
|
|
, dependencies =
|
|
|
|
[ "aff"
|
2022-11-04 18:05:02 +00:00
|
|
|
, "arraybuffer"
|
2022-10-24 19:10:30 +00:00
|
|
|
, "arraybuffer-builder"
|
2022-11-04 18:05:02 +00:00
|
|
|
, "arraybuffer-types"
|
|
|
|
, "arrays"
|
2022-10-24 19:10:30 +00:00
|
|
|
, "base64-codec"
|
2022-09-04 00:03:03 +00:00
|
|
|
, "console"
|
|
|
|
, "effect"
|
|
|
|
, "either"
|
|
|
|
, "fetch"
|
2022-11-04 18:05:02 +00:00
|
|
|
, "filterable"
|
2022-10-24 19:10:30 +00:00
|
|
|
, "foldable-traversable"
|
2022-11-06 16:36:31 +00:00
|
|
|
, "halogen"
|
2022-10-19 21:39:04 +00:00
|
|
|
, "maybe"
|
2022-11-04 18:05:02 +00:00
|
|
|
, "newtype"
|
2022-11-05 18:47:35 +00:00
|
|
|
, "parallel"
|
2022-11-04 18:05:02 +00:00
|
|
|
, "parsing"
|
2022-09-04 00:03:03 +00:00
|
|
|
, "prelude"
|
2022-11-04 18:05:02 +00:00
|
|
|
, "protobuf"
|
2022-10-19 21:39:04 +00:00
|
|
|
, "strings"
|
2022-10-19 21:43:54 +00:00
|
|
|
, "subtlecrypto"
|
2022-11-04 18:05:02 +00:00
|
|
|
, "transformers"
|
2022-11-05 18:47:35 +00:00
|
|
|
, "web-file"
|
2022-11-04 18:05:02 +00:00
|
|
|
, "web-html"
|
2022-09-04 00:03:03 +00:00
|
|
|
]
|
|
|
|
, packages = ./packages.dhall
|
|
|
|
, sources = [ "src/**/*.purs", "test/**/*.purs" ]
|
|
|
|
}
|