diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -23,3 +23,7 @@
 ## 0.1.0.6
 
 Add helpers for importing Alpine.js script
+
+## 0.1.0.7
+
+Export explicitly
diff --git a/lucid-alpine.cabal b/lucid-alpine.cabal
--- a/lucid-alpine.cabal
+++ b/lucid-alpine.cabal
@@ -1,6 +1,6 @@
 cabal-version:      1.12
 name:               lucid-alpine
-version:            0.1.0.6
+version:            0.1.0.7
 license:            BSD3
 license-file:       LICENSE
 copyright:          2022 Monadic Systems LLC
diff --git a/src/Lucid/Alpine.hs b/src/Lucid/Alpine.hs
--- a/src/Lucid/Alpine.hs
+++ b/src/Lucid/Alpine.hs
@@ -1,6 +1,26 @@
 {-# LANGUAGE OverloadedStrings #-}
 
-module Lucid.Alpine where
+module Lucid.Alpine
+  ( xData_,
+    xBind_,
+    xHtml_,
+    xCloak_,
+    xEffect_,
+    xFor_,
+    xForKey_,
+    xIf_,
+    xIgnore_,
+    xInit_,
+    xModel_,
+    xOn_,
+    xRef_,
+    xShow_,
+    xText_,
+    xTransition_,
+    useAlpine,
+    useAlpineVersion,
+  )
+where
 
 import Data.Text (Text, intercalate, pack)
 import Lucid (Html, HtmlT, defer_, script_, src_)
