Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Vibe.MixProject do
use Mix.Project
@version "0.1.0"
@source_url "https://github.com/mikehostetler/vibe"
@description "A fun, playful, but practical tool that helps LLM agents interact with Elixir codebases through custom mix tasks"
def project do
[
app: :vibe,
version: @version,
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: @description,
package: package(),
docs: docs(),
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test,
"coveralls.github": :test
],
test_coverage: [tool: ExCoveralls]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :iex]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_dbug, "~> 2.1"},
# {:fnord, "~> 0.6.7"},
# Testing
{:credo, "~> 1.7", only: [:dev, :test]},
{:dialyxir, "~> 1.4", only: [:dev], runtime: false},
{:doctor, "~> 0.22.0", only: [:dev, :test]},
{:ex_check, "~> 0.12", only: [:dev, :test]},
{:ex_doc, "~> 0.37-rc", only: [:dev, :test], runtime: false},
{:excoveralls, "~> 0.18.3", only: [:dev, :test]},
{:expublish, "~> 2.5", only: [:dev], runtime: false},
{:git_ops, "~> 2.5", only: [:dev, :test]},
{:igniter, "~> 0.5", only: [:dev, :test]},
{:mimic, "~> 1.7", only: [:dev, :test]},
{:mix_audit, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:mix_test_watch, "~> 1.0", only: [:dev, :test], runtime: false},
{:sobelow, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:stream_data, "~> 1.1", only: [:dev, :test]},
{:jason, "~> 1.4"}
]
end
defp package do
[
maintainers: ["Mike Hostetler"],
licenses: ["MIT"],
links: %{"GitHub" => @source_url},
files: ~w(lib mix.exs README.md LICENSE .formatter.exs)
]
end
defp docs do
[
main: "readme",
source_url: @source_url,
extras: ["README.md"]
]
end
end