spago.dhall 573 B

1234567891011121314151617181920212223242526272829303132333435
  1. {-
  2. Welcome to a Spago project!
  3. You can edit this file as you like.
  4. -}
  5. { name = "web-extension"
  6. , dependencies =
  7. [ "arrays"
  8. , "assert"
  9. , "console"
  10. , "control"
  11. , "datetime"
  12. , "effect"
  13. , "either"
  14. , "enums"
  15. , "foldable-traversable"
  16. , "free"
  17. , "integers"
  18. , "lists"
  19. , "maybe"
  20. , "node-buffer"
  21. , "node-fs"
  22. , "nonempty"
  23. , "ordered-collections"
  24. , "parsing"
  25. , "partial"
  26. , "prelude"
  27. , "strings"
  28. , "transformers"
  29. , "tuples"
  30. , "web-dom"
  31. , "yoga-tree"
  32. ]
  33. , packages = ./packages.dhall
  34. , sources = [ "src/**/*.purs", "test/**/*.purs" ]
  35. }