@liquidcommerce/elements-sdk 2.1.0-beta.49

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 (201) hide show
  1. package/LICENSE +24 -0
  2. package/README.md +1183 -0
  3. package/dist/index.esm.js +16834 -0
  4. package/dist/types/auto-initialize.d.ts +2 -0
  5. package/dist/types/constants/core.constant.d.ts +6 -0
  6. package/dist/types/constants/index.d.ts +2 -0
  7. package/dist/types/constants/z-index.constant.d.ts +24 -0
  8. package/dist/types/core/auth.service.d.ts +29 -0
  9. package/dist/types/core/base-component.service.d.ts +93 -0
  10. package/dist/types/core/client/client-action.service.d.ts +70 -0
  11. package/dist/types/core/client/client-config.service.d.ts +47 -0
  12. package/dist/types/core/command/base-command.service.d.ts +17 -0
  13. package/dist/types/core/command/command.service.d.ts +16 -0
  14. package/dist/types/core/command/common-command.service.d.ts +5 -0
  15. package/dist/types/core/component-factory.service.d.ts +27 -0
  16. package/dist/types/core/fingerprint.service.d.ts +28 -0
  17. package/dist/types/core/google-tag-manager.service.d.ts +93 -0
  18. package/dist/types/core/logger/logger-factory.d.ts +8 -0
  19. package/dist/types/core/logger/logger.service.d.ts +17 -0
  20. package/dist/types/core/pubsub/index.d.ts +2 -0
  21. package/dist/types/core/pubsub/interfaces/address.interface.d.ts +16 -0
  22. package/dist/types/core/pubsub/interfaces/cart.interface.d.ts +107 -0
  23. package/dist/types/core/pubsub/interfaces/checkout.interface.d.ts +84 -0
  24. package/dist/types/core/pubsub/interfaces/core.interface.d.ts +81 -0
  25. package/dist/types/core/pubsub/interfaces/index.d.ts +5 -0
  26. package/dist/types/core/pubsub/interfaces/product.interface.d.ts +91 -0
  27. package/dist/types/core/pubsub/pubsub.service.d.ts +12 -0
  28. package/dist/types/core/singleton-manager.service.d.ts +12 -0
  29. package/dist/types/core/store/index.d.ts +2 -0
  30. package/dist/types/core/store/interfaces/address.interface.d.ts +16 -0
  31. package/dist/types/core/store/interfaces/cart.interface.d.ts +94 -0
  32. package/dist/types/core/store/interfaces/checkout.interface.d.ts +154 -0
  33. package/dist/types/core/store/interfaces/core.interface.d.ts +40 -0
  34. package/dist/types/core/store/interfaces/index.d.ts +5 -0
  35. package/dist/types/core/store/interfaces/product.interface.d.ts +81 -0
  36. package/dist/types/core/store/store.constant.d.ts +8 -0
  37. package/dist/types/core/store/store.service.d.ts +41 -0
  38. package/dist/types/core/utils.d.ts +27 -0
  39. package/dist/types/elements-client-helper.d.ts +1 -0
  40. package/dist/types/elements-client.d.ts +2 -0
  41. package/dist/types/enums/cloud.enum.d.ts +77 -0
  42. package/dist/types/enums/core.enum.d.ts +134 -0
  43. package/dist/types/enums/index.d.ts +2 -0
  44. package/dist/types/index.d.ts +4 -0
  45. package/dist/types/index.umd.d.ts +2 -0
  46. package/dist/types/interfaces/cloud/address.interface.d.ts +36 -0
  47. package/dist/types/interfaces/cloud/cart.interface.d.ts +132 -0
  48. package/dist/types/interfaces/cloud/checkout.interface.d.ts +214 -0
  49. package/dist/types/interfaces/cloud/core.interface.d.ts +22 -0
  50. package/dist/types/interfaces/cloud/index.d.ts +6 -0
  51. package/dist/types/interfaces/cloud/product.interface.d.ts +156 -0
  52. package/dist/types/interfaces/cloud/retailer.interface.d.ts +66 -0
  53. package/dist/types/interfaces/cloud/user.interface.d.ts +100 -0
  54. package/dist/types/interfaces/configs/address.interface.d.ts +8 -0
  55. package/dist/types/interfaces/configs/cart.interface.d.ts +15 -0
  56. package/dist/types/interfaces/configs/checkout.interface.d.ts +34 -0
  57. package/dist/types/interfaces/configs/configurations.interface.d.ts +13 -0
  58. package/dist/types/interfaces/configs/global.interface.d.ts +46 -0
  59. package/dist/types/interfaces/configs/index.d.ts +6 -0
  60. package/dist/types/interfaces/configs/product.interface.d.ts +25 -0
  61. package/dist/types/interfaces/core.interface.d.ts +81 -0
  62. package/dist/types/modules/address/address-display.component.d.ts +13 -0
  63. package/dist/types/modules/address/address-input.component.d.ts +40 -0
  64. package/dist/types/modules/address/address.command.d.ts +15 -0
  65. package/dist/types/modules/address/address.component.d.ts +12 -0
  66. package/dist/types/modules/address/address.interface.d.ts +10 -0
  67. package/dist/types/modules/address/index.d.ts +4 -0
  68. package/dist/types/modules/api-client/api-client.interface.d.ts +21 -0
  69. package/dist/types/modules/api-client/api-client.service.d.ts +28 -0
  70. package/dist/types/modules/api-client/index.d.ts +2 -0
  71. package/dist/types/modules/cart/cart.commands.d.ts +36 -0
  72. package/dist/types/modules/cart/cart.commands.helper.d.ts +8 -0
  73. package/dist/types/modules/cart/cart.component.d.ts +11 -0
  74. package/dist/types/modules/cart/components/cart-body.component.d.ts +24 -0
  75. package/dist/types/modules/cart/components/cart-footer.component.d.ts +21 -0
  76. package/dist/types/modules/cart/components/cart-fulfillment.component.d.ts +26 -0
  77. package/dist/types/modules/cart/components/cart-header.component.d.ts +6 -0
  78. package/dist/types/modules/cart/components/cart-item-quantity-price.component.d.ts +21 -0
  79. package/dist/types/modules/cart/components/cart-item.component.d.ts +13 -0
  80. package/dist/types/modules/cart/components/cart-promo-code.component.d.ts +17 -0
  81. package/dist/types/modules/cart/components/cart-retailer-subtotal.component.d.ts +10 -0
  82. package/dist/types/modules/cart/components/cart-retailer.component.d.ts +23 -0
  83. package/dist/types/modules/cart/components/index.d.ts +8 -0
  84. package/dist/types/modules/cart/index.d.ts +1 -0
  85. package/dist/types/modules/checkout/checkout.commands.d.ts +50 -0
  86. package/dist/types/modules/checkout/checkout.commands.helper.d.ts +13 -0
  87. package/dist/types/modules/checkout/checkout.component.d.ts +11 -0
  88. package/dist/types/modules/checkout/components/checkout-header.component.d.ts +9 -0
  89. package/dist/types/modules/checkout/components/checkout-information-section.component.d.ts +12 -0
  90. package/dist/types/modules/checkout/components/checkout-presale-countdown.component.d.ts +26 -0
  91. package/dist/types/modules/checkout/components/checkout-summary-section.component.d.ts +12 -0
  92. package/dist/types/modules/checkout/components/checkout.type.d.ts +4 -0
  93. package/dist/types/modules/checkout/components/index.d.ts +20 -0
  94. package/dist/types/modules/checkout/components/information/checkout-billing-form.component.d.ts +18 -0
  95. package/dist/types/modules/checkout/components/information/checkout-buyer-information-form.component.d.ts +12 -0
  96. package/dist/types/modules/checkout/components/information/checkout-delivery-information-form.component.d.ts +17 -0
  97. package/dist/types/modules/checkout/components/information/checkout-payment-form.component.d.ts +21 -0
  98. package/dist/types/modules/checkout/components/information/checkout-stripe-form.component.d.ts +52 -0
  99. package/dist/types/modules/checkout/components/summary/checkout-amounts.component.d.ts +7 -0
  100. package/dist/types/modules/checkout/components/summary/checkout-completed.component.d.ts +12 -0
  101. package/dist/types/modules/checkout/components/summary/checkout-gift-cards.component.d.ts +14 -0
  102. package/dist/types/modules/checkout/components/summary/checkout-item-quantity.component.d.ts +19 -0
  103. package/dist/types/modules/checkout/components/summary/checkout-item.component.d.ts +21 -0
  104. package/dist/types/modules/checkout/components/summary/checkout-items.component.d.ts +16 -0
  105. package/dist/types/modules/checkout/components/summary/checkout-place-order-button.component.d.ts +23 -0
  106. package/dist/types/modules/checkout/components/summary/checkout-presale-expired.component.d.ts +16 -0
  107. package/dist/types/modules/checkout/components/summary/checkout-promo-code.component.d.ts +17 -0
  108. package/dist/types/modules/checkout/components/summary/checkout-tips.component.d.ts +19 -0
  109. package/dist/types/modules/checkout/components/summary/promo-pc-gc.component.d.ts +16 -0
  110. package/dist/types/modules/checkout/constant.d.ts +32 -0
  111. package/dist/types/modules/checkout/index.d.ts +1 -0
  112. package/dist/types/modules/product/components/components.d.ts +20 -0
  113. package/dist/types/modules/product/components/index.d.ts +13 -0
  114. package/dist/types/modules/product/components/product-add-to-cart-section.component.d.ts +26 -0
  115. package/dist/types/modules/product/components/product-description.component.d.ts +9 -0
  116. package/dist/types/modules/product/components/product-drawer.component.d.ts +19 -0
  117. package/dist/types/modules/product/components/product-image-carousel.component.d.ts +36 -0
  118. package/dist/types/modules/product/components/product-interactions.component.d.ts +14 -0
  119. package/dist/types/modules/product/components/product-options.component.d.ts +12 -0
  120. package/dist/types/modules/product/components/product-price.component.d.ts +11 -0
  121. package/dist/types/modules/product/components/product-retailers-carousel.component.d.ts +32 -0
  122. package/dist/types/modules/product/components/product-retailers-popup-list.component.d.ts +13 -0
  123. package/dist/types/modules/product/components/product-retailers-popup.component.d.ts +11 -0
  124. package/dist/types/modules/product/components/product-retailers.component.d.ts +11 -0
  125. package/dist/types/modules/product/constant.d.ts +2 -0
  126. package/dist/types/modules/product/index.d.ts +1 -0
  127. package/dist/types/modules/product/product.commands.d.ts +29 -0
  128. package/dist/types/modules/product/product.component.d.ts +13 -0
  129. package/dist/types/modules/product/utils/helpers.d.ts +10 -0
  130. package/dist/types/modules/product/utils/index.d.ts +2 -0
  131. package/dist/types/modules/product/utils/retailer-hours.d.ts +9 -0
  132. package/dist/types/modules/theme-provider/constants/component-groupings.d.ts +7 -0
  133. package/dist/types/modules/theme-provider/constants/css-variable-mappings.d.ts +2 -0
  134. package/dist/types/modules/theme-provider/index.d.ts +2 -0
  135. package/dist/types/modules/theme-provider/services/css-variable-processor.service.d.ts +20 -0
  136. package/dist/types/modules/theme-provider/services/font-manager.service.d.ts +9 -0
  137. package/dist/types/modules/theme-provider/services/stylesheet-generator.service.d.ts +13 -0
  138. package/dist/types/modules/theme-provider/styles/address/address.style.d.ts +1 -0
  139. package/dist/types/modules/theme-provider/styles/address/index.d.ts +1 -0
  140. package/dist/types/modules/theme-provider/styles/cart/cart.style.d.ts +1 -0
  141. package/dist/types/modules/theme-provider/styles/cart/index.d.ts +1 -0
  142. package/dist/types/modules/theme-provider/styles/checkout/checkout.style.d.ts +1 -0
  143. package/dist/types/modules/theme-provider/styles/checkout/index.d.ts +1 -0
  144. package/dist/types/modules/theme-provider/styles/global.style.d.ts +1 -0
  145. package/dist/types/modules/theme-provider/styles/product/image-carousel.style.d.ts +1 -0
  146. package/dist/types/modules/theme-provider/styles/product/index.d.ts +3 -0
  147. package/dist/types/modules/theme-provider/styles/product/product.style.d.ts +1 -0
  148. package/dist/types/modules/theme-provider/styles/product/retailers.style.d.ts +1 -0
  149. package/dist/types/modules/theme-provider/styles/ui/drawer.style.d.ts +1 -0
  150. package/dist/types/modules/theme-provider/styles/ui/index.d.ts +3 -0
  151. package/dist/types/modules/theme-provider/styles/ui/loading.style.d.ts +1 -0
  152. package/dist/types/modules/theme-provider/styles/ui/promo-code-ticker.style.d.ts +1 -0
  153. package/dist/types/modules/theme-provider/theme-provider.service.d.ts +22 -0
  154. package/dist/types/modules/ui-components/alert/alert.component.d.ts +24 -0
  155. package/dist/types/modules/ui-components/alert/index.d.ts +1 -0
  156. package/dist/types/modules/ui-components/buttons/buttons-open-cart.component.d.ts +11 -0
  157. package/dist/types/modules/ui-components/buttons/index.d.ts +1 -0
  158. package/dist/types/modules/ui-components/drawer/drawer.component.d.ts +23 -0
  159. package/dist/types/modules/ui-components/drawer/index.d.ts +1 -0
  160. package/dist/types/modules/ui-components/engraving/engraving-form.component.d.ts +24 -0
  161. package/dist/types/modules/ui-components/engraving/engraving-view.component.d.ts +19 -0
  162. package/dist/types/modules/ui-components/engraving/index.d.ts +2 -0
  163. package/dist/types/modules/ui-components/error-view/error-view.d.ts +9 -0
  164. package/dist/types/modules/ui-components/error-view/index.d.ts +1 -0
  165. package/dist/types/modules/ui-components/input/birthdate-input.component.d.ts +51 -0
  166. package/dist/types/modules/ui-components/input/index.d.ts +2 -0
  167. package/dist/types/modules/ui-components/input/input.component.d.ts +46 -0
  168. package/dist/types/modules/ui-components/lce-element/index.d.ts +1 -0
  169. package/dist/types/modules/ui-components/lce-element/lce-element.component.d.ts +11 -0
  170. package/dist/types/modules/ui-components/loading/index.d.ts +1 -0
  171. package/dist/types/modules/ui-components/loading/product-loading.component.d.ts +6 -0
  172. package/dist/types/modules/ui-components/powered-by/index.d.ts +1 -0
  173. package/dist/types/modules/ui-components/powered-by/powered-by.component.d.ts +13 -0
  174. package/dist/types/modules/ui-components/promo-code-ticker/index.d.ts +1 -0
  175. package/dist/types/modules/ui-components/promo-code-ticker/promo-code-ticker.component.d.ts +17 -0
  176. package/dist/types/modules/ui-components/purchase-min-alert/helpers.d.ts +8 -0
  177. package/dist/types/modules/ui-components/purchase-min-alert/index.d.ts +2 -0
  178. package/dist/types/modules/ui-components/purchase-min-alert/purchase-min-alert.component.d.ts +16 -0
  179. package/dist/types/modules/ui-components/ui.commands.d.ts +7 -0
  180. package/dist/types/static/icon/arrow-right.icon.d.ts +2 -0
  181. package/dist/types/static/icon/bag.icon.d.ts +2 -0
  182. package/dist/types/static/icon/checkbox.icon.d.ts +2 -0
  183. package/dist/types/static/icon/chevron-down.icon.d.ts +2 -0
  184. package/dist/types/static/icon/chevron-left.icon.d.ts +2 -0
  185. package/dist/types/static/icon/close.icon.d.ts +2 -0
  186. package/dist/types/static/icon/completed.icon.d.ts +2 -0
  187. package/dist/types/static/icon/error-info.icon.d.ts +2 -0
  188. package/dist/types/static/icon/icon.types.d.ts +6 -0
  189. package/dist/types/static/icon/index.d.ts +15 -0
  190. package/dist/types/static/icon/info.icon.d.ts +2 -0
  191. package/dist/types/static/icon/loading-spinner.icon.d.ts +2 -0
  192. package/dist/types/static/icon/search.icon.d.ts +2 -0
  193. package/dist/types/static/icon/success.icon.d.ts +2 -0
  194. package/dist/types/static/icon/trash.icon.d.ts +2 -0
  195. package/dist/types/static/icon/warning.icon.d.ts +2 -0
  196. package/dist/types/utils/dom-polyfills.d.ts +10 -0
  197. package/dist/types/utils/format.d.ts +23 -0
  198. package/dist/types/utils/helper.d.ts +27 -0
  199. package/dist/types/utils/html-sanitizer.d.ts +2 -0
  200. package/package.json +110 -0
  201. package/umd/elements.js +1 -0
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from './icon.types';
2
+ export declare const InfoIcon: ({ width, height, className, color }: IconProps) => string;
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from './icon.types';
2
+ export declare const LoadingSpinnerIcon: ({ width, height, className, color }: IconProps) => string;
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from './icon.types';
2
+ export declare const SearchIcon: ({ width, height, className, color }: IconProps) => string;
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from './icon.types';
2
+ export declare const SuccessIcon: ({ width, height, className, color }: IconProps) => string;
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from './icon.types';
2
+ export declare const TrashIcon: ({ width, height, className, color }: IconProps) => string;
@@ -0,0 +1,2 @@
1
+ import type { IconProps } from './icon.types';
2
+ export declare const WarningIcon: ({ width, height, className, color }: IconProps) => string;
@@ -0,0 +1,10 @@
1
+ export declare function polyfillReplaceChildren(): void;
2
+ export declare function polyfillPrepend(): void;
3
+ export declare function polyfillRemove(): void;
4
+ export declare function polyfillReplaceWith(): void;
5
+ export declare function polyfillBefore(): void;
6
+ export declare function polyfillAfter(): void;
7
+ export declare function polyfillObjectFromEntries(): void;
8
+ export declare function safeScrollIntoView(element: Element, options?: ScrollIntoViewOptions): void;
9
+ export declare function initializeDOMPolyfills(): void;
10
+ export declare function safeReplaceChildren(element: Element | ShadowRoot, ...nodes: (Node | string)[]): void;
@@ -0,0 +1,23 @@
1
+ export declare function centToDollar(cent: number): number;
2
+ export declare function formatCentToDollarText(cent: number, showZeroDecimals?: boolean): string;
3
+ export declare function htmlStringToElement(htmlString: string): HTMLElement;
4
+ export declare function format24TimeTo12(time24h: string): string;
5
+ export declare function formatISODateToMMDDYYYY(isoDateString: string | null | undefined): string;
6
+ export declare function validateMinimumAge(birthDate: string | Date | null | undefined, minimumAge?: number, minimumYear?: number): {
7
+ isValid: boolean;
8
+ age: number | null;
9
+ error?: string;
10
+ };
11
+ export declare function buildFormattedAddressString(address: {
12
+ one: string;
13
+ two: string;
14
+ city: string;
15
+ state: string;
16
+ zip: string;
17
+ country?: string;
18
+ }): string;
19
+ export declare function splitCategoryPath(catPath: string): {
20
+ category: string;
21
+ category2: string;
22
+ category3: string;
23
+ };
@@ -0,0 +1,27 @@
1
+ import type { CartEventEnum, CheckoutEventEnum } from 'enums';
2
+ import type { ICartEvent, ICheckoutEvents } from 'interfaces/cloud';
3
+ export type ElementEventLevel = 'success' | 'warning' | 'error';
4
+ export interface IElementsCartEvent {
5
+ type: CartEventEnum;
6
+ message: string;
7
+ level: ElementEventLevel;
8
+ }
9
+ export interface IElementsCheckoutEvents {
10
+ type: CheckoutEventEnum;
11
+ message: string;
12
+ level: ElementEventLevel;
13
+ }
14
+ export declare const includeCartEvents: (events: ICartEvent[], eventTypes: CartEventEnum[]) => ICartEvent[];
15
+ export declare const excludeCartEvents: (events: ICartEvent[], eventTypes: CartEventEnum[]) => ICartEvent[];
16
+ export declare const eventsForCart: (events: ICartEvent[]) => ICartEvent[];
17
+ export declare const hasCartAnyPromoCodeEvents: (events: ICartEvent[]) => boolean;
18
+ export declare const includeCheckoutEvents: (events: ICheckoutEvents[], eventTypes: CheckoutEventEnum[]) => ICheckoutEvents[];
19
+ export declare const excludeCheckoutEvents: (events: ICheckoutEvents[], eventTypes: CheckoutEventEnum[]) => ICheckoutEvents[];
20
+ export declare const eventsForCheckout: (events: ICheckoutEvents[]) => ICheckoutEvents[];
21
+ export declare const promoCodeCheckoutEvents: (events: ICheckoutEvents[]) => ICheckoutEvents[];
22
+ export declare const giftCardCheckoutEvents: (events: ICheckoutEvents[]) => ICheckoutEvents[];
23
+ export declare const hasAnyRetailerGiftCardRestriction: (events: ICheckoutEvents[]) => boolean;
24
+ export declare const transformEventsForCart: (events: ICartEvent[]) => IElementsCartEvent[];
25
+ export declare const transformEventsForCheckout: (events: ICheckoutEvents[]) => IElementsCheckoutEvents[];
26
+ export declare const transformPromoCodeCheckoutEvents: (events: ICheckoutEvents[]) => IElementsCheckoutEvents[];
27
+ export declare const transformGiftCardCheckoutEvents: (events: ICheckoutEvents[]) => IElementsCheckoutEvents[];
@@ -0,0 +1,2 @@
1
+ export type AllowedHTMLTags = 'span' | 'p' | 'a' | 'b' | 'i' | 'div' | 'strong' | 'em' | 'u' | 'br' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'ul' | 'ol' | 'li' | 'blockquote' | 'code' | 'pre' | 'img';
2
+ export declare function sanitizeHTML(htmlString: string): string;
package/package.json ADDED
@@ -0,0 +1,110 @@
1
+ {
2
+ "name": "@liquidcommerce/elements-sdk",
3
+ "description": "LiquidCommerce Elements SDK",
4
+ "license": "UNLICENSED",
5
+ "author": "LiquidCommerce Team",
6
+ "version": "2.1.0-beta.49",
7
+ "homepage": "https://docs.liquidcommerce.co/elements-sdk",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/liquidcommerce/elements-sdk.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/liquidcommerce/elements-sdk/issues"
14
+ },
15
+ "module": "./dist/index.esm.js",
16
+ "browser": "./umd/elements.js",
17
+ "types": "./dist/types/index.d.ts",
18
+ "packageManager": "pnpm@10.0.0",
19
+ "exports": {
20
+ ".": {
21
+ "types": "./dist/types/index.d.ts",
22
+ "import": "./dist/index.esm.js",
23
+ "browser": "./umd/elements.js",
24
+ "default": "./dist/index.esm.js"
25
+ },
26
+ "./package.json": "./package.json"
27
+ },
28
+ "files": [
29
+ "dist",
30
+ "umd",
31
+ "README.md"
32
+ ],
33
+ "publishConfig": {
34
+ "access": "public",
35
+ "registry": "https://registry.npmjs.org/"
36
+ },
37
+ "type": "module",
38
+ "sideEffects": [
39
+ "dist/index.esm.js",
40
+ "umd/elements.js",
41
+ "src/index.ts",
42
+ "src/index.umd.ts"
43
+ ],
44
+ "scripts": {
45
+ "build": "rollup -c",
46
+ "build:dev": "rollup -c",
47
+ "dev": "rollup -c -w",
48
+ "type-check": "tsc --noEmit",
49
+ "lint": "pnpm biome lint --write",
50
+ "format": "biome format --write",
51
+ "check": "pnpm biome check --write",
52
+ "fl": "pnpm check && pnpm build:dev",
53
+ "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
54
+ "clean": "rm -rf dist umd",
55
+ "clean:hard": "rm -rf dist umd node_modules && pnpm install && pnpm build",
56
+ "prepublishOnly": "pnpm run build",
57
+ "deprecate:old": "npm deprecate @liquidcommerceteam/elements-sdk@\"*\" \"Package moved to @liquidcommerce/elements-sdk\""
58
+ },
59
+ "keywords": [
60
+ "liquidcommerce",
61
+ "alcohol",
62
+ "beverage",
63
+ "alcohol tech",
64
+ "elements",
65
+ "custom web components",
66
+ "embeddable components",
67
+ "embeddable web components",
68
+ "embeddable commerce"
69
+ ],
70
+ "devDependencies": {
71
+ "@biomejs/biome": "2.2.2",
72
+ "@commitlint/cli": "^19.8.1",
73
+ "@commitlint/config-conventional": "^19.8.1",
74
+ "@rollup/plugin-alias": "^5.1.1",
75
+ "@rollup/plugin-commonjs": "^28.0.6",
76
+ "@rollup/plugin-json": "^6.1.0",
77
+ "@rollup/plugin-node-resolve": "^15.3.1",
78
+ "@rollup/plugin-replace": "^6.0.2",
79
+ "@rollup/plugin-terser": "^0.4.4",
80
+ "@semantic-release/changelog": "^6.0.3",
81
+ "@semantic-release/commit-analyzer": "^13.0.0",
82
+ "@semantic-release/git": "^10.0.1",
83
+ "@semantic-release/github": "^11.0.6",
84
+ "@semantic-release/npm": "^12.0.2",
85
+ "@semantic-release/release-notes-generator": "^14.0.0",
86
+ "@types/core-js": "^2.5.8",
87
+ "@types/node": "^24.5.2",
88
+ "conventional-changelog-cli": "^5.0.0",
89
+ "husky": "^9.1.7",
90
+ "process": "^0.11.10",
91
+ "rollup": "^4.50.2",
92
+ "rollup-obfuscator": "^4.1.1",
93
+ "rollup-plugin-typescript2": "^0.36.0",
94
+ "semantic-release": "^24.2.8",
95
+ "ts-node": "^10.9.2",
96
+ "typescript": "^5.9.2"
97
+ },
98
+ "engines": {
99
+ "node": ">=20"
100
+ },
101
+ "pnpm": {
102
+ "peerDependencyRules": {
103
+ "ignoreMissing": []
104
+ },
105
+ "onlyBuiltDependencies": [
106
+ "@biomejs/biome",
107
+ "javascript-obfuscator"
108
+ ]
109
+ }
110
+ }