Pre-packaged app.bsky and chat.bsky AT Protocol lexicons.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 36 lines 768 B view raw
1defmodule AtexBsky.MixProject do 2 use Mix.Project 3 4 @version "0.1.2" 5 @github "https://github.com/cometsh/atex_bsky" 6 @tangled "https://tangled.sh/@comet.sh/atex_bsky" 7 8 def project do 9 [ 10 app: :atex_bsky, 11 version: @version, 12 elixir: "~> 1.18", 13 start_permanent: Mix.env() == :prod, 14 name: "atex_bsky", 15 description: "Pre-packaged `app.bsky` and `chat.bsky` AT Protocol lexicons.", 16 deps: deps(), 17 package: package() 18 ] 19 end 20 21 def application, do: [] 22 23 defp package do 24 [ 25 licenses: ["MIT"], 26 links: %{"GitHub" => @github, "Tangled" => @tangled} 27 ] 28 end 29 30 defp deps do 31 [ 32 {:atex, "~> 0.9"}, 33 {:ex_doc, "~> 0.39", only: :dev, runtime: false, warn_if_outdated: true} 34 ] 35 end 36end