nak/build.sbt

15 lines
414 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-03-18 19:41:54 -04:00
scalaVersion := "3.2.2"
lazy val root = (project in file("."))
.settings(
libraryDependencies ++= Seq(
"com.armanbilge" %%% "calico" % "0.2.0-RC2",
"com.fiatjaf" %%% "snow" % "0.0.1-SNAPSHOT"
),
scalaJSUseMainModuleInitializer := true,
scalaJSLinkerConfig ~= { _.withModuleKind(ModuleKind.CommonJSModule) }
)