spago.dhall 472 B

1234567891011121314151617181920212223242526272829
  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. , "effect"
  12. , "either"
  13. , "foldable-traversable"
  14. , "free"
  15. , "lists"
  16. , "maybe"
  17. , "node-buffer"
  18. , "node-fs"
  19. , "nonempty"
  20. , "partial"
  21. , "prelude"
  22. , "strings"
  23. , "tuples"
  24. , "web-dom"
  25. , "yoga-tree"
  26. ]
  27. , packages = ./packages.dhall
  28. , sources = [ "src/**/*.purs", "test/**/*.purs" ]
  29. }