Features: - Generate SCIP index from clojure-lsp dump - Namespace definitions and usages - Var definitions and usages - Namespace alias definitions and usage references - External symbol documentation for hover Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
630 B
Clojure
17 lines
630 B
Clojure
{:paths ["src" "classes"]
|
|
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
|
|
com.google.protobuf/protobuf-java {:mvn/version "3.25.3"}
|
|
org.clojure/tools.cli {:mvn/version "1.1.230"}}
|
|
|
|
:aliases
|
|
{:build {:extra-deps {io.github.clojure/tools.build {:mvn/version "0.10.5"}}
|
|
:ns-default build}
|
|
|
|
:run {:main-opts ["-m" "scip-clojure.core"]}
|
|
|
|
:uberjar {:extra-deps {com.github.seancorfield/depstar {:mvn/version "2.1.303"}}
|
|
:exec-fn hf.depstar/uberjar
|
|
:exec-args {:jar "scip-clojure.jar"
|
|
:aot true
|
|
:main-class scip_clojure.core}}}}
|