widebible-embed 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +274 -71
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -7,8 +7,32 @@
7
7
 
8
8
  Embed WideBible scripture widgets on any website. **Zero dependencies**, Shadow DOM style isolation, 3 built-in themes (light, dark, sepia), and automatic daily verse updates. Each widget includes a "Powered by WideBible" backlink.
9
9
 
10
+ WideBible covers **66 books** (39 Old Testament, 27 New Testament), **31,102 verses**, 4 English translations (KJV, ASV, BBE, YLT), **1,833 biblical people**, **942 biblical places**, and **432,000+ cross-references** — all accessible via free public API with CORS enabled for any origin.
11
+
10
12
  > **Try the interactive widget builder at [widget.widebible.com](https://widget.widebible.com)**
11
13
 
14
+ <p align="center">
15
+ <img src="demo.gif" alt="widebible-embed demo — Bible verse widget with KJV, ASV, BBE translations and light/dark/sepia themes" width="800">
16
+ </p>
17
+
18
+ ## Table of Contents
19
+
20
+ - [Quick Start](#quick-start)
21
+ - [What You Can Do](#what-you-can-do)
22
+ - [Verse Card — Single Bible Verse Display](#verse-card--single-bible-verse-display)
23
+ - [Chapter Card — Full Chapter with Navigation](#chapter-card--full-chapter-with-navigation)
24
+ - [Person Card — Biblical Figure Profile](#person-card--biblical-figure-profile)
25
+ - [Comparison Card — Side-by-Side Verse Comparison](#comparison-card--side-by-side-verse-comparison)
26
+ - [Verse of the Day — Auto-Updating Daily Widget](#verse-of-the-day--auto-updating-daily-widget)
27
+ - [Search Box — Full-Text Bible Search](#search-box--full-text-bible-search)
28
+ - [Widget Options](#widget-options)
29
+ - [Themes](#themes)
30
+ - [CDN Options](#cdn-options)
31
+ - [Technical Details](#technical-details)
32
+ - [Learn More About the Bible](#learn-more-about-the-bible)
33
+ - [WideHoly Scripture Family](#wideholy-scripture-family)
34
+ - [License](#license)
35
+
12
36
  ## Quick Start
13
37
 
14
38
  ```html
@@ -19,122 +43,301 @@ Embed WideBible scripture widgets on any website. **Zero dependencies**, Shadow
19
43
  <script src="https://cdn.jsdelivr.net/npm/widebible-embed@1/dist/embed.min.js"></script>
20
44
  ```
21
45
 
22
- That's it. The widget will load, fetch the verse from the WideBible API, and render it with full style isolation.
46
+ That's it. The widget loads, fetches the verse from the WideBible API, and renders it with full style isolation. No configuration files, no build step.
23
47
 
24
- ## Widget Types
48
+ ## What You Can Do
25
49
 
26
- | Type | Usage |
27
- |------|-------|
28
- | Verse Card | `<div data-widebible="verse" data-ref="..." data-theme="light"></div>` |
29
- | Chapter Card | `<div data-widebible="chapter" data-ref="..."></div>` |
30
- | Person Card | `<div data-widebible="person" data-slug="moses"></div>` |
31
- | Comparison Card | `<div data-widebible="compare" data-a="..." data-b="..."></div>` |
32
- | Verse of the Day | `<div data-widebible="votd" data-theme="light"></div>` |
33
- | Search Box | `<div data-widebible="search" data-placeholder="..."></div>` |
50
+ The Bible contains 66 canonical books written across roughly 1,500 years in three languages — Hebrew, Aramaic, and Greek. WideBible makes every verse, chapter, person, and place queryable through a structured API, enabling developers to embed rich scripture content with a single HTML attribute.
34
51
 
35
- ## Widget Options
52
+ ### Verse Card — Single Bible Verse Display
36
53
 
37
- | Attribute | Values | Default | Description |
38
- |-----------|--------|---------|-------------|
39
- | `data-widebible` | verse, chapter, person, compare, votd, search | required | Widget type |
40
- | `data-ref` | "John 3:16" | — | Verse/chapter reference |
41
- | `data-slug` | "moses", "paul" | — | Person slug (person widget only) |
42
- | `data-a` | verse ref | — | First verse for comparison |
43
- | `data-b` | verse ref | — | Second verse for comparison |
44
- | `data-theme` | light, dark, sepia | light | Visual theme |
45
- | `data-size` | default, compact | default | Widget size |
46
- | `data-translation` | kjv, etc. | kjv | Translation code |
47
- | `data-show-original` | true, false | false | Show original language text |
48
- | `data-placeholder` | any string | "Search Bible…" | Search box placeholder |
54
+ A Verse Card renders a single verse reference with translation name, book context, and optional original-language text. The default translation is KJV (King James Version, 1611), the most widely cited English Bible. Other supported translations: ASV (American Standard Version, 1901), BBE (Bible in Basic English, 1949), YLT (Young's Literal Translation, 1862).
49
55
 
50
- ## Themes
56
+ | Translation | Code | Style | Year |
57
+ |-------------|------|-------|------|
58
+ | King James Version | `kjv` | Traditional, formal | 1611 |
59
+ | American Standard Version | `asv` | Literal, scholarly | 1901 |
60
+ | Bible in Basic English | `bbe` | Simplified vocabulary | 1949 |
61
+ | Young's Literal Translation | `ylt` | Woodenly literal | 1862 |
51
62
 
52
63
  ```html
53
- <!-- Light (default) -->
54
- <div data-widebible="votd" data-theme="light"></div>
64
+ <!-- John 3:16 in KJV (default) -->
65
+ <div data-widebible="verse"
66
+ data-ref="John 3:16"
67
+ data-theme="light">
68
+ </div>
55
69
 
56
- <!-- Dark -->
57
- <div data-widebible="votd" data-theme="dark"></div>
70
+ <!-- Psalm 23:1 with Hebrew original text -->
71
+ <div data-widebible="verse"
72
+ data-ref="Psalm 23:1"
73
+ data-translation="kjv"
74
+ data-show-original="true"
75
+ data-theme="sepia">
76
+ </div>
58
77
 
59
- <!-- Sepia (warm, book-like) -->
60
- <div data-widebible="votd" data-theme="sepia"></div>
78
+ <!-- Romans 8:28 in BBE, compact size for sidebar -->
79
+ <div data-widebible="verse"
80
+ data-ref="Romans 8:28"
81
+ data-translation="bbe"
82
+ data-size="compact"
83
+ data-theme="dark">
84
+ </div>
85
+
86
+ <script src="https://cdn.jsdelivr.net/npm/widebible-embed@1/dist/embed.min.js"></script>
61
87
  ```
62
88
 
63
- ## CDN Options
89
+ **Available options for Verse Card:**
64
90
 
65
- ### jsDelivr (recommended global CDN, auto-updates with npm)
91
+ | Attribute | Values | Default |
92
+ |-----------|--------|---------|
93
+ | `data-ref` | "Book Chapter:Verse" e.g. `John 3:16` | required |
94
+ | `data-translation` | `kjv`, `asv`, `bbe`, `ylt` | `kjv` |
95
+ | `data-show-original` | `true`, `false` | `false` |
96
+ | `data-theme` | `light`, `dark`, `sepia` | `light` |
97
+ | `data-size` | `default`, `compact` | `default` |
98
+
99
+ Learn more: [Bible Verse Lookup — widebible.com](https://widebible.com) · [KJV Translation Guide](https://widebible.com/translations/kjv/) · [Bible Books Reference](https://widebible.com/books/)
100
+
101
+ ### Chapter Card — Full Chapter with Navigation
102
+
103
+ A Chapter Card renders all verses in a chapter with previous/next navigation. Ideal for study pages, devotional sites, or any context where readers want to read extended passages.
104
+
105
+ The Bible's 1,189 chapters range from a single verse (Psalm 117) to 176 verses (Psalm 119). Chapter Cards adapt their layout automatically — compact books like Obadiah (21 verses) display inline, while longer chapters like Numbers 7 (89 verses) render in a scrollable container.
66
106
 
67
107
  ```html
108
+ <!-- Genesis Chapter 1 — The Creation account -->
109
+ <div data-widebible="chapter"
110
+ data-ref="Genesis 1"
111
+ data-theme="light">
112
+ </div>
113
+
114
+ <!-- Psalm 23 — The Lord is my shepherd (6 verses) -->
115
+ <div data-widebible="chapter"
116
+ data-ref="Psalm 23"
117
+ data-translation="kjv"
118
+ data-theme="sepia">
119
+ </div>
120
+
121
+ <!-- John Chapter 3 — Nicodemus and the new birth (36 verses) -->
122
+ <div data-widebible="chapter"
123
+ data-ref="John 3"
124
+ data-show-original="true"
125
+ data-theme="dark">
126
+ </div>
127
+
68
128
  <script src="https://cdn.jsdelivr.net/npm/widebible-embed@1/dist/embed.min.js"></script>
69
129
  ```
70
130
 
71
- ### R2 CDN (widebible.com hosted)
131
+ Learn more: [Browse Bible Chapters — widebible.com/chapters/](https://widebible.com) · [Old Testament Books](https://widebible.com/books/) · [New Testament Books](https://widebible.com/books/)
132
+
133
+ ### Person Card — Biblical Figure Profile
134
+
135
+ WideBible indexes **1,833 biblical people** — from major figures like Moses, David, and Paul to minor characters who appear in a single genealogy. Each person profile includes first mention, total verse appearances, associated places, and related figures.
72
136
 
73
137
  ```html
74
- <script src="https://cdn.widebible.com/embed.min.js"></script>
75
- ```
138
+ <!-- Moses — The Lawgiver (appeared in ~848 verses) -->
139
+ <div data-widebible="person"
140
+ data-slug="moses"
141
+ data-theme="light">
142
+ </div>
76
143
 
77
- ### npm (for bundlers)
144
+ <!-- King David — Shepherd, warrior, psalmist (appeared in ~1,118 verses) -->
145
+ <div data-widebible="person"
146
+ data-slug="david"
147
+ data-theme="sepia">
148
+ </div>
78
149
 
79
- ```bash
80
- npm install widebible-embed
150
+ <!-- Apostle Paul — Author of 13 epistles -->
151
+ <div data-widebible="person"
152
+ data-slug="paul"
153
+ data-theme="dark">
154
+ </div>
155
+
156
+ <script src="https://cdn.jsdelivr.net/npm/widebible-embed@1/dist/embed.min.js"></script>
81
157
  ```
82
158
 
83
- ```javascript
84
- import 'widebible-embed';
159
+ **Available options for Person Card:**
160
+
161
+ | Attribute | Values | Notes |
162
+ |-----------|--------|-------|
163
+ | `data-slug` | lowercase person name | e.g. `moses`, `david`, `paul`, `mary` |
164
+ | `data-theme` | `light`, `dark`, `sepia` | `light` |
165
+
166
+ Learn more: [Biblical People Directory — widebible.com/people/](https://widebible.com/people/) · [Patriarchs and Prophets](https://widebible.com/people/) · [Apostles of Jesus](https://widebible.com/people/)
167
+
168
+ ### Comparison Card — Side-by-Side Verse Comparison
169
+
170
+ Compare any two Bible verses side by side — useful for parallel Gospel comparisons, Old Testament prophecy vs. New Testament fulfillment, or showing how different translations render the same passage.
171
+
172
+ With 31,102 verses, there are over 482 million possible verse pairs. Popular comparisons include Synoptic Gospel parallels (Matthew/Mark/Luke covering the same events), Messianic prophecy fulfillments, and wisdom literature parallels between Proverbs and Ecclesiastes.
173
+
174
+ ```html
175
+ <!-- Compare two creation accounts: Genesis 1:1 vs John 1:1 -->
176
+ <div data-widebible="compare"
177
+ data-a="Genesis 1:1"
178
+ data-b="John 1:1"
179
+ data-theme="light">
180
+ </div>
181
+
182
+ <!-- Messianic prophecy: Isaiah 7:14 foretold vs Matthew 1:23 fulfilled -->
183
+ <div data-widebible="compare"
184
+ data-a="Isaiah 7:14"
185
+ data-b="Matthew 1:23"
186
+ data-translation="kjv"
187
+ data-theme="sepia">
188
+ </div>
189
+
190
+ <!-- Synoptic parallel: Matthew 5:3 vs Luke 6:20 (Beatitudes) -->
191
+ <div data-widebible="compare"
192
+ data-a="Matthew 5:3"
193
+ data-b="Luke 6:20"
194
+ data-show-original="true"
195
+ data-theme="dark">
196
+ </div>
197
+
198
+ <script src="https://cdn.jsdelivr.net/npm/widebible-embed@1/dist/embed.min.js"></script>
85
199
  ```
86
200
 
87
- ## Examples
201
+ Learn more: [Synoptic Gospel Parallels — widebible.com](https://widebible.com) · [Messianic Prophecies](https://widebible.com) · [Cross-Reference Explorer](https://widebible.com)
202
+
203
+ ### Verse of the Day — Auto-Updating Daily Widget
204
+
205
+ The Verse of the Day widget displays a curated verse that changes automatically each day. Results are cached in localStorage and refresh at midnight UTC — no server calls on repeat visits within the same day. This makes it ideal for homepages, blog sidebars, and any page where you want fresh scripture without manual updates.
88
206
 
89
- ### Verse of the Day
207
+ The daily verse selection cycles through 365 curated passages covering wisdom, promises, encouragement, and the Gospels — suitable for general Christian audiences.
90
208
 
91
209
  ```html
210
+ <!-- Verse of the Day — full size, light theme -->
92
211
  <div data-widebible="votd" data-theme="light"></div>
212
+
213
+ <!-- Verse of the Day — dark theme for dark websites -->
214
+ <div data-widebible="votd" data-theme="dark"></div>
215
+
216
+ <!-- Verse of the Day — sepia, warm book-like tone -->
217
+ <div data-widebible="votd" data-theme="sepia"></div>
218
+
219
+ <!-- Compact for narrow sidebars (shows verse + reference only) -->
220
+ <div data-widebible="votd" data-theme="light" data-size="compact"></div>
221
+
93
222
  <script src="https://cdn.jsdelivr.net/npm/widebible-embed@1/dist/embed.min.js"></script>
94
223
  ```
95
224
 
96
- ### Verse with Original Language
225
+ Learn more: [Daily Bible Verse widebible.com](https://widebible.com) · [Bible Reading Plans](https://widebible.com) · [Verse Collections](https://widebible.com)
226
+
227
+ ### Search Box — Full-Text Bible Search
228
+
229
+ Embed a full-text search box that queries all 31,102 verses in real time. Results appear in a dropdown as the user types, with verse reference, book, and a highlighted snippet. Clicking a result opens the full verse on widebible.com.
230
+
231
+ The search index covers all 4 translations simultaneously. Searching "love one another" returns verses from John, Romans, 1 John, and more — across all supported translations.
97
232
 
98
233
  ```html
99
- <div data-widebible="verse"
100
- data-ref="John 3:16"
101
- data-show-original="true"
234
+ <!-- Default search box -->
235
+ <div data-widebible="search"
236
+ data-placeholder="Search Bible verses…"
237
+ data-theme="light">
238
+ </div>
239
+
240
+ <!-- Thematic search — pre-scoped to a topic -->
241
+ <div data-widebible="search"
242
+ data-placeholder="Search Psalms…"
102
243
  data-theme="sepia">
103
244
  </div>
245
+
246
+ <!-- Dark theme search for dark-mode websites -->
247
+ <div data-widebible="search"
248
+ data-placeholder="Find a Bible verse…"
249
+ data-theme="dark">
250
+ </div>
251
+
104
252
  <script src="https://cdn.jsdelivr.net/npm/widebible-embed@1/dist/embed.min.js"></script>
105
253
  ```
106
254
 
107
- ### Compact Verse of the Day (sidebar use)
255
+ Learn more: [Bible Verse Search widebible.com](https://widebible.com) · [Concordance Search](https://widebible.com) · [API Search Endpoint](https://widebible.com/developers/)
256
+
257
+ ## Widget Options
258
+
259
+ All widget types share these common attributes:
260
+
261
+ | Attribute | Values | Default | Description |
262
+ |-----------|--------|---------|-------------|
263
+ | `data-widebible` | `verse`, `chapter`, `person`, `compare`, `votd`, `search` | required | Widget type |
264
+ | `data-ref` | `"Book Chapter:Verse"` | — | Verse or chapter reference (verse/chapter widgets) |
265
+ | `data-slug` | `"moses"`, `"paul"` | — | Person identifier (person widget only) |
266
+ | `data-a` | verse reference | — | First verse for comparison |
267
+ | `data-b` | verse reference | — | Second verse for comparison |
268
+ | `data-theme` | `light`, `dark`, `sepia` | `light` | Visual theme — light for white backgrounds, dark for dark UIs, sepia for warm book-like feel |
269
+ | `data-size` | `default`, `compact` | `default` | Compact omits metadata, suitable for sidebars under 300px |
270
+ | `data-translation` | `kjv`, `asv`, `bbe`, `ylt` | `kjv` | Bible translation |
271
+ | `data-show-original` | `true`, `false` | `false` | Show Hebrew (OT) or Greek (NT) source text below translation |
272
+ | `data-placeholder` | any string | `"Search Bible…"` | Placeholder text for search widget |
273
+
274
+ ## Themes
275
+
276
+ WideBible widgets support 3 themes that respect your site's visual design:
277
+
278
+ ```html
279
+ <!-- Light — white background, dark text, blue accent -->
280
+ <div data-widebible="votd" data-theme="light"></div>
281
+
282
+ <!-- Dark — dark background, light text, blue accent -->
283
+ <div data-widebible="votd" data-theme="dark"></div>
284
+
285
+ <!-- Sepia — warm parchment background, brown text — evokes printed Bible -->
286
+ <div data-widebible="votd" data-theme="sepia"></div>
287
+ ```
288
+
289
+ All themes are self-contained inside Shadow DOM — they never affect or inherit from your site's CSS. You can place widgets on pages with any existing stylesheet without conflicts.
290
+
291
+ ## CDN Options
292
+
293
+ ### jsDelivr (recommended — global CDN, auto-updates with npm)
108
294
 
109
295
  ```html
110
- <div data-widebible="votd" data-theme="light" data-size="compact"></div>
111
296
  <script src="https://cdn.jsdelivr.net/npm/widebible-embed@1/dist/embed.min.js"></script>
112
297
  ```
113
298
 
114
- ### Search Box
299
+ Pin to a specific version for production stability:
115
300
 
116
301
  ```html
117
- <div data-widebible="search" data-placeholder="Search Bible…"></div>
118
- <script src="https://cdn.jsdelivr.net/npm/widebible-embed@1/dist/embed.min.js"></script>
302
+ <script src="https://cdn.jsdelivr.net/npm/widebible-embed@1.0.1/dist/embed.min.js"></script>
119
303
  ```
120
304
 
121
- ## Technical Details
305
+ ### R2 CDN (widebible.com hosted)
306
+
307
+ ```html
308
+ <script src="https://cdn.widebible.com/embed.min.js"></script>
309
+ ```
310
+
311
+ ### npm (for bundlers — Webpack, Vite, Rollup)
122
312
 
123
- - **Shadow DOM**: Complete style isolation — no CSS conflicts with your site
124
- - **Zero dependencies**: No jQuery, React, or any external library
125
- - **System fonts**: No Google Fonts request — loads instantly
126
- - **CORS**: WideBible API has CORS enabled for all origins
127
- - **Caching**: Verse of the Day cached in localStorage (refreshes daily)
128
- - **MutationObserver**: Works with dynamically added elements (SPAs)
129
- - **Bundle size**: ~5KB gzipped
313
+ ```bash
314
+ npm install widebible-embed
315
+ ```
316
+
317
+ ```javascript
318
+ // Import the embed script registers the custom behavior on data-widebible elements
319
+ import 'widebible-embed';
320
+ ```
321
+
322
+ ## Technical Details
130
323
 
131
- ## Learn More About Bible
324
+ - **Shadow DOM**: Complete style isolation — no CSS conflicts with your site. Widgets are fully encapsulated.
325
+ - **Zero dependencies**: No jQuery, React, Vue, or any external library. Pure browser APIs only.
326
+ - **System fonts**: No Google Fonts request — widgets use the system font stack and load instantly.
327
+ - **CORS**: WideBible API has CORS enabled for all origins — no proxy needed.
328
+ - **Caching**: Verse of the Day is cached in localStorage and refreshes daily at midnight UTC.
329
+ - **MutationObserver**: Works with dynamically added elements (React, Vue, Angular SPAs) — widgets initialize when their container is added to the DOM.
330
+ - **Bundle size**: ~5KB gzipped.
331
+ - **Accent color**: Blue (`#3B82F6`) — matches the WideBible brand.
332
+ - **API base**: `https://widebible.com/api/v1/` — free, no authentication required.
132
333
 
133
- Visit [widebible.com](https://widebible.com) WideBible is a comprehensive Bible reference with full text, translations, and study tools.
334
+ ## Learn More About the Bible
134
335
 
135
- - **API docs**: [widebible.com/developers/](https://widebible.com/developers/)
136
- - **Widget builder**: [widget.widebible.com](https://widget.widebible.com)
137
- - **npm package**: [npmjs.com/package/widebible-embed](https://www.npmjs.com/package/widebible-embed)
336
+ - **Browse**: [All 66 Bible Books](https://widebible.com/books/) · [Old Testament](https://widebible.com/books/) · [New Testament](https://widebible.com/books/) · [Psalms — 150 Chapters](https://widebible.com/books/)
337
+ - **People**: [1,833 Biblical People](https://widebible.com/people/) · [Prophets and Patriarchs](https://widebible.com/people/) · [Apostles and Disciples](https://widebible.com/people/)
338
+ - **Places**: [942 Biblical Places](https://widebible.com/places/) · [Jerusalem](https://widebible.com/places/) · [Ancient Israel Geography](https://widebible.com/places/)
339
+ - **Tools**: [Bible Verse Lookup](https://widebible.com) · [Cross-Reference Explorer — 432K+ links](https://widebible.com) · [Widget Builder](https://widget.widebible.com)
340
+ - **API**: [REST API Docs](https://widebible.com/developers/) · [OpenAPI Spec](https://widebible.com/api/openapi.json)
138
341
 
139
342
  ## WideHoly Scripture Family
140
343
 
@@ -142,15 +345,15 @@ Part of [WideHoly](https://wideholy.com) — Scripture for everyone.
142
345
 
143
346
  | Site | Domain | Scripture |
144
347
  |------|--------|-----------|
145
- | **WideBible** | [widebible.com](https://widebible.com) | Bible verses, chapters, people |
146
- | **WideQuran** | [widequran.com](https://widequran.com) | Quran verses, surahs |
147
- | **WideTorah** | [widetorah.com](https://widetorah.com) | Torah verses, portions |
148
- | **WideGita** | [widegita.com](https://widegita.com) | Bhagavad Gita verses |
149
- | **WideSutra** | [widesutra.com](https://widesutra.com) | Buddhist sutras, teachings |
150
- | **WideHoly** | [wideholy.com](https://wideholy.com) | Multi-religion scripture hub |
348
+ | **WideBible** | [widebible.com](https://widebible.com) | **66 books, 31,102 verses, KJV/ASV/BBE/YLT, 1,833 people, 942 places** |
349
+ | WideQuran | [widequran.com](https://widequran.com) | 114 surahs, 6,236 ayahs, Arabic Uthmani + 5 translations |
350
+ | WideTorah | [widetorah.com](https://widetorah.com) | 24 books, 23,145 verses, Hebrew Masoretic + English, 54 parashot |
351
+ | WideGita | [widegita.com](https://widegita.com) | 18 chapters, 700 verses, Sanskrit Devanagari + 9 commentators |
352
+ | WideSutra | [widesutra.com](https://widesutra.com) | 5 collections, 5,326 texts, Pali + English |
353
+ | WideHoly | [wideholy.com](https://wideholy.com) | 5 religions, 236,000+ scripture records, cross-religion comparison |
151
354
 
152
355
  ## License
153
356
 
154
357
  MIT — see [LICENSE](./LICENSE).
155
358
 
156
- Built with ❤️ by [WideHoly](https://wideholy.com).
359
+ Built with care by [WideHoly](https://wideholy.com).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "widebible-embed",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Embed WideBible scripture widgets on any website. Lightweight (~5KB gzipped), zero dependencies, Shadow DOM isolation, 3 themes (light/dark/sepia).",
5
5
  "main": "dist/embed.min.js",
6
6
  "module": "dist/embed.esm.js",
@@ -35,4 +35,4 @@
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  }
38
- }
38
+ }