defmodule LiveReactNative.MixProject do use Mix.Project @source_url "https://github.com/AJReade/live_react_native" @version "0.0.1" def project do [ app: :live_react_native, version: @version, elixir: "~> 1.16", start_permanent: Mix.env() == :prod, deps: deps(), description: "React Native integration for Phoenix LiveView", package: package(), docs: docs(), source_url: @source_url ] end # Run "mix help compile.app" to learn about applications. def application do conditionals = case Application.get_env(:live_react_native, :ssr_module) do # Needed to use :httpc.request LiveReactNative.SSR.ViteJS -> [:inets] _ -> [] end [ extra_applications: [:logger] ++ conditionals ] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:jason, "~> 1.2"}, {:nodejs, "~> 3.1", optional: true}, {:floki, ">= 0.30.0", optional: true}, {:phoenix, ">= 1.7.0"}, {:phoenix_html, ">= 3.3.1"}, {:phoenix_live_view, ">= 0.18.0"}, {:telemetry, "~> 0.4 or ~> 1.0"}, {:credo, "~> 1.7", only: [:dev, :test]}, {:ex_doc, "~> 0.19", only: :dev, runtime: false}, {:git_ops, "~> 2.8.0", only: [:dev]} ] end defp package do [ maintainers: ["AJ Reade"], licenses: ["MIT"], links: %{ Github: "https://github.com/AJReade/live_react_native" }, files: ~w(lib LICENSE.md mix.exs README.md CHANGELOG.md .formatter.exs) ] end defp docs do [ name: "LiveReact Native", source_ref: "v#{@version}", source_url: "https://github.com/AJReade/live_react_native", homepage_url: "https://github.com/AJReade/live_react_native", main: "readme", extras: ["README.md", "CHANGELOG.md"] ] end end