nak/build.sbt

15 lines
409 B
Plaintext
Raw Normal View History

2023-03-18 19:41:54 -04:00
enablePlugins(ScalaJSPlugin, EsbuildPlugin)
2023-03-18 17:07:07 -04:00
name := "nostr-army-knife"
2023-04-24 12:32:51 -04:00
scalaVersion := "3.3.0-RC4"
lazy val root = (project in file("."))
.settings(
libraryDependencies ++= Seq(
"com.armanbilge" %%% "calico" % "0.2.0-RC2",
2023-04-24 12:32:51 -04:00
"com.fiatjaf" %%% "snow" % "0.0.1"
),
scalaJSUseMainModuleInitializer := true,
scalaJSLinkerConfig ~= { _.withModuleKind(ModuleKind.CommonJSModule) }
)