-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
43 lines (39 loc) · 1008 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
defmodule KinoLiveComponent.MixProject do
use Mix.Project
def project do
[
app: :kino_live_component,
deps: deps(),
description: "A kino for rendering fully-styled function and live components in Livebook",
elixir: "~> 1.16",
start_permanent: Mix.env() == :prod,
package: package(),
version: "0.0.3",
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:bandit, "1.5.7"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:jason, "1.4.4"},
{:kino, "0.14.2"},
{:phoenix, "1.7.14"},
{:phoenix_html, "4.1.1"},
{:phoenix_live_view, ">= 0.20.17"},
{:plug, "1.16.1"}
]
end
defp package do
[
licenses: ["GPL-3.0-or-later"],
links: %{"GitHub" => "https://github.com/anthonyshull/kino_live_component"},
]
end
end