@tsparticles/template-landing 4.1.3 → 4.2.0
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/CHANGELOG.md +10 -0
- package/README.md +3 -0
- package/package.json +4 -3
- package/template/angular/package.json +34 -0
- package/template/angular/src/app/app.component.css +265 -0
- package/template/angular/src/app/app.component.html +72 -0
- package/template/angular/src/app/app.component.ts +57 -0
- package/template/angular-confetti/package.json +36 -0
- package/template/angular-confetti/src/app/app.component.css +259 -0
- package/template/angular-confetti/src/app/app.component.html +66 -0
- package/template/angular-confetti/src/app/app.component.ts +49 -0
- package/template/angular-fireworks/package.json +36 -0
- package/template/angular-fireworks/src/app/app.component.css +259 -0
- package/template/angular-fireworks/src/app/app.component.html +66 -0
- package/template/angular-fireworks/src/app/app.component.ts +49 -0
- package/template/astro/package.json +21 -0
- package/template/astro/src/pages/index.astro +143 -0
- package/template/ember/app/templates/application.hbs +75 -0
- package/template/ember/package.json +19 -0
- package/template/inferno/package.json +23 -0
- package/template/inferno/src/App.css +259 -0
- package/template/inferno/src/App.tsx +126 -0
- package/template/jquery/package.json +23 -0
- package/template/jquery/src/main.ts +161 -0
- package/template/jquery/src/style.css +259 -0
- package/template/lit/package.json +22 -0
- package/template/lit/src/my-app.ts +146 -0
- package/template/nextjs/package.json +19 -0
- package/template/nextjs/src/app/page.tsx +155 -0
- package/template/nextjs/src/app/providers.tsx +15 -0
- package/template/nuxt2/package.json +17 -0
- package/template/nuxt2/pages/index.vue +375 -0
- package/template/nuxt3/app.vue +374 -0
- package/template/nuxt3/package.json +18 -0
- package/template/nuxt4/app.vue +374 -0
- package/template/nuxt4/package.json +18 -0
- package/template/preact/package.json +23 -0
- package/template/preact/src/App.css +259 -0
- package/template/preact/src/App.tsx +152 -0
- package/template/qwik/package.json +22 -0
- package/template/qwik/src/App.tsx +150 -0
- package/template/react/package.json +19 -0
- package/template/react/src/App.css +265 -0
- package/template/react/src/App.tsx +114 -0
- package/template/riot/package.json +22 -0
- package/template/riot/src/app.riot +123 -0
- package/template/solid/package.json +18 -0
- package/template/solid/src/App.tsx +170 -0
- package/template/solid/src/index.css +259 -0
- package/template/solid/src/main.tsx +9 -0
- package/template/stencil/package.json +16 -0
- package/template/stencil/src/components/app-home/app-home.tsx +135 -0
- package/template/svelte/package.json +20 -0
- package/template/svelte/src/App.svelte +424 -0
- package/template/svelte/src/main.ts +12 -0
- package/template/vanilla/LICENSE +21 -0
- package/template/vue2/package.json +21 -0
- package/template/vue2/src/App.vue +376 -0
- package/template/vue3/package.json +19 -0
- package/template/vue3/src/App.vue +372 -0
- package/template/vue3/src/main.ts +14 -0
- package/template/webcomponents/package.json +21 -0
- package/template/webcomponents/src/main.ts +160 -0
- package/template/webcomponents/src/style.css +259 -0
|
@@ -0,0 +1,424 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import Particles from "@tsparticles/svelte";
|
|
3
|
+
import type { ISourceOptions } from "@tsparticles/engine";
|
|
4
|
+
|
|
5
|
+
const options: ISourceOptions = {
|
|
6
|
+
fullScreen: { enable: true, zIndex: -1 },
|
|
7
|
+
background: { color: { value: "#080818" } },
|
|
8
|
+
fpsLimit: 60,
|
|
9
|
+
particles: {
|
|
10
|
+
number: { value: 100, density: { enable: true } },
|
|
11
|
+
color: { value: ["#6c5ce7", "#00cec9", "#fd79a8", "#ffeaa7"] },
|
|
12
|
+
shape: { type: "circle" },
|
|
13
|
+
opacity: { value: 0.4, random: true },
|
|
14
|
+
size: { value: { min: 1, max: 4 }, random: true },
|
|
15
|
+
links: {
|
|
16
|
+
enable: true,
|
|
17
|
+
distance: 150,
|
|
18
|
+
color: "#6c5ce7",
|
|
19
|
+
opacity: 0.15,
|
|
20
|
+
width: 1,
|
|
21
|
+
},
|
|
22
|
+
move: {
|
|
23
|
+
enable: true,
|
|
24
|
+
speed: 1.5,
|
|
25
|
+
direction: "none",
|
|
26
|
+
random: true,
|
|
27
|
+
straight: false,
|
|
28
|
+
outModes: { default: "out" },
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
interactivity: {
|
|
32
|
+
events: {
|
|
33
|
+
onHover: { enable: true, mode: "grab" },
|
|
34
|
+
},
|
|
35
|
+
modes: {
|
|
36
|
+
grab: { distance: 200, links: { opacity: 0.5 } },
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
detectRetina: true,
|
|
40
|
+
};
|
|
41
|
+
</script>
|
|
42
|
+
|
|
43
|
+
<section id="hero" class="section">
|
|
44
|
+
<div class="hero-content">
|
|
45
|
+
<h1>Build <span class="gradient-text">Amazing</span> Products</h1>
|
|
46
|
+
<p class="hero-subtitle">
|
|
47
|
+
Modern solutions for modern teams. Ship faster with less friction.
|
|
48
|
+
</p>
|
|
49
|
+
<div class="hero-cta">
|
|
50
|
+
<a href="#features" class="btn btn-primary btn-large">Get Started</a>
|
|
51
|
+
<a href="#features" class="btn btn-secondary btn-large">Learn More</a>
|
|
52
|
+
</div>
|
|
53
|
+
</div>
|
|
54
|
+
</section>
|
|
55
|
+
|
|
56
|
+
<section id="features" class="section">
|
|
57
|
+
<div class="container">
|
|
58
|
+
<h2>Features</h2>
|
|
59
|
+
<div class="features-grid">
|
|
60
|
+
<div class="feature-card">
|
|
61
|
+
<div class="feature-icon">⚡</div>
|
|
62
|
+
<h3>Lightning Fast</h3>
|
|
63
|
+
<p>Optimized for performance with minimal overhead.</p>
|
|
64
|
+
</div>
|
|
65
|
+
<div class="feature-card">
|
|
66
|
+
<div class="feature-icon">🔒</div>
|
|
67
|
+
<h3>Secure by Default</h3>
|
|
68
|
+
<p>Enterprise-grade security built into every layer.</p>
|
|
69
|
+
</div>
|
|
70
|
+
<div class="feature-card">
|
|
71
|
+
<div class="feature-icon">🛠️</div>
|
|
72
|
+
<h3>Developer First</h3>
|
|
73
|
+
<p>Clean APIs and comprehensive documentation.</p>
|
|
74
|
+
</div>
|
|
75
|
+
</div>
|
|
76
|
+
</div>
|
|
77
|
+
</section>
|
|
78
|
+
|
|
79
|
+
<section id="pricing" class="section">
|
|
80
|
+
<div class="container">
|
|
81
|
+
<h2>Pricing</h2>
|
|
82
|
+
<div class="pricing-grid">
|
|
83
|
+
<div class="pricing-card">
|
|
84
|
+
<h3>Starter</h3>
|
|
85
|
+
<div class="price">$0<span>/mo</span></div>
|
|
86
|
+
<ul>
|
|
87
|
+
<li>Up to 1,000 requests</li>
|
|
88
|
+
<li>Basic analytics</li>
|
|
89
|
+
<li>Community support</li>
|
|
90
|
+
</ul>
|
|
91
|
+
<a href="#cta" class="btn btn-secondary">Get Started</a>
|
|
92
|
+
</div>
|
|
93
|
+
<div class="pricing-card featured">
|
|
94
|
+
<h3>Professional</h3>
|
|
95
|
+
<div class="price">$29<span>/mo</span></div>
|
|
96
|
+
<ul>
|
|
97
|
+
<li>Up to 50,000 requests</li>
|
|
98
|
+
<li>Advanced analytics</li>
|
|
99
|
+
<li>Priority support</li>
|
|
100
|
+
<li>Custom integrations</li>
|
|
101
|
+
</ul>
|
|
102
|
+
<a href="#cta" class="btn btn-primary">Get Started</a>
|
|
103
|
+
</div>
|
|
104
|
+
<div class="pricing-card">
|
|
105
|
+
<h3>Enterprise</h3>
|
|
106
|
+
<div class="price">$99<span>/mo</span></div>
|
|
107
|
+
<ul>
|
|
108
|
+
<li>Unlimited requests</li>
|
|
109
|
+
<li>Real-time analytics</li>
|
|
110
|
+
<li>Dedicated support</li>
|
|
111
|
+
<li>Custom SLA</li>
|
|
112
|
+
</ul>
|
|
113
|
+
<a href="#cta" class="btn btn-secondary">Contact Us</a>
|
|
114
|
+
</div>
|
|
115
|
+
</div>
|
|
116
|
+
</div>
|
|
117
|
+
</section>
|
|
118
|
+
|
|
119
|
+
<section id="testimonials" class="section">
|
|
120
|
+
<div class="container">
|
|
121
|
+
<h2>What Our Users Say</h2>
|
|
122
|
+
<div class="testimonial-grid">
|
|
123
|
+
<div class="testimonial-card">
|
|
124
|
+
<p>"This platform transformed our workflow. The speed and reliability are unmatched."</p>
|
|
125
|
+
<div class="author">— Sarah K., CTO</div>
|
|
126
|
+
</div>
|
|
127
|
+
<div class="testimonial-card">
|
|
128
|
+
<p>"The developer experience is incredible. We built our entire product on top of it."</p>
|
|
129
|
+
<div class="author">— Marcus J., Lead Developer</div>
|
|
130
|
+
</div>
|
|
131
|
+
<div class="testimonial-card">
|
|
132
|
+
<p>"Outstanding support and documentation. Highly recommended for any team."</p>
|
|
133
|
+
<div class="author">— Elena R., Product Manager</div>
|
|
134
|
+
</div>
|
|
135
|
+
</div>
|
|
136
|
+
</div>
|
|
137
|
+
</section>
|
|
138
|
+
|
|
139
|
+
<section id="cta" class="section">
|
|
140
|
+
<div class="container">
|
|
141
|
+
<div class="cta-content">
|
|
142
|
+
<h2>Ready to Get Started?</h2>
|
|
143
|
+
<p>Join thousands of teams already building with us.</p>
|
|
144
|
+
<a href="#hero" class="btn btn-primary btn-large">Start Free Trial</a>
|
|
145
|
+
</div>
|
|
146
|
+
</div>
|
|
147
|
+
</section>
|
|
148
|
+
|
|
149
|
+
<footer id="footer">
|
|
150
|
+
<div class="container">
|
|
151
|
+
<div class="footer-content">
|
|
152
|
+
<p>© 2024 {{projectName}}. All rights reserved.</p>
|
|
153
|
+
<div class="footer-links">
|
|
154
|
+
<a href="#">Privacy Policy</a>
|
|
155
|
+
<a href="#">Terms of Service</a>
|
|
156
|
+
<a href="#">Contact</a>
|
|
157
|
+
</div>
|
|
158
|
+
</div>
|
|
159
|
+
</div>
|
|
160
|
+
</footer>
|
|
161
|
+
|
|
162
|
+
<Particles id="tsparticles" options={options} />
|
|
163
|
+
|
|
164
|
+
<style>
|
|
165
|
+
:global(*) {
|
|
166
|
+
margin: 0;
|
|
167
|
+
padding: 0;
|
|
168
|
+
box-sizing: border-box;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
:global(body) {
|
|
172
|
+
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
173
|
+
color: #fff;
|
|
174
|
+
background: #080818;
|
|
175
|
+
overflow-x: hidden;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.section {
|
|
179
|
+
min-height: 100vh;
|
|
180
|
+
display: flex;
|
|
181
|
+
align-items: center;
|
|
182
|
+
justify-content: center;
|
|
183
|
+
padding: 4rem 1rem;
|
|
184
|
+
position: relative;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.container {
|
|
188
|
+
max-width: 1100px;
|
|
189
|
+
width: 100%;
|
|
190
|
+
margin: 0 auto;
|
|
191
|
+
text-align: center;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
h2 {
|
|
195
|
+
font-size: 2.5em;
|
|
196
|
+
margin-bottom: 3rem;
|
|
197
|
+
background: linear-gradient(135deg, #6c5ce7, #00cec9);
|
|
198
|
+
-webkit-background-clip: text;
|
|
199
|
+
-webkit-text-fill-color: transparent;
|
|
200
|
+
background-clip: text;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
#hero {
|
|
204
|
+
min-height: 100vh;
|
|
205
|
+
position: relative;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.hero-content {
|
|
209
|
+
text-align: center;
|
|
210
|
+
z-index: 10;
|
|
211
|
+
padding: 2rem;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.hero-content h1 {
|
|
215
|
+
font-size: 4em;
|
|
216
|
+
line-height: 1.1;
|
|
217
|
+
margin-bottom: 1rem;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.gradient-text {
|
|
221
|
+
background: linear-gradient(135deg, #6c5ce7, #fd79a8);
|
|
222
|
+
-webkit-background-clip: text;
|
|
223
|
+
-webkit-text-fill-color: transparent;
|
|
224
|
+
background-clip: text;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.hero-subtitle {
|
|
228
|
+
font-size: 1.3em;
|
|
229
|
+
opacity: 0.7;
|
|
230
|
+
margin-bottom: 2rem;
|
|
231
|
+
max-width: 600px;
|
|
232
|
+
margin-left: auto;
|
|
233
|
+
margin-right: auto;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.hero-cta {
|
|
237
|
+
display: flex;
|
|
238
|
+
gap: 1rem;
|
|
239
|
+
justify-content: center;
|
|
240
|
+
flex-wrap: wrap;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.btn {
|
|
244
|
+
padding: 0.8em 2em;
|
|
245
|
+
font-size: 1.1em;
|
|
246
|
+
font-weight: 600;
|
|
247
|
+
border-radius: 8px;
|
|
248
|
+
text-decoration: none;
|
|
249
|
+
transition: transform 0.2s, box-shadow 0.2s;
|
|
250
|
+
display: inline-block;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.btn:hover {
|
|
254
|
+
transform: translateY(-2px);
|
|
255
|
+
box-shadow: 0 4px 20px rgba(108, 92, 231, 0.4);
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.btn-primary {
|
|
259
|
+
background: linear-gradient(135deg, #6c5ce7, #a29bfe);
|
|
260
|
+
color: #fff;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.btn-secondary {
|
|
264
|
+
background: rgba(255, 255, 255, 0.1);
|
|
265
|
+
color: #fff;
|
|
266
|
+
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.btn-large {
|
|
270
|
+
padding: 1em 3em;
|
|
271
|
+
font-size: 1.2em;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.features-grid {
|
|
275
|
+
display: grid;
|
|
276
|
+
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
|
|
277
|
+
gap: 2rem;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.feature-card {
|
|
281
|
+
background: rgba(255, 255, 255, 0.03);
|
|
282
|
+
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
283
|
+
border-radius: 16px;
|
|
284
|
+
padding: 2rem;
|
|
285
|
+
text-align: center;
|
|
286
|
+
transition: transform 0.3s, border-color 0.3s;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.feature-card:hover {
|
|
290
|
+
transform: translateY(-6px);
|
|
291
|
+
border-color: #6c5ce7;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.feature-icon {
|
|
295
|
+
font-size: 2.5em;
|
|
296
|
+
margin-bottom: 1rem;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.feature-card h3 {
|
|
300
|
+
margin-bottom: 0.5rem;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.feature-card p {
|
|
304
|
+
opacity: 0.7;
|
|
305
|
+
font-size: 0.95em;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.pricing-grid {
|
|
309
|
+
display: grid;
|
|
310
|
+
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
311
|
+
gap: 2rem;
|
|
312
|
+
align-items: center;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.pricing-card {
|
|
316
|
+
background: rgba(255, 255, 255, 0.03);
|
|
317
|
+
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
318
|
+
border-radius: 16px;
|
|
319
|
+
padding: 2.5rem 2rem;
|
|
320
|
+
text-align: center;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.pricing-card.featured {
|
|
324
|
+
border-color: #6c5ce7;
|
|
325
|
+
background: rgba(108, 92, 231, 0.08);
|
|
326
|
+
transform: scale(1.05);
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.price {
|
|
330
|
+
font-size: 3em;
|
|
331
|
+
font-weight: 700;
|
|
332
|
+
margin: 1rem 0;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.price span {
|
|
336
|
+
font-size: 0.4em;
|
|
337
|
+
opacity: 0.5;
|
|
338
|
+
font-weight: 400;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.pricing-card ul {
|
|
342
|
+
list-style: none;
|
|
343
|
+
margin: 1.5rem 0;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.pricing-card li {
|
|
347
|
+
padding: 0.4em 0;
|
|
348
|
+
opacity: 0.8;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.pricing-card li::before {
|
|
352
|
+
content: "✓ ";
|
|
353
|
+
color: #00cec9;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.testimonial-grid {
|
|
357
|
+
display: grid;
|
|
358
|
+
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
359
|
+
gap: 2rem;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.testimonial-card {
|
|
363
|
+
background: rgba(255, 255, 255, 0.03);
|
|
364
|
+
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
365
|
+
border-radius: 16px;
|
|
366
|
+
padding: 2rem;
|
|
367
|
+
text-align: left;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.testimonial-card p {
|
|
371
|
+
font-style: italic;
|
|
372
|
+
font-size: 1.1em;
|
|
373
|
+
line-height: 1.6;
|
|
374
|
+
margin-bottom: 1rem;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.author {
|
|
378
|
+
opacity: 0.6;
|
|
379
|
+
font-size: 0.9em;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.cta-content h2 {
|
|
383
|
+
margin-bottom: 1rem;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
.cta-content p {
|
|
387
|
+
font-size: 1.2em;
|
|
388
|
+
opacity: 0.7;
|
|
389
|
+
margin-bottom: 2rem;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
#footer {
|
|
393
|
+
border-top: 1px solid rgba(255, 255, 255, 0.08);
|
|
394
|
+
padding: 2rem 1rem;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.footer-content {
|
|
398
|
+
display: flex;
|
|
399
|
+
justify-content: space-between;
|
|
400
|
+
align-items: center;
|
|
401
|
+
flex-wrap: wrap;
|
|
402
|
+
gap: 1rem;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.footer-content p {
|
|
406
|
+
opacity: 0.5;
|
|
407
|
+
font-size: 0.9em;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
.footer-links {
|
|
411
|
+
display: flex;
|
|
412
|
+
gap: 1.5rem;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.footer-links a {
|
|
416
|
+
color: rgba(255, 255, 255, 0.6);
|
|
417
|
+
text-decoration: none;
|
|
418
|
+
font-size: 0.9em;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
.footer-links a:hover {
|
|
422
|
+
color: #6c5ce7;
|
|
423
|
+
}
|
|
424
|
+
</style>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { mount } from "svelte";
|
|
2
|
+
import { initParticlesEngine } from "@tsparticles/svelte";
|
|
3
|
+
import { loadSlim } from "@tsparticles/slim";
|
|
4
|
+
import App from "./App.svelte";
|
|
5
|
+
|
|
6
|
+
void initParticlesEngine(async (engine) => {
|
|
7
|
+
await loadSlim(engine);
|
|
8
|
+
});
|
|
9
|
+
|
|
10
|
+
const app = mount(App, { target: document.getElementById("app")! });
|
|
11
|
+
|
|
12
|
+
export default app;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020 Matteo Bruni
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "{{projectName}}",
|
|
3
|
+
"private": true,
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"dev": "vite",
|
|
7
|
+
"build": "vite build",
|
|
8
|
+
"preview": "vite preview"
|
|
9
|
+
},
|
|
10
|
+
"dependencies": {
|
|
11
|
+
"vue": "^2.7.16",
|
|
12
|
+
"@tsparticles/engine": "^4.1.3",
|
|
13
|
+
"@tsparticles/slim": "^4.1.3",
|
|
14
|
+
"@tsparticles/configs": "^4.1.3",
|
|
15
|
+
"@tsparticles/vue2": "^4.1.3"
|
|
16
|
+
},
|
|
17
|
+
"devDependencies": {
|
|
18
|
+
"@vitejs/plugin-vue2": "^2.3.3",
|
|
19
|
+
"vite": "^6.0.0"
|
|
20
|
+
}
|
|
21
|
+
}
|