@contractspec/bundle.marketing 3.7.0 → 3.7.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.
- package/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +27 -0
- package/package.json +109 -165
package/.turbo/turbo-build.log
CHANGED
|
@@ -3,7 +3,7 @@ $ bun run prebuild && bun run build:bundle && bun run build:types
|
|
|
3
3
|
$ contractspec-bun-build prebuild
|
|
4
4
|
$ contractspec-bun-build transpile
|
|
5
5
|
[contractspec-bun-build] transpile target=bun root=src entries=45 noBundle=false
|
|
6
|
-
Bundled 45 modules in
|
|
6
|
+
Bundled 45 modules in 46ms
|
|
7
7
|
|
|
8
8
|
bundles/MarketingBundle.js 8.0 KB (entry point)
|
|
9
9
|
libs/email/types.js 49 bytes (entry point)
|
|
@@ -52,7 +52,7 @@ Bundled 45 modules in 33ms
|
|
|
52
52
|
components/marketing/sections/DevelopersSection.js 1.37 KB (entry point)
|
|
53
53
|
|
|
54
54
|
[contractspec-bun-build] transpile target=node root=src entries=45 noBundle=false
|
|
55
|
-
Bundled 45 modules in
|
|
55
|
+
Bundled 45 modules in 40ms
|
|
56
56
|
|
|
57
57
|
bundles/MarketingBundle.js 8.1 KB (entry point)
|
|
58
58
|
libs/email/types.js 41 bytes (entry point)
|
|
@@ -101,7 +101,7 @@ Bundled 45 modules in 33ms
|
|
|
101
101
|
components/marketing/sections/DevelopersSection.js 1.42 KB (entry point)
|
|
102
102
|
|
|
103
103
|
[contractspec-bun-build] transpile target=browser root=src entries=45 noBundle=false
|
|
104
|
-
Bundled 45 modules in
|
|
104
|
+
Bundled 45 modules in 48ms
|
|
105
105
|
|
|
106
106
|
bundles/MarketingBundle.js 8.36 KB (entry point)
|
|
107
107
|
libs/email/types.js 41 bytes (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @contractspec/bundle.marketing
|
|
2
2
|
|
|
3
|
+
## 3.7.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5eb8626: fix: package exports
|
|
8
|
+
- Updated dependencies [5eb8626]
|
|
9
|
+
- @contractspec/lib.contracts-runtime-client-react@3.7.1
|
|
10
|
+
- @contractspec/example.analytics-dashboard@3.7.1
|
|
11
|
+
- @contractspec/example.saas-boilerplate@3.7.1
|
|
12
|
+
- @contractspec/example.integration-hub@3.7.1
|
|
13
|
+
- @contractspec/example.workflow-system@3.7.1
|
|
14
|
+
- @contractspec/example.agent-console@3.7.1
|
|
15
|
+
- @contractspec/lib.example-shared-ui@6.0.1
|
|
16
|
+
- @contractspec/example.crm-pipeline@3.7.1
|
|
17
|
+
- @contractspec/example.marketplace@3.7.1
|
|
18
|
+
- @contractspec/lib.runtime-sandbox@2.7.1
|
|
19
|
+
- @contractspec/lib.surface-runtime@0.5.1
|
|
20
|
+
- @contractspec/lib.contracts-spec@3.7.1
|
|
21
|
+
- @contractspec/lib.design-system@3.7.1
|
|
22
|
+
- @contractspec/lib.ui-kit-core@3.7.1
|
|
23
|
+
- @contractspec/module.examples@3.7.1
|
|
24
|
+
- @contractspec/bundle.library@3.7.1
|
|
25
|
+
- @contractspec/lib.ui-kit-web@3.7.1
|
|
26
|
+
- @contractspec/lib.ui-link@3.7.1
|
|
27
|
+
- @contractspec/lib.logger@3.7.1
|
|
28
|
+
- @contractspec/lib.email@3.7.1
|
|
29
|
+
|
|
3
30
|
## 3.7.0
|
|
4
31
|
|
|
5
32
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/bundle.marketing",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "rm -rf dist",
|
|
@@ -19,370 +19,342 @@
|
|
|
19
19
|
"exports": {
|
|
20
20
|
".": {
|
|
21
21
|
"types": "./dist/index.d.ts",
|
|
22
|
+
"browser": "./dist/browser/index.js",
|
|
22
23
|
"bun": "./dist/index.js",
|
|
23
24
|
"node": "./dist/node/index.js",
|
|
24
|
-
"browser": "./dist/browser/index.js",
|
|
25
25
|
"default": "./dist/index.js"
|
|
26
26
|
},
|
|
27
27
|
"./bundles": {
|
|
28
28
|
"types": "./dist/bundles/index.d.ts",
|
|
29
|
-
"bun": "./dist/bundles/index.js",
|
|
30
|
-
"node": "./dist/node/bundles/index.js",
|
|
31
29
|
"browser": "./dist/browser/bundles/index.js",
|
|
32
|
-
"default": "./dist/bundles/index.js"
|
|
33
|
-
},
|
|
34
|
-
"./bundles/index": {
|
|
35
|
-
"types": "./dist/bundles/index.d.ts",
|
|
36
30
|
"bun": "./dist/bundles/index.js",
|
|
37
31
|
"node": "./dist/node/bundles/index.js",
|
|
38
|
-
"browser": "./dist/browser/bundles/index.js",
|
|
39
32
|
"default": "./dist/bundles/index.js"
|
|
40
33
|
},
|
|
41
34
|
"./bundles/MarketingBundle": {
|
|
42
35
|
"types": "./dist/bundles/MarketingBundle.d.ts",
|
|
36
|
+
"browser": "./dist/browser/bundles/MarketingBundle.js",
|
|
43
37
|
"bun": "./dist/bundles/MarketingBundle.js",
|
|
44
38
|
"node": "./dist/node/bundles/MarketingBundle.js",
|
|
45
|
-
"browser": "./dist/browser/bundles/MarketingBundle.js",
|
|
46
39
|
"default": "./dist/bundles/MarketingBundle.js"
|
|
47
40
|
},
|
|
48
41
|
"./components/marketing": {
|
|
49
42
|
"types": "./dist/components/marketing/index.d.ts",
|
|
43
|
+
"browser": "./dist/browser/components/marketing/index.js",
|
|
50
44
|
"bun": "./dist/components/marketing/index.js",
|
|
51
45
|
"node": "./dist/node/components/marketing/index.js",
|
|
52
|
-
"browser": "./dist/browser/components/marketing/index.js",
|
|
53
46
|
"default": "./dist/components/marketing/index.js"
|
|
54
47
|
},
|
|
55
48
|
"./components/marketing/ChangelogPage": {
|
|
56
49
|
"types": "./dist/components/marketing/ChangelogPage.d.ts",
|
|
50
|
+
"browser": "./dist/browser/components/marketing/ChangelogPage.js",
|
|
57
51
|
"bun": "./dist/components/marketing/ChangelogPage.js",
|
|
58
52
|
"node": "./dist/node/components/marketing/ChangelogPage.js",
|
|
59
|
-
"browser": "./dist/browser/components/marketing/ChangelogPage.js",
|
|
60
53
|
"default": "./dist/components/marketing/ChangelogPage.js"
|
|
61
54
|
},
|
|
62
55
|
"./components/marketing/CofounderPage": {
|
|
63
56
|
"types": "./dist/components/marketing/CofounderPage.d.ts",
|
|
57
|
+
"browser": "./dist/browser/components/marketing/CofounderPage.js",
|
|
64
58
|
"bun": "./dist/components/marketing/CofounderPage.js",
|
|
65
59
|
"node": "./dist/node/components/marketing/CofounderPage.js",
|
|
66
|
-
"browser": "./dist/browser/components/marketing/CofounderPage.js",
|
|
67
60
|
"default": "./dist/components/marketing/CofounderPage.js"
|
|
68
61
|
},
|
|
69
62
|
"./components/marketing/ContactClient": {
|
|
70
63
|
"types": "./dist/components/marketing/ContactClient.d.ts",
|
|
64
|
+
"browser": "./dist/browser/components/marketing/ContactClient.js",
|
|
71
65
|
"bun": "./dist/components/marketing/ContactClient.js",
|
|
72
66
|
"node": "./dist/node/components/marketing/ContactClient.js",
|
|
73
|
-
"browser": "./dist/browser/components/marketing/ContactClient.js",
|
|
74
67
|
"default": "./dist/components/marketing/ContactClient.js"
|
|
75
68
|
},
|
|
76
69
|
"./components/marketing/ContributePage": {
|
|
77
70
|
"types": "./dist/components/marketing/ContributePage.d.ts",
|
|
71
|
+
"browser": "./dist/browser/components/marketing/ContributePage.js",
|
|
78
72
|
"bun": "./dist/components/marketing/ContributePage.js",
|
|
79
73
|
"node": "./dist/node/components/marketing/ContributePage.js",
|
|
80
|
-
"browser": "./dist/browser/components/marketing/ContributePage.js",
|
|
81
74
|
"default": "./dist/components/marketing/ContributePage.js"
|
|
82
75
|
},
|
|
83
76
|
"./components/marketing/DesignPartnerPage": {
|
|
84
77
|
"types": "./dist/components/marketing/DesignPartnerPage.d.ts",
|
|
78
|
+
"browser": "./dist/browser/components/marketing/DesignPartnerPage.js",
|
|
85
79
|
"bun": "./dist/components/marketing/DesignPartnerPage.js",
|
|
86
80
|
"node": "./dist/node/components/marketing/DesignPartnerPage.js",
|
|
87
|
-
"browser": "./dist/browser/components/marketing/DesignPartnerPage.js",
|
|
88
81
|
"default": "./dist/components/marketing/DesignPartnerPage.js"
|
|
89
82
|
},
|
|
90
|
-
"./components/marketing/index": {
|
|
91
|
-
"types": "./dist/components/marketing/index.d.ts",
|
|
92
|
-
"bun": "./dist/components/marketing/index.js",
|
|
93
|
-
"node": "./dist/node/components/marketing/index.js",
|
|
94
|
-
"browser": "./dist/browser/components/marketing/index.js",
|
|
95
|
-
"default": "./dist/components/marketing/index.js"
|
|
96
|
-
},
|
|
97
83
|
"./components/marketing/LandingPage": {
|
|
98
84
|
"types": "./dist/components/marketing/LandingPage.d.ts",
|
|
85
|
+
"browser": "./dist/browser/components/marketing/LandingPage.js",
|
|
99
86
|
"bun": "./dist/components/marketing/LandingPage.js",
|
|
100
87
|
"node": "./dist/node/components/marketing/LandingPage.js",
|
|
101
|
-
"browser": "./dist/browser/components/marketing/LandingPage.js",
|
|
102
88
|
"default": "./dist/components/marketing/LandingPage.js"
|
|
103
89
|
},
|
|
104
90
|
"./components/marketing/pricing-thinking-modal": {
|
|
105
91
|
"types": "./dist/components/marketing/pricing-thinking-modal.d.ts",
|
|
92
|
+
"browser": "./dist/browser/components/marketing/pricing-thinking-modal.js",
|
|
106
93
|
"bun": "./dist/components/marketing/pricing-thinking-modal.js",
|
|
107
94
|
"node": "./dist/node/components/marketing/pricing-thinking-modal.js",
|
|
108
|
-
"browser": "./dist/browser/components/marketing/pricing-thinking-modal.js",
|
|
109
95
|
"default": "./dist/components/marketing/pricing-thinking-modal.js"
|
|
110
96
|
},
|
|
111
97
|
"./components/marketing/PricingClient": {
|
|
112
98
|
"types": "./dist/components/marketing/PricingClient.d.ts",
|
|
99
|
+
"browser": "./dist/browser/components/marketing/PricingClient.js",
|
|
113
100
|
"bun": "./dist/components/marketing/PricingClient.js",
|
|
114
101
|
"node": "./dist/node/components/marketing/PricingClient.js",
|
|
115
|
-
"browser": "./dist/browser/components/marketing/PricingClient.js",
|
|
116
102
|
"default": "./dist/components/marketing/PricingClient.js"
|
|
117
103
|
},
|
|
118
104
|
"./components/marketing/ProductClientPage": {
|
|
119
105
|
"types": "./dist/components/marketing/ProductClientPage.d.ts",
|
|
106
|
+
"browser": "./dist/browser/components/marketing/ProductClientPage.js",
|
|
120
107
|
"bun": "./dist/components/marketing/ProductClientPage.js",
|
|
121
108
|
"node": "./dist/node/components/marketing/ProductClientPage.js",
|
|
122
|
-
"browser": "./dist/browser/components/marketing/ProductClientPage.js",
|
|
123
109
|
"default": "./dist/components/marketing/ProductClientPage.js"
|
|
124
110
|
},
|
|
125
111
|
"./components/marketing/sections/AudienceSection": {
|
|
126
112
|
"types": "./dist/components/marketing/sections/AudienceSection.d.ts",
|
|
113
|
+
"browser": "./dist/browser/components/marketing/sections/AudienceSection.js",
|
|
127
114
|
"bun": "./dist/components/marketing/sections/AudienceSection.js",
|
|
128
115
|
"node": "./dist/node/components/marketing/sections/AudienceSection.js",
|
|
129
|
-
"browser": "./dist/browser/components/marketing/sections/AudienceSection.js",
|
|
130
116
|
"default": "./dist/components/marketing/sections/AudienceSection.js"
|
|
131
117
|
},
|
|
132
118
|
"./components/marketing/sections/CorePositioningSection": {
|
|
133
119
|
"types": "./dist/components/marketing/sections/CorePositioningSection.d.ts",
|
|
120
|
+
"browser": "./dist/browser/components/marketing/sections/CorePositioningSection.js",
|
|
134
121
|
"bun": "./dist/components/marketing/sections/CorePositioningSection.js",
|
|
135
122
|
"node": "./dist/node/components/marketing/sections/CorePositioningSection.js",
|
|
136
|
-
"browser": "./dist/browser/components/marketing/sections/CorePositioningSection.js",
|
|
137
123
|
"default": "./dist/components/marketing/sections/CorePositioningSection.js"
|
|
138
124
|
},
|
|
139
125
|
"./components/marketing/sections/CtaSection": {
|
|
140
126
|
"types": "./dist/components/marketing/sections/CtaSection.d.ts",
|
|
127
|
+
"browser": "./dist/browser/components/marketing/sections/CtaSection.js",
|
|
141
128
|
"bun": "./dist/components/marketing/sections/CtaSection.js",
|
|
142
129
|
"node": "./dist/node/components/marketing/sections/CtaSection.js",
|
|
143
|
-
"browser": "./dist/browser/components/marketing/sections/CtaSection.js",
|
|
144
130
|
"default": "./dist/components/marketing/sections/CtaSection.js"
|
|
145
131
|
},
|
|
146
132
|
"./components/marketing/sections/DevelopersSection": {
|
|
147
133
|
"types": "./dist/components/marketing/sections/DevelopersSection.d.ts",
|
|
134
|
+
"browser": "./dist/browser/components/marketing/sections/DevelopersSection.js",
|
|
148
135
|
"bun": "./dist/components/marketing/sections/DevelopersSection.js",
|
|
149
136
|
"node": "./dist/node/components/marketing/sections/DevelopersSection.js",
|
|
150
|
-
"browser": "./dist/browser/components/marketing/sections/DevelopersSection.js",
|
|
151
137
|
"default": "./dist/components/marketing/sections/DevelopersSection.js"
|
|
152
138
|
},
|
|
153
139
|
"./components/marketing/sections/FearsSection": {
|
|
154
140
|
"types": "./dist/components/marketing/sections/FearsSection.d.ts",
|
|
141
|
+
"browser": "./dist/browser/components/marketing/sections/FearsSection.js",
|
|
155
142
|
"bun": "./dist/components/marketing/sections/FearsSection.js",
|
|
156
143
|
"node": "./dist/node/components/marketing/sections/FearsSection.js",
|
|
157
|
-
"browser": "./dist/browser/components/marketing/sections/FearsSection.js",
|
|
158
144
|
"default": "./dist/components/marketing/sections/FearsSection.js"
|
|
159
145
|
},
|
|
160
146
|
"./components/marketing/sections/HeroMarketingSection": {
|
|
161
147
|
"types": "./dist/components/marketing/sections/HeroMarketingSection.d.ts",
|
|
148
|
+
"browser": "./dist/browser/components/marketing/sections/HeroMarketingSection.js",
|
|
162
149
|
"bun": "./dist/components/marketing/sections/HeroMarketingSection.js",
|
|
163
150
|
"node": "./dist/node/components/marketing/sections/HeroMarketingSection.js",
|
|
164
|
-
"browser": "./dist/browser/components/marketing/sections/HeroMarketingSection.js",
|
|
165
151
|
"default": "./dist/components/marketing/sections/HeroMarketingSection.js"
|
|
166
152
|
},
|
|
167
153
|
"./components/marketing/sections/IconGridSection": {
|
|
168
154
|
"types": "./dist/components/marketing/sections/IconGridSection.d.ts",
|
|
155
|
+
"browser": "./dist/browser/components/marketing/sections/IconGridSection.js",
|
|
169
156
|
"bun": "./dist/components/marketing/sections/IconGridSection.js",
|
|
170
157
|
"node": "./dist/node/components/marketing/sections/IconGridSection.js",
|
|
171
|
-
"browser": "./dist/browser/components/marketing/sections/IconGridSection.js",
|
|
172
158
|
"default": "./dist/components/marketing/sections/IconGridSection.js"
|
|
173
159
|
},
|
|
174
160
|
"./components/marketing/sections/OutputsSection": {
|
|
175
161
|
"types": "./dist/components/marketing/sections/OutputsSection.d.ts",
|
|
162
|
+
"browser": "./dist/browser/components/marketing/sections/OutputsSection.js",
|
|
176
163
|
"bun": "./dist/components/marketing/sections/OutputsSection.js",
|
|
177
164
|
"node": "./dist/node/components/marketing/sections/OutputsSection.js",
|
|
178
|
-
"browser": "./dist/browser/components/marketing/sections/OutputsSection.js",
|
|
179
165
|
"default": "./dist/components/marketing/sections/OutputsSection.js"
|
|
180
166
|
},
|
|
181
167
|
"./components/marketing/sections/ProblemSection": {
|
|
182
168
|
"types": "./dist/components/marketing/sections/ProblemSection.d.ts",
|
|
169
|
+
"browser": "./dist/browser/components/marketing/sections/ProblemSection.js",
|
|
183
170
|
"bun": "./dist/components/marketing/sections/ProblemSection.js",
|
|
184
171
|
"node": "./dist/node/components/marketing/sections/ProblemSection.js",
|
|
185
|
-
"browser": "./dist/browser/components/marketing/sections/ProblemSection.js",
|
|
186
172
|
"default": "./dist/components/marketing/sections/ProblemSection.js"
|
|
187
173
|
},
|
|
188
174
|
"./components/marketing/sections/SolutionSection": {
|
|
189
175
|
"types": "./dist/components/marketing/sections/SolutionSection.d.ts",
|
|
176
|
+
"browser": "./dist/browser/components/marketing/sections/SolutionSection.js",
|
|
190
177
|
"bun": "./dist/components/marketing/sections/SolutionSection.js",
|
|
191
178
|
"node": "./dist/node/components/marketing/sections/SolutionSection.js",
|
|
192
|
-
"browser": "./dist/browser/components/marketing/sections/SolutionSection.js",
|
|
193
179
|
"default": "./dist/components/marketing/sections/SolutionSection.js"
|
|
194
180
|
},
|
|
195
181
|
"./components/marketing/sections/StepsSection": {
|
|
196
182
|
"types": "./dist/components/marketing/sections/StepsSection.d.ts",
|
|
183
|
+
"browser": "./dist/browser/components/marketing/sections/StepsSection.js",
|
|
197
184
|
"bun": "./dist/components/marketing/sections/StepsSection.js",
|
|
198
185
|
"node": "./dist/node/components/marketing/sections/StepsSection.js",
|
|
199
|
-
"browser": "./dist/browser/components/marketing/sections/StepsSection.js",
|
|
200
186
|
"default": "./dist/components/marketing/sections/StepsSection.js"
|
|
201
187
|
},
|
|
202
188
|
"./components/marketing/studio-signup-section": {
|
|
203
189
|
"types": "./dist/components/marketing/studio-signup-section.d.ts",
|
|
190
|
+
"browser": "./dist/browser/components/marketing/studio-signup-section.js",
|
|
204
191
|
"bun": "./dist/components/marketing/studio-signup-section.js",
|
|
205
192
|
"node": "./dist/node/components/marketing/studio-signup-section.js",
|
|
206
|
-
"browser": "./dist/browser/components/marketing/studio-signup-section.js",
|
|
207
193
|
"default": "./dist/components/marketing/studio-signup-section.js"
|
|
208
194
|
},
|
|
209
195
|
"./components/templates": {
|
|
210
196
|
"types": "./dist/components/templates/index.d.ts",
|
|
211
|
-
"bun": "./dist/components/templates/index.js",
|
|
212
|
-
"node": "./dist/node/components/templates/index.js",
|
|
213
197
|
"browser": "./dist/browser/components/templates/index.js",
|
|
214
|
-
"default": "./dist/components/templates/index.js"
|
|
215
|
-
},
|
|
216
|
-
"./components/templates/index": {
|
|
217
|
-
"types": "./dist/components/templates/index.d.ts",
|
|
218
198
|
"bun": "./dist/components/templates/index.js",
|
|
219
199
|
"node": "./dist/node/components/templates/index.js",
|
|
220
|
-
"browser": "./dist/browser/components/templates/index.js",
|
|
221
200
|
"default": "./dist/components/templates/index.js"
|
|
222
201
|
},
|
|
223
202
|
"./components/templates/TemplatesClientPage": {
|
|
224
203
|
"types": "./dist/components/templates/TemplatesClientPage.d.ts",
|
|
204
|
+
"browser": "./dist/browser/components/templates/TemplatesClientPage.js",
|
|
225
205
|
"bun": "./dist/components/templates/TemplatesClientPage.js",
|
|
226
206
|
"node": "./dist/node/components/templates/TemplatesClientPage.js",
|
|
227
|
-
"browser": "./dist/browser/components/templates/TemplatesClientPage.js",
|
|
228
207
|
"default": "./dist/components/templates/TemplatesClientPage.js"
|
|
229
208
|
},
|
|
230
209
|
"./components/templates/TemplatesPage": {
|
|
231
210
|
"types": "./dist/components/templates/TemplatesPage.d.ts",
|
|
211
|
+
"browser": "./dist/browser/components/templates/TemplatesPage.js",
|
|
232
212
|
"bun": "./dist/components/templates/TemplatesPage.js",
|
|
233
213
|
"node": "./dist/node/components/templates/TemplatesPage.js",
|
|
234
|
-
"browser": "./dist/browser/components/templates/TemplatesPage.js",
|
|
235
214
|
"default": "./dist/components/templates/TemplatesPage.js"
|
|
236
215
|
},
|
|
237
216
|
"./components/templates/TemplatesPreviewModal": {
|
|
238
217
|
"types": "./dist/components/templates/TemplatesPreviewModal.d.ts",
|
|
218
|
+
"browser": "./dist/browser/components/templates/TemplatesPreviewModal.js",
|
|
239
219
|
"bun": "./dist/components/templates/TemplatesPreviewModal.js",
|
|
240
220
|
"node": "./dist/node/components/templates/TemplatesPreviewModal.js",
|
|
241
|
-
"browser": "./dist/browser/components/templates/TemplatesPreviewModal.js",
|
|
242
221
|
"default": "./dist/components/templates/TemplatesPreviewModal.js"
|
|
243
222
|
},
|
|
244
223
|
"./libs/email/client": {
|
|
245
224
|
"types": "./dist/libs/email/client.d.ts",
|
|
225
|
+
"browser": "./dist/browser/libs/email/client.js",
|
|
246
226
|
"bun": "./dist/libs/email/client.js",
|
|
247
227
|
"node": "./dist/node/libs/email/client.js",
|
|
248
|
-
"browser": "./dist/browser/libs/email/client.js",
|
|
249
228
|
"default": "./dist/libs/email/client.js"
|
|
250
229
|
},
|
|
251
230
|
"./libs/email/contact": {
|
|
252
231
|
"types": "./dist/libs/email/contact.d.ts",
|
|
232
|
+
"browser": "./dist/browser/libs/email/contact.js",
|
|
253
233
|
"bun": "./dist/libs/email/contact.js",
|
|
254
234
|
"node": "./dist/node/libs/email/contact.js",
|
|
255
|
-
"browser": "./dist/browser/libs/email/contact.js",
|
|
256
235
|
"default": "./dist/libs/email/contact.js"
|
|
257
236
|
},
|
|
258
237
|
"./libs/email/newsletter": {
|
|
259
238
|
"types": "./dist/libs/email/newsletter.d.ts",
|
|
239
|
+
"browser": "./dist/browser/libs/email/newsletter.js",
|
|
260
240
|
"bun": "./dist/libs/email/newsletter.js",
|
|
261
241
|
"node": "./dist/node/libs/email/newsletter.js",
|
|
262
|
-
"browser": "./dist/browser/libs/email/newsletter.js",
|
|
263
242
|
"default": "./dist/libs/email/newsletter.js"
|
|
264
243
|
},
|
|
265
244
|
"./libs/email/types": {
|
|
266
245
|
"types": "./dist/libs/email/types.d.ts",
|
|
246
|
+
"browser": "./dist/browser/libs/email/types.js",
|
|
267
247
|
"bun": "./dist/libs/email/types.js",
|
|
268
248
|
"node": "./dist/node/libs/email/types.js",
|
|
269
|
-
"browser": "./dist/browser/libs/email/types.js",
|
|
270
249
|
"default": "./dist/libs/email/types.js"
|
|
271
250
|
},
|
|
272
251
|
"./libs/email/utils": {
|
|
273
252
|
"types": "./dist/libs/email/utils.d.ts",
|
|
253
|
+
"browser": "./dist/browser/libs/email/utils.js",
|
|
274
254
|
"bun": "./dist/libs/email/utils.js",
|
|
275
255
|
"node": "./dist/node/libs/email/utils.js",
|
|
276
|
-
"browser": "./dist/browser/libs/email/utils.js",
|
|
277
256
|
"default": "./dist/libs/email/utils.js"
|
|
278
257
|
},
|
|
279
258
|
"./libs/email/waitlist": {
|
|
280
259
|
"types": "./dist/libs/email/waitlist.d.ts",
|
|
260
|
+
"browser": "./dist/browser/libs/email/waitlist.js",
|
|
281
261
|
"bun": "./dist/libs/email/waitlist.js",
|
|
282
262
|
"node": "./dist/node/libs/email/waitlist.js",
|
|
283
|
-
"browser": "./dist/browser/libs/email/waitlist.js",
|
|
284
263
|
"default": "./dist/libs/email/waitlist.js"
|
|
285
264
|
},
|
|
286
265
|
"./libs/email/waitlist-application": {
|
|
287
266
|
"types": "./dist/libs/email/waitlist-application.d.ts",
|
|
267
|
+
"browser": "./dist/browser/libs/email/waitlist-application.js",
|
|
288
268
|
"bun": "./dist/libs/email/waitlist-application.js",
|
|
289
269
|
"node": "./dist/node/libs/email/waitlist-application.js",
|
|
290
|
-
"browser": "./dist/browser/libs/email/waitlist-application.js",
|
|
291
270
|
"default": "./dist/libs/email/waitlist-application.js"
|
|
292
271
|
},
|
|
293
272
|
"./libs/pricing-examples": {
|
|
294
273
|
"types": "./dist/libs/pricing-examples.d.ts",
|
|
274
|
+
"browser": "./dist/browser/libs/pricing-examples.js",
|
|
295
275
|
"bun": "./dist/libs/pricing-examples.js",
|
|
296
276
|
"node": "./dist/node/libs/pricing-examples.js",
|
|
297
|
-
"browser": "./dist/browser/libs/pricing-examples.js",
|
|
298
277
|
"default": "./dist/libs/pricing-examples.js"
|
|
299
278
|
},
|
|
300
279
|
"./registry": {
|
|
301
280
|
"types": "./dist/registry/index.d.ts",
|
|
281
|
+
"browser": "./dist/browser/registry/index.js",
|
|
302
282
|
"bun": "./dist/registry/index.js",
|
|
303
283
|
"node": "./dist/node/registry/index.js",
|
|
304
|
-
"browser": "./dist/browser/registry/index.js",
|
|
305
284
|
"default": "./dist/registry/index.js"
|
|
306
285
|
},
|
|
307
286
|
"./registry/engine": {
|
|
308
287
|
"types": "./dist/registry/engine.d.ts",
|
|
288
|
+
"browser": "./dist/browser/registry/engine.js",
|
|
309
289
|
"bun": "./dist/registry/engine.js",
|
|
310
290
|
"node": "./dist/node/registry/engine.js",
|
|
311
|
-
"browser": "./dist/browser/registry/engine.js",
|
|
312
291
|
"default": "./dist/registry/engine.js"
|
|
313
292
|
},
|
|
314
293
|
"./registry/factory": {
|
|
315
294
|
"types": "./dist/registry/factory.d.ts",
|
|
295
|
+
"browser": "./dist/browser/registry/factory.js",
|
|
316
296
|
"bun": "./dist/registry/factory.js",
|
|
317
297
|
"node": "./dist/node/registry/factory.js",
|
|
318
|
-
"browser": "./dist/browser/registry/factory.js",
|
|
319
298
|
"default": "./dist/registry/factory.js"
|
|
320
299
|
},
|
|
321
|
-
"./registry/index": {
|
|
322
|
-
"types": "./dist/registry/index.d.ts",
|
|
323
|
-
"bun": "./dist/registry/index.js",
|
|
324
|
-
"node": "./dist/node/registry/index.js",
|
|
325
|
-
"browser": "./dist/browser/registry/index.js",
|
|
326
|
-
"default": "./dist/registry/index.js"
|
|
327
|
-
},
|
|
328
300
|
"./registry/registry": {
|
|
329
301
|
"types": "./dist/registry/registry.d.ts",
|
|
302
|
+
"browser": "./dist/browser/registry/registry.js",
|
|
330
303
|
"bun": "./dist/registry/registry.js",
|
|
331
304
|
"node": "./dist/node/registry/registry.js",
|
|
332
|
-
"browser": "./dist/browser/registry/registry.js",
|
|
333
305
|
"default": "./dist/registry/registry.js"
|
|
334
306
|
},
|
|
335
307
|
"./registry/registry-docs": {
|
|
336
308
|
"types": "./dist/registry/registry-docs.d.ts",
|
|
309
|
+
"browser": "./dist/browser/registry/registry-docs.js",
|
|
337
310
|
"bun": "./dist/registry/registry-docs.js",
|
|
338
311
|
"node": "./dist/node/registry/registry-docs.js",
|
|
339
|
-
"browser": "./dist/browser/registry/registry-docs.js",
|
|
340
312
|
"default": "./dist/registry/registry-docs.js"
|
|
341
313
|
},
|
|
342
314
|
"./registry/registry-landing": {
|
|
343
315
|
"types": "./dist/registry/registry-landing.d.ts",
|
|
316
|
+
"browser": "./dist/browser/registry/registry-landing.js",
|
|
344
317
|
"bun": "./dist/registry/registry-landing.js",
|
|
345
318
|
"node": "./dist/node/registry/registry-landing.js",
|
|
346
|
-
"browser": "./dist/browser/registry/registry-landing.js",
|
|
347
319
|
"default": "./dist/registry/registry-landing.js"
|
|
348
320
|
},
|
|
349
321
|
"./registry/types": {
|
|
350
322
|
"types": "./dist/registry/types.d.ts",
|
|
323
|
+
"browser": "./dist/browser/registry/types.js",
|
|
351
324
|
"bun": "./dist/registry/types.js",
|
|
352
325
|
"node": "./dist/node/registry/types.js",
|
|
353
|
-
"browser": "./dist/browser/registry/types.js",
|
|
354
326
|
"default": "./dist/registry/types.js"
|
|
355
327
|
},
|
|
356
328
|
"./registry/utils": {
|
|
357
329
|
"types": "./dist/registry/utils.d.ts",
|
|
330
|
+
"browser": "./dist/browser/registry/utils.js",
|
|
358
331
|
"bun": "./dist/registry/utils.js",
|
|
359
332
|
"node": "./dist/node/registry/utils.js",
|
|
360
|
-
"browser": "./dist/browser/registry/utils.js",
|
|
361
333
|
"default": "./dist/registry/utils.js"
|
|
362
334
|
}
|
|
363
335
|
},
|
|
364
336
|
"types": "./dist/index.d.ts",
|
|
365
337
|
"dependencies": {
|
|
366
|
-
"@contractspec/bundle.library": "3.7.
|
|
367
|
-
"@contractspec/lib.surface-runtime": "0.5.
|
|
368
|
-
"@contractspec/example.agent-console": "3.7.
|
|
369
|
-
"@contractspec/example.analytics-dashboard": "3.7.
|
|
370
|
-
"@contractspec/example.crm-pipeline": "3.7.
|
|
371
|
-
"@contractspec/example.integration-hub": "3.7.
|
|
372
|
-
"@contractspec/example.marketplace": "3.7.
|
|
373
|
-
"@contractspec/example.saas-boilerplate": "3.7.
|
|
374
|
-
"@contractspec/example.workflow-system": "3.7.
|
|
375
|
-
"@contractspec/lib.contracts-spec": "3.7.
|
|
376
|
-
"@contractspec/lib.contracts-runtime-client-react": "3.7.
|
|
377
|
-
"@contractspec/lib.design-system": "3.7.
|
|
378
|
-
"@contractspec/lib.email": "3.7.
|
|
379
|
-
"@contractspec/lib.example-shared-ui": "6.0.
|
|
380
|
-
"@contractspec/lib.logger": "3.7.
|
|
381
|
-
"@contractspec/lib.runtime-sandbox": "2.7.
|
|
382
|
-
"@contractspec/lib.ui-kit-core": "3.7.
|
|
383
|
-
"@contractspec/lib.ui-kit-web": "3.7.
|
|
384
|
-
"@contractspec/lib.ui-link": "3.7.
|
|
385
|
-
"@contractspec/module.examples": "3.7.
|
|
338
|
+
"@contractspec/bundle.library": "3.7.1",
|
|
339
|
+
"@contractspec/lib.surface-runtime": "0.5.1",
|
|
340
|
+
"@contractspec/example.agent-console": "3.7.1",
|
|
341
|
+
"@contractspec/example.analytics-dashboard": "3.7.1",
|
|
342
|
+
"@contractspec/example.crm-pipeline": "3.7.1",
|
|
343
|
+
"@contractspec/example.integration-hub": "3.7.1",
|
|
344
|
+
"@contractspec/example.marketplace": "3.7.1",
|
|
345
|
+
"@contractspec/example.saas-boilerplate": "3.7.1",
|
|
346
|
+
"@contractspec/example.workflow-system": "3.7.1",
|
|
347
|
+
"@contractspec/lib.contracts-spec": "3.7.1",
|
|
348
|
+
"@contractspec/lib.contracts-runtime-client-react": "3.7.1",
|
|
349
|
+
"@contractspec/lib.design-system": "3.7.1",
|
|
350
|
+
"@contractspec/lib.email": "3.7.1",
|
|
351
|
+
"@contractspec/lib.example-shared-ui": "6.0.1",
|
|
352
|
+
"@contractspec/lib.logger": "3.7.1",
|
|
353
|
+
"@contractspec/lib.runtime-sandbox": "2.7.1",
|
|
354
|
+
"@contractspec/lib.ui-kit-core": "3.7.1",
|
|
355
|
+
"@contractspec/lib.ui-kit-web": "3.7.1",
|
|
356
|
+
"@contractspec/lib.ui-link": "3.7.1",
|
|
357
|
+
"@contractspec/module.examples": "3.7.1",
|
|
386
358
|
"@electric-sql/pglite": "^0.3.14",
|
|
387
359
|
"@hookform/resolvers": "^5.2.2",
|
|
388
360
|
"@scaleway/sdk": "^3.3.1",
|
|
@@ -397,9 +369,9 @@
|
|
|
397
369
|
},
|
|
398
370
|
"devDependencies": {
|
|
399
371
|
"@types/react": "~19.2.14",
|
|
400
|
-
"@contractspec/tool.typescript": "3.7.
|
|
372
|
+
"@contractspec/tool.typescript": "3.7.1",
|
|
401
373
|
"typescript": "^5.9.3",
|
|
402
|
-
"@contractspec/tool.bun": "3.7.
|
|
374
|
+
"@contractspec/tool.bun": "3.7.1"
|
|
403
375
|
},
|
|
404
376
|
"publishConfig": {
|
|
405
377
|
"access": "public",
|
|
@@ -407,345 +379,317 @@
|
|
|
407
379
|
"exports": {
|
|
408
380
|
".": {
|
|
409
381
|
"types": "./dist/index.d.ts",
|
|
382
|
+
"browser": "./dist/browser/index.js",
|
|
410
383
|
"bun": "./dist/index.js",
|
|
411
384
|
"node": "./dist/node/index.js",
|
|
412
|
-
"browser": "./dist/browser/index.js",
|
|
413
385
|
"default": "./dist/index.js"
|
|
414
386
|
},
|
|
415
387
|
"./bundles": {
|
|
416
388
|
"types": "./dist/bundles/index.d.ts",
|
|
417
|
-
"bun": "./dist/bundles/index.js",
|
|
418
|
-
"node": "./dist/node/bundles/index.js",
|
|
419
389
|
"browser": "./dist/browser/bundles/index.js",
|
|
420
|
-
"default": "./dist/bundles/index.js"
|
|
421
|
-
},
|
|
422
|
-
"./bundles/index": {
|
|
423
|
-
"types": "./dist/bundles/index.d.ts",
|
|
424
390
|
"bun": "./dist/bundles/index.js",
|
|
425
391
|
"node": "./dist/node/bundles/index.js",
|
|
426
|
-
"browser": "./dist/browser/bundles/index.js",
|
|
427
392
|
"default": "./dist/bundles/index.js"
|
|
428
393
|
},
|
|
429
394
|
"./bundles/MarketingBundle": {
|
|
430
395
|
"types": "./dist/bundles/MarketingBundle.d.ts",
|
|
396
|
+
"browser": "./dist/browser/bundles/MarketingBundle.js",
|
|
431
397
|
"bun": "./dist/bundles/MarketingBundle.js",
|
|
432
398
|
"node": "./dist/node/bundles/MarketingBundle.js",
|
|
433
|
-
"browser": "./dist/browser/bundles/MarketingBundle.js",
|
|
434
399
|
"default": "./dist/bundles/MarketingBundle.js"
|
|
435
400
|
},
|
|
436
401
|
"./components/marketing": {
|
|
437
402
|
"types": "./dist/components/marketing/index.d.ts",
|
|
403
|
+
"browser": "./dist/browser/components/marketing/index.js",
|
|
438
404
|
"bun": "./dist/components/marketing/index.js",
|
|
439
405
|
"node": "./dist/node/components/marketing/index.js",
|
|
440
|
-
"browser": "./dist/browser/components/marketing/index.js",
|
|
441
406
|
"default": "./dist/components/marketing/index.js"
|
|
442
407
|
},
|
|
443
408
|
"./components/marketing/ChangelogPage": {
|
|
444
409
|
"types": "./dist/components/marketing/ChangelogPage.d.ts",
|
|
410
|
+
"browser": "./dist/browser/components/marketing/ChangelogPage.js",
|
|
445
411
|
"bun": "./dist/components/marketing/ChangelogPage.js",
|
|
446
412
|
"node": "./dist/node/components/marketing/ChangelogPage.js",
|
|
447
|
-
"browser": "./dist/browser/components/marketing/ChangelogPage.js",
|
|
448
413
|
"default": "./dist/components/marketing/ChangelogPage.js"
|
|
449
414
|
},
|
|
450
415
|
"./components/marketing/CofounderPage": {
|
|
451
416
|
"types": "./dist/components/marketing/CofounderPage.d.ts",
|
|
417
|
+
"browser": "./dist/browser/components/marketing/CofounderPage.js",
|
|
452
418
|
"bun": "./dist/components/marketing/CofounderPage.js",
|
|
453
419
|
"node": "./dist/node/components/marketing/CofounderPage.js",
|
|
454
|
-
"browser": "./dist/browser/components/marketing/CofounderPage.js",
|
|
455
420
|
"default": "./dist/components/marketing/CofounderPage.js"
|
|
456
421
|
},
|
|
457
422
|
"./components/marketing/ContactClient": {
|
|
458
423
|
"types": "./dist/components/marketing/ContactClient.d.ts",
|
|
424
|
+
"browser": "./dist/browser/components/marketing/ContactClient.js",
|
|
459
425
|
"bun": "./dist/components/marketing/ContactClient.js",
|
|
460
426
|
"node": "./dist/node/components/marketing/ContactClient.js",
|
|
461
|
-
"browser": "./dist/browser/components/marketing/ContactClient.js",
|
|
462
427
|
"default": "./dist/components/marketing/ContactClient.js"
|
|
463
428
|
},
|
|
464
429
|
"./components/marketing/ContributePage": {
|
|
465
430
|
"types": "./dist/components/marketing/ContributePage.d.ts",
|
|
431
|
+
"browser": "./dist/browser/components/marketing/ContributePage.js",
|
|
466
432
|
"bun": "./dist/components/marketing/ContributePage.js",
|
|
467
433
|
"node": "./dist/node/components/marketing/ContributePage.js",
|
|
468
|
-
"browser": "./dist/browser/components/marketing/ContributePage.js",
|
|
469
434
|
"default": "./dist/components/marketing/ContributePage.js"
|
|
470
435
|
},
|
|
471
436
|
"./components/marketing/DesignPartnerPage": {
|
|
472
437
|
"types": "./dist/components/marketing/DesignPartnerPage.d.ts",
|
|
438
|
+
"browser": "./dist/browser/components/marketing/DesignPartnerPage.js",
|
|
473
439
|
"bun": "./dist/components/marketing/DesignPartnerPage.js",
|
|
474
440
|
"node": "./dist/node/components/marketing/DesignPartnerPage.js",
|
|
475
|
-
"browser": "./dist/browser/components/marketing/DesignPartnerPage.js",
|
|
476
441
|
"default": "./dist/components/marketing/DesignPartnerPage.js"
|
|
477
442
|
},
|
|
478
|
-
"./components/marketing/index": {
|
|
479
|
-
"types": "./dist/components/marketing/index.d.ts",
|
|
480
|
-
"bun": "./dist/components/marketing/index.js",
|
|
481
|
-
"node": "./dist/node/components/marketing/index.js",
|
|
482
|
-
"browser": "./dist/browser/components/marketing/index.js",
|
|
483
|
-
"default": "./dist/components/marketing/index.js"
|
|
484
|
-
},
|
|
485
443
|
"./components/marketing/LandingPage": {
|
|
486
444
|
"types": "./dist/components/marketing/LandingPage.d.ts",
|
|
445
|
+
"browser": "./dist/browser/components/marketing/LandingPage.js",
|
|
487
446
|
"bun": "./dist/components/marketing/LandingPage.js",
|
|
488
447
|
"node": "./dist/node/components/marketing/LandingPage.js",
|
|
489
|
-
"browser": "./dist/browser/components/marketing/LandingPage.js",
|
|
490
448
|
"default": "./dist/components/marketing/LandingPage.js"
|
|
491
449
|
},
|
|
492
450
|
"./components/marketing/pricing-thinking-modal": {
|
|
493
451
|
"types": "./dist/components/marketing/pricing-thinking-modal.d.ts",
|
|
452
|
+
"browser": "./dist/browser/components/marketing/pricing-thinking-modal.js",
|
|
494
453
|
"bun": "./dist/components/marketing/pricing-thinking-modal.js",
|
|
495
454
|
"node": "./dist/node/components/marketing/pricing-thinking-modal.js",
|
|
496
|
-
"browser": "./dist/browser/components/marketing/pricing-thinking-modal.js",
|
|
497
455
|
"default": "./dist/components/marketing/pricing-thinking-modal.js"
|
|
498
456
|
},
|
|
499
457
|
"./components/marketing/PricingClient": {
|
|
500
458
|
"types": "./dist/components/marketing/PricingClient.d.ts",
|
|
459
|
+
"browser": "./dist/browser/components/marketing/PricingClient.js",
|
|
501
460
|
"bun": "./dist/components/marketing/PricingClient.js",
|
|
502
461
|
"node": "./dist/node/components/marketing/PricingClient.js",
|
|
503
|
-
"browser": "./dist/browser/components/marketing/PricingClient.js",
|
|
504
462
|
"default": "./dist/components/marketing/PricingClient.js"
|
|
505
463
|
},
|
|
506
464
|
"./components/marketing/ProductClientPage": {
|
|
507
465
|
"types": "./dist/components/marketing/ProductClientPage.d.ts",
|
|
466
|
+
"browser": "./dist/browser/components/marketing/ProductClientPage.js",
|
|
508
467
|
"bun": "./dist/components/marketing/ProductClientPage.js",
|
|
509
468
|
"node": "./dist/node/components/marketing/ProductClientPage.js",
|
|
510
|
-
"browser": "./dist/browser/components/marketing/ProductClientPage.js",
|
|
511
469
|
"default": "./dist/components/marketing/ProductClientPage.js"
|
|
512
470
|
},
|
|
513
471
|
"./components/marketing/sections/AudienceSection": {
|
|
514
472
|
"types": "./dist/components/marketing/sections/AudienceSection.d.ts",
|
|
473
|
+
"browser": "./dist/browser/components/marketing/sections/AudienceSection.js",
|
|
515
474
|
"bun": "./dist/components/marketing/sections/AudienceSection.js",
|
|
516
475
|
"node": "./dist/node/components/marketing/sections/AudienceSection.js",
|
|
517
|
-
"browser": "./dist/browser/components/marketing/sections/AudienceSection.js",
|
|
518
476
|
"default": "./dist/components/marketing/sections/AudienceSection.js"
|
|
519
477
|
},
|
|
520
478
|
"./components/marketing/sections/CorePositioningSection": {
|
|
521
479
|
"types": "./dist/components/marketing/sections/CorePositioningSection.d.ts",
|
|
480
|
+
"browser": "./dist/browser/components/marketing/sections/CorePositioningSection.js",
|
|
522
481
|
"bun": "./dist/components/marketing/sections/CorePositioningSection.js",
|
|
523
482
|
"node": "./dist/node/components/marketing/sections/CorePositioningSection.js",
|
|
524
|
-
"browser": "./dist/browser/components/marketing/sections/CorePositioningSection.js",
|
|
525
483
|
"default": "./dist/components/marketing/sections/CorePositioningSection.js"
|
|
526
484
|
},
|
|
527
485
|
"./components/marketing/sections/CtaSection": {
|
|
528
486
|
"types": "./dist/components/marketing/sections/CtaSection.d.ts",
|
|
487
|
+
"browser": "./dist/browser/components/marketing/sections/CtaSection.js",
|
|
529
488
|
"bun": "./dist/components/marketing/sections/CtaSection.js",
|
|
530
489
|
"node": "./dist/node/components/marketing/sections/CtaSection.js",
|
|
531
|
-
"browser": "./dist/browser/components/marketing/sections/CtaSection.js",
|
|
532
490
|
"default": "./dist/components/marketing/sections/CtaSection.js"
|
|
533
491
|
},
|
|
534
492
|
"./components/marketing/sections/DevelopersSection": {
|
|
535
493
|
"types": "./dist/components/marketing/sections/DevelopersSection.d.ts",
|
|
494
|
+
"browser": "./dist/browser/components/marketing/sections/DevelopersSection.js",
|
|
536
495
|
"bun": "./dist/components/marketing/sections/DevelopersSection.js",
|
|
537
496
|
"node": "./dist/node/components/marketing/sections/DevelopersSection.js",
|
|
538
|
-
"browser": "./dist/browser/components/marketing/sections/DevelopersSection.js",
|
|
539
497
|
"default": "./dist/components/marketing/sections/DevelopersSection.js"
|
|
540
498
|
},
|
|
541
499
|
"./components/marketing/sections/FearsSection": {
|
|
542
500
|
"types": "./dist/components/marketing/sections/FearsSection.d.ts",
|
|
501
|
+
"browser": "./dist/browser/components/marketing/sections/FearsSection.js",
|
|
543
502
|
"bun": "./dist/components/marketing/sections/FearsSection.js",
|
|
544
503
|
"node": "./dist/node/components/marketing/sections/FearsSection.js",
|
|
545
|
-
"browser": "./dist/browser/components/marketing/sections/FearsSection.js",
|
|
546
504
|
"default": "./dist/components/marketing/sections/FearsSection.js"
|
|
547
505
|
},
|
|
548
506
|
"./components/marketing/sections/HeroMarketingSection": {
|
|
549
507
|
"types": "./dist/components/marketing/sections/HeroMarketingSection.d.ts",
|
|
508
|
+
"browser": "./dist/browser/components/marketing/sections/HeroMarketingSection.js",
|
|
550
509
|
"bun": "./dist/components/marketing/sections/HeroMarketingSection.js",
|
|
551
510
|
"node": "./dist/node/components/marketing/sections/HeroMarketingSection.js",
|
|
552
|
-
"browser": "./dist/browser/components/marketing/sections/HeroMarketingSection.js",
|
|
553
511
|
"default": "./dist/components/marketing/sections/HeroMarketingSection.js"
|
|
554
512
|
},
|
|
555
513
|
"./components/marketing/sections/IconGridSection": {
|
|
556
514
|
"types": "./dist/components/marketing/sections/IconGridSection.d.ts",
|
|
515
|
+
"browser": "./dist/browser/components/marketing/sections/IconGridSection.js",
|
|
557
516
|
"bun": "./dist/components/marketing/sections/IconGridSection.js",
|
|
558
517
|
"node": "./dist/node/components/marketing/sections/IconGridSection.js",
|
|
559
|
-
"browser": "./dist/browser/components/marketing/sections/IconGridSection.js",
|
|
560
518
|
"default": "./dist/components/marketing/sections/IconGridSection.js"
|
|
561
519
|
},
|
|
562
520
|
"./components/marketing/sections/OutputsSection": {
|
|
563
521
|
"types": "./dist/components/marketing/sections/OutputsSection.d.ts",
|
|
522
|
+
"browser": "./dist/browser/components/marketing/sections/OutputsSection.js",
|
|
564
523
|
"bun": "./dist/components/marketing/sections/OutputsSection.js",
|
|
565
524
|
"node": "./dist/node/components/marketing/sections/OutputsSection.js",
|
|
566
|
-
"browser": "./dist/browser/components/marketing/sections/OutputsSection.js",
|
|
567
525
|
"default": "./dist/components/marketing/sections/OutputsSection.js"
|
|
568
526
|
},
|
|
569
527
|
"./components/marketing/sections/ProblemSection": {
|
|
570
528
|
"types": "./dist/components/marketing/sections/ProblemSection.d.ts",
|
|
529
|
+
"browser": "./dist/browser/components/marketing/sections/ProblemSection.js",
|
|
571
530
|
"bun": "./dist/components/marketing/sections/ProblemSection.js",
|
|
572
531
|
"node": "./dist/node/components/marketing/sections/ProblemSection.js",
|
|
573
|
-
"browser": "./dist/browser/components/marketing/sections/ProblemSection.js",
|
|
574
532
|
"default": "./dist/components/marketing/sections/ProblemSection.js"
|
|
575
533
|
},
|
|
576
534
|
"./components/marketing/sections/SolutionSection": {
|
|
577
535
|
"types": "./dist/components/marketing/sections/SolutionSection.d.ts",
|
|
536
|
+
"browser": "./dist/browser/components/marketing/sections/SolutionSection.js",
|
|
578
537
|
"bun": "./dist/components/marketing/sections/SolutionSection.js",
|
|
579
538
|
"node": "./dist/node/components/marketing/sections/SolutionSection.js",
|
|
580
|
-
"browser": "./dist/browser/components/marketing/sections/SolutionSection.js",
|
|
581
539
|
"default": "./dist/components/marketing/sections/SolutionSection.js"
|
|
582
540
|
},
|
|
583
541
|
"./components/marketing/sections/StepsSection": {
|
|
584
542
|
"types": "./dist/components/marketing/sections/StepsSection.d.ts",
|
|
543
|
+
"browser": "./dist/browser/components/marketing/sections/StepsSection.js",
|
|
585
544
|
"bun": "./dist/components/marketing/sections/StepsSection.js",
|
|
586
545
|
"node": "./dist/node/components/marketing/sections/StepsSection.js",
|
|
587
|
-
"browser": "./dist/browser/components/marketing/sections/StepsSection.js",
|
|
588
546
|
"default": "./dist/components/marketing/sections/StepsSection.js"
|
|
589
547
|
},
|
|
590
548
|
"./components/marketing/studio-signup-section": {
|
|
591
549
|
"types": "./dist/components/marketing/studio-signup-section.d.ts",
|
|
550
|
+
"browser": "./dist/browser/components/marketing/studio-signup-section.js",
|
|
592
551
|
"bun": "./dist/components/marketing/studio-signup-section.js",
|
|
593
552
|
"node": "./dist/node/components/marketing/studio-signup-section.js",
|
|
594
|
-
"browser": "./dist/browser/components/marketing/studio-signup-section.js",
|
|
595
553
|
"default": "./dist/components/marketing/studio-signup-section.js"
|
|
596
554
|
},
|
|
597
555
|
"./components/templates": {
|
|
598
556
|
"types": "./dist/components/templates/index.d.ts",
|
|
599
|
-
"bun": "./dist/components/templates/index.js",
|
|
600
|
-
"node": "./dist/node/components/templates/index.js",
|
|
601
557
|
"browser": "./dist/browser/components/templates/index.js",
|
|
602
|
-
"default": "./dist/components/templates/index.js"
|
|
603
|
-
},
|
|
604
|
-
"./components/templates/index": {
|
|
605
|
-
"types": "./dist/components/templates/index.d.ts",
|
|
606
558
|
"bun": "./dist/components/templates/index.js",
|
|
607
559
|
"node": "./dist/node/components/templates/index.js",
|
|
608
|
-
"browser": "./dist/browser/components/templates/index.js",
|
|
609
560
|
"default": "./dist/components/templates/index.js"
|
|
610
561
|
},
|
|
611
562
|
"./components/templates/TemplatesClientPage": {
|
|
612
563
|
"types": "./dist/components/templates/TemplatesClientPage.d.ts",
|
|
564
|
+
"browser": "./dist/browser/components/templates/TemplatesClientPage.js",
|
|
613
565
|
"bun": "./dist/components/templates/TemplatesClientPage.js",
|
|
614
566
|
"node": "./dist/node/components/templates/TemplatesClientPage.js",
|
|
615
|
-
"browser": "./dist/browser/components/templates/TemplatesClientPage.js",
|
|
616
567
|
"default": "./dist/components/templates/TemplatesClientPage.js"
|
|
617
568
|
},
|
|
618
569
|
"./components/templates/TemplatesPage": {
|
|
619
570
|
"types": "./dist/components/templates/TemplatesPage.d.ts",
|
|
571
|
+
"browser": "./dist/browser/components/templates/TemplatesPage.js",
|
|
620
572
|
"bun": "./dist/components/templates/TemplatesPage.js",
|
|
621
573
|
"node": "./dist/node/components/templates/TemplatesPage.js",
|
|
622
|
-
"browser": "./dist/browser/components/templates/TemplatesPage.js",
|
|
623
574
|
"default": "./dist/components/templates/TemplatesPage.js"
|
|
624
575
|
},
|
|
625
576
|
"./components/templates/TemplatesPreviewModal": {
|
|
626
577
|
"types": "./dist/components/templates/TemplatesPreviewModal.d.ts",
|
|
578
|
+
"browser": "./dist/browser/components/templates/TemplatesPreviewModal.js",
|
|
627
579
|
"bun": "./dist/components/templates/TemplatesPreviewModal.js",
|
|
628
580
|
"node": "./dist/node/components/templates/TemplatesPreviewModal.js",
|
|
629
|
-
"browser": "./dist/browser/components/templates/TemplatesPreviewModal.js",
|
|
630
581
|
"default": "./dist/components/templates/TemplatesPreviewModal.js"
|
|
631
582
|
},
|
|
632
583
|
"./libs/email/client": {
|
|
633
584
|
"types": "./dist/libs/email/client.d.ts",
|
|
585
|
+
"browser": "./dist/browser/libs/email/client.js",
|
|
634
586
|
"bun": "./dist/libs/email/client.js",
|
|
635
587
|
"node": "./dist/node/libs/email/client.js",
|
|
636
|
-
"browser": "./dist/browser/libs/email/client.js",
|
|
637
588
|
"default": "./dist/libs/email/client.js"
|
|
638
589
|
},
|
|
639
590
|
"./libs/email/contact": {
|
|
640
591
|
"types": "./dist/libs/email/contact.d.ts",
|
|
592
|
+
"browser": "./dist/browser/libs/email/contact.js",
|
|
641
593
|
"bun": "./dist/libs/email/contact.js",
|
|
642
594
|
"node": "./dist/node/libs/email/contact.js",
|
|
643
|
-
"browser": "./dist/browser/libs/email/contact.js",
|
|
644
595
|
"default": "./dist/libs/email/contact.js"
|
|
645
596
|
},
|
|
646
597
|
"./libs/email/newsletter": {
|
|
647
598
|
"types": "./dist/libs/email/newsletter.d.ts",
|
|
599
|
+
"browser": "./dist/browser/libs/email/newsletter.js",
|
|
648
600
|
"bun": "./dist/libs/email/newsletter.js",
|
|
649
601
|
"node": "./dist/node/libs/email/newsletter.js",
|
|
650
|
-
"browser": "./dist/browser/libs/email/newsletter.js",
|
|
651
602
|
"default": "./dist/libs/email/newsletter.js"
|
|
652
603
|
},
|
|
653
604
|
"./libs/email/types": {
|
|
654
605
|
"types": "./dist/libs/email/types.d.ts",
|
|
606
|
+
"browser": "./dist/browser/libs/email/types.js",
|
|
655
607
|
"bun": "./dist/libs/email/types.js",
|
|
656
608
|
"node": "./dist/node/libs/email/types.js",
|
|
657
|
-
"browser": "./dist/browser/libs/email/types.js",
|
|
658
609
|
"default": "./dist/libs/email/types.js"
|
|
659
610
|
},
|
|
660
611
|
"./libs/email/utils": {
|
|
661
612
|
"types": "./dist/libs/email/utils.d.ts",
|
|
613
|
+
"browser": "./dist/browser/libs/email/utils.js",
|
|
662
614
|
"bun": "./dist/libs/email/utils.js",
|
|
663
615
|
"node": "./dist/node/libs/email/utils.js",
|
|
664
|
-
"browser": "./dist/browser/libs/email/utils.js",
|
|
665
616
|
"default": "./dist/libs/email/utils.js"
|
|
666
617
|
},
|
|
667
618
|
"./libs/email/waitlist": {
|
|
668
619
|
"types": "./dist/libs/email/waitlist.d.ts",
|
|
620
|
+
"browser": "./dist/browser/libs/email/waitlist.js",
|
|
669
621
|
"bun": "./dist/libs/email/waitlist.js",
|
|
670
622
|
"node": "./dist/node/libs/email/waitlist.js",
|
|
671
|
-
"browser": "./dist/browser/libs/email/waitlist.js",
|
|
672
623
|
"default": "./dist/libs/email/waitlist.js"
|
|
673
624
|
},
|
|
674
625
|
"./libs/email/waitlist-application": {
|
|
675
626
|
"types": "./dist/libs/email/waitlist-application.d.ts",
|
|
627
|
+
"browser": "./dist/browser/libs/email/waitlist-application.js",
|
|
676
628
|
"bun": "./dist/libs/email/waitlist-application.js",
|
|
677
629
|
"node": "./dist/node/libs/email/waitlist-application.js",
|
|
678
|
-
"browser": "./dist/browser/libs/email/waitlist-application.js",
|
|
679
630
|
"default": "./dist/libs/email/waitlist-application.js"
|
|
680
631
|
},
|
|
681
632
|
"./libs/pricing-examples": {
|
|
682
633
|
"types": "./dist/libs/pricing-examples.d.ts",
|
|
634
|
+
"browser": "./dist/browser/libs/pricing-examples.js",
|
|
683
635
|
"bun": "./dist/libs/pricing-examples.js",
|
|
684
636
|
"node": "./dist/node/libs/pricing-examples.js",
|
|
685
|
-
"browser": "./dist/browser/libs/pricing-examples.js",
|
|
686
637
|
"default": "./dist/libs/pricing-examples.js"
|
|
687
638
|
},
|
|
688
639
|
"./registry": {
|
|
689
640
|
"types": "./dist/registry/index.d.ts",
|
|
641
|
+
"browser": "./dist/browser/registry/index.js",
|
|
690
642
|
"bun": "./dist/registry/index.js",
|
|
691
643
|
"node": "./dist/node/registry/index.js",
|
|
692
|
-
"browser": "./dist/browser/registry/index.js",
|
|
693
644
|
"default": "./dist/registry/index.js"
|
|
694
645
|
},
|
|
695
646
|
"./registry/engine": {
|
|
696
647
|
"types": "./dist/registry/engine.d.ts",
|
|
648
|
+
"browser": "./dist/browser/registry/engine.js",
|
|
697
649
|
"bun": "./dist/registry/engine.js",
|
|
698
650
|
"node": "./dist/node/registry/engine.js",
|
|
699
|
-
"browser": "./dist/browser/registry/engine.js",
|
|
700
651
|
"default": "./dist/registry/engine.js"
|
|
701
652
|
},
|
|
702
653
|
"./registry/factory": {
|
|
703
654
|
"types": "./dist/registry/factory.d.ts",
|
|
655
|
+
"browser": "./dist/browser/registry/factory.js",
|
|
704
656
|
"bun": "./dist/registry/factory.js",
|
|
705
657
|
"node": "./dist/node/registry/factory.js",
|
|
706
|
-
"browser": "./dist/browser/registry/factory.js",
|
|
707
658
|
"default": "./dist/registry/factory.js"
|
|
708
659
|
},
|
|
709
|
-
"./registry/index": {
|
|
710
|
-
"types": "./dist/registry/index.d.ts",
|
|
711
|
-
"bun": "./dist/registry/index.js",
|
|
712
|
-
"node": "./dist/node/registry/index.js",
|
|
713
|
-
"browser": "./dist/browser/registry/index.js",
|
|
714
|
-
"default": "./dist/registry/index.js"
|
|
715
|
-
},
|
|
716
660
|
"./registry/registry": {
|
|
717
661
|
"types": "./dist/registry/registry.d.ts",
|
|
662
|
+
"browser": "./dist/browser/registry/registry.js",
|
|
718
663
|
"bun": "./dist/registry/registry.js",
|
|
719
664
|
"node": "./dist/node/registry/registry.js",
|
|
720
|
-
"browser": "./dist/browser/registry/registry.js",
|
|
721
665
|
"default": "./dist/registry/registry.js"
|
|
722
666
|
},
|
|
723
667
|
"./registry/registry-docs": {
|
|
724
668
|
"types": "./dist/registry/registry-docs.d.ts",
|
|
669
|
+
"browser": "./dist/browser/registry/registry-docs.js",
|
|
725
670
|
"bun": "./dist/registry/registry-docs.js",
|
|
726
671
|
"node": "./dist/node/registry/registry-docs.js",
|
|
727
|
-
"browser": "./dist/browser/registry/registry-docs.js",
|
|
728
672
|
"default": "./dist/registry/registry-docs.js"
|
|
729
673
|
},
|
|
730
674
|
"./registry/registry-landing": {
|
|
731
675
|
"types": "./dist/registry/registry-landing.d.ts",
|
|
676
|
+
"browser": "./dist/browser/registry/registry-landing.js",
|
|
732
677
|
"bun": "./dist/registry/registry-landing.js",
|
|
733
678
|
"node": "./dist/node/registry/registry-landing.js",
|
|
734
|
-
"browser": "./dist/browser/registry/registry-landing.js",
|
|
735
679
|
"default": "./dist/registry/registry-landing.js"
|
|
736
680
|
},
|
|
737
681
|
"./registry/types": {
|
|
738
682
|
"types": "./dist/registry/types.d.ts",
|
|
683
|
+
"browser": "./dist/browser/registry/types.js",
|
|
739
684
|
"bun": "./dist/registry/types.js",
|
|
740
685
|
"node": "./dist/node/registry/types.js",
|
|
741
|
-
"browser": "./dist/browser/registry/types.js",
|
|
742
686
|
"default": "./dist/registry/types.js"
|
|
743
687
|
},
|
|
744
688
|
"./registry/utils": {
|
|
745
689
|
"types": "./dist/registry/utils.d.ts",
|
|
690
|
+
"browser": "./dist/browser/registry/utils.js",
|
|
746
691
|
"bun": "./dist/registry/utils.js",
|
|
747
692
|
"node": "./dist/node/registry/utils.js",
|
|
748
|
-
"browser": "./dist/browser/registry/utils.js",
|
|
749
693
|
"default": "./dist/registry/utils.js"
|
|
750
694
|
}
|
|
751
695
|
}
|