-
Notifications
You must be signed in to change notification settings - Fork 5
/
project.clj
18 lines (18 loc) · 935 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject pdfshot "0.1.7"
:description "PDF screenshot generator for web pages"
:url "https://github.com/xcoo/pdfshot"
:license {:name "Apache License, Version 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0.html"}
:dependencies [[org.clojure/clojure "1.10.3"]
[org.clojure/core.async "1.5.648"]
[org.clojure/clojurescript "1.11.4"]]
:plugins [[lein-cljsbuild "1.1.7"]]
:cljsbuild {:builds [{:id "dev"
:source-paths ["src"]
:compiler {:main pdfshot.core
:output-to "target/pdfshot.js"
:target :nodejs
:optimizations :simple
:npm-deps {"puppeteer" "19.4.1"
"express" "4.18.2"}
:install-deps true}}]})